body {
  margin: 0;
  padding: 0;
} 

.side {
  position: fixed;
  width: 16vw;
  max-width: 65px;
  height: auto;
  right: 0;
  top: 15vw;
  z-index: 100;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 3px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.side .side2box {
  max-width: 55px;
  max-height: 55px;
  width: 15vw;
  height: 15vw;
  margin: 5px;
}

.content {
  background-image: url(/static/img/bg2.png);
  background-size: 100% auto;
  margin: 0;
  padding: 0;
}

.mt-10 {
  margin-top: 10vw;
}

.mt-15 {
  margin-top: 15vw;
}

.head-bg {
  background-image: url(/static/img/bg1.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 124vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}

.logo {
  width: 50vw;
  height: 50vw;
}

.game-ad {
  height: 36vw;
  display: flex;
  overflow-x: hidden;
  white-space: nowrap;
  padding: 0 10vw;
}

.game-ad img {
  height: 30vw;
  width: 75vw;
  animation: 10s img-range linear infinite normal;
  border: 1px solid #237e60;
  margin-top: 5vw;
  border-radius: 2vw;
  margin-right: 5vw;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  color: #00bfb2;
  font-size: 3.2vw;
  font-weight: 900;
  text-align: center;
}

@keyframes img-range {
  from {
      transform: translateX(-20vw);
  }
  to {
      transform: translateX(-262vw);
  }
}

.game-desc {
  margin: 25px 15px;
}

.game-desc .title {
  height: 7vw;
  background-image: url(/static/img/game_desc_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 5vw;
  line-height: 7.5vw;
  color: #fff;
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
}

.game-desc .desc {
  background-color: rgba(87, 116, 115, 0.2) ;
  border-radius: 10px;
  border: 1px solid #237e60;
  padding: 1px 0;
  color: #ffffff;
  font-size: 4vw;
  font-weight: 900;
  line-height: 8vw;
}

.game-desc .desc ol {
  list-style-type: disc;
  ::marker {
    color: yellow;
  }
}

.game-desc .desc ol li {
  padding-inline-start: 0;
}

.comment {
  /* 左右滑动, 内容是一个个小框 */
  display: flex;
  overflow-x: hidden;
  white-space: nowrap;
  padding: 0 10vw;
}

.comment-item {
  animation: 10s marquee linear infinite normal;
  /* animation-direction: alternate; */
  margin-top: 5vw;
  width: 33vw;
  height: 25vw;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 2vw;
  margin-right: 5vw;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  color: #00bfb2;
  font-size: 3.2vw;
  font-weight: 900;
  text-align: center;
}

.comment-item .user {
  display: flex;
  width: inherit;
  height: 8vw;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
}

.comment-item .user .avatar {
  margin: auto 5px;
  width: 7vw;
  height: 7vw;
  border-radius: 50%;
}

.comment-item .user .name {
  font-size: 3.2vw;
  line-height: 7vw;
  height: 7vw;
  font-weight: 900;
  color: #00bfb2;
}

.comment-item .score {
  height: 5vw;
  padding-left: 10px;
}

.comment-item .score .star {
  font-size: 3vw;
  line-height: 5vw;
  height: 5vw;
  color: gold;
}

.comment-item .detail {
  height: 12vw;
  width: 33vw;
  font-size: 2vw;
  padding: 0 10px;
  white-space: normal;
  text-align: left;
}

@keyframes marquee {
  from {
      transform: translateX(-20%);
  }
  to {
      transform: translateX(-710%);
  }
}

.sub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 2vw;
  font-size: 4vw;
  font-weight: 900;
  color: #00bfb2;
}

.sub-title .title {
  font-size: 5vw;
  line-height: 20vw;
  color: #fff;
  font-weight: 900;
  text-align: center;
  -webkit-text-stroke: 1px #00bfb2;
}

.sub-title .line {
  width: 20vw;
}

.stage {
  /* 设置舞台的背景，靠下 */
  background-image: url(/static/img/stage.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 30vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}


.game-list {
  perspective: 40vw;
  height: 30vw;
  width: 30vw;
}

.game-item-container {
  width: 30vw;
  height: 30vw;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
}

.game-list .game-item {
  width: 25vw;
  height: 25vw;
  position: absolute;
  overflow: hidden;
}

.game-item-container img:nth-child(1) { 
  transform: translateX(  0vw ) translateZ( 0vw ); 
  animation: rotate 12s ease infinite;
  animation-delay: 0s;
}
.game-item-container img:nth-child(2) { 
  transform: translateX(  -30vw ) translateZ( -15vw ); 
  animation: rotate 12s ease infinite;
  animation-delay: -1.5s;
}
.game-item-container img:nth-child(3) { 
  transform: translateX(  -60vw ) translateZ( -30vw );
  animation: rotate 12s ease infinite;
  animation-delay: -3s;
}
.game-item-container img:nth-child(4) { 
  transform: translateX(  -30vw ) translateZ( -45vw );
  animation: rotate 12s ease infinite;
  animation-delay: -4.5s;
}
.game-item-container img:nth-child(5) { 
  transform: translateX(  0vw ) translateZ( -60vw );
  animation: rotate 12s ease infinite;
  animation-delay: -6s;
}
.game-item-container img:nth-child(6) { 
  transform: translateX(  30vw ) translateZ( -45vw );
  animation: rotate 12s ease infinite;
  animation-delay: -7.5s;
}
.game-item-container img:nth-child(7) { 
  transform: translateX(  60vw ) translateZ( -30vw );
  animation: rotate 12s ease infinite;
  animation-delay: -9s;
}
.game-item-container img:nth-child(8) { 
  transform: translateX(  30vw ) translateZ( -15vw );
  animation: rotate 12s ease infinite;
  animation-delay: -10.5s;
}


@keyframes rotate {
  0% {
    transform: translateX(  0vw ) translateZ( 0vw );
  }
  12.5% {
    transform: translateX(  -30vw ) translateZ( -15vw );
  }
  25% {
    transform: translateX(  -60vw ) translateZ( -30vw );
  }
  37.5% {
    transform: translateX(  -30vw ) translateZ( -45vw );
  }
  50% {
    transform: translateX(  0vw ) translateZ( -60vw );
  }
  62.5% {
    transform: translateX(  30vw ) translateZ( -45vw );
  }
  75% {
    transform: translateX(  60vw ) translateZ( -30vw );
  }
  87.5% {
    transform: translateX(  30vw ) translateZ( -15vw );
  }
  100% {
    transform: translateX(  0vw ) translateZ( 0vw );
  }
}

.phone {
  /* background-image: url(/static/img/phone.png); */
  /* background-size: 100% auto; */
  /* background-repeat: no-repeat; */
  /* background-position: top; */
  perspective: 40vw;
  width: 80vw;
  height: 140vw;
  margin: 20px 10vw 10px 10vw;
  z-index: 1000;
  text-align: left;
}

.phone .phone-container {
  width: 80vw;
  height: 140vw;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
}

.phone .phone-container .phone-board {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.phone .phone-container .phone-img {
  width: 70vw;
  height: 142vw;
  margin: -1vw 5vw 0 5vw;
  border-radius: 2vw;
  position: absolute;
  overflow: hidden;
}

.phone-container img:nth-child(1) { 
  transform: translateZ( 0vw ); 
}
.phone-container img:nth-child(2) { 
  transform: translateZ( -2vw ); 
  animation: phone-rotate 12s linear infinite;
  animation-delay: 0s;
}
.phone-container img:nth-child(3) { 
  transform: translateZ( -2vw );
  animation: phone-rotate 12s linear infinite;
  animation-delay: -1s;
}
.phone-container img:nth-child(4) { 
  transform: translateZ( -2vw );
  animation: phone-rotate 12s linear infinite;
  animation-delay: -2.5s;
}
.phone-container img:nth-child(5) { 
  transform: translateZ( -2vw );
  animation: phone-rotate 12s linear infinite;
  animation-delay: -4s;
}
.phone-container img:nth-child(6) { 
  transform: translateZ( -2vw );
  animation: phone-rotate 12s linear infinite;
  animation-delay: -5.5s;
}
.phone-container img:nth-child(7) { 
  transform: translateZ( -2vw );
  animation: phone-rotate 12s linear infinite;
  animation-delay: -7s;
}
.phone-container img:nth-child(8) { 
  transform: translateZ( -2vw );
  animation: phone-rotate 12s linear infinite;
  animation-delay: -8.5s;
}
.phone-container img:nth-child(9) { 
  transform: translateZ( -2vw );
  animation: phone-rotate 12s linear infinite;
  animation-delay: -10s;
}

@keyframes phone-rotate {
  0% {
    transform:  translateZ( -2vw );
  }
  8% {
    transform: translateZ( -2.1vw );
  }
  20.5% {
    transform: translateZ( -2.1vw );
  }
  33% {
    transform: translateZ( -2.1vw );
  }
  45.5% {
    transform: translateZ( -2.1vw );
  }
  58% {
    transform: translateZ( -2.1vw );
  }
  70.5% {
    transform: translateZ( -2.1vw );
  }
  83% {
    transform: translateZ( -2.1vw );
  }
  95.5% {
    transform: translateZ( -2vw );
  }
}

.footer-space{
  width: 100%;
  height: 60px;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 60px;
  /* 透明色 */
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .logo {
  width: 20%;
  width: 50px;
  height: 50px;
}

.footer .detail {
  padding: 10px 10px;
  width: 50%;
  color: #fff;
  font-size: 0.8em;
  font-weight: 900;
  text-align: left;
}

.footer .download {
  width: 30%;
  padding-top: 10px;
}

.footer .download .download-btn {
  width: auto;
  width: 120px;
  height: 45px;
  background-image: url(/static/img/download.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.footer .download .download-btn .text {
  text-align: center;
  line-height: 40px;
  height: 40px;
  font-family: 'Arial Black', sans-serif;
  font-size: 1em;
  font-weight: 900;
  color: #fff;
  -webkit-text-stroke: 0.7px #994f00;
  user-select: none;
  text-decoration: none;
}