@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
:root {
	--theme-color: #2a84fe;
  --primary-color: #272b37;
}
html {
  font-size: 10px;
}
html, body, div, p, img, a, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, select, button, blockquote, table, tr, th, td, header, footer, nav, section, figure, article {
  margin: 0;
  padding: 0
}
body {
  font-family: "Microsoft Yahei", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  color: var(--primary-color);
  background-color: #e9f1f5;
  overflow-x: hidden;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}
ul, ol {
  list-style-type: none;
}
img {
  border: none;
}
a {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: var(--theme-color);
  text-decoration: none;
}
a:focus,
input:focus,
button:focus,
textarea:focus {
  outline: 0;
}

.d-block {
  display: block;
}
.d-none {
  display: none;
}
.d-flex {
  display: flex;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center {
  justify-content: center;
}
.align-items-center {
  align-items: center;
}
.flex-wrap,
.flex-wrap-sm {
  flex-wrap: wrap;
}
.flex-switch {
  flex-direction: column;
}
@media (min-width: 768px) {
  .flex-switch {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .d-md-flex {
    display: flex;
  }
  .flex-wrap-sm {
    flex-wrap: nowrap;
  }
}

.container {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.container .row,
.container .row-xs {
  margin-left: -1rem;
  margin-right: -1rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .container .row {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
}
@media (min-width: 1230px) {
  .container {
    width: 123rem;
  }
}

.hidden-xs {
  display: none !important;
}
@media (min-width: 768px) {
  .hidden-xs {
    display: block !important;
  }
}

.figure {
  position: relative;
  overflow: hidden;
}
.figure img {
  max-width: 100%;
  height: auto;
}
.cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-theme {
  background-color: #f3ebe5;
}

.ellipsis {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ellipsis-multi {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 4rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clearfix:after {
  display: block;
  content: '';
  clear: both;
}

.f-orange {
  color: #ffab00 !important;
}

/***************** header S *****************/
body > .mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: none;
  background-color: rgba(0, 0, 0, .7);
}
body > .mask.active {
  display: block;
}
.header {
  position: relative;
  z-index: 9;
  background-color: #fff;
}
.header .logo {
  flex-shrink: 0;
  padding-top: .2rem;
  padding-bottom: .2rem;
  margin-right: 5rem;
}
.header .logo a {
  display: block;
  max-height: 100%;
}
.header .logo img {
  width: auto;
  max-height: 5rem;
}
.header .panel {
  display: none;
}
.header .nav li a {
  display: block;
  font-size: 1.8rem;
  color: #5f6672;
}
.header .search form {
  position: relative;
  height: 4rem;
  padding: .4rem;
  background-color: rgba(233, 241, 245, .5);
  border-radius: 2rem;
}
.header .search form:after {
  position: absolute;
  bottom: -1rem;
  width: 100%;
  height: 1rem;
  content: '';
  background: url(../images/game-card-shadow.png) no-repeat;
  background-size: 100% 100%;
}
.header .search input {
  line-height: 3.2rem;
  border: none;
}
.header .search .iptxt {
  flex-grow: 1;
  text-indent: 1rem;
  background-color: transparent;
}
.header .search .ipbtn {
  width: 54px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#1c70ff), to(#28aafb));
  background: -webkit-linear-gradient(left, #1c70ff, #28aafb);
  background: -o-linear-gradient(left, #1c70ff, #28aafb);
  background: linear-gradient(90deg, #1c70ff, #28aafb);
  border-radius: 1.5rem;
  cursor: pointer;
}
.header .btn-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 5.2rem;
  padding: 1rem 1.5rem;
  margin-right: -1rem;
  cursor: pointer;
}
.header .btn-menu span {
  display: block;
  width: 85%;
  height: 2px;
  margin-top: 3px;
  margin-bottom: 3px;
  background-color: var(--theme-color);
  transition: all .4s ease;
}
.header .btn-menu span:nth-child(2) {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.header .btn-menu span:nth-child(3) {
  width: 75%;
}
body.open-menu .header .btn-menu span:nth-child(1) {
  width: 100%;
  transform: rotateZ(45deg);
  transform-origin: left center;
}
body.open-menu .header .btn-menu span:nth-child(2) {
  visibility: hidden;
  opacity: 0;
}
body.open-menu .header .btn-menu span:nth-child(3) {
  width: 100%;
  transform: rotateZ(-45deg);
  transform-origin: left center;
}
@media (max-width: 991px) {
  .header .panel {
    position: fixed;
    top: 5.4rem;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2rem;
    background: #fff;
    border-top: 1px solid #eee;
    overflow-y: auto;
  }
  body.open-menu .header .panel {
    display: block;
  }
  .header .nav {
    margin-bottom: 4rem;
  }
  .header .nav > li {
    border-bottom: 1px solid #eee;
  }
  .header .nav > li a {
    line-height: 5rem;
  }
}
@media (min-width: 992px) {
  .header .container {
    height: 8rem;
  }
  .header .btn-menu {
    display: none;
  }
  .header .panel {
    flex: 1;
    display: flex;
  }
  .header .nav {
    display: flex;
    flex-grow: 1;
  }
  .header .nav li {
    margin-right: 2.5rem;
  }
  .header .nav li a {
    line-height: 2.5rem;
    font-weight: 700;
  }
  .header .btn-search {
    display: block;
    width: 4rem;
    height: 4rem;
    margin-left: auto;
    background: url(../images/search-icon.png) center no-repeat;
    background-size: 2rem;
  }
  body.open-search .header .search {
    position: absolute;
    top: 8rem;
    right: 0;
    display: block;
    padding: 3rem;
    background-color: #fff;
  }
  .header .search {
    display: none;
  }
  .header .search .search-icon {
    width: 2rem;
    height: 2rem;
    margin-left: 1.2rem;
    margin-right: 1rem;
    background: url(../images/search-icon.png) no-repeat;
    background-size: contain;
  }
  .header .search .divider {
    width: 2px;
    height: 18px;
    background-color: #e9ebee;
  }
}
@media (min-width: 1230px) {
  .header .btn-search {
    display: none;
  }
  .header .search {
    display: block;
    margin-left: 2rem;
  }
}
/***************** header S *****************/

/***************** footer S *****************/
.flinks {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  color: #fff;
  background-color: #031f31;
}
.flinks .tabs .hd {
  margin-bottom: 1rem;
}
.flinks .tabs .hd li {
  margin-right: 2rem;
  font-size: 1.8rem;
  color: #5f6672;
  cursor: pointer;
}
.flinks .tabs .hd li.active {
  color: var(--theme-color);
}
.flinks .tabs .bd li {
  float: left;
  margin-right: 2.5rem;
  margin-bottom: .5rem;
}
.flinks .tabs .bd li a {
  color: inherit;
}
.footer {
  padding-top: 2rem;
  padding-bottom: 1rem;
  text-align: center;
  color: #fff;
  background-color: #04273e;
}
.footer a {
  color: inherit;
}
.footer p {
  line-height: 2.4rem;
  opacity: .6;
}
.footer .links {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  opacity: 1;
}
.footer .links a {
  position: relative;
  margin-right: 1rem;
}
.footer .links a:after {
  position: absolute;
  top: .4rem;
  content: "";
  width: 1px;
  height: 1.4rem;
  margin-left: .5rem;
  background-color: #fff;
}
.footer .links a:last-child {
  margin-right: 0;
}
.footer .links a:last-child:after {
  display: none;
}
.footer .remark {
  padding-top: .5em;
}
.footer .remark img {
  width: 20px;
  height: 20px;
}
.footer .tips {
  margin-top: 1rem;
}
.backtop {
  position: fixed;
  z-index: 90;
  right: 10px;
  bottom: 10rem;
  display: none;
  width: 4rem;
  height: 4rem;
  background: url(../images/backtop.png) no-repeat;
  cursor: pointer;
}
.backtop.active {
  display: block;
}
@media (min-width: 768px) {
  .flinks {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
  .footer {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
/***************** footer S *****************/

.tabs .hd li {
  user-select: none;
}
.tabs .bd .tabcon {
  display: none;
}
.tabs .bd .tabcon.active {
  display: block;
}

.banner {
  padding-bottom: 10rem;
  background-image: linear-gradient(90deg, #3d88fe, #256cff);
}
.banner .figure {
  text-align: right;
}
.banner .banner-text {
  align-items: flex-end;
  margin-top: -5rem;
}
.banner .banner-text .btn {
  margin-bottom: 1.2rem;
  padding: .4rem 1rem .4rem .4rem;
  line-height: 1;
  font-weight: 700;
  color: var(--primary-color);
  background-color: #fff;
  border-radius: 3rem;
}
.banner .banner-text .btn:last-child {
  margin-bottom: 0;
}
.banner .banner-text .btn i {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
  background: url(../images/android-icon.png) no-repeat;
  background-size: contain;
}
.banner .banner-text .btn .ios-icon {
  background-image: url(../images/ios-icon.png);
}
.banner .banner-text .qrcode {
  width: 11.2rem;
  height: 12rem;
  overflow: hidden;
  margin-left: 1.5rem;
  padding: 1rem;
  text-align: center;
  background-color: #fff;
  border-radius: 1rem;
}
.banner .banner-text .qrcode p {
  width: 18rem;
  white-space: nowrap;
  font-size: 2rem;
  transform: scale(.5);
  transform-origin: top left;
}
@media (min-width: 992px) {
  .banner {
    height: 55rem;
    padding-bottom: 0;
  }
  .banner .row {
    margin-left: 0;
    margin-right: 0;
  }
  .banner .banner-text {
    position: absolute;
    right: 131px;
    top: 370px;
    margin-top: -3rem;
  }
  .banner .banner-text .btn {
    min-width: 22rem;
    padding: .7rem;
    font-size: 1.8rem;
  }
  .banner .banner-text .btn i {
    width: 4rem;
    height: 4rem;
    margin-right: 1.5rem;
  }
  .banner .banner-text .qrcode {
    margin-left: 2.5rem;
  }
}
@media (min-width: 1230px) {
  .banner {
    height: 74.4rem;
  }
  .banner .banner-text {
    margin-top: 0;
  }
}


.section {
  margin-bottom: 3rem;
}
.section .section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.section .section-title h3 {
  font-size: 2.8rem;
  font-style: italic;
  color: var(--primary-color);
}
.section .section-title h3 span {
  color: var(--theme-color);
}
.section .section-title .imgtit {
  flex-grow: 1;
  height: 2.7rem;
  overflow: hidden;
  white-space: nowrap;
  text-indent: -999px;
  background: url(../images/title-yync.png) no-repeat;
  background-size: contain;
}
.section .section-title .title-discount-list {
  background-image: url(../images/title-discount-list.png);
}
.section .section-title .title-download-list {
  background-image: url(../images/title-download-list.png);
}
.section .section-title .title-new-game-list {
  background-image: url(../images/title-new-game-list.png);
}
.section .section-title .title-sytj {
  background-image: url(../images/title-sytj.png);
}
.section .section-title .title-official {
  background-image: url(../images/title-official.png);
}
.section .section-title .title-game-intro {
  background-image: url(../images/title-game-intro.png);
}
.section .section-title .more {
  display: block;
  padding-right: 1.6rem;
  color: #979ca5;
  background: url(../images/more-icon.png) right center no-repeat;
  background-size: 12px 10px;
}

.box {
  background-color: #fff;
  border-radius: .8rem;
}

.game-card .inner {
  position: relative;
}
.game-card .text {
  flex-grow: 1;
  min-width: 0;
}
.game-card .text h1,
.game-card .text h4 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}
.game-card .text h4 a {
  color: inherit;
}
.game-card .text h4 a:hover {
  color: var(--theme-color);
}
.game-card .text p {
  color: #979ca5;
}
.game-card .text .tags {
  margin-bottom: .5rem;
}
.game-card .text .tags span {
  display: inline-block;
  max-width: 50%;
  padding: .2rem .4rem;
  margin-right: .4rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1.2rem;
  background-color: #f5f6f8;
  border-radius: .2rem;
}
.game-card .text .desc {
  display: -webkit-box;
  height: 4rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .game-card-hover .item:hover .inner {
    top: -1rem;
    transform: all .1s;
  }
  .game-card-hover .item:hover .inner:after {
    position: absolute;
    left: 0;
    bottom: -1rem;
    width: 100%;
    height: 1rem;
    content: '';
    background: url(../images/game-card-shadow.png) no-repeat;
    background-size: 100% 100%;
  }
}


.game-card-hot {
  margin-top: -8rem;
}
.game-card-hot .item {
  flex: 1;
  padding: 1rem;
}
.game-card-hot .item .inner {
  padding: 1rem;
  background-color: #fff;
  border-radius: .8rem;
}
.game-card-hot .item .game-info {
  margin-bottom: 1rem;
}
.game-card-hot .item .game-info .figure {
  flex-shrink: 0;
  width: 6.4rem;
  height: 6.4rem;
  margin-right: 1.6rem;
  border-radius: 1rem;
}
.game-card-hot .item .game-poster {
  margin-bottom: 1rem;
}
.game-card-hot .item .game-desc {
  line-height: 2.6rem;
  font-size: 1.6rem;
  color: #979ca5;
}
@media (min-width: 768px) {
  .game-card-hot .item {
    width: 50%;
  }
  .game-card-hot .item .game-poster {
    margin-bottom: 2rem;
  }
}
@media (min-width: 1230px) {
  .game-card-hot {
    margin-top: -19.3rem;
  }
  .game-card-hot .item .inner {
    padding: 3rem 3rem 1rem;
  }
}

.game-card-future {
  padding-top: 1.4rem;
}
.game-card-future .item {
  flex-grow: 1;
  padding: 1rem;
}
.game-card-future .item .inner {
  padding: 1rem;
  background-color: #fff;
  border-radius: 1rem;
}
.game-card-future .item .inner .figure {
  width: 100%;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 70.18%;
  border-radius: 1rem;
}
.game-card-future .item .inner .text p {
  margin-bottom: 1rem;
  color: #5f6672;
}
@media (min-width: 768px) {
  .game-card-future {
    flex-wrap: wrap;
  }
  .game-card-future .item {
    width: 50%;
    padding-top: 8.6rem;
  }
  .game-card-future .item .inner .figure {
    top: -8.6rem;
  }
  .game-card-future .item .inner .text {
    margin-top: -7rem;
  }
}
@media (min-width: 992px) {
  .game-card-future {
    flex-wrap: nowrap;
  }
  .game-card-future .item {
    width: 25%;
  }
}

.game-card-rank .item {
  flex: 1;
  padding: 1rem;
}
.game-card-rank .item .inner {
  padding: 1rem;
  background-color: #fff;
  border-radius: .8rem;
}
.rank-list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 3rem;
}
.rank-list li .figure {
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
  margin-right: 1.6rem;
  border-radius: 2rem;
}
.rank-list li .text h4 {
  margin-bottom: .5rem;
}
.rank-list li.num:before {
  position: absolute;
  top: 0;
  left: -2rem;
  z-index: 2;
  display: block;
  content: '';
  width: 3.8rem;
  height: 4rem;
  background: url(../images/ranking-1.png) no-repeat;
  background-size: contain;
}
.rank-list li.num:nth-child(2):before {
  background-image: url(../images/ranking-2.png);
}
.rank-list li.num:nth-child(3):before {
  background-image: url(../images/ranking-3.png);
}
@media (min-width: 768px) {
  .game-card-rank {
    flex-wrap: wrap;
  }
  .game-card-rank .item {
    width: 50%;
  }
  .game-card-rank .item .inner {
    padding: 2rem 3rem 3rem;
  }
  .rank-list li.num:before {
    left: -3rem;
  }
}
@media (min-width: 992px) {
  .game-card-rank .item {
    width: 33.33%;
  }
}
@media (min-width: 1230px) {
  .rank-list li .figure {
    width: 10.8rem;
    height: 10.8rem;
  }
  .rank-list li .text h4 {
    font-size: 2rem;
  }
  .rank-list li .text .tags {
    margin-bottom: 1.5rem;
  }
}

.game-card-recom .item .figure {
  width: 100%;
  height: 0;
  padding-bottom: 55.2%;
  margin-bottom: 1rem;
  border-radius: .8rem;
}
@media (max-width: 767px) {
  .game-card-recom .item {
    margin-top: 1rem;
  }
  .game-card-recom .item .inner {
    padding: 1rem;
    background-color: #fff;
    border-radius: .8rem;
  }
}
@media (min-width: 768px) {
  .section-box {
    padding: 1rem;
    background-color: #fff;
    border-radius: 1rem;
  }
  .game-card-recom {
    padding-top: 1rem;
    margin-left: -.5rem;
    margin-right: -.5rem;
  }
  .game-card-recom .item {
    width: 33.33%;
    padding: .5rem;
  }
}
@media (min-width: 1230px) {
  .section-box {
    padding: 2rem 3rem;
  }
  .game-card-recom {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
  }
  .game-card-recom .item {
    padding: 1.2rem;
  }
}


.place {
  margin-top: 2rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 1.5rem;
}
.breadcrumb {
  font-size: 1.6rem;
  color: #5f6672;
}
.place .line {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e9ebee;  
}
@media (min-width: 768px) {
  .place {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
.filters {
  margin-bottom: 1rem;
}
.place .filters:last-child {
  margin-bottom: 0;
}
.filters .name {
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
}
.filters .option a {
  display: inline-flex;
  min-width: 6rem;
  text-align: center;
  padding: .4rem .9rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  background-color: #f4f8fa;
  border-radius: .4rem;
}
.filters .option a.active {
  color: var(--theme-color);
  background-color: #e9f2fe;
}

.game-list {
  margin-left: -.5rem;
  margin-right: -.5rem;
}
.game-list li {
  float: left;
  width: 100%;
  padding: .5rem;
}
.game-list li .inner {
  display: flex;
  align-items: center;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
  background-color: #fff;
  border-radius: 1rem;
}
.game-list li .figure {
  flex-shrink: 0;
  width: 7.2rem;
  height: 7.2rem;
  margin-right: 1rem;
  border-radius: 2rem;
}
.game-list li .text h4 {
  margin-bottom: .5rem;
}
@media (min-width: 768px) {
  .game-list li {
    width: 50%;
  }
  .game-list .item:hover .inner {
    top: -.2rem;
  }
}
@media (min-width: 1230px) {
  .game-list li {
    width: 25%;
  }
}

.search-list {
  margin-left: -1rem;
  margin-right: -1rem;
}
.search-list li {
  padding: 1rem;
}
.search-list li .inner {
  align-items: flex-start;
}
.search-list li .figure {
  width: 12rem;
  height: 12rem;
  margin-right: 2rem;
}
.search-list li .text h4 {
  margin-bottom: 1rem;
}
.search-list li .text .tags {
  margin-bottom: 1.5rem;
}
.search-list li .download {
  padding-left: 1rem;
}
.search-list li .download a {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  white-space: nowrap;
  line-height: 4rem;
  font-size: 1.6rem;
  color: #5f6672;
  border: 1px solid #c4c9d6;
  border-radius: 2rem;
}
.search-list li .download a:last-child {
  margin-bottom: 0;
}
.search-list li .download a:hover {
  border-color: #999;
}
.search-list li .download a:last-child:hover {
  border-color: #ffab00;
}
.search-list li .download i {
  display: block;
  width: 2rem;
  height: 2rem;
  margin-right: .5rem;
  background: url(../images/android-icon-gray.png) center no-repeat;
  background-size: contain;
}
.search-list li .download .ios-icon {
  background-image: url(../images/ios-icon-gray.png);
}
@media (min-width: 768px) {
  .search-list li {
    width: 50%;
  }
}
@media (min-width: 1230px) {
  .search-list li .inner {
    padding: 3rem;
  }
  .search-list li .text {
    padding-top: 1rem;
  }
}


.pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.pagination ul {
  display: flex;
  justify-content: center;
}
.pagination span,
.pagination a {
  display: block;
  padding: .7rem 1rem;
  margin: .3rem;
  background-color: #fff;
  border: 1px solid #cecece;
}
.pagination .active span,
.pagination a:hover {
  color: #fff;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}


.banner-game {
  height: 16rem;
}
.banner-game .figure {
  height: inherit;
}
@media (min-width: 768px) {
  .banner-game {
    height: 32rem;
  }
}

.detail .place {
  margin-top: -2.5rem;
}


.game-base .item {
  flex-wrap: wrap;
  flex: 1;
  padding: 1rem;
  background-color: #fff;
  border-radius: .8rem;
}
.game-base .item .game-info {
  flex: 1;
}
.game-base .item .figure {
  flex-shrink: 0;
  width: 10rem;
  height: 10rem;
  margin-right: 1rem;
}
.game-base .item .text h1 {
  font-size: 2rem;
}
.game-base .item .text p {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #5f6672;
}
.game-base .item .text .meta span {
  display: block;
  margin-bottom: 1rem;
}
.game-base .item .download {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.game-base .item .download a {
  display: flex;
  align-items: center;
  width: 49%;
  padding: 1rem 2rem;
  white-space: nowrap;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(90deg, #24bdb9 3%, #4fe7d3 98%);
  border-radius: 3rem;
}
.game-base .item .download a:last-child {
  margin-bottom: 0;
  background-image: linear-gradient(90deg, #1c70ff 3%, #28aafb 98%);
}
.game-base .item .download a i {
  width: 2.2rem;
  height: 2.4rem;
  margin-right: 1rem;
  background: url(../images/android-icon-white.png) center no-repeat;
  background-size: contain;
}
.game-base .item .download a .ios-icon {
  background-image: url(../images/ios-icon-white.png);
}
.game-base .qrcode {
  display: none;
  margin-left: 2rem;
  padding: 3rem;
  text-align: center;
  color: #5f6672;
  background-color: #fff;
  border-radius: .8rem;
}
.game-base .qrcode .figure {
  width: 13rem;
}
@media (min-width: 768px) {
  .game-base .item {
    flex-wrap: nowrap;
    padding: 3rem 4rem;
  }
  .game-base .item .figure {
    width: 14rem;
    height: 14rem;
    margin-right: 2rem;
  }
  .game-base .item .text h1 {
    font-size: 2.8rem;
  }
  .game-base .item .text .meta {
    display: flex;
  }
  .game-base .item .text .meta span {
    width: 50%;
  }
  .game-base .item .download {
    display: block;
    width: auto;
  }
  .game-base .item .download a {
    width: auto;
    margin-bottom: 1rem;
    padding: 1.5rem 2.5rem;
  }
  .game-base .qrcode {
    display: block;
  }
}

.game-official {
  margin-top: 2rem;
  padding: 2rem 0;
}
.game-official .item {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-bottom: 1rem;
}
.game-official .item .hd {
  position: relative;
  margin-bottom: 1rem;
}
.game-official .item .hd:before {
  position: absolute;
  top: 50%;
  left: -2rem;
  display: block;
  content: '';
  width: .5rem;
  height: 2.4rem;
  background-color: var(--theme-color);
  transform: translateY(-50%);
}
.game-official .item .hd h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary-color);
}
.game-official .item .bd {
  line-height: 3rem;
  font-size: 1.6rem;
  color: #5f6672;
}
.activity-list {
  position: relative;
}
.activity-list:after {
  position: absolute;
  top: 0;
  left: 12rem;
  bottom: 0;
  display: block;
  width: 2px;
  height: 100%;
  content: '';
  background-color: #fff;
  box-shadow: 6px 0 12px 0 rgb(58 58 58 / 50%);
}
.activity-list li {
  display: flex;
  align-items: center;
  background-color: #fff;
}
.activity-list li:first-child {
  color: #ca9e47;
  background-color: #fbf5e6;
}
.activity-list li:nth-child(odd) {
  background-color: #fafafb;
}
.activity-list li:first-child span {
  line-height: 4.8rem;
}
.activity-list li:first-child p {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: inherit;
}
.activity-list li span {
  flex-shrink: 0;
  min-width: 12rem;
  text-align: center;
  line-height: 6.4rem;
  font-size: 1.6rem;
  font-weight: bold;
}
.activity-list li p {
  flex-grow: 1;
  padding-left: 2rem;
  line-height: 2.4rem;
  color: #5f6672;
}
@media (min-width: 992px) {
  .game-official .item {
    width: 50%;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .game-official .item .hd:before {
    left: -3rem;
    width: 1rem;
  }
}

.post-body {
  margin-bottom: 3rem;
  padding-top: 2rem;
  overflow: hidden;
  line-height: 1.75;
  font-size: 1.8rem;
  color: #5f6672;
}
.post-body img {
  max-width: 100%;
  height: auto;
}

.game-intro {
  padding: 1rem;
}
.game-intro .game-gallery {
  width: 100%;
  height: 40.8rem;
  overflow-y: hidden;
  overflow-x: scroll;
  white-space: nowrap;
}
.game-gallery::-webkit-scrollbar {
  _display: none;
}
.game-intro .game-gallery video {
  display: inline-block;
  width: 739px;
  height: 408px;
  margin-right: 1rem;
  border-radius: 1rem;
  object-fit: cover;
  cursor: pointer;
}
.game-intro .game-gallery .preview-imgs {
  display: inline-block;
  height: inherit;
  white-space: nowrap;
}
.game-intro .game-gallery .preview-imgs .item {
  display: inline-block;
  height: inherit;
  margin-right: 1rem;
  border-radius: 1rem;
  cursor: pointer;
}
.game-intro .game-gallery .preview-imgs .item img {
  width: auto;
  height: 100%;
}
@media (min-width: 768px) {
  .game-intro {
    padding: 2rem 3rem;
  }
}



@media (min-width: 992px) {
  .content {
    flex: 1;
  }
  .sidebar {
    width: 350px;
    margin-left: 2rem;
  }
}
.content .section-title {
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 2.5rem;
}
.widget {
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #fff;
  border-radius: .8rem;
}
.sidebar .section-title {
  margin-bottom: 2rem;
}
.widget .rank-list li {
  margin-top: 0;
  margin-bottom: 1rem;
}

.blog-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background-color: #fff;
  border-radius: .8rem;
}
.blog-item .figure {
  position: relative;
  width: 30%;
  margin-right: 2rem;
}
.blog-item .figure .imgbox {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 71.5%;
}
.blog-item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-item .text h4 {
  margin-bottom: 1rem;
  font-size: 2rem;
}
.blog-item .text h4 a {
  color: var(--primary-color);
}
.blog-item .text p {
  color: #5f6672;
}
.blog-item .text .ellipsis-multi {
  flex: 1;
  line-height: 1.5;
  height: auto;
  -webkit-line-clamp: 5;
}
.blog-item .text .meta {
  margin-top: auto;
  margin-top: 1rem;
}
.blog-item .text .meta span {
  margin-right: 1em;
}
@media (min-width: 992px) {
  .blog-item .text {

  }
}

.txtlist li {
  line-height: 4rem;
  border-bottom: 1px solid #f5f5f5;
}
.txtlist li .date {
  font-size: 1.2rem;
  color: #979ca5;
}

.post {
  padding: 1.5rem 1rem;
}
.post .post-title {
  text-align: center;
}
.post .post-title h1 {
  margin-bottom: 1rem;
  font-size: 3rem;
  color: var(--primary-color);
}
.post .post-title p {
  color: #979ca5;
}
.post .post-title p .sep {
  display: inline-block;
  padding-left: .5em;
  padding-right: .5em;
}
.post .post-nav p {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.related {
  padding: 1.5rem 1rem;
}
.related .section-title {
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .post {
    padding: 5rem 7rem;
  }
  .post .post-nav p {
    width: 48%;
  }
  .related {
    padding: 4rem;
  }
  .related .txtlist li {
    display: flex;
    justify-content: space-between;
    width: 48%;
  }
}