﻿@keyframes move {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes wukong {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(1vw);
  }
}
@keyframes look_more {
  from {
    opacity: 1;
    transform: translateY(-50%);
  }
  to {
    opacity: 0.5;
    transform: translateY(0);
  }
}
@keyframes moveleft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-70%);
  }
}
@keyframes moveright {
  0% {
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(0);
  }
}
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.home {
  background: url(/gameModifier/image/section_one_bgi.png) no-repeat;
  background-size: cover;
  padding-top: 15.625vw;
  background-position: center;
  position: relative;
}
.home::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.6), black);
}
.home .left_info {
  color: white;
  position: relative;
  z-index: 1;
}
.home .left_info h1 {
  width: 17.5521vw;
  height: 7.5521vw;
  font-weight: bold;
  font-size: 3.4896vw;
  color: #FFFFFF;
  font-family: AlimamaShuHeiTi;
}
.home .left_info .describe {
  margin-top: 2vw;
  width: 25.9375vw;
  height: 2.9167vw;
  font-family: PingFang-SC, PingFang-SC;
  font-weight: 500;
  font-size: 1.1458vw;
  opacity: 0.6;
}
.home .left_info #download_button {
  margin-top: 2.2vw;
  width: 10.2604vw;
  height: 2.1875vw;
  background-image: linear-gradient(to right, #7776FF, #AE2CF1);
  border-radius: 1.0938vw;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.home .left_info #download_button img {
  width: 1.1458vw;
  margin-right: 0.5vw;
}
.home .left_info #download_button span {
  font-weight: 700;
  font-size: 1vw;
  color: #FFFFFF;
}
.home .left_info .adaptation {
  margin-top: 1.5vw;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.7292vw;
  color: #FFFFFF;
}
.home .left_info .adaptation img {
  width: 1.3021vw;
  height: 1.0938vw;
}
.home .left_info ul.info {
  display: flex;
  gap: 1.5vw;
  margin-top: 2vw;
}
.home .left_info ul.info li {
  height: 1.6146vw;
  display: flex;
  justify-content: center;
  gap: 1vw;
}
.home .left_info ul.info li img {
  height: 100%;
}
.home .left_info ul.info li span {
  font-family: PingFang-SC, PingFang-SC;
  font-weight: 500;
  font-size: 0.95vw;
  color: #FFFFFF;
}
.home .game_set {
  position: absolute;
  z-index: 1;
  height: 27.6042vw;
  left: 65vw;
  top: 13.4896vw;
  animation: move 1s linear forwards;
}
.home .wukong {
  z-index: 1;
  position: absolute;
  height: 23.8021vw;
  top: 17.7083vw;
  left: 54.375vw;
  animation: wukong 1.3s linear infinite alternate;
}
.home .look_more {
  z-index: 1;
  position: absolute;
  bottom: 3vw;
  left: 18.5vw;
  color: #999;
  display: flex;
  align-items: center;
  gap: 0.5vw;
  animation: look_more 1.5s linear infinite alternate;
}
.home .look_more img {
  height: 1.3021vw;
}
.game_show {
  background-image: url(/gameModifier/image/section_two_bgi.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.game_show .top_des {
  color: #999;
  padding-top: 0.5208vw;
  text-align: center;
}
.game_show .top_title {
  margin-top: 3.294vw;
  font-family: AlimamaShuHeiTi;
  font-size: 3.4896vw;
  font-weight: normal;
  color: #ffffff;
  text-align: center;
}
.game_show .top_title .title1 span {
  background: linear-gradient(to right, #7776ff, #ae2cf1);
  /* 标准的语法 */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* 使文字透明，显示背景色 */
  display: inline-block;
  /* 防止文字换行 */
}
.game_show .top_title .title2 span {
  background: linear-gradient(90deg, #000000 0%, #723c00 0%, #e47700 0%, #ff992c 34%, #f5c51d 100%);
  -webkit-background-clip: text;
  /* 标准的语法 */
  background-clip: text;
  color: transparent;
  /* 使文字透明，显示背景色 */
  display: inline-block;
  /* 防止文字换行 */
}
.game_show ul.platform {
  display: flex;
  margin: 0 auto;
  width: 54.3vw;
  gap: 1.245vw;
  margin-top: 2.782vw;
}
.game_show ul.platform li {
  width: 8vw;
  height: 6.7vw;
  padding: 1.17vw 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  border-radius: 0.3vw;
  color: #ccc;
  font-weight: bold;
  transition: transform 0.2s linear;
  cursor: pointer;
}
.game_show ul.platform li:hover {
  transform: scale(1.1) translateY(-1vw);
}
.game_show ul.platform li img {
  width: 2.5vw;
}
.game_show #transform_container {
  margin-top: 2.928vw;
  overflow-x: hidden;
}
.game_show #transform_container .ul_first {
  display: flex;
  width: 100vw;
  gap: 0.732vw;
  transition: all 5s linear;
  animation: moveleft 20s linear infinite alternate-reverse;
}
.game_show #transform_container .ul_first li {
  flex: 0 0 auto;
  border-radius: 0.5208vw;
  height: 8.8021vw;
  aspect-ratio: 460/215;
  background-size: cover;
}
.game_show #transform_container .ul_second {
  margin-top: 1.611vw;
  display: flex;
  width: 100vw;
  gap: 0.732vw;
  animation: moveright 20s linear infinite alternate-reverse;
}
.game_show #transform_container .ul_second li {
  flex: 0 0 auto;
  border-radius: 0.5208vw;
  height: 8.8021vw;
  aspect-ratio: 460/215;
  background-size: cover;
}
.game_show .look_game {
  width: 9.7396vw;
  height: 2.1875vw;
  margin: 1.5vw auto 0;
  border-radius: 1.0938vw;
  border: 2px solid #A067FF;
  font-weight: bold;
  font-size: 1.0417vw;
  color: #FFFFFF;
}
.game_show .look_game a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.game_info {
  background-image: url(/gameModifier/image/section_two_bgi.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.game_info .top_des {
  color: #999;
  padding-top: 0.5208vw;
  text-align: center;
}
.game_info .top_title {
  margin-top: 3vw;
  font-family: AlimamaShuHeiTi;
  font-size: 3.4896vw;
  font-weight: normal;
  color: #ffffff;
  text-align: center;
}
.game_info .top_title .title1 span {
  background: linear-gradient(to right, #7776ff, #ae2cf1);
  /* 标准的语法 */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  /* 使文字透明，显示背景色 */
  display: inline-block;
  /* 防止文字换行 */
}
.game_info .top_title .title2 span {
  background: linear-gradient(90deg, #000000 0%, #723c00 0%, #e47700 0%, #ff992c 34%, #f5c51d 100%);
  /* 标准的语法 */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  /* 使文字透明，显示背景色 */
  display: inline-block;
  /* 防止文字换行 */
}
.game_info .card_box {
  margin-top: 2vw;
  display: flex;
  justify-content: center;
  gap: 1vw;
}
.game_info .card_box > .left {
  width: 30.3125vw;
}
.game_info .card_box > .left .top_box {
  width: 30.3125vw;
  background: #0B0A27;
  border-radius: 1.1458vw;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1.2vw;
  box-sizing: border-box;
  overflow: hidden;
}
.game_info .card_box > .left .top_box .title {
  color: white;
  font-size: 1.1458vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}
.game_info .card_box > .left .top_box .title img {
  height: 2.6042vw;
}
.game_info .card_box > .left .top_box .des {
  font-size: 0.8854vw;
  color: #CCC;
}
.game_info .card_box > .left .top_box ul {
  height: 7vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.game_info .card_box > .left .top_box ul li {
  background-color: #2C2B52;
  width: 1.4vw;
  height: 1.4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.2604vw;
  transition: all 0.4s linear;
}
.game_info .card_box > .left .top_box ul li img {
  width: 0.8vw;
}
.game_info .card_box > .left .top_box ul .active {
  transform: translate(5vw, -5vw);
  width: 1.6vw;
  height: 1.6vw;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.game_info .card_box > .left .top_box ul .active img {
  width: 1.2vw;
  position: relative;
  z-index: 1;
}
.game_info .card_box > .left .top_box ul .active::before {
  content: '';
  position: absolute;
  top: 0.8vw;
  width: 2vw;
  height: 9vw;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.233), transparent);
  transform-origin: top center;
  transform: rotate(45deg);
}
.game_info .card_box > .left .top_box ul .active:nth-of-type(5),
.game_info .card_box > .left .top_box ul .active:nth-of-type(6),
.game_info .card_box > .left .top_box ul .active:nth-of-type(7) {
  transform: translate(-5vw, -5vw);
}
.game_info .card_box > .left .top_box ul .active:nth-of-type(5)::before,
.game_info .card_box > .left .top_box ul .active:nth-of-type(6)::before,
.game_info .card_box > .left .top_box ul .active:nth-of-type(7)::before {
  transform: rotate(-45deg);
}
.game_info .card_box > .left .bottom_box {
  margin-top: 1.0417vw;
  width: 30.3125vw;
  background: #0B0A27;
  border-radius: 1.1458vw;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1.2vw;
  box-sizing: border-box;
  overflow: hidden;
}
.game_info .card_box > .left .bottom_box .title {
  color: white;
  font-size: 1.1458vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}
.game_info .card_box > .left .bottom_box .title img {
  height: 2.6042vw;
}
.game_info .card_box > .left .bottom_box .des {
  font-size: 0.8854vw;
  color: #CCC;
}
.game_info .card_box > .left .bottom_box .option_menu {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.5208vw 1vw;
  margin-top: 1.0417vw;
  border-radius: 0.5208vw;
}
.game_info .card_box > .left .bottom_box .option_menu .item {
  color: #ccc;
  display: flex;
  align-items: center;
  margin-top: 0.7813vw;
}
.game_info .card_box > .left .bottom_box .option_menu .item:first-of-type {
  margin: 0;
}
.game_info .card_box > .left .bottom_box .option_menu .item .name {
  font-size: 0.8333vw;
  width: 10vw;
}
.game_info .card_box > .left .bottom_box .option_menu .item .option {
  width: 4.2vw;
}
.game_info .card_box > .left .bottom_box .option_menu .item .option .switch {
  width: fit-content;
  height: 1.0417vw;
  display: flex;
  border-left: none;
  border-radius: 2.2vw;
}
.game_info .card_box > .left .bottom_box .option_menu .item .option .switch .box {
  flex: 0 0 auto;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: white;
}
.game_info .card_box > .left .bottom_box .option_menu .item .option .switch .text {
  flex: 0 0 auto;
  width: 2vw;
  height: 1.2vw;
  font-size: 0.6vw;
  display: flex;
  line-height: 1vw;
  justify-content: center;
}
.game_info .card_box > .left .bottom_box .option_menu .item .option .active_switch {
  border: none;
  background-image: linear-gradient(90deg, #7776ff 0%, #ae2cf1 100%);
}
.game_info .card_box > .left .bottom_box .option_menu .item .option .add_button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.game_info .card_box > .left .bottom_box .option_menu .item .option .add_button .pre,
.game_info .card_box > .left .bottom_box .option_menu .item .option .add_button .add {
  flex: 0 0 auto;
  width: 1.1vw;
  height: 1.1vw;
  background-color: #fff;
  border-radius: 50%;
  color: #333;
  font-weight: bold;
  font-size: 1.0417vw;
  vertical-align: middle;
  line-height: 1.1vw;
  text-align: center;
}
.game_info .card_box > .left .bottom_box .option_menu .item .option .progress {
  width: 4.246vw;
  height: 0.146vw;
  background-image: linear-gradient(90deg, #7776ff 0%, #ae2cf1 50%, #FFFFFF 50%);
  position: relative;
}
.game_info .card_box > .left .bottom_box .option_menu .item .option .progress::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  content: '';
  width: 0.5208vw;
  height: 0.5208vw;
  background-color: #fff;
}
.game_info .card_box > .left .bottom_box .option_menu .item .info {
  margin-left: auto;
  display: flex;
  border: 1px solid #545458;
  border-radius: 0.2vw;
  overflow: hidden;
  height: 1.5vw;
  line-height: 1.5vw;
}
.game_info .card_box > .left .bottom_box .option_menu .item .info .change,
.game_info .card_box > .left .bottom_box .option_menu .item .info .info_key {
  width: 3vw;
  height: 100%;
  text-align: center;
}
.game_info .card_box > .left .bottom_box .option_menu .item .info .change {
  background-color: #545458;
}
.game_info .card_box > .right {
  width: 30.3125vw;
  background: #0B0A27;
  border-radius: 1.1458vw;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1.2vw;
}
.game_info .card_box > .right .title {
  color: white;
  font-size: 1.1458vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}
.game_info .card_box > .right .title img {
  height: 2.6042vw;
}
.game_info .card_box > .right .content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1vw;
  border-radius: 0.5208vw;
  display: flex;
}
.game_info .card_box > .right .content .left .progress {
  margin: 0.5208vw 1vw;
  width: 0.2vw;
  background-image: linear-gradient(to bottom, #7776ff 0%, #ae2cf1 100%);
}
.game_info .card_box > .right .content .left .box {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  width: 0.7813vw;
  height: 0.7813vw;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.game_info .card_box > .right .content .left .box::before {
  content: '';
  display: block;
  width: 0.3646vw;
  height: 0.3646vw;
  background-color: #7776ff;
  border-radius: 50%;
}
.game_info .card_box > .right .content .left .box:nth-of-type(2) {
  margin-top: 5vw;
}
.game_info .card_box > .right .content .left .box:nth-of-type(3) {
  margin-top: 5.8vw;
}
.game_info .card_box > .right .content .left .box:nth-of-type(4) {
  margin-top: 6vw;
}
.game_info .card_box > .right .content .right .item {
  display: flex;
  gap: 1vw;
  vertical-align: top;
  font-size: 0.8854vw;
  color: #ccc;
  align-items: flex-start;
}
.game_info .card_box > .right .content .right .item .title {
  font-size: 1.0417vw;
  vertical-align: top;
}
.game_info .card_box > .right .content .right .item .text {
  vertical-align: top;
}
.game_info .card_box > .right .content .right .item .text p {
  margin-bottom: 0.7813vw;
}
.game_info .card_box > .right .content .right .item .text .info {
  color: #42408E;
}
.game_info .card_box > .right .content .right .item:nth-of-type(2) {
  margin-top: 2.6vw;
}
.game_info .card_box > .right .content .right .item:nth-of-type(3) {
  margin-top: 2.6vw;
}
.game_info .card_box > .right .content .right .item:nth-of-type(4) {
  margin-top: 4.7vw;
}
.game_info .card_box > .right #download_button {
  margin-top: 1.0417vw;
  width: 100%;
  height: 3.3854vw;
  background-image: linear-gradient(to right, #7776ff 0%, #ae2cf1 100%);
  border-radius: 0.8854vw;
  font-weight: 500;
  font-size: 1.1458vw;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.comments {
  background-image: url(/gameModifier/image/section_two_bgi.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
}
.comments h1 {
  padding-top: 3vw;
  font-family: AlimamaShuHeiTi;
  font-size: 3.4896vw;
  font-weight: normal;
  color: #ffffff;
  text-align: center;
}
.comments h1 span {
  background: linear-gradient(to right, #7776ff, #ae2cf1);
  /* 标准的语法 */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  /* 使文字透明，显示背景色 */
  display: inline-block;
  /* 防止文字换行 */
}
.comments .des {
  text-align: center;
  font-weight: 500;
  font-size: 0.7292vw;
  color: #FFFFFF;
  line-height: 1.1979vw;
}
.comments .swiper_container {
  margin-top: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 1.0417vw;
}
.comments .swiper_container .swiper {
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.comments .swiper_container .swiper .swiper-wrapper {
  position: relative;
  display: flex;
  width: 63vw;
}
.comments .swiper_container .swiper .swiper-wrapper .swiper-slide {
  flex: 0 0 auto;
  width: 63vw;
  display: flex;
  gap: 1.5vw;
}
.comments .swiper_container .swiper .swiper-wrapper .swiper-slide .item {
  flex: 0 0 auto;
  width: 20vw;
  text-align: center;
  font-size: 1vw;
}
.comments .swiper_container .swiper .swiper-wrapper .swiper-slide .item .swiper_content {
  aspect-ratio: 20/23;
  color: #FFF;
  padding: 5vw 1.7vw 4vw;
  box-sizing: border-box;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.5vw;
}
.comments .swiper_container .swiper .swiper-wrapper .swiper-slide .item .swiper_content .user_name {
  font-size: 1.2vw;
  font-weight: bold;
  margin-bottom: 1vw;
}
.comments .swiper_container .swiper .swiper-wrapper .swiper-slide .item:nth-of-type(1) .swiper_content {
  background-image: url(/gameModifier/image/comment_1.png);
}
.comments .swiper_container .swiper .swiper-wrapper .swiper-slide .item:nth-of-type(2) .swiper_content {
  background-image: url(/gameModifier/image/comment_2.png);
}
.comments .swiper_container .swiper .swiper-wrapper .swiper-slide .item:nth-of-type(3) .swiper_content {
  background-image: url(/gameModifier/image/comment_3.png);
}
.comments .swiper_container .swiper .swiper-wrapper .swiper-slide .item img {
  width: 4.6vw;
  height: 4.6vw;
  border-radius: 50%;
  margin-top: -2.3vw;
}
.comments .swiper_container .prev,
.comments .swiper_container .next {
  width: 3.5vw;
  height: 3.5vw;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.comments .swiper_container .prev::after,
.comments .swiper_container .next::after {
  position: absolute;
  content: '';
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 0.15vw solid #ccc;
}
.comments .swiper_container .prev:hover,
.comments .swiper_container .next:hover {
  background-color: #504CA4;
}
.comments .swiper_container .prev:hover::after,
.comments .swiper_container .next:hover::after {
  border-color: #504CA4;
  padding: 0.1042vw;
}
.comments .swiper_container .prev img,
.comments .swiper_container .next img {
  width: 2vw;
}
.footer {
  background-color: #11101C;
}
