* {
  padding: 0;
  margin: 0;
  font-family: Roboto, roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, PingFang SC, Noto Sans, Roboto, Microsoft Yahei, sans-serif, Apple Color Emoji, Segoe UI Emoji;
  font-style: normal;
  font-display: swap;
}
a {
  text-decoration: none;
}
ul,
ol,
li {
  list-style: none;
}
img {
  margin: 0;
  padding: 0;
}
:root {
  font-size: 10px;
}
.ad-box,
.ads-1 {
  text-align: center;
}
.adHeight {
  width: 100%;
  height: 252px;
}
.adTitle {
  color: #CCC;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-align: center;
}
@media (min-width: 356px) {
  .adHeight {
    width: 100%;
    height: 312px;
  }
}
@media (min-width: 748px) {
  .adHeight {
    width: 100%;
    height: 280px;
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.htmlWrap {
  background-color: #6347AC;
}
.wrap {
  max-width: 1920px;
  min-height: 90vh;
  margin: 0 auto;
}
.content {
  max-width: 1280px;
  min-height: 90vh;
  margin: 0 auto;
}
.loading {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  margin: 20px;
}
.itemLink {
  display: block;
  width: calc(100% - 16px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 8px;
  border-radius: 10%;
  cursor: pointer;
  position: relative;
}
.itemLink .itemLogo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10%;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
.itemLink .shadow {
  display: none;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 10%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 75%, #000 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.itemLink .itemName {
  display: none;
  width: 80%;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 26.4px;
  padding: 2px 10%;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.itemLink:hover {
  transform: scale(1.1);
  transition: all 0.2s ease-out;
  box-shadow: 0px -2px 8px 0px rgba(0, 0, 0, 0.2);
}
.itemLink:hover .shadow {
  display: block;
}
.itemLink:hover .itemName {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}
.dialogMask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  width: 100%;
  height: 100vh;
}
.downloadDialog {
  display: none;
  max-width: 766px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
  padding: 16px;
  background-color: #FFFFFF;
  border-radius: 12px;
}
.downloadDialog .dialogClose {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}
.downloadDialog .dialogClose svg {
  width: 30px;
  height: 30px;
}
.downloadDialog .dialogTitle {
  color: #000;
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
  margin: 34px 0 16px 0;
  text-align: center;
}
.downloadDialog .onlineGames {
  margin: 0 26px;
  display: grid;
  grid-gap: 0 4px;
  grid-template-columns: repeat(6, calc((100% - 20px) / 6));
}
.downloadDialog .btnGroup {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 42px 0 64px 0;
}
.downloadDialog .btnGroup .btn {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  border-radius: 4px;
  cursor: pointer;
}
.downloadDialog .btnGroup .btn .text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin: 14px 0;
}
.downloadDialog .btnGroup .online {
  background-color: #6842FF;
}
.downloadDialog .btnGroup .online .text {
  color: #FFFFFF;
}
.downloadDialog .btnGroup .download {
  display: none;
  background-color: #F1EDFF;
}
.downloadDialog .btnGroup .download .text {
  color: #6842FF;
}
.downloadDialog .btnGroup .noneLink {
  display: none;
  background-color: #DDDDDD;
  cursor: no-drop;
}
.downloadDialog .btnGroup .noneLink .text {
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .downloadDialog {
    width: calc(100% - 32px);
    left: 0;
    transform: translateX(16px) translateY(-50%);
    padding: 0;
    margin: 0;
  }
  .downloadDialog .dialogClose {
    margin: 10px;
    margin-bottom: 0;
  }
  .downloadDialog .dialogClose svg {
    width: 24px;
    height: 24px;
  }
  .downloadDialog .dialogTitle {
    font-size: 26px;
    margin: 5px 16px 8px 16px;
  }
  .downloadDialog .onlineGames {
    margin: 8px;
    grid-gap: 0 4px;
    grid-template-columns: repeat(3, calc((100% - 8px) / 3));
  }
  .downloadDialog .btnGroup {
    margin: 8px;
    margin-bottom: 39px;
  }
  .downloadDialog .btnGroup .btn {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .downloadDialog .dialogTitle {
    font-size: 26px;
    line-height: 30px;
    margin: 16px 0;
  }
  .downloadDialog .onlineGames {
    grid-gap: 0 4px;
    grid-template-columns: repeat(3, calc((100% - 8px) / 3));
  }
  .downloadDialog .btnGroup {
    margin: 24px 0 48px 0;
  }
}
.commentWrap .comment {
  width: auto;
  display: flex;
  position: relative;
}
.commentWrap .comment .avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 5px;
  border: 1px solid #E4E4E4;
  flex-shrink: 0;
  cursor: pointer;
}
.commentWrap .comment .avatar .avatarImg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.commentWrap .comment .avatar .refresh {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eeeeee99;
  z-index: 1;
}
.commentWrap .comment .avatar:hover .refresh {
  display: block;
}
.commentWrap .comment #commentTextarea {
  resize: none;
  width: 100%;
  height: 150px;
  padding: 12px;
  padding-bottom: 64px;
  color: #999;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #E4E4E4;
  background-color: #F5F5F5;
  border-radius: 4px;
}
.commentWrap .comment #commentTextarea:focus-visible,
.commentWrap .comment #commentTextarea:focus {
  border: none;
  outline: 2px solid #6842FF;
}
.commentWrap .comment .commentBtn {
  position: absolute;
  width: fit-content;
  right: 12px;
  bottom: 16px;
  padding: 10px 16px;
  border-radius: 4px;
  background: #C3B3FF;
  text-align: center;
  cursor: pointer;
}
.commentWrap .comment .commentBtn .commentBtnText {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.commentWrap .commentList .commentItem {
  display: flex;
  align-items: center;
}
.commentWrap .commentList .commentItem .commentImg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-right: 16px;
  border-radius: 50%;
  border: 1px solid #E4E4E4;
}
.commentWrap .commentList .commentItem .commentInfo {
  width: 100%;
  padding: 16px 0 12px 0;
  border-bottom: 1px solid #E4E4E4;
  word-break: break-word;
}
.commentWrap .commentList .commentItem .commentInfo .commentDate {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}
.commentWrap .commentList .commentItem .commentInfo .commentText {
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 4px;
}
.show {
  margin-top: 16px;
}
.show .commentMore,
.show .commentLess {
  display: none;
  align-items: center;
  justify-content: center;
  color: #6842FF;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}
.show .commentMore svg,
.show .commentLess svg {
  width: 12px;
  height: 12px;
  margin-left: 10px;
}
.emojiWrap {
  padding: 20px;
  margin-top: 16px;
  margin-bottom: 24px;
  border: 1px solid #E4E4E4;
}
.emojiWrap .emojiTitle {
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
  text-align: center;
}
.emojiWrap .emojiList {
  display: flex;
  align-items: center;
  justify-content: center;
}
.emojiWrap .emojiList .emojiItem {
  margin: 0 20px;
  text-align: center;
  cursor: pointer;
}
.emojiWrap .emojiList .emojiItem img {
  width: 32px;
  height: 32px;
}
.emojiWrap .emojiList .emojiItem .emojiName {
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  margin: 10px 0 2px 0;
}
.emojiWrap .emojiList .emojiItem .clickNum {
  color: #1A1A1A;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}
@media only screen and (max-width: 500px) {
  .commentWrap .comment #commentTextarea {
    height: 72px;
  }
  .emojiWrap {
    margin-bottom: 8px;
  }
  .emojiWrap .emojiList::-webkit-scrollbar {
    /* 隐藏滚动条 */
    display: none;
    /* Chrome Safari */
  }
  .emojiWrap .emojiList {
    overflow-x: scroll;
    /* 隐藏滚动条 */
    scrollbar-width: none;
    /* firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
  }
  .emojiWrap .emojiList .emojiItem {
    margin: 0 8px;
  }
  .emojiWrap .emojiList .emojiItem img {
    width: 24px;
    height: 24px;
  }
}
@media only screen and (min-width: 501px) and (max-width: 768px) {
  .commentWrap .comment #commentTextarea {
    height: 72px;
  }
  .emojiWrap {
    margin-bottom: 8px;
  }
  .emojiWrap .emojiList .emojiItem {
    margin: 0 16px;
  }
  .emojiWrap .emojiList .emojiItem img {
    width: 24px;
    height: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .commentWrap .comment #commentTextarea {
    height: 72px;
  }
  .emojiWrap .emojiList::-webkit-scrollbar {
    /* 隐藏滚动条 */
    display: none;
    /* Chrome Safari */
  }
  .emojiWrap .emojiList {
    overflow-x: scroll;
    /* 隐藏滚动条 */
    scrollbar-width: none;
    /* firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
  }
  .emojiWrap .emojiList .emojiItem {
    margin: 0 16px;
  }
  .emojiWrap .emojiList .emojiItem img {
    width: 24px;
    height: 24px;
  }
}
.footerWrap {
  background-color: #F5F5F5;
  border-top: 1px solid #E4E4E4;
}
.footerWrap .footer {
  padding: 32px 100px;
}
.footerWrap .footer .logoWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footerWrap .footer .logoWrap .logoLink .logoImg {
  height: 32px;
  width: auto;
  object-fit: cover;
}
.footerWrap .footer .welcome {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  margin: 24px 0 16px 0;
}
.footerWrap .footer .htmlList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0;
}
.footerWrap .footer .htmlList .htmlItem {
  padding: 0 32px;
  text-align: center;
  border-left: 1px solid #D9D9D9;
}
.footerWrap .footer .htmlList .htmlItem .htmlLink {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.footerWrap .footer .htmlList .htmlItem:first-child {
  border-left: none;
}
.backTop {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 40px;
  cursor: pointer;
}
.backTop .svgIcon {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.15)) drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.1));
}
.backTop .topHover {
  display: none;
}
.backTop:hover .topDefault {
  display: none;
}
.backTop:hover .topHover {
  display: block;
}
.cookie-notice-container {
  background-color: rgba(255, 255, 255, 0.5);
  display: none;
  font-size: 16px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #6f6f6f;
  text-align: center;
  z-index: 999999;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.cookie-notice-container .container {
  max-height: 40px;
  font-size: 10px;
  max-width: 900px;
  z-index: 2;
  position: relative;
  text-align: center;
  padding: 10px;
  padding-right: 100px;
  margin: 0 auto;
}
.cookie-notice-container .container a,
.cookie-notice-container .container button,
.cookie-notice-container .container video {
  -webkit-tap-highlight-color: transparent;
  outline: 0;
  text-decoration: none;
}
.cookie-notice-container .container .moreJump {
  color: #0186FF;
}
.cookie-notice-container .container button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(-8px, -50%);
  display: block;
  padding: 0 25px;
  height: 30px;
  line-height: 30px;
  background: #0186FF;
  border: none;
  color: #fff;
  margin: 0 auto;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  cursor: pointer;
}
.cookie-notice-container:before {
  content: '';
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  z-index: -1;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 767px) {
  .footerWrap .footer {
    padding: 32px 16px;
  }
  .footerWrap .footer .logoWrap .logoLink .logoImg {
    height: 27px;
  }
  .footerWrap .footer .welcome {
    margin: 16px 0;
  }
  .footerWrap .footer .htmlList {
    margin: 0;
  }
  .footerWrap .footer .htmlList .htmlItem {
    width: 100%;
    padding: 10px 16px;
    border-left: none;
  }
  .footerWrap .footer .htmlList .htmlItem .htmlLink {
    font-size: 16px;
  }
  .backTop {
    right: 16px;
  }
  .cookie-notice-container {
    font-size: 14px;
  }
}
.indexWrap {
  background-color: #6347AC;
}
.content {
  padding: 24px;
  padding-bottom: 60px;
}
.topGames {
  display: grid;
  grid-gap: 0 0;
  grid-template-columns: repeat(11, calc(100% / 11));
  margin-bottom: 12px;
}
.topGames .gameItem {
  flex: 1;
}
.topGames .gameItem .itemLink .itemName {
  width: calc(100% - 16px);
  font-size: 14px;
  padding: 3px 8px;
}
.contentWrap {
  display: flex;
  margin: 8px 8px 0 8px;
}
.contentWrap .leftContent {
  width: calc(100% - 365px);
  padding: 24px 16px;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.contentWrap .leftContent .left {
  margin: 0 8px;
}
.contentWrap .leftContent .left .guide {
  font-size: 16px;
  font-weight: 400;
}
.contentWrap .leftContent .left .guide .textLink {
  color: #6842FF;
  cursor: pointer;
}
.contentWrap .leftContent .left .guide .textLink:hover {
  color: #6347AC;
}
.contentWrap .leftContent .left .guide .text {
  color: #999999;
}
.contentWrap .leftContent .left .gameInfoDiv {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo {
  width: calc(54% - 16px);
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo .gameInfoTop {
  display: flex;
  align-items: center;
  margin-top: 18px;
  margin-bottom: 16px;
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo .gameInfoTop .gameLogo {
  width: 100px;
  height: 100px;
  margin-right: 16px;
  border-radius: 10%;
  flex-shrink: 0;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo .gameInfoTop .gameDesp .gameName {
  color: #1A1A1A;
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo .gameInfoTop .gameDesp .gameRating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  margin-top: 6.5px;
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo .gameInfoTop .gameDesp .gameRating .starRating {
  display: flex;
  align-items: center;
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo .gameInfoTop .gameDesp .gameRating .starRating svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo .infoList {
  display: grid;
  grid-gap: 14px 12px;
  grid-template-columns: repeat(2, calc((100% - 12px) / 2));
  padding: 14px 0;
  margin-top: 16px;
  border-top: 1px solid #E4E4E4;
  border-bottom: 1px solid #E4E4E4;
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo .infoList .infoItem {
  display: flex;
  align-items: center;
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo .infoList .infoItem .infoIcon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 12px;
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo .infoList .infoItem .infoText .infoTitle {
  color: #999;
  font-weight: 500;
  line-height: 120%;
  font-size: 12px;
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo .infoList .infoItem .infoText .infoTxt {
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}
.contentWrap .leftContent .left .gameInfoDiv .gameInfo .infoList .infoItem .infoText .infoTxt svg {
  width: 14px;
  height: 14px;
}
.contentWrap .leftContent .left .gameInfoDiv .adDiv {
  width: 46%;
}
.contentWrap .leftContent .left .safeWrap {
  display: flex;
  align-items: center;
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 4px;
  border: 1px solid #DDD5FF;
  background: #F9F8FF;
}
.contentWrap .leftContent .left .safeWrap .safeSvg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-left: auto;
}
.contentWrap .leftContent .left .safeWrap .safeTxt {
  margin-right: 20px;
}
.contentWrap .leftContent .left .safeWrap .safeTxt .safeTitle {
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}
.contentWrap .leftContent .left .safeWrap .safeTxt .safeText {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 4px;
}
.contentWrap .leftContent .left .swiper {
  position: relative;
  margin: 16px 0;
  overflow-x: hidden;
}
.contentWrap .leftContent .left .swiper #leftBtn {
  left: 0px;
}
.contentWrap .leftContent .left .swiper #rightBtn {
  right: 0px;
}
.contentWrap .leftContent .left .swiper .swiperBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.contentWrap .leftContent .left .swiper .swiperBtn svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.15)) drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.1));
}
.contentWrap .leftContent .left .swiper .swiperBtn .hover {
  display: none;
}
.contentWrap .leftContent .left .swiper .swiperBtn:hover .normal {
  display: none;
}
.contentWrap .leftContent .left .swiper .swiperBtn:hover .hover {
  display: block;
}
.contentWrap .leftContent .left .swiper .swiperList {
  display: flex;
  flex-direction: row;
}
.contentWrap .leftContent .left .swiper .swiperList .swiperItem {
  padding-right: 10px;
  position: relative;
}
.contentWrap .leftContent .left .swiper .swiperList .swiperItem .swiperImg img {
  height: 248px;
  width: auto;
  border-radius: 8px;
}
.contentWrap .leftContent .left .swiper .swiperList .swiperItem:last-child {
  padding-right: 0;
}
.contentWrap .leftContent .left .block {
  padding-top: 16px;
}
.contentWrap .leftContent .left .block .title {
  color: #1A1A1A;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  margin: 16px 0;
}
.contentWrap .leftContent .left .block .editor {
  color: #1A1A1A;
  word-wrap: break-word;
}
.contentWrap .leftContent .left .block .editor h1,
.contentWrap .leftContent .left .block .editor h1 span,
.contentWrap .leftContent .left .block .editor h2,
.contentWrap .leftContent .left .block .editor h2 span {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  margin-top: 20px;
  margin-bottom: 12px;
}
.contentWrap .leftContent .left .block .editor h3,
.contentWrap .leftContent .left .block .editor h3 span,
.contentWrap .leftContent .left .block .editor h4,
.contentWrap .leftContent .left .block .editor h4 span {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 16px;
}
.contentWrap .leftContent .left .block .editor p,
.contentWrap .leftContent .left .block .editor p span,
.contentWrap .leftContent .left .block .editor li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 16px;
}
.contentWrap .leftContent .left .block .btnGroup {
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contentWrap .leftContent .left .block .btnGroup .appleBtn {
  margin-right: 16px;
}
.contentWrap .leftContent .left .block .btnGroup .downloadBtn {
  width: calc(50% - 8px);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #CCC;
  cursor: pointer;
}
.contentWrap .leftContent .left .block .btnGroup .downloadBtn svg {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}
.contentWrap .leftContent .left .block .btnGroup .downloadBtn .text {
  color: #333;
  font-size: 16px;
  font-weight: 500;
}
.contentWrap .leftContent .left .block .btnGroup .downloadBtn:hover {
  background-color: #F2F2F2;
}
.contentWrap .leftContent .left .block .btnGroup .playNow {
  background: #6842ff;
}
.contentWrap .leftContent .left .block .btnGroup .playNow .text {
  color: #FFF;
}
.contentWrap .leftContent .left .block .btnGroup .playNow:hover {
  background: #6347ac;
}
.contentWrap .leftContent .left .block .disclaimer {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: 120%;
}
.contentWrap .leftContent .title {
  color: #1A1A1A;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  margin: 8px;
}
.contentWrap .leftContent .hotOnlineGames {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contentWrap .leftContent .hotOnlineGames .gameItem {
  width: calc(100% / 6);
}
.contentWrap .rightContent {
  width: 345px;
  margin-right: 20px;
}
.contentWrap .rightContent .popularGames .gameItem {
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 14px;
  background: #FFF;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.contentWrap .rightContent .popularGames .gameItem .itemlink {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.contentWrap .rightContent .popularGames .gameItem .itemlink .itemLogo {
  width: 88px;
  height: 88px;
  border-radius: 10%;
  flex-shrink: 0;
}
.contentWrap .rightContent .popularGames .gameItem .itemlink .itemInfo {
  margin-left: 16px;
}
.contentWrap .rightContent .popularGames .gameItem .itemlink .itemInfo .itemName {
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  word-break: break-all;
}
.contentWrap .rightContent .popularGames .gameItem .itemlink .itemInfo .itemRating {
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.contentWrap .rightContent .popularGames .gameItem .itemlink .itemInfo .itemRating .starRating {
  display: flex;
  align-items: center;
}
.contentWrap .rightContent .popularGames .gameItem .itemlink .itemInfo .itemRating .starRating svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
.contentWrap .rightContent .popularGames .gameItem:hover {
  transform: scale(1.06);
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 767px) {
  .indexWrap {
    background-color: #FFFFFF;
  }
  .content {
    padding: 0;
  }
  .topGames {
    display: none;
  }
  .contentWrap {
    display: block;
    margin: 0;
  }
  .contentWrap .leftContent {
    width: 100%;
    padding: 0;
    border-radius: none;
    box-shadow: none;
  }
  .contentWrap .leftContent .left {
    padding: 16px;
    margin: 0;
  }
  .contentWrap .leftContent .left .guide {
    display: none;
  }
  .contentWrap .leftContent .left .gameInfoDiv {
    display: block;
    margin-top: 0;
  }
  .contentWrap .leftContent .left .gameInfoDiv .gameInfo {
    width: 100%;
  }
  .contentWrap .leftContent .left .gameInfoDiv .gameInfo .gameInfoTop {
    margin-top: 0;
  }
  .contentWrap .leftContent .left .gameInfoDiv .gameInfo .gameInfoTop .gameLogo {
    width: 96px;
    height: 96px;
  }
  .contentWrap .leftContent .left .gameInfoDiv .gameInfo .gameInfoTop .gameDesp .gameName {
    font-size: 22px;
    line-height: 120%;
  }
  .contentWrap .leftContent .left .gameInfoDiv .adDiv {
    width: 100%;
  }
  .contentWrap .leftContent .left .safeWrap {
    padding: 12px 16px;
  }
  .contentWrap .leftContent .left .swiper::-webkit-scrollbar {
    /* 隐藏滚动条 */
    display: none;
    /* Chrome Safari */
  }
  .contentWrap .leftContent .left .swiper {
    margin: 16px -16px;
    overflow-x: scroll;
    /* 隐藏滚动条 */
    scrollbar-width: none;
    /* firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
  }
  .contentWrap .leftContent .left .swiper .swiperBtn {
    display: none;
  }
  .contentWrap .leftContent .left .swiper .swiperList {
    padding: 0 16px;
  }
  .contentWrap .leftContent .left .swiper .swiperList .swiperItem .swiperImg img {
    height: 180px;
  }
  .contentWrap .leftContent .left .block {
    padding-top: 8px;
  }
  .contentWrap .leftContent .left .block .title {
    font-size: 22px;
  }
  .contentWrap .leftContent .left .block .editor h1,
  .contentWrap .leftContent .left .block .editor h1 span,
  .contentWrap .leftContent .left .block .editor h2,
  .contentWrap .leftContent .left .block .editor h2 span {
    font-size: 20px;
    line-height: 28px;
  }
  .contentWrap .leftContent .left .block .btnGroup {
    display: block;
  }
  .contentWrap .leftContent .left .block .btnGroup .downloadBtn {
    width: 100%;
    margin-bottom: 12px;
  }
  .contentWrap .leftContent .left .block .btnGroup .downloadBtn svg {
    width: 24px;
    height: 24px;
  }
  .contentWrap .leftContent .left .block .btnGroup .downloadBtn .text {
    font-size: 14px;
  }
  .contentWrap .leftContent .title {
    font-size: 22px;
  }
  .contentWrap .leftContent .bottomBlock {
    padding: 8px;
    background-color: #6347AC;
  }
  .contentWrap .leftContent .bottomBlock .title {
    color: #FFFFFF;
  }
  .contentWrap .leftContent .hotOnlineGames .gameItem {
    width: calc(100% / 3);
  }
  .contentWrap .rightContent {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .topGames .gameItem .itemLink .itemName {
    font-size: 12px;
    line-height: 18px;
  }
  .contentWrap .leftContent .left .gameInfoDiv {
    display: block;
  }
  .contentWrap .leftContent .left .gameInfoDiv .gameInfo {
    width: 100%;
  }
  .contentWrap .leftContent .left .gameInfoDiv .gameInfo .infoList {
    margin-bottom: 16px;
  }
  .contentWrap .leftContent .left .gameInfoDiv .adDiv {
    width: 100%;
  }
  .contentWrap .leftContent .left .block .btnGroup {
    display: block;
  }
  .contentWrap .leftContent .left .block .btnGroup .downloadBtn {
    width: 100%;
    margin-bottom: 12px;
  }
  .contentWrap .leftContent .title {
    font-size: 22px;
  }
  .contentWrap .leftContent .hotOnlineGames .gameItem {
    width: calc(100% / 3);
  }
}
