/* base */
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  padding: 40px 35px;
  box-sizing: border-box;
  transition: all 0.2s;
}
@media screen and (max-width: 1240px) {
  body {
    padding: 10px;
  }
}
@media screen and (max-width: 901px) {
  body {
    padding: 0;
  }
}
@media screen and (max-width: 901px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 900px) {
  .is-mobile {
    display: none !important;
  }
}
@media screen and (min-width: 901px) and (max-width: 912px) {
  body {
    zoom: 0.6;
    -moz-transform: scale(0.6);
    -moz-transform-origin: 0 0;
  }
}
@media screen and (min-width: 913px) and (max-width: 990px) {
  body {
    zoom: 0.7;
    -moz-transform: scale(0.7);
    -moz-transform-origin: 0 0;
  }
}
@media screen and (min-width: 991px) and (max-width: 1330px) {
  body {
    zoom: 0.9;
    -moz-transform: scale(0.9);
    -moz-transform-origin: 0 0;
  }
}
@media screen and (min-width: 991px) and (max-width: 1220px) {
  body {
    zoom: 0.8;
    -moz-transform: scale(0.8);
    -moz-transform-origin: 0 0;
  }
}
header {
  position: absolute;
  top: 80px;
  z-index: 9999;
  width: 100%;
  left: 0;
  height: 70px;
  padding: 0 35px;
  transition: top 0.2s;
  box-sizing: border-box;
}
@media screen and (max-width: 901px) {
  header {
    padding: 0 10px;
    top: 10px;
  }
}
header.pc nav {
  max-width: 1246px;
  height: 100%;
  background: #ffffff;
  border-radius: 22px;
  padding: 0 16px;
  box-sizing: border-box;
}
header.pc nav .logo-box .logo {
  height: 70px;
  width: 110px;
}
header.pc nav .menu {
  font-size: 15px;
  margin-right: 20px;
}
header.pc nav .menu a {
  font-weight: 400;
  padding: 10px;
  margin: 5px;
}
header.pc nav .menu a.active {
  color: #7f54f6;
}
header.pc nav .layui-input-group {
  width: 202px;
  height: 42px;
  position: relative;
}
header.pc nav .layui-input-group .layui-input {
  border-radius: 8px;
  background-color: #ebebeb;
  height: 100%;
  padding-right: 44px;
  width: 100%;
}
header.pc nav .layui-input-group .search-btn {
  width: 42px;
  height: 100%;
  background: #7f54f6;
  border-radius: 8px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
}
header.mobile nav {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 22px;
  padding: 0 16px;
  box-sizing: border-box;
}
header.mobile nav .logo-box .logo {
  height: 50px;
  width: 78px;
}
header.mobile nav .menu {
  padding: 5px;
  border: 0;
}
header.mobile nav .menu i {
  font-size: 25px;
  font-weight: bold;
}
.layui-dropdown {
  width: calc(100% - 20px);
  left: 10px !important;
  top: 58px !important;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0);
  border: 0;
  border-radius: 0 0 22px 22px;
  overflow: hidden;
}
.layui-dropdown .layui-dropdown-menu li {
  position: relative;
  border-bottom: 1px solid #f6f6f6;
}
.layui-dropdown .layui-dropdown-menu li:last-child {
  border: 0;
}
.layui-dropdown .layui-dropdown-menu li .layui-menu-body-title {
  padding: 0 15px;
  font-weight: bold;
  height: 54px;
  line-height: 54px;
}
.layui-dropdown .layui-dropdown-menu li::after {
  content: "\e7eb";
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 0;
  top: 13px;
  right: 15px;
}
main {
  width: 100%;
}
@media screen and (max-width: 901px) {
  main {
    width: 100%;
    min-width: 350px;
  }
}
main.pointer-none {
  pointer-events: none;
}
main section {
  width: 1240px;
}
@media screen and (max-width: 901px) {
  main section {
    width: 100%;
    box-sizing: border-box;
  }
}
footer {
  height: 400px;
  background: #32313a;
  border-radius: 28px;
  padding: 30px 100px 150px 100px;
  box-sizing: border-box;
  margin-top: 40px;
  position: relative;
}
footer .logo {
  height: 212px;
  width: 212px;
}
@media screen and (max-width: 901px) {
  footer {
    height: 350px;
    height: auto;
    padding: 16px 20px;
    border-radius: 0;
    margin-top: 10px;
  }
  footer .logo {
    height: 120px;
    width: 120px;
    position: absolute;
    right: 25px;
    top: 50px;
  }
  footer a {
    width: 100%;
    flex: 1;
  }
  footer .menu {
    flex-direction: column;
    margin-left: 0;
  }
  footer .menu li {
    margin-top: 10px;
  }
  footer .menu a {
    padding: 0;
  }
}
footer .menu {
  margin-left: -15px;
}
footer .menu a {
  font-weight: 400;
  padding: 10px;
  margin: 5px;
  color: white;
}
footer .message {
  font-size: 12px;
  font-weight: 500;
  color: #7c7c7d;
  line-height: 20px;
  margin-top: 28px;
  max-width: 50%;
}
@media screen and (max-width: 901px) {
  footer .message {
    max-width: 100%;
  }
}
footer .share-box {
  padding-top: 36px;
  margin-top: 30px;
  border-top: 1px solid #47464e;
}
footer .share-box .social-share a {
  padding: 5px;
}
footer .share-box .social-share a img {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 901px) {
  footer .share-box {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
    margin-top: 20px;
  }
  footer .share-box .social-share {
    margin-bottom: 14px;
  }
}
.navigation {
  margin-bottom: 40px;
}
.navigation a {
  font-size: 18px;
}
.navigation a.active {
  color: #8f84e7;
  font-weight: 900;
}
.navigation i {
  font-size: 18px;
  margin: 0 7px;
}
/* main */
.advertisement-block {
  height: 210px;
  background: #f7f7f7;
  border-radius: 8px 8px 8px 8px;
  opacity: 1;
  border: 1px solid #d9d9d9;
}
@media screen and (max-width: 901px) {
  .advertisement-block {
    width: 100vw;
    margin-left: -10px;
    border-radius: 0;
    border: 0;
    height: 313px;
    margin-bottom: 20px;
    margin-top: 10px;
    margin-bottom: 0;
  }
}
.index-page .block-1 {
  min-height: 1044px;
  background-color: #7f54f6;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.index-page .block-1:before {
  content: " ";
  height: 601px;
  width: 390px;
  background-image: url("../img/bg-3.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.index-page .block-1::after {
  content: " ";
  height: 628px;
  width: 438px;
  background-image: url("../img/bg-2.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 901px) {
  .index-page .block-1 {
    min-height: 270px;
    border-radius: 0;
    background-size: 120% 120%;
    background-position-y: 10%;
    padding-bottom: 20px;
    flex: 1;
  }
  .index-page .block-1:before {
    height: 184px;
    width: 129px;
    display: none;
  }
  .index-page .block-1::after {
    height: 169px;
    width: 110px;
    display: none;
  }
}
.index-page .block-1 .search-box {
  margin-top: 190px;
}
@media screen and (max-width: 901px) {
  .index-page .block-1 .search-box {
    margin-top: 100px;
  }
}
.index-page .block-1 .search-box .title {
  font-size: 48px;
  font-weight: bold;
  color: #ffffff;
}
@media screen and (max-width: 901px) {
  .index-page .block-1 .search-box .title {
    font-size: 24px;
  }
}
.index-page .block-1 .search-box .search {
  width: 630px;
  height: 56px;
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 901px) {
  .index-page .block-1 .search-box .search {
    width: 90%;
    margin-top: 20px;
  }
}
.index-page .block-1 .search-box .search .layui-input {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  font-size: 16px;
  padding: 0 20px;
  line-height: 56px;
  padding-right: 160px;
}
.index-page .block-1 .search-box .search .layui-btn {
  width: 128px;
  height: 44px;
  background: #7f54f6;
  border-radius: 8px;
  font-size: 16px;
  position: absolute;
  right: 7px;
  top: 7px;
  line-height: 44px;
}
@media screen and (max-width: 901px) {
  .index-page .block-1 .search-box .search .layui-btn {
    width: 44px;
    padding: 0;
  }
}
.index-page .block-1 .search-box .tag-box {
  width: 630px;
}
@media screen and (max-width: 901px) {
  .index-page .block-1 .search-box .tag-box {
    width: 90%;
  }
}
.index-page .block-1 .search-box .tag-box .tag {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 34px 34px 34px 34px;
  border: 1px solid #7f54f6;
  margin-top: 10px;
  font-size: 14px;
  height: 32px;
  line-height: 32px;
  color: white !important;
}
@media screen and (max-width: 901px) {
  .index-page .block-1 .search-box .tag-box .tag {
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
    margin-left: 0;
    font-size: 12px;
  }
}
.index-page .block-1 .apps {
  width: 1240px;
  height: 580px;
  background: #dfe5fe;
  border-radius: 22px 22px 0 0;
  border: 1px solid #ffffff;
  position: relative;
  z-index: 10;
  padding: 37px 49px 54px 50px;
  box-sizing: border-box;
  border-bottom: 0;
}
.index-page .block-1 .apps .title {
  font-size: 24px;
  font-weight: bold;
  color: #32313a;
}
.index-page .block-1 .apps .swiper-button {
  width: 24px;
  height: 24px;
  border-radius: 100px;
  cursor: pointer;
}
.index-page .block-1 .apps .swiper-button.swiper-prev {
  color: white;
  background: #d6d0f6;
  margin-right: 20px;
}
.index-page .block-1 .apps .swiper-button.swiper-next {
  color: #7f54f6;
  background: #ffffff;
}
.index-page .block-1 .apps .swiper-button:active {
  opacity: 0.6;
}
.index-page .block-1 .apps .swiper {
  margin-top: 14px;
}
.index-page .block-1 .apps .advertisement {
  height: 250px;
  width: 1200px;
  background: #f7f7f7;
  border-radius: 8px 8px 8px 8px;
  opacity: 1;
  border: 1px solid #d9d9d9;
  margin-top: 50px;
  margin-left: -30px;
}
.index-page .advertisement-row {
  width: 100%;
  height: 313px;
  background: #f5f5f5;
}
@media screen and (max-width: 901px) {
  .index-page .block-2 {
    padding-top: 20px;
    padding: 10px;
  }
}
.index-page .block-2 .game-box {
  width: 1240px;
}
@media screen and (max-width: 901px) {
  .index-page .block-2 .game-box {
    width: 100%;
  }
}
.index-page .block-3 {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background: #fefaff;
  margin-top: 40px;
  box-sizing: border-box;
  padding-bottom: 30px;
}
@media screen and (max-width: 901px) {
  .index-page .block-3 {
    padding: 0 10px;
    background: transparent;
    margin-top: 0;
    padding-top: 0;
  }
}
.index-page .block-3 .game-box {
  width: 1240px;
}
@media screen and (max-width: 901px) {
  .index-page .block-3 .game-box {
    width: 100%;
  }
}
@media screen and (max-width: 901px) {
  .game-group-box {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .game-group-box .game-group:last-child {
    margin-right: 0;
  }
}
.game-group-box .swiper-wrapper.flex .game-group {
  margin-bottom: 20px;
}
.category-page,
.detail-page {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 28px;
  background-color: #fefaff;
}
@media screen and (max-width: 901px) {
  .category-page,
  .detail-page {
    border-radius: 0;
  }
  .category-page section,
  .detail-page section {
    margin-top: 85px;
    padding: 10px;
  }
}
@media screen and (max-width: 901px) {
  .detail-page .content {
    flex-direction: column;
  }
}
.detail-page .content .left {
  width: 100%;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .detail-game-info {
    width: 100%;
  }
}
.detail-page .content .left .detail-game-info .img {
  width: 100px;
  height: 100px;
  border-radius: 10px 10px 10px 10px;
  margin-right: 16px;
}
.detail-page .content .left .detail-game-info .title {
  font-size: 30px;
  font-weight: 900;
  color: #1e2b3a;
  word-wrap: break-word;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .detail-game-info .title {
    font-size: 20px;
  }
}
.detail-page .content .left .detail-game-info .sub-title {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  word-wrap: break-word;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .detail-game-info .sub-title {
    font-size: 12px;
    margin-top: 0;
  }
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .game-detail-info {
    flex-direction: column;
  }
}
.detail-page .content .left .game-detail-info .tag-box {
  margin-top: 15px;
}
.detail-page .content .left .game-detail-info .tag-box .tag {
  background: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
  font-size: 12px;
  height: 28px;
  line-height: 28px;
  border-radius: 14px 14px 14px 14px;
  opacity: 1;
  border: 1px solid #b3b3b3;
  min-width: 50px;
  cursor: pointer;
  margin-right: 5px;
  box-sizing: border-box;
  padding: 0 10px;
}
.detail-page .content .left .game-detail-info .tag-box .tag.active {
  border: 0;
  background: linear-gradient(180deg, #2a73f5 0%, #5995ff 100%);
  color: white;
}
.detail-page .content .left .game-detail-info .detail-info-rate .layui-inline {
  font-size: 16px;
  font-weight: bold;
  color: #ffac2d;
  line-height: 1.5;
}
.detail-page .content .left .game-detail-info .detail-info-rate .layui-rate {
  padding: 0;
}
.detail-page .content .left .game-detail-info .detail-info-rate .layui-rate i {
  font-size: 16px;
}
.detail-page .content .left .game-detail-info .game-des {
  margin-top: 20px;
  min-height: 112px;
  background: #ffffff;
  border-radius: 16px 16px 16px 16px;
  opacity: 1;
  padding: 10px 9px 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  line-height: 21px;
}
.detail-page .content .left .game-detail-info .game-des .text {
  word-wrap: break-word;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .game-detail-info .game-des {
    display: none !important;
  }
}
.detail-page .content .left .game-detail-info .advertisement {
  width: 336px;
  height: 280px;
  background: #f7f7f7;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #d9d9d9;
  margin-left: 27px;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .game-detail-info .advertisement {
    width: 100vw !important;
    margin-left: -10px;
    border: 0;
    border-radius: 0;
  }
}
.detail-page .content .left .game-banner-swiper {
  margin-top: 30px;
  width: 870px;
  position: relative;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .game-banner-swiper {
    width: 100%;
  }
}
.detail-page .content .left .game-banner-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.detail-page .content .left .game-banner-swiper .swiper-prev,
.detail-page .content .left .game-banner-swiper .swiper-next {
  width: 28px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: 0;
  z-index: 10;
}
.detail-page .content .left .game-banner-swiper .swiper-prev:hover,
.detail-page .content .left .game-banner-swiper .swiper-next:hover {
  opacity: 0.8;
}
.detail-page .content .left .game-banner-swiper .swiper-next {
  left: auto;
  right: 0;
}
.detail-page .content .left .advertisement-row {
  margin-top: 30px;
  width: 100%;
  height: 224px;
  background: #f5f5f5;
  border-radius: 8px 8px 8px 8px;
  opacity: 1;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .advertisement-row {
    width: 100vw;
    margin-left: -10px;
    border: 0;
    border-radius: 0;
    height: 313px;
    margin-top: 5px;
  }
}
.detail-page .content .left .block {
  margin-top: 20px;
}
.detail-page .content .left .block .block-title {
  font-size: 22px;
  font-weight: 900;
  color: #44434b;
  line-height: 26px;
  margin-bottom: 10px;
}
.detail-page .content .left .block .block-title.font-18 {
  font-size: 18px;
}
.detail-page .content .left .block .content {
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  line-height: 22px;
}
.detail-page .content .left .block .content.bg-white {
  background: #ffffff;
  border-radius: 4px 4px 4px 4px;
  padding: 20px;
}
.detail-page .content .left .block.type1 .block-title {
  color: #706f75;
  margin-bottom: 20px;
}
.detail-page .content .left .block.type1 .content {
  color: #454545;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .score-box {
    flex-direction: column;
  }
}
.detail-page .content .left .score-box .score {
  flex: 0 0 300px;
  font-size: 12px;
  font-weight: 500;
  color: #000000;
  line-height: 14px;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .score-box .score {
    flex: 0 0 auto;
    margin-bottom: 30px;
  }
}
.detail-page .content .left .score-box .score .num {
  font-size: 50px;
  font-weight: bold;
  color: #000000;
  line-height: 59px;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .score-box .progress-box {
    width: 100%;
  }
}
.detail-page .content .left .score-box .progress-box .progress-num {
  flex: 0 0 120px;
  font-size: 12px;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .score-box .progress-box .progress-num {
    flex: 0 0 70px;
  }
}
.detail-page .content .left .score-box .progress-box .progress .layui-progress {
  height: 12px;
}
.detail-page .content .left .score-box .progress-box .progress .layui-progress .layui-progress-bar {
  height: 100%;
}
.detail-page .content .left .score-box .progress-box .progress:nth-child(1) .layui-progress-bar {
  background: #8cc7a4;
}
.detail-page .content .left .score-box .progress-box .progress:nth-child(2) .layui-progress-bar {
  background: #b6d691;
}
.detail-page .content .left .score-box .progress-box .progress:nth-child(3) .layui-progress-bar {
  background: #fad966;
}
.detail-page .content .left .score-box .progress-box .progress:nth-child(4) .layui-progress-bar {
  background: #f5b45d;
}
.detail-page .content .left .score-box .progress-box .progress:nth-child(5) .layui-progress-bar {
  background: #f19167;
}
.detail-page .content .left .download-box .title {
  line-height: 28px;
  font-size: 24px;
}
.detail-page .content .left .download-box .download {
  margin-left: 14px;
  flex: 0 0 520px;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .download-box .download {
    flex: 0 0 auto;
    margin-top: 20px;
    width: 100%;
    margin-left: 0;
    display: flex;
    justify-content: space-between;
  }
}
.detail-page .content .left .download-box .download .btn {
  width: 190px;
  height: 64px;
  background: #8d83e0;
  border-radius: 16px 16px 16px 16px;
  opacity: 1;
  box-sizing: border-box;
}
.detail-page .content .left .download-box .download .btn img {
  height: 34px;
  width: 34px;
}
.detail-page .content .left .download-box .download .btn .margin-left-20 {
  margin-left: 16px;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .download-box .download .btn {
    flex: 1;
    height: 42px;
    border-radius: 8px;
  }
  .detail-page .content .left .download-box .download .btn img {
    height: 22px;
    width: 22px;
  }
  .detail-page .content .left .download-box .download .btn .margin-left-20 {
    margin-left: 6px;
  }
}
.detail-page .content .left .download-box .download .btn:active {
  opacity: 0.7;
}
.detail-page .content .left .download-box .download .btn .btn-title {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  line-height: 21px;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .download-box .download .btn .btn-title {
    font-size: 13px;
  }
}
.detail-page .content .left .download-box .download .btn .btn-sub-title {
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  line-height: 14px;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .download-box .download .btn .btn-sub-title {
    font-size: 11px;
  }
}
.detail-page .content .left .detail-img {
  height: 400px;
  width: 100%;
  margin-top: 30px;
}
@media screen and (max-width: 901px) {
  .detail-page .content .left .detail-img {
    height: 164px;
    margin-top: 20px;
  }
}
.detail-page .content .left .detail-img img {
  border-radius: 8px;
  height: 100%;
  width: 100%;
}
.detail-page .content .left .search-input {
  border: 1px solid transparent;
}
.detail-page .content .left .search-input .layui-input {
  height: 70px;
  border-radius: 8px 0 0 8px;
  font-size: 22px;
  font-weight: 500;
  color: #333333;
}
.detail-page .content .left .search-input .search-btn {
  width: 70px;
  height: 70px;
  background: #8f84e7;
  border-radius: 8px 8px 8px 8px;
  opacity: 1;
  margin-left: -10px;
}
.detail-page .content .left .search-input .search-btn:active {
  opacity: 0.8;
}
.detail-page .content .left .search-input .search-btn .layui-icon-search {
  font-size: 30px;
}
.detail-page .content .information {
  background: #ffffff;
  border-radius: 8px 8px 8px 8px;
  padding: 18px;
  padding-top: 0;
  height: 280px;
  box-sizing: border-box;
}
@media screen and (max-width: 901px) {
  .detail-page .content .information {
    margin-top: 20px;
    padding: 18px 28px;
  }
}
.detail-page .content .information .title {
  font-size: 14px;
  font-weight: 500;
  color: #54535a;
  line-height: 21px;
  margin-bottom: 24px;
}
.detail-page .content .information-item {
  height: 32px;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #7f54f6;
  overflow: hidden;
  margin-bottom: 17px;
}
.detail-page .content .information-item .item-title {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  min-width: 107px;
  background: #7f54f6;
  opacity: 1;
  padding-left: 20px;
  box-sizing: border-box;
  border-radius: 0 8px 8px 0;
  padding-right: 10px;
}
.detail-page .content .information-item .item-title.max {
  width: 130px;
  flex: 0 0 190px;
}
.detail-page .content .information-item .item-title div {
  word-wrap: break-word;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.detail-page .content .information-item .text {
  font-size: 14px;
  font-weight: 400;
  color: #636268;
  padding-left: 10px;
  padding-right: 10px;
}
.detail-page .content .information-item .text div {
  word-wrap: break-word;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.detail-page .content .right {
  flex: 0 0 336px;
  margin-left: 30px;
}
@media screen and (max-width: 901px) {
  .detail-page .content .right {
    width: 100%;
    margin-left: 0;
    flex: 0 0 auto;
  }
}
.detail-page .content .right .right-advertisement {
  width: 100%;
  height: 600px;
  background: #f5f5f5;
  border-radius: 8px 8px 8px 8px;
  opacity: 1;
  border: 1px solid #ffffff;
  position: sticky;
  top: 20px;
}
@media screen and (max-width: 901px) {
  .bottom-game-list-box {
    flex-direction: column;
  }
}
.block-title-box {
  margin-bottom: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 901px) {
  .block-title-box {
    padding-top: 0;
    margin-bottom: 10px;
    margin-top: 0;
  }
}
.block-title-box .block-title {
  font-size: 24px;
  font-weight: bold;
  color: #32313a;
}
@media screen and (max-width: 901px) {
  .block-title-box .block-title {
    font-size: 17px;
  }
}
.block-title-box .more-btn {
  width: 83px;
  height: 34px;
  background: #7f54f6;
  border-radius: 8px;
  color: white;
  font-size: 14px;
  line-height: 30px;
}
@media screen and (max-width: 901px) {
  .block-title-box .more-btn {
    width: 64px;
    height: 24px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 14px;
    padding: 0;
    color: #7f54f6 !important;
    background-color: transparent;
  }
  .block-title-box .more-btn i {
    font-size: 12px;
  }
}
.block-title-box .more-btn.border {
  background: transparent;
  border: 1px solid #7f54f6;
  color: #7f54f6;
}
.block-title-box .more-btn.max {
  width: 190px;
  height: 40px;
  font-size: 14px;
  font-weight: bold;
}
.game-list-box {
  margin-top: 20px;
}
.game-list-box .goods-min-item {
  margin-right: 29px;
}
@media screen and (min-width: 900px) {
  .game-list-box .goods-min-item:nth-child(9n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 901px) {
  .game-list-box .goods-min-item {
    margin-right: 10px;
  }
  .game-list-box .goods-min-item:nth-child(4n) {
    margin-right: 0;
  }
}
.game-list-box .game-item-row.min {
  flex: 0 0 276px;
  margin-right: 21px;
  margin-bottom: 20px;
}
.game-list-box .game-item-row.min:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 901px) {
  .game-list-box .game-item-row.min {
    flex: 0 0 auto;
    margin-right: 0;
  }
}
.game-square-swiper {
  padding-bottom: 12px;
  margin-bottom: 60px;
}
@media screen and (max-width: 901px) {
  .game-square-swiper {
    margin-bottom: 0;
  }
}
.game-square-swiper .swiper-slide {
  width: 190px;
  height: 190px;
}
@media screen and (max-width: 901px) {
  .game-square-swiper .swiper-slide {
    width: 100px;
    height: 140px;
  }
}
.goods-min-item {
  width: 112px;
  margin-bottom: 24px;
  box-sizing: border-box;
}
@media screen and (max-width: 901px) {
  .goods-min-item {
    width: calc((100vw - 60px) / 4);
    margin-bottom: 10px;
  }
}
.goods-min-item img {
  width: 100%;
  height: 112px;
  border-radius: 26px;
}
@media screen and (max-width: 901px) {
  .goods-min-item img {
    height: calc((100vw - 50px) / 4);
    border-radius: 16px;
  }
}
.goods-min-item .game-title {
  font-size: 14px;
  font-weight: 400;
  color: #44464b;
  line-height: 16px;
  word-wrap: break-word;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 5px;
  height: 32px;
}
.game-group {
  width: 290px;
  flex: 0 0 290px;
  height: 246px !important;
  background: #ffffff;
  border-radius: 8px 8px 8px 8px;
  opacity: 1;
  border: 1px solid #efebe6;
  overflow: hidden;
  margin-right: 27px;
}
.game-group.swiper-slide {
  margin-right: 0;
}
.game-group .game-img-max {
  border-radius: 8px 8px 8px 8px;
}
@media screen and (max-width: 901px) {
  .game-group {
    width: 240px;
    flex: 0 0 240px;
    height: 210px !important;
    margin-right: 10px;
  }
}
@media screen and (min-width: 900px) {
  .game-group:nth-child(4n) {
    margin-right: 0;
  }
}
.game-group .game-img-max {
  width: 100%;
  height: 164px;
}
@media screen and (max-width: 901px) {
  .game-group .game-img-max {
    height: 143px;
  }
}
.game-group .game-info {
  height: 46px;
  padding: 0 16px;
}
@media screen and (max-width: 901px) {
  .game-group .game-info {
    height: 40px;
  }
}
.game-group .game-info .game-img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
}
@media screen and (max-width: 901px) {
  .game-group .game-info .game-img {
    width: 40px;
    height: 40px;
  }
}
.game-group .game-info .game-title {
  margin-left: 8px;
}
.game-group .game-info .game-title .title {
  font-size: 14px;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-weight: 400;
  color: #000000;
}
.game-group .game-info .game-title .rate-box .layui-rate {
  padding: 0;
}
.game-group .game-info .game-title .rate-box .layui-rate .layui-icon,
.game-group .game-info .game-title .rate-box .layui-rate .layui-icon-rate-half {
  margin-right: 0;
  font-size: 14px;
  padding-bottom: 1px;
}
.game-group .game-info .game-title .rate-box span.layui-inline {
  color: #ffac2d;
  font-size: 14px;
  line-height: 1.5;
}
.game-group .game-info .game-title .ranking-icon {
  margin-left: 6px;
  height: 30px;
  width: 22px;
}
.game-square-item {
  width: 190px;
  flex: 0 0 190px;
  height: 190px;
  margin-right: 19px;
  box-sizing: border-box;
  background: white;
}
@media screen and (max-width: 901px) {
  .game-square-item {
    width: 100px;
    flex: 0 0 100px;
    height: 120px;
    border-radius: 16px;
    margin-right: 10px;
  }
}
.game-square-item:last-child {
  margin-right: 0;
}
.game-square-item .image-box {
  border-radius: 24px;
  height: 150px;
  width: 100%;
  border: 2px solid white;
  box-sizing: border-box;
}
@media screen and (max-width: 901px) {
  .game-square-item .image-box {
    height: 90px;
  }
}
.game-square-item .image-box img {
  width: 105px;
  height: 80px;
  border-radius: 14px;
}
@media screen and (max-width: 901px) {
  .game-square-item .image-box img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    margin-top: 4px;
  }
}
.game-square-item .title {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  word-wrap: break-word;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-top: 10px;
  width: 150px;
  text-align: center;
}
@media screen and (max-width: 901px) {
  .game-square-item .title {
    font-size: 12px;
    margin-top: 5px;
  }
}
.game-item-row {
  width: 400px;
  flex: 0 0 400px;
  height: 130px;
  border-radius: 24px;
  opacity: 1;
  margin-right: 20px;
  padding: 13px;
  background-color: #e4f7ff;
  margin-bottom: 22px;
  box-sizing: border-box;
  align-items: center;
}
.game-item-row:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 901px) {
  .game-item-row {
    width: 100%;
    margin-right: 0;
    height: 88px;
    flex: 0 0 100%;
    padding: 5px;
    margin-bottom: 10px;
  }
}
.game-item-row .game-img {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  border-radius: 16px;
  line-height: 0;
  font-size: 0;
}
@media screen and (max-width: 901px) {
  .game-item-row .game-img {
    width: 77px;
    height: 77px;
    flex: 0 0 77px;
  }
}
.game-item-row .game-info {
  margin-left: 9px;
  padding: 6px 0;
  height: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 901px) {
  .game-item-row .game-info {
    padding-top: 3px;
    padding-bottom: 3px;
  }
}
.game-item-row .game-info .title {
  font-size: 20px;
  font-weight: 500;
  color: #333333;
  line-height: 21px;
  padding-bottom: 2px;
  word-wrap: break-word;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 901px) {
  .game-item-row .game-info .title {
    font-size: 16px;
    line-height: 16px;
  }
}
.game-item-row .game-info .rate-box .layui-rate {
  padding: 0;
}
.game-item-row .game-info .rate-box .layui-rate .layui-icon,
.game-item-row .game-info .rate-box .layui-rate .layui-icon-rate-half {
  margin-right: 0;
  font-size: 14px;
  padding-bottom: 1px;
}
.game-item-row .game-info .rate-box span.layui-inline {
  color: #ffac2d;
  font-size: 14px;
  line-height: 1.5;
}
.game-item-row .game-info .tag-box .tag {
  background: transparent;
  margin-top: 5px;
  font-size: 12px;
  height: 24px;
  line-height: 24px;
}
@media screen and (max-width: 901px) {
  .game-item-row .game-info .tag-box .tag {
    font-size: 10px;
    height: 18px;
    line-height: 17px;
    padding: 0 5px;
    min-width: 40px;
  }
}
.game-item-row.min {
  height: 100px;
  width: 336px;
  margin-right: 0;
  margin-bottom: 10px;
  padding-top: 8px;
}
.game-item-row.min .tag-box .tag {
  background: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
  font-size: 12px;
  height: 22px;
  line-height: 22px;
}
@media screen and (max-width: 901px) {
  .game-item-row.min .tag-box .tag {
    font-size: 12px;
    height: 18px;
    color: #8378df;
    line-height: 12px;
    padding: 0 5px;
    min-width: 40px;
    border-radius: 26px 26px 26px 26px;
    opacity: 1;
    border: 1px solid #8378df;
  }
}
@media screen and (max-width: 901px) {
  .game-item-row.min {
    width: 100%;
  }
}
.game-item-row.min .game-img {
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
  border-radius: 8px;
}
.game-item-row.min .game-info {
  box-sizing: border-box;
}
@media screen and (max-width: 901px) {
  .game-item-row.min .game-info {
    height: 80px;
  }
}
.game-item-row.min .game-info .title {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  line-height: 18px;
}
@media screen and (max-width: 901px) {
  .game-item-row.min .game-info .title {
    -webkit-line-clamp: 1;
    font-size: 14px;
    line-height: 16px;
  }
}
.game-item-row.min .game-info .title.font-14 {
  font-size: 14px;
  line-height: 16px;
}
.game-popular-item {
  width: 400px;
  height: 270px;
  background: #ffffff;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 20px 25px;
  box-sizing: border-box;
  overflow: hidden;
}
.game-popular-item:nth-child(3n) {
  margin-right: 0;
}
.game-popular-item.swiper-slide {
  height: 196px;
  width: 344px;
  flex: 0 0 344px;
  padding: 0;
  margin-right: 0;
  position: relative;
  margin-bottom: 0;
}
.game-popular-item.swiper-slide .game-image {
  height: 100%;
  position: absolute;
}
.game-popular-item.swiper-slide .game-title {
  position: absolute;
  height: 50px;
  height: 139px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, #121212 100%);
  border-radius: 0px 0px 8px 8px;
  opacity: 1;
  width: 100%;
  bottom: 0;
  font-size: 18px;
  color: white;
  padding: 0 20px;
  font-weight: 400;
  display: flex !important;
  padding-bottom: 16px;
  box-sizing: border-box;
}
.game-popular-item.swiper-slide .game-title .text {
  word-wrap: break-word;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.game-popular-item.swiper-slide .tag-box {
  position: absolute;
  top: 2px;
  left: 16px;
}
@media screen and (max-width: 901px) {
  .game-popular-item {
    height: 196px;
    padding: 0;
    margin-right: 0;
    position: relative;
  }
}
.game-popular-item .game-image {
  height: 176px;
  width: 100%;
  border-radius: 16px 16px 0 0;
}
@media screen and (max-width: 901px) {
  .game-popular-item .game-image {
    height: 100%;
    position: absolute;
  }
}
.game-popular-item .game-title {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
  line-height: 23px;
  margin-top: 10px;
  word-wrap: break-word;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 901px) {
  .game-popular-item .game-title {
    position: absolute;
    height: 50px;
    background: rgba(18, 18, 18, 0.6);
    border-radius: 0px 0px 8px 8px;
    opacity: 1;
    width: 100%;
    bottom: 0;
    font-size: 18px;
    color: white;
    padding: 0 20px;
    line-height: 50px;
    font-weight: 400;
  }
}
@media screen and (max-width: 901px) {
  .game-popular-item .tag-box {
    position: absolute;
    top: 2px;
    left: 16px;
  }
}
.game-popular-item .tag-box .tag {
  height: 24px;
  line-height: 24px;
  padding: 0 10px;
  background: #7f54f6;
  border-radius: 26px 26px 26px 26px;
  opacity: 1;
  border: 1px solid #8378df;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 12px;
  margin-right: 12px;
}
.game-popular-item.min {
  width: 336px;
  height: 260px;
}
@media screen and (max-width: 901px) {
  .game-popular-item.min {
    width: 100%;
    position: relative;
    height: 196px;
  }
}
.game-popular-item.min .game-image {
  height: 160px;
}
@media screen and (max-width: 901px) {
  .game-popular-item.min .game-image {
    height: 100%;
  }
}
.game-popular-item.min .game-title {
  font-size: 16px;
  line-height: 19px;
}
@media screen and (max-width: 901px) {
  .game-popular-item.min .game-title {
    line-height: 50px;
  }
}
.swiper-game-img-max-box {
  width: 1240px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}
@media screen and (max-width: 901px) {
  .swiper-game-img-max-box {
    width: 100%;
    margin-top: 10px;
  }
}
@media screen and (max-width: 901px) {
  .swiper-game-img-max-box .swiper-game-img-max {
    margin-top: 10px;
  }
}
.swiper-game-img-max-box .title {
  font-size: 24px;
  font-weight: bold;
  color: #32313a;
}
@media screen and (max-width: 901px) {
  .swiper-game-img-max-box .title {
    font-size: 17px;
  }
}
.swiper-game-img-max-box .swiper-button {
  width: 24px;
  height: 24px;
  border-radius: 100px;
  cursor: pointer;
}
.swiper-game-img-max-box .swiper-button.swiper-prev {
  color: white;
  background: #d6d0f6;
  margin-right: 20px;
}
.swiper-game-img-max-box .swiper-button.swiper-next {
  color: #7f54f6;
  background: #ffffff;
}
.swiper-game-img-max-box .swiper-button:active {
  opacity: 0.6;
}
.bg-0 {
  background-color: #8378df;
}
.bg-1 {
  background-color: #e693b8;
}
.bg-2 {
  background-color: #69bb8f;
}
.bg-3 {
  background-color: #e8976f;
}
.bg-4 {
  background-color: #8378df;
}
.bg-5 {
  background-color: #e693b8;
}
.bg-6 {
  background-color: #69bb8f;
}
.bg-7 {
  background-color: #e8976f;
}
.bg-8 {
  background-color: #8378df;
}
.bg-9 {
  background-color: #e693b8;
}
.bg-light-0 {
  background-color: #e6e4f9;
}
.bg-light-1 {
  background-color: #fbefff;
}
.bg-light-2 {
  background-color: #fef9f2;
}
.bg-light-3 {
  background-color: #fdf2f3;
}
.bg-light-4 {
  background-color: #f1feed;
}
.bg-light-5 {
  background-color: #f1fbff;
}
.bg-light-6 {
  background-color: #f3f1ff;
}
.bg-light-7 {
  background-color: #fae9f1;
}
.bg-light-8 {
  background-color: #edfffd;
}
.bg-light-9 {
  background-color: #e6e4f9;
}
