@keyframes audio-wave2 {
  100% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  font-family: "Microsoft YaHei", "微软雅黑" !important;
}
body {
  perspective: 100px;
  width: 100%;
  height: 100vh;
  height: calc(100 * var(--vh));
  overflow: hidden;
}
ul li {
  list-style: none;
}
html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'MiSans-Medium';
  user-select: none;
  /* Firefox专有属性 */
  scrollbar-width: none;
  /*ie11*/
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}
img {
  display: block;
}
input {
  /* Chrome, Safari, Edge, Opera */
  -moz-appearance: textfield !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* WebKit browsers like Chrome and Safari */
  -webkit-appearance: none;
  margin: 0;
}
.pc::-webkit-scrollbar {
  display: none;
}
/* 定义滚动条整体样式 */
::-webkit-scrollbar {
  width: 10px;
  /* 滚动条宽度 */
}
/* 定义滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: #888;
  /* 滑块背景颜色 */
  border-radius: 5px;
  /* 滑块圆角 */
}
/* 定义滚动条滑块悬停时的样式 */
::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* 悬停时滑块背景颜色 */
}
.none {
  display: none !important;
}
.toast {
  display: none;
  height: 2.5vw;
  line-height: 2.5vw;
  position: fixed;
  z-index: 88888;
  font-size: 16px;
  color: #fff;
  top: 15vh;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 1vw;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1.25vw;
  white-space: nowrap;
}
.mobileToast {
  font-size: 12px;
  padding: 0 0.5rem;
  height: 1.2rem;
  line-height: 1.2rem;
  border-radius: 0.6rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.music-btn {
  width: 6.28vw;
  height: 100%;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  display: -webkit-box;
  display: flex;
  z-index: 888;
  cursor: pointer;
  padding: 0 2.34vw;
}
.music-btn .music-bar {
  width: 0.18vw;
  height: 0.324vh;
  max-height: 0.182vw;
  background-color: #f2f2f2;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.music-btn .music-bar:nth-child(1) {
  transform: scaleY(2);
  -webkit-transform: scaleY(2);
}
.music-btn .music-bar:nth-child(2) {
  transform: scaleY(4.858);
  -webkit-transform: scaleY(4.858);
}
.music-btn .music-bar:nth-child(3) {
  transform: scaleY(7.715);
  -webkit-transform: scaleY(7.715);
}
.music-btn .music-bar:nth-child(4) {
  transform: scaleY(4.858);
  -webkit-transform: scaleY(4.858);
}
.music-btn .music-bar:nth-child(5) {
  transform: scaleY(2);
  -webkit-transform: scaleY(2);
}
.music-btn.active .music-bar:nth-child(1) {
  -webkit-animation-name: audio-wave2;
  animation-name: audio-wave2;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.music-btn.active .music-bar:nth-child(2) {
  -webkit-animation-name: audio-wave2;
  animation-name: audio-wave2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.music-btn.active .music-bar:nth-child(3) {
  -webkit-animation-name: audio-wave2;
  animation-name: audio-wave2;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.music-btn.active .music-bar:nth-child(4) {
  -webkit-animation-name: audio-wave2;
  animation-name: audio-wave2;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.music-btn.active .music-bar:nth-child(5) {
  -webkit-animation-name: audio-wave2;
  animation-name: audio-wave2;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.inputBox {
  border: 2px solid #676b82;
  background-color: rgba(0, 0, 0, 0.5);
}
.inputBox .input {
  border: none;
  /* 去除边框 */
  outline: none;
  /* 去除焦点时的轮廓 */
  background: none;
  /* 去除背景色 */
  padding: 0;
  /* 去除内边距 */
  margin: 0;
  /* 去除外边距 */
  /*去除输入框的内阴影（iOS上的样式）*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /*去除数字输入框的上下箭头*/
  height: 68px;
  color: #ffffff;
}
.inputBox .input[type="number"]::-webkit-inner-spin-button,
.inputBox .input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.inputBox .input::placeholder {
  color: #989999;
}
.pc {
  height: 100%;
  width: 100%;
  overflow: auto;
  overflow-x: hidden;
}
.pc .header {
  width: 100%;
  height: 7.87vh;
  max-height: 4.427vw;
  position: fixed;
  top: 0;
  z-index: 100;
  padding-left: 9.2592vh;
  padding-right: 7.037vh;
  padding-left: min(5.208vw, 9.2592vh);
  padding-right: min(3.9583vw, 7.037vh);
  display: flex;
  align-items: start;
  justify-content: space-between;
  box-shadow: 0 0 50px #000000;
}
.pc .header .headerBg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pc .header .headerBg img {
  width: 100%;
  height: 100%;
  display: block;
}
.pc .header .left {
  display: flex;
  height: 100%;
  position: absolute;
  z-index: 2;
}
.pc .header .left .logo {
  width: 16.71112vh;
  max-width: 9.4vw;
  height: 100%;
  cursor: pointer;
  margin-right: 30px;
}
.pc .header .left .logo img {
  width: 100%;
  height: 100%;
  display: block;
}
.pc .header .left .nav ul {
  display: flex;
  height: 100%;
}
.pc .header .left .nav ul li {
  padding: 0 40px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  color: #7B7B7B;
  font-family: 'MiSans-Medium', system-ui;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pc .header .left .nav ul li .arrow {
  position: absolute;
  left: 50%;
  top: 68%;
  transform: scale(1) translateX(-50%);
  width: 2.13334vh;
  height: 1.42223vh;
  max-width: 1.2vw;
  max-height: 0.8vw;
  animation: arrow-wave 2s linear infinite;
}
.pc .header .left .nav ul li .shine {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 15.83vh;
  height: 4.8vh;
  max-width: 8.9vw;
  max-height: 2.7vw;
}
.pc .header .left .nav ul li .shine img {
  width: 100%;
  height: 100%;
}
.pc .header .left .nav ul li:hover {
  color: #D9D9D9;
}
.pc .header .left .nav ul .liActive {
  color: #D9D9D9;
}
.pc .header .left .nav ul .liActive::after {
  content: " ";
  display: block;
  width: 15.83vh;
  max-width: 8.9vw;
  height: 2px;
  background-color: #80a7ff;
  position: absolute;
  bottom: 0;
  box-shadow: 0 0 20px 4px #80a7ff;
  left: 50%;
  transform: translateX(-50%);
}
.pc .header .right {
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 2;
  right: 1.677%;
  color: #7B7B7B;
  font-size: 20px;
  font-family: 'MiSans-Medium';
  line-height: 1;
}
.pc .header .right .share {
  display: flex;
  cursor: pointer;
  height: 100%;
  align-items: center;
  padding: 0 2.34vw;
}
.pc .header .right .share:hover {
  color: #D9D9D9;
}
.pc .header .right .share img {
  width: 2.407vh;
  height: 2.592vh;
  max-width: 1.354vw;
  max-height: 1.458vw;
  display: block;
}
.pc .header .right .share span {
  margin-left: 0.73vw;
}
.pc .header .right .main {
  display: flex;
  cursor: pointer;
  height: 100%;
  align-items: center;
  padding: 0 2.34vw;
}
.pc .header .right .main:hover {
  color: #D9D9D9;
}
.pc .header .right .main img {
  width: 2.87vh;
  height: 2.5vh;
  max-width: 1.615vw;
  max-height: 1.406vw;
  display: block;
}
.pc .header .right .main span {
  margin-left: 0.73vw;
}
.pc .header .right .login {
  padding: 0 1.823vw;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.pc .header .right .login:hover {
  color: #D9D9D9;
}
.pc .header .right .user {
  padding: 0 1.823vw;
  height: 100%;
  display: flex;
  align-items: center;
}
.pc .header .right .user .btn {
  margin-left: 0.73vw;
  width: 2.5vh;
  height: 2.5vh;
  max-width: 1.406vw;
  max-height: 1.406vw;
  cursor: pointer;
}
.pc .pcFooter {
  width: 100%;
  height: max-content;
  background-color: #1e1e1e;
  padding-top: 1.852vh;
  padding-bottom: 2.407vh;
  padding-left: 7%;
  padding-right: 7%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #848484;
  font-family: 'MiSans-Light';
}
.pc .pcFooter .title {
  font-size: 1.852vh;
  font-size: max(12px, 1.04vw);
  font-family: 'MiSans-Regular';
  line-height: 2.8;
}
.pc .pcFooter .tips,
.pc .pcFooter .com {
  font-size: 1.3vh;
  font-size: max(12px, 0.73vw);
  line-height: 2.143;
}
.pc .content {
  background-image: url(../assets/images/bg.png);
  background-size: 100% 100%;
}
.pc .page1 {
  width: 100%;
  position: relative;
  height: 100vh;
  height: calc(100 * var(--vh));
  overflow: hidden;
}
.pc .page1 .videoBox {
  width: 100%;
  height: 100%;
  -webkit-mask-image: linear-gradient(180deg, black 80%, transparent 98%);
  mask-image: linear-gradient(180deg, black 80%, transparent 98%);
}
.pc .page1 .videoBox #myVideo {
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.pc .page1 .bottomImg {
  width: calc(100% - 40px);
  margin: 0 20px;
  position: absolute;
  bottom: 10px;
}
.pc .page1 .rightImg {
  position: absolute;
  right: 0;
  top: 50%;
  transform-origin: top right;
}
.pc .page1 .rightImg img {
  padding-right: 50px;
  transform: translateY(-50%);
  display: block;
}
.pc .page1 .center {
  width: 960px;
  height: 564px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 17px;
}
.pc .page1 .center .resizeBox {
  width: 100%;
  height: 100%;
  transform-origin: bottom center;
}
.pc .page1 .center .titleBox {
  position: relative;
  transform: translateX(-24px);
}
.pc .page1 .center .titleBox .img1 {
  margin: 0 auto;
  display: block;
}
.pc .page1 .center .titleBox .txt {
  position: absolute;
  left: 19%;
  top: 55%;
}
.pc .page1 .center .titleBox .txt img {
  position: absolute;
  left: -25px;
  top: 0;
  width: 352px;
  transform: scale(1.1);
}
.pc .page1 .center .titleBox .txt span {
  font-size: 28px;
  position: absolute;
  width: 306px;
  text-align: right;
  color: #ffffff;
  font-family: 'MiSans-Bold';
  left: -12px;
  top: 28px;
  transform: skewX(-8deg);
  text-shadow: 0 0 10px #000000;
  font-weight: 800;
}
.pc .page1 .center .btnBox {
  position: relative;
  margin-top: -28px;
}
.pc .page1 .center .btnBox .bg {
  margin: 0 auto;
}
.pc .page1 .center .btnBox span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 19%;
  color: #ffffff;
  font-family: 'MiSans-Medium';
  font-size: 24px;
  text-shadow: 0 0 13px #10006b;
}
.pc .page1 .center .btnBox .btn {
  cursor: pointer;
  position: absolute;
  margin: 0 auto;
  top: 81px;
  left: 50%;
  transform: translateX(-50%);
}
.pc .page2 {
  width: 100%;
  height: 56.25vw;
  position: relative;
}
.pc .page2 .leftTop {
  transform-origin: top left;
  left: 0;
  top: 0;
  position: absolute;
}
.pc .page2 .leftTop .img1 {
  position: absolute;
  left: -71px;
  top: 147px;
}
.pc .page2 .leftTop .img2 {
  position: absolute;
  left: 52px;
  top: 142px;
}
.pc .page2 .leftTop .img3 {
  position: absolute;
  left: 123px;
  top: 26px;
}
.pc .page2 .pageBg {
  width: 100%;
  height: 100%;
  background-image: url(../assets/images/page2/bg.png);
  background-size: cover;
  background-position: 90% 40%;
}
.pc .page2 .leftImg {
  position: absolute;
  left: 0;
  top: 59%;
  transform-origin: top left;
}
.pc .page2 .leftImg .img1 {
  padding-right: 50px;
  transform: translateY(-50%) rotateY(180deg);
  display: block;
}
.pc .page2 .rightTopImg {
  position: absolute;
  right: 0;
  top: 0;
}
.pc .page2 .rightTopImg .img1 {
  position: absolute;
  left: -106px;
  top: 142px;
}
.pc .page2 .tileImg {
  position: absolute;
  top: 0;
  left: 50%;
  padding-top: 42px;
  transform-origin: top left;
}
.pc .page2 .tileImg .img1 {
  transform: translateX(-50%);
}
.pc .page2 .tileImg .tip {
  font-size: 32px;
  color: #ffffff;
  opacity: 0.8;
  line-height: 1;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  margin-top: 14px;
}
.pc .page2 .center {
  width: 948px;
  height: 649px;
  position: absolute;
  left: 9.896%;
  top: 28.518%;
  transform-origin: left top;
}
.pc .page2 .center .centerBox {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url(../assets/images/page2/txt.png);
}
.pc .page2 .center .centerBox .item {
  width: 200px;
  height: 260px;
  position: absolute;
  background-image: url(../assets/images/page2/01.png);
  top: 115px;
}
.pc .page2 .center .centerBox .item:nth-child(1) {
  left: 92px;
}
.pc .page2 .center .centerBox .item:nth-child(2) {
  left: 381px;
}
.pc .page2 .center .centerBox .item:nth-child(3) {
  left: 670px;
}
.pc .page2 .center .centerBox .item img {
  position: absolute;
  left: 19px;
  width: 160px;
  top: 29px;
}
.pc .page2 .center .centerBox .item span {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  bottom: 20px;
  line-height: 1;
}
.pc .page2 .center .centerBox .line {
  position: absolute;
  bottom: 81px;
  left: 48px;
}
.pc .page2 .center .centerBox .inputBox {
  position: absolute;
  left: 82px;
  bottom: 98px;
  border: 2px solid #676b82;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
}
.pc .page2 .center .centerBox .inputBox .txt {
  font-size: 24px;
  line-height: 68px;
  width: 68px;
  text-align: center;
  color: #fff;
}
.pc .page2 .center .centerBox .inputBox .inputLine {
  width: 2px;
  height: 22px;
  background-color: #5c5e66;
  margin: 23px 0;
}
.pc .page2 .center .centerBox .inputBox .input {
  width: 386px;
  padding: 0 20px 0 30px;
  font-size: 24px;
}
.pc .page2 .center .centerBox .btn {
  cursor: pointer;
  width: 336px;
  height: 107px;
  position: absolute;
  background-image: url(../assets/images/page2/btn.png);
  right: 49px;
  bottom: 81px;
}
.pc .page2 .center .centerBox .btn .icon {
  position: absolute;
  width: 206px;
  left: -55px;
  top: -59px;
}
.pc .page2 .center .centerBox .btn .txt {
  position: absolute;
  font-size: 22px;
  line-height: 1;
  color: #f9ff5f;
  left: 148px;
  top: 64px;
}
.pc .page2 .center .centerBox .btn.centerBtn {
  right: 50%;
  transform: translateX(50%);
  background-image: url(../assets/images/page2/btn_1.png);
}
.pc .page3 {
  width: 100%;
  height: 83.333vw;
  position: relative;
}
.pc .page3 .leftTop {
  transform-origin: top left;
  left: 0;
  top: 0;
  position: absolute;
}
.pc .page3 .leftTop .img1 {
  position: absolute;
  left: 0px;
  top: 180px;
}
.pc .page3 .leftTop .img2 {
  position: absolute;
  left: 52px;
  top: 176px;
}
.pc .page3 .leftTop .img3 {
  position: absolute;
  left: 145px;
  top: -192px;
}
.pc .page3 .leftTop .img4 {
  position: absolute;
  top: 1067px;
  left: 50px;
  transform: rotateY(180deg);
}
.pc .page3 .leftTop .img5 {
  position: absolute;
  top: 709px;
  left: 89px;
}
.pc .page3 .rightTopImg {
  position: absolute;
  right: 0;
  top: 0;
}
.pc .page3 .rightTopImg .img1 {
  position: absolute;
  left: -106px;
  top: 175px;
}
.pc .page3 .rightTopImg .img2 {
  position: absolute;
  right: 79px;
  top: 1100px;
}
.pc .page3 .rightTopImg .img3 {
  position: absolute;
  right: 50px;
  top: 1067px;
}
.pc .page3 .tileImg {
  position: absolute;
  top: 0;
  left: 50%;
  padding-top: 86px;
  transform-origin: top left;
}
.pc .page3 .tileImg .img1 {
  transform: translateX(-50%);
}
.pc .page3 .tileImg .tip {
  display: flex;
  align-items: center;
  width: max-content;
  transform: translateX(-50%);
}
.pc .page3 .tileImg .tip .txt {
  font-size: 32px;
  line-height: 62px;
  color: #ffffff;
  opacity: 0.8;
  padding-left: 10px;
}
.pc .page3 .tileImg .tip .ruleBtn {
  padding: 16px 10px;
  cursor: pointer;
}
.pc .page3 .tileImg .tip .ruleBtn .rule {
  width: 100px;
  height: 30px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  line-height: 22px;
  text-align: center;
  color: #292b3e;
  padding: 4px 0;
}
.pc .page3 .tileImg .btnBox {
  color: #0de5ff;
  font-size: 22px;
  line-height: 24px;
  display: flex;
  align-items: center;
  width: 100%;
  transform: translateX(-50%);
  justify-content: flex-end;
}
.pc .page3 .tileImg .btnBox .btn {
  cursor: pointer;
  padding: 19px 10px;
  margin-left: 20px;
}
.pc .page3 .tileImg .btnBox .btn .txt {
  border-bottom: 2px solid #0de5ff;
}
.pc .page3 .page3_content {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.pc .page3 .page3_content .awardBox {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.pc .page3 .page3_content .awardBox .resetSize_w {
  display: flex;
  padding-top: 390px;
  transform-origin: top center;
}
.pc .page3 .page3_content .awardBox .resetSize_w .item {
  width: 356px;
  height: 348px;
  position: relative;
  margin-right: 100px;
}
.pc .page3 .page3_content .awardBox .resetSize_w .item:last-child {
  margin-right: 0;
}
.pc .page3 .page3_content .awardBox .resetSize_w .item .img1,
.pc .page3 .page3_content .awardBox .resetSize_w .item .img2 {
  position: absolute;
  left: 0;
  top: 0;
}
.pc .page3 .page3_content .awardBox .resetSize_w .item .txt {
  position: absolute;
  width: 100%;
  text-align: center;
  font-size: 22px;
  line-height: 30px;
  color: #ffffff;
  top: 306px;
}
.pc .page3 .page3_content .teamBox {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pc .page3 .page3_content .teamBox .resetSize_w {
  padding-top: 765px;
  transform-origin: top center;
  position: relative;
}
.pc .page3 .page3_content .teamBox .resetSize_w .img2 {
  position: absolute;
  left: -96px;
  bottom: 9px;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center {
  position: absolute;
  top: 765px;
  width: 100%;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList {
  width: 908px;
  margin: 74px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList .item {
  text-align: center;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList .item:nth-child(1) .head {
  background-image: url(../assets/images/page3/head1.png);
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList .item:nth-child(2) .head {
  background-image: url(../assets/images/page3/head2.png);
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList .item:nth-child(3) .head {
  background-image: url(../assets/images/page3/head3.png);
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList .item:nth-child(4) .head {
  background-image: url(../assets/images/page3/head4.png);
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList .item:nth-child(5) .head {
  background-image: url(../assets/images/page3/head5.png);
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList .item .head {
  width: 122px;
  height: 122px;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList .item .head[type="1"] {
  background-image: url(../assets/images/page3/head6.png);
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList .item .head img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: relative;
  top: 6px;
  left: 6px;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList .item .name {
  font-size: 22px;
  line-height: 30px;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 6px;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList .item .name[type="1"] {
  color: #ffb400;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .playerList .item .number {
  color: #ffffff;
  opacity: 0.6;
  font-size: 16px;
  line-height: 16px;
  height: 16px;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .createTeamBox {
  margin: 37px auto 69px;
  height: 92px;
  width: 1017px;
  background-image: url(../assets/images/page3/res_03.png);
  background-repeat: no-repeat;
  background-position: center;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .createTeamBox .createBtn {
  cursor: pointer;
  margin: 0 auto;
  width: 289px;
  height: 92px;
  background-image: url(../assets/images/page3/btn1.png);
  transform: translate(4px, 9px);
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .createTeamBox .createBtn.hasTeam {
  background-image: url(../assets/images/page3/btn3.png);
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList {
  width: 1058px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  width: 290px;
  height: 210px;
  position: relative;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item .target {
  transform: translateY(-50%);
  width: 100%;
  height: 30px;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 18px;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item .numAward {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item .numAward .awardItem {
  width: 112px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  line-height: 20px;
  position: relative;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item .numAward .awardItem .bg {
  margin: 0 auto;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item .numAward .awardItem .itemImg {
  position: absolute;
  width: 94px;
  top: -7px;
  left: 8px;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item .numAward .awardItem .itemImg[imgId="2"] {
  width: 90px;
  top: -5px;
  left: 10px;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item .numAward .awardItem .itemImg[imgId="301"] {
  width: 102px;
  top: -11px;
  left: 4px;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item .numAward .awardItem .itemImg[imgId="208"] {
  width: 104px;
  top: -11px;
  left: 5px;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item .numAward .awardItem .itemImg[imgId="302"] {
  width: 102px;
  top: -11px;
  left: 4px;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item .numAward .awardItem .name {
  position: relative;
  margin-top: -8px;
  margin-bottom: 4px;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item .getBtn {
  width: 176px;
  height: 62px;
  margin: 0 auto;
  background-image: url(../assets/images/page3/btn2.png);
  font-size: 22px;
  text-align: center;
  line-height: 60px;
  color: #ffffff;
  margin-top: 14px;
  cursor: pointer;
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .awardList .item .getBtn.unUse {
  cursor: auto;
  background-image: url(../assets/images/page3/btn4.png);
}
.pc .page3 .page3_content .teamBox .resetSize_w .center .tip {
  font-size: 22px;
  line-height: 30px;
  color: #ffffff;
  text-align: center;
  margin-top: 60px;
}
.pc .page4 {
  width: 100%;
  height: 56.25vw;
  position: relative;
  background-image: url(../assets/images/page4/bg.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
  overflow: hidden;
}
.pc .page4 .leftTop {
  transform-origin: top left;
  left: 0;
  top: 0;
  position: absolute;
}
.pc .page4 .leftTop .img1 {
  position: absolute;
  left: 0px;
  top: 133px;
}
.pc .page4 .leftTop .img2 {
  position: absolute;
  left: 52px;
  top: 128px;
}
.pc .page4 .leftTop .img3 {
  position: absolute;
  left: 87px;
  top: -1px;
}
.pc .page4 .rightTopImg {
  position: absolute;
  right: 0;
  top: 0;
}
.pc .page4 .rightTopImg .img1 {
  position: absolute;
  left: -128px;
  top: 56px;
}
.pc .page4 .tileImg {
  position: absolute;
  top: 0;
  left: 50%;
  padding-top: 43px;
  transform-origin: top left;
}
.pc .page4 .tileImg .img1 {
  transform: translateX(-50%);
}
.pc .page4 .tileImg .tip {
  display: inline-flex;
  align-items: center;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 32px;
  line-height: 60px;
}
.pc .page4 .tileImg .tip span {
  color: #0de5ff;
}
.pc .page4 .center {
  position: relative;
  left: 8.3%;
  top: 37%;
  display: inline-block;
}
.pc .page4 .center .resetSize_w {
  position: relative;
  transform-origin: left top;
}
.pc .page4 .center .resetSize_w .img1 {
  position: absolute;
  left: 7px;
  bottom: -74px;
}
.pc .page4 .center .resetSize_w .list {
  display: flex;
}
.pc .page4 .center .resetSize_w .list .item {
  width: 200px;
  height: 520px;
  background-image: url(../assets/images/page4/frame_2.png);
}
.pc .page4 .center .resetSize_w .list .item .target {
  color: #ffffff;
  text-shadow: 0 0 5px #404040;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-family: 'MiSans-Bold';
  line-height: 50px;
  margin-top: 16px;
  font-weight: 800;
}
.pc .page4 .center .resetSize_w .list .item .target .num1 {
  font-size: 36px;
  margin-right: 2px;
}
.pc .page4 .center .resetSize_w .list .item .target .num2 {
  font-size: 28px;
  margin-bottom: -2px;
}
.pc .page4 .center .resetSize_w .list .item .tip {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #989999;
  margin-top: -4px;
  padding-bottom: 5px;
}
.pc .page4 .center .resetSize_w .list .item .awardBox {
  height: 310px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pc .page4 .center .resetSize_w .list .item .awardBox .award {
  height: 170px;
  width: 100%;
  position: relative;
  background-image: url(../assets/images/page3/res_04.png);
  background-repeat: no-repeat;
  background-position: 60px 44px;
  background-size: 80px 80px;
}
.pc .page4 .center .resetSize_w .list .item .awardBox .award .bg {
  position: absolute;
  left: 60px;
  top: 44px;
}
.pc .page4 .center .resetSize_w .list .item .awardBox .award .itemImg {
  margin: 29px auto 0;
  width: 110px;
}
.pc .page4 .center .resetSize_w .list .item .awardBox .award .itemImg[imgId="2"],
.pc .page4 .center .resetSize_w .list .item .awardBox .award .itemImg[imgId="3"],
.pc .page4 .center .resetSize_w .list .item .awardBox .award .itemImg[imgId="11003"] {
  width: 94px;
  margin: 37px auto 8px;
}
.pc .page4 .center .resetSize_w .list .item .awardBox .award .itemImg[imgId="208"] {
  margin: 24px auto -5px;
  width: 120px;
}
.pc .page4 .center .resetSize_w .list .item .awardBox .award .itemImg[imgId="11453"] {
  margin: 14px auto -15px;
  width: 140px;
}
.pc .page4 .center .resetSize_w .list .item .awardBox .award .str {
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  text-shadow: 0 0 4px #404040;
  line-height: 20px;
  margin-top: -7px;
}
.pc .page4 .center .resetSize_w .list .item .awardBox .award .skinBg {
  margin: 0 auto;
}
.pc .page4 .center .resetSize_w .list .item .awardBox .award .skinImg {
  position: absolute;
  top: 2px;
  left: 42px;
  width: 116px;
  height: 152px;
  overflow: hidden;
}
.pc .page4 .center .resetSize_w .list .item .awardBox .award .skinImg img {
  width: 100%;
}
.pc .page4 .center .resetSize_w .list .item .awardBox .award .type {
  margin-top: 10px;
  margin-bottom: 12px;
}
.pc .page4 .center .resetSize_w .list .item .statusBox {
  margin-top: 50px;
  text-align: center;
  height: 40px;
  font-size: 24px;
  line-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #989999;
}
.pc .page4 .center .resetSize_w .list .item .statusBox img {
  display: none;
  margin-right: 2px;
}
.pc .page4 .center .resetSize_w .list .item .statusBox .t2 {
  display: none;
}
.pc .page4 .center .resetSize_w .list .item.achieved {
  background-image: url(../assets/images/page4/frame_1.png);
}
.pc .page4 .center .resetSize_w .list .item.achieved .tip {
  color: #ffffff;
  text-shadow: 0 0 4px #404040;
}
.pc .page4 .center .resetSize_w .list .item.achieved .awardBox .award {
  background-image: url(../assets/images/page4/res_02.png);
}
.pc .page4 .center .resetSize_w .list .item.achieved .statusBox {
  color: #ffffff;
  text-shadow: 0 0 3px #000000;
}
.pc .page4 .center .resetSize_w .list .item.achieved .statusBox img {
  display: block;
}
.pc .page4 .center .resetSize_w .list .item.achieved .statusBox .t1 {
  display: none;
}
.pc .page4 .center .resetSize_w .list .item.achieved .statusBox .t2 {
  display: block;
  font-weight: 800;
}
@media (max-width: 1500px) {
  .pc .header .left .logo {
    margin-right: 10px;
  }
  .pc .header .left .nav ul li {
    padding: 0 30px;
    font-size: 18px;
  }
  .pc .header .right {
    font-size: 18px;
  }
  .music-btn {
    width: 5.28vw;
    padding: 0 1.84vw;
  }
  .pc .header .right .share,
  .pc .header .right .main {
    padding: 0 1.84vw;
  }
}
@media (max-width: 1300px) {
  .pc .header .left .nav ul li {
    padding: 0 20px;
    font-size: 16px;
  }
  .pc .header .right {
    font-size: 16px;
  }
}
@media (max-width: 1080px) {
  .pc .header .left .nav ul li {
    padding: 0 16px;
    font-size: 13px;
  }
  .pc .header .right {
    font-size: 13px;
  }
  .music-btn {
    width: 4.28vw;
    padding: 0 1.34vw;
  }
  .pc .header .right .share,
  .pc .header .right .main {
    padding: 0 1.34vw;
  }
}
@media (max-width: 750px) {
  .pc .header .left .logo {
    margin-right: 0;
  }
  .pc .header .left .nav ul li {
    padding: 0 10px;
    font-size: 12px;
  }
  .pc .header .right {
    font-size: 12px;
  }
  .pc .header .right .share,
  .pc .header .right .main {
    padding: 0 1.34vw;
  }
  .pc .header .right .login,
  .pc .header .right .user {
    padding: 0 1.323vw;
  }
}
#dialogBox {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 200;
  display: none;
}
#dialogBox.big .dialog .resetSize {
  width: 960px;
  height: 620px;
  background-image: url(../assets/images/dialog/dialogBg2.png);
}
#dialogBox .dialog {
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
}
#dialogBox .dialog .resetSize {
  width: 560px;
  height: 420px;
  position: relative;
  background-image: url(../assets/images//dialog/dialogBg1.png);
}
#dialogBox .dialog .resetSize .mobileBg {
  display: none;
}
#dialogBox .dialog .resetSize .pcBg .img1 {
  position: absolute;
  top: -10px;
  left: -8px;
}
#dialogBox .dialog .resetSize .pcBg .img2 {
  position: absolute;
  top: 0px;
  right: 0px;
}
#dialogBox .dialog .resetSize .pcBg .img3 {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
#dialogBox .dialog .resetSize .pcBg .img4 {
  position: absolute;
  bottom: -10px;
  right: -8px;
}
#dialogBox .dialog .resetSize .pcBg #closeBtn {
  padding: 14px;
  height: 78px;
  width: 78px;
  position: absolute;
  cursor: pointer;
  right: -78px;
  top: -14px;
}
#dialogBox .dialog .resetSize #dialogContent {
  position: relative;
}
#dialogBox .dialog .resetSize .dialogTitleBox {
  padding: 40px 30px 0;
  margin: 0 auto;
  display: inline-flex;
  position: relative;
  height: 71px;
  background-position: center bottom;
  background-repeat: no-repeat;
  left: 50%;
  transform: translateX(-50%);
}
#dialogBox .dialog .resetSize .dialogTitleBox[type="1"] {
  background-image: url(../assets/images/dialog/title1.png);
  width: 187px;
  background-size: 127px 31px;
}
#dialogBox .dialog .resetSize .dialogTitleBox[type="2"] {
  background-image: url(../assets/images/dialog/title2.png);
  width: 219px;
  background-size: 159px 31px;
}
#dialogBox .dialog .resetSize .dialogTitleBox[type="3"] {
  background-image: url(../assets/images/dialog/title3.png);
  width: 218px;
  background-size: 158px 31px;
}
#dialogBox .dialog .resetSize .dialogTitleBox[type="4"] {
  background-image: url(../assets/images/dialog/title4.png);
  width: 185px;
  background-size: 125px 31px;
}
#dialogBox .dialog .resetSize .dialogTitleBox[type="5"] {
  background-image: url(../assets/images/dialog/title5.png);
  width: 186px;
  background-size: 126px 30px;
  margin-bottom: 1px;
}
#dialogBox .dialog .resetSize .dialogTitleBox[type="6"] {
  background-image: url(../assets/images/dialog/title6.png);
  width: 186px;
  background-size: 126px 30px;
  margin-bottom: 1px;
}
#dialogBox .dialog .resetSize .dialogTitleBox::before {
  position: absolute;
  right: 100%;
  top: 42px;
  content: " ";
  width: 148px;
  height: 20px;
  background-image: url(../assets/images/dialog/line1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#dialogBox .dialog .resetSize .dialogTitleBox::after {
  position: absolute;
  left: 100%;
  top: 42px;
  content: "";
  width: 148px;
  height: 20px;
  background-image: url(../assets/images/dialog/line2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#dialogBox .dialog .resetSize .inputBox {
  width: 450px;
  margin: 0 auto;
  display: flex;
  font-size: 18px;
  align-items: center;
  line-height: 46px;
  color: #ffffff;
  margin-bottom: 24px;
}
#dialogBox .dialog .resetSize .inputBox .input {
  padding: 0 40px;
  height: 46px;
  width: 100px;
  flex-grow: 1;
  font-size: 18px;
}
#dialogBox .dialog .resetSize .inputBox .des {
  padding: 0 20px;
  height: 46px;
  width: 100px;
  flex-grow: 1;
  font-size: 18px;
  white-space: nowrap;
  /* 禁止换行 */
  overflow: hidden;
  /* 隐藏溢出内容 */
  text-overflow: ellipsis;
  /* 显示省略号 */
  color: #989999;
}
#dialogBox .dialog .resetSize .inputBox .inputLine {
  width: 1px;
  height: 24px;
  background-color: #ffffff;
  opacity: 0.3;
}
#dialogBox .dialog .resetSize .inputBox .inputBtn {
  text-align: center;
  width: 169px;
  cursor: pointer;
}
#dialogBox .dialog .resetSize .dialog_1 .logoImg {
  height: 144px;
  transform: translateY(-42px);
  background-image: url(../assets/images/dialog/logo.png);
  background-repeat: no-repeat;
  background-position: center 0px;
  margin-bottom: -14px;
}
#dialogBox .dialog .resetSize .dialog_1 .tipBox {
  display: flex;
  align-items: center;
  padding-left: 60px;
  margin-top: -6px;
}
#dialogBox .dialog .resetSize .dialog_1 .tipBox .pointBox {
  height: 60px;
  width: 106px;
  padding: 18px 40px;
  margin: -18px -22px -18px -40px;
  cursor: pointer;
}
#dialogBox .dialog .resetSize .dialog_1 .tipBox .pointBox .point {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.04);
}
#dialogBox .dialog .resetSize .dialog_1 .tipBox .pointBox .point .chooseBox {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin: 2px;
  background-color: #3becfa;
  display: none;
}
#dialogBox .dialog .resetSize .dialog_1 .tipBox .txt {
  color: #ababab;
  font-size: 18px;
  line-height: 26px;
}
#dialogBox .dialog .resetSize .dialog_1 .tipBox .txt span {
  color: #ff780d;
  vertical-align: text-top;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
#dialogBox .dialog .resetSize .dialog_1 .btn {
  cursor: pointer;
  width: 466px;
  height: 62px;
  margin: 28px auto 0;
  text-align: center;
  line-height: 62px;
  font-size: 22px;
  color: #ffffff;
  background-image: url(../assets/images/dialog/btn1.png);
}
#dialogBox .dialog .resetSize .dialog_2 .tip {
  color: #989999;
  text-align: center;
  line-height: 36px;
  font-size: 20px;
  margin-top: 45px;
  margin-bottom: 38px;
}
#dialogBox .dialog .resetSize .dialog_2 .tip.center {
  margin: 83px 0 70px;
}
#dialogBox .dialog .resetSize .dialog_2 .inputWerper {
  height: 50px;
}
#dialogBox .dialog .resetSize .dialog_2 .inputWerper .inputBox {
  margin-bottom: 0;
}
#dialogBox .dialog .resetSize .dialog_2 .inputWerper .inputBox .input {
  padding: 0 30px;
}
#dialogBox .dialog .resetSize .dialog_2 .inputWerper .inputBox .copyLink {
  width: 129px;
}
#dialogBox .dialog .resetSize .dialog_2 .btnBox {
  margin: 20px 70px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#dialogBox .dialog .resetSize .dialog_2 .btnBox .btn {
  padding: 20px 0;
  width: 176px;
  height: 102px;
  background-image: url(../assets/images/dialog/btn2.png);
  background-position: 0 20px;
  background-repeat: no-repeat;
  font-size: 22px;
  color: #ffffff;
  text-align: center;
  line-height: 62px;
  cursor: pointer;
}
#dialogBox .dialog .resetSize .dialog_2 .btnBox .center {
  margin: 0 auto;
}
#dialogBox .dialog .resetSize .dialog_3 .awardList {
  display: flex;
  margin: 0 54px;
  align-items: center;
  justify-content: space-between;
  margin-top: 55px;
  margin-bottom: 38px;
}
#dialogBox .dialog .resetSize .dialog_3 .awardList .item {
  width: 120px;
  height: 120px;
  border: 10px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
#dialogBox .dialog .resetSize .dialog_3 .awardList .item img {
  width: 140px;
  margin: -20px;
  position: absolute;
}
#dialogBox .dialog .resetSize .dialog_3 .inputBox {
  margin-bottom: 26px;
}
#dialogBox .dialog .resetSize .dialog_3 .inputBox .copySdk {
  width: 129px;
}
#dialogBox .dialog .resetSize .dialog_3 .tip {
  text-align: center;
  color: #ababab;
  font-size: 18px;
  line-height: 30px;
}
#dialogBox .dialog .resetSize .dialog_4 .awardList {
  padding-top: 22px;
  height: 470px;
  padding-bottom: 70px;
}
#dialogBox .dialog .resetSize .dialog_4 .awardList .award {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 46px 123px 46px 126px;
}
#dialogBox .dialog .resetSize .dialog_4 .awardList .award .item {
  width: 80px;
  height: 80px;
  border: 10px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 46px;
}
#dialogBox .dialog .resetSize .dialog_4 .awardList .award .item img {
  width: 100px;
  margin: -20px;
}
#dialogBox .dialog .resetSize .dialog_4 .awardList .award .item img[imgId="20121"],
#dialogBox .dialog .resetSize .dialog_4 .awardList .award .item img[imgId="3"],
#dialogBox .dialog .resetSize .dialog_4 .awardList .award .item img[imgId="2"] {
  width: 92px;
  margin: -16px;
}
#dialogBox .dialog .resetSize .dialog_4 .awardList .award .item img[imgId="208"] {
  width: 104px;
  margin: -20px;
}
#dialogBox .dialog .resetSize .dialog_4 .awardList .award .inputBox {
  margin: unset;
  margin-left: 10px;
}
#dialogBox .dialog .resetSize .dialog_4 .awardList .award .inputBox .copySdk {
  width: 129px;
}
#dialogBox .dialog .resetSize .dialog_4 .tip {
  text-align: center;
  color: #ababab;
  font-size: 18px;
  line-height: 30px;
}
#dialogBox .dialog .resetSize .dialog_5 .txtContent {
  width: 948px;
  height: 440px;
  margin: 40px 0 70px;
  overflow-y: auto;
}
#dialogBox .dialog .resetSize .dialog_5 .text {
  margin-left: 60px;
  width: 845px;
  font-size: 18px;
  line-height: 30px;
  color: #989999;
}
#dialogBox .dialog .resetSize .dialog_6 .itemList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin: 50px 45px 0;
}
#dialogBox .dialog .resetSize .dialog_6 .itemList .item {
  width: 290px;
  margin-bottom: 68px;
}
#dialogBox .dialog .resetSize .dialog_6 .itemList .item:nth-child(1) {
  margin-left: 10px;
}
#dialogBox .dialog .resetSize .dialog_6 .itemList .item:nth-child(2) {
  margin-right: 10px;
}
#dialogBox .dialog .resetSize .dialog_6 .itemList .item .rank {
  color: #ffffff;
  font-size: 22px;
  line-height: 30px;
}
#dialogBox .dialog .resetSize .dialog_6 .itemList .item .name {
  color: #ff780d;
  font-size: 18px;
  line-height: 30px;
}
#dialogBox .dialog .resetSize .dialog_6 .itemList .item .icon {
  width: 120px;
  height: 120px;
  background-image: url(../assets/images/dialog/res_02.png);
  position: relative;
  margin: 13px auto 0;
}
#dialogBox .dialog .resetSize .dialog_6 .itemList .item .icon .img {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-size: 100% 100%;
}
#dialogBox .dialog .resetSize .dialog_6 .itemList .item .icon .img[type="1"] {
  background-image: url(../assets/images/dialog/item_1.png);
}
#dialogBox .dialog .resetSize .dialog_6 .itemList .item .icon .img[type="2"] {
  background-image: url(../assets/images/dialog/item_2.png);
}
#dialogBox .dialog .resetSize .dialog_6 .itemList .item .icon .img[type="3"] {
  background-image: url(../assets/images/dialog/item_3.png);
}
#dialogBox .dialog .resetSize .dialog_6 .itemList .item .icon .img[type="4"] {
  background-image: url(../assets/images/dialog/item_4.png);
}
#dialogBox .dialog .resetSize .dialog_6 .itemList .item .icon .img[type="5"] {
  background-image: url(../assets/images/dialog/item_5.png);
}
@media screen and (max-width: 600px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block!important;
  }
}
