/* 公共样式 */
:root {
  --pm-c: #A81E1E;
  --dm-c: #fdeaea;
  --bg-c: #f5f5f5;
  --br-c: #eee;
}

.bg-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0, transparent 100%);
}

.mb03 {
  margin-bottom: .3rem;
}

.bg-f7 {
  background-color: #f7f7f7;
}

.bg-f8 {
  background-color: #f8f8f8;
}

.bg-f {
  background-color: #ffffff;
}

/* 禁用iPhone中Safari的字号自动调整 */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
}

/*修改UIKIT框架自带样式*/
body,
html {
  /* background-color: var(--bg-c); */
  max-width: 750px;
  margin: 0 auto;
}

div {
  box-sizing: border-box;
}

a,
a:hover {
  text-decoration: none;
}

ol,
ul,
p {
  padding: 0;
  margin: 0;
  list-style: none;
}

/*图片高清*/
img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.my-uk-flex-between {
  justify-content: space-between;
}

.my-uk-flex-1 {
  flex: 1;
}

/*边框样式*/
.b-a {
  border: 1px solid var(--br-c) !important;
}

.b-b {
  border-bottom: 1px solid var(--br-c) !important;
}

.b-t {
  border-top: 1px solid var(--br-c) !important;
}

.b-l {
  border-left: 1px solid var(--br-c) !important;
}

.b-r {
  border-right: 1px solid var(--br-c) !important;
}

.b-t-dashed {
  border-top: 1px dashed var(--br-c) !important;
}

.b-b-dashed {
  border-bottom: 1px dashed var(--br-c) !important;
}

/* 外边距 */
.m-a-5 {
  margin: 0.05rem;
}

.m-a-10 {
  margin: 0.1rem;
}

.m-a-20 {
  margin: 0.2rem;
}

.m-a-30 {
  margin: 0.3rem;
}

/* 内边距  */
.p-a-5 {
  padding: 0.05rem;
}

.p-a-10 {
  padding: 0.1rem;
}

.p-a-20 {
  padding: 0.2rem;
}

.p-a-30 {
  padding: 0.3rem;
}

/* 内上边距 */
.p-t-0 {
  padding-top: 0 !important;
}

.p-t-5 {
  padding-top: 0.05rem;
}

.p-t-10 {
  padding-top: 0.1rem;
}

.p-t-15 {
  padding-top: 0.15rem;
}

.p-t-20 {
  padding-top: 0.2rem;
}

.p-t-30 {
  padding-top: 0.3rem;
}

/* 内下边距 */
.p-b-0 {
  padding-bottom: 0;
}

.p-b-5 {
  padding-bottom: 0.05rem;
}

.p-b-10 {
  padding-bottom: 0.1rem;
}

.p-b-15 {
  padding-bottom: 0.15rem;
}

.p-b-20 {
  padding-bottom: 0.2rem;
}

.p-b-30 {
  padding-bottom: 0.3rem;
}

/* 内左边距 */
.p-l-0 {
  padding-left: 0 !important;
}

.p-l-5 {
  padding-left: 0.05rem;
}

.p-l-10 {
  padding-left: 0.1rem;
}

.p-l-15 {
  padding-left: 0.15rem;
}

.p-l-20 {
  padding-left: 0.2rem;
}

.p-l-30 {
  padding-left: 0.3rem;
}

/* 内右边距 */
.p-r-0 {
  padding-right: 0 !important;
}

.p-r-5 {
  padding-right: 0.05rem;
}

.p-r-10 {
  padding-right: 0.1rem;
}

.p-r-15 {
  padding-right: 0.15rem;
}

.p-r-20 {
  padding-right: 0.2rem;
}

.p-r-30 {
  padding-right: 0.3rem;
}

.m-t-b-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

/* 内上边距 */
.m-t-0 {
  margin-top: 0rem;
}

.m-t-5 {
  margin-top: 0.05rem;
}

.m-t-10 {
  margin-top: 0.1rem;
}

.m-t-15 {
  margin-top: 0.15rem;
}

.m-t-20 {
  margin-top: 0.2rem;
}

.m-t-30 {
  margin-top: 0.3rem;
}

/* 外下边距 */
.m-b-0 {
  margin-bottom: 0 !important;
}

.m-b-5 {
  margin-bottom: 0.05rem !important;
}

.m-b-10 {
  margin-bottom: 0.1rem !important;
}

.m-b-15 {
  margin-bottom: 0.15rem !important;
}

.m-b-20 {
  margin-bottom: 0.2rem !important;
}

.m-b-30 {
  margin-bottom: 0.3rem !important;
}

/* 外左边距 */
.m-l-0 {
  margin-left: 0 !important;
}

.m-l-5 {
  margin-left: 0.05rem !important;
}

.m-l-10 {
  margin-left: 0.1rem !important;
}

.m-l-15 {
  margin-left: 0.15rem !important;
}

.m-l-20 {
  margin-left: 0.2rem !important;
}

.m-l-30 {
  margin-left: 0.3rem !important;
}

/* 外右边距 */
.m-r-0 {
  margin-right: 0 !important;
}

.m-r-5 {
  margin-right: 0.05rem !important;
}

.m-r-10 {
  margin-right: 0.1rem !important;
}

.m-r-15 {
  margin-right: 0.15rem !important;
}

.m-r-20 {
  margin-right: 0.2rem !important;
}

.m-r-30 {
  margin-right: 0.3rem !important;
}

/*圆角样式*/
.b-r-4 {
  border-radius: 0.04rem !important;
}

.b-r-6 {
  border-radius: 0.06rem !important;
}

.b-r-8 {
  border-radius: 0.08rem !important;
}

.b-r-10 {
  border-radius: 0.1rem !important;
}

.b-r-12 {
  border-radius: 0.12rem !important;
}

.b-r-24 {
  border-radius: 0.24rem !important;
}

/* 溢出2行省略号 */
.line-2 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

/* 溢出3行省略号 */
.line-3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

/* 溢出4行省略号 */
.line-4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
}

/*伪类居中*/
/* 增加伪类 前置 */
.before-middle {
  position: relative;
}

.before-middle::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

/* 增加伪类 后置 */
.after-middle {
  position: relative;
}

.after-middle::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.after-center {
  position: relative;
}

.after-center::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

/*默认图标尺寸*/
.item .icon {
  margin: 0 auto;
  border-radius: 0.12rem;
  overflow: hidden;
}

.item .icon img {
  width: 100%;
  height: 100%;
}

.item .data span {
  font-size: 0.14rem;
}

.item .hr {
  display: inline-block;
  height: 0.12rem;
  width: 0.01rem;
  background: #bbb;
  margin: 0 0.05rem;
}

/* 默认缩略图尺寸 */
.thumb img {
  width: 100%;
  height: 100%;
}

/*面包屑导航*/
.crumbs {
  font-size: 0.24rem;
  padding: 0 0.3rem;
  color: #a5a5a5;
  /* background-color: #f5f5f5; */
}

.crumbs a {
  color: #909399;
  display: inline-block;
  position: relative;
  font-size: 0.24rem;
}

.crumbs a::after {
  content: ">";
}

/* 平台 安卓 苹果 图标显示 */
.platform i {
  display: inline-block;
  width: 0.15rem;
  height: 0.15rem;
  background-repeat: no-repeat;
}

.platform .az {
  background-image: url(../img/icon-az.png);
}

.platform .ios {
  background-image: url(../img/icon-ios.png);
}

/* 公共标题 */
.module-title {
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  border-top: 2px solid #F86866;
  background: linear-gradient(180deg, #FFEDED 0%, rgba(255, 236, 236, 0) 100%);
}

.module-title .title {
  font-size: 0.3rem;
  font-weight: bold;
  color: #333333;
}

.module-title .more {
  display: block;
  height: 0.26rem;
  width: 0.26rem;
  color: #fff;
  background-image: url(../images/module-title-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.pd3 {
  padding: 0.3rem;
}

.x-scoll {
  padding-left: 0.3rem;
  overflow-x: scroll;
  display: flex;
  flex-wrap: nowrap;
}

.module {
  /* padding: 0.2rem 0.3rem; */
  background-color: #fff;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

/* 分页 */
.pagination {
  margin: 0.3rem 0 0.4rem 0;
  text-align: center;
}

.pagination .page-item {
  display: inline-block;
  margin: 0.05rem;
  font-size: 0.13rem;
  border: 1px solid var(--br-c);
  color: #555;
}

.pagination .active span {
  background: #F86866;
  color: #fff;
}

.pagination .page-item:hover {
  background: #F86866;
  color: #fff;
}

.pagination .page-item .page-link {
  display: block;
  padding: 0.06rem 0.12rem;
  border: 1px solid transparent;
}

.pagination li span {}

.pagination li a {
  display: inline-block;
  color: #666;
}

.pagination li a:hover {
  background: #F86866;
  color: #fff;
  border: 1px solid #F86866 !important;
}

/* 友情链接 */


.home-links a {
    display: inline-block;
  font-size: 14px;
  color: #666;
  line-height: 24px;
}

/* 页脚 */
.footer {
  font-size: 0.24rem;
  color: #999;
  line-height: 0.5rem;
  padding-bottom: 0.38rem;
  padding-top: 0.38rem;
  background: #333333;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}

.footer ul li {
  display: inline-block;
}

.footer ul li a {
  color: #999;
  margin-right: 0.15rem;
  font-size: 0.24rem;
  color: #999999;
  border-right: 1px solid #999;
  padding-right: 0.2rem;
}

.footer ul li:last-child a {
  border: none;
}

.footer p {
  font-size: 0.24rem;
  margin: 0px !important;
  color: #999999;
}

.star {
  height: 0.2rem;
  width: 1rem;
  background: url(../images/icon-star-bg.png) repeat-x center/0.2rem;
  display: inline-block;
}

.star:before {
  content: "";
  display: block;
  background: url(../images/icon-star.png) repeat-x 0/0.2rem;
  height: 0.2rem;
}

.star-1:before {
  width: 0.2rem;
}

.star-2:before {
  width: 0.4rem;
}

.star-3:before {
  width: 0.6rem;
}

.star-4:before {
  width: 0.8rem;
}

.star-5:before {
  width: 1rem;
}

header {
  background-color: #F86866;
  /* padding-bottom: 0.1rem !important; */
}

.head .logo a {
  display: inline-block;
  height: 0.2rem;
}

.logo {
  flex: 1;
}

.logo img {
  height: auto;
  width: 2.62rem;
}

.head .menu-img {
  margin-left: 0.24rem;
  width: 0.35rem;
  height: 0.28rem;
  padding-left: 0.1rem;
}

.search {
  position: relative;
  width: 4rem;
  height: 0.6rem;
}

.search input {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0.1rem;
  font-size: 0.25rem;
  text-indent: 1em;
  background: rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .2);
}

/* 针对 谷歌 内核 */
input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, .3);
}

/* 火狐 */
input:-moz-placeholder {
  color: rgba(255, 255, 255, .3);
}

.search button {
  background-color: transparent;
  border: 0;
  width: 0.31rem;
  height: 0.29rem;
  background-image: url("../images/icon-search.png");
  background-size: 100%;
  background-repeat: no-repeat;
  margin: 0 0.1rem;
  position: absolute;
  top: 55%;
  transform: translate(0, -50%);
  right: 0rem;
}

.nav {
  /* margin-left: -0.3rem; */
  /* margin-top: 0.14rem; */
  background-color: #fff;
  box-shadow: 0px 0.02rem 0.1rem 0px rgba(51, 51, 51, 0.2);
}

.nav li {
  margin-right: 0.3rem;
  white-space: nowrap;
  position: relative;
  line-height: 0.9rem;
}

.nav li a {
  font-size: 0.28rem;
  color: #333;
  line-height: 0.4rem;
}

.nav li.active a {
  border-bottom: 0.05rem solid #F86866;
  padding-bottom: 0.16rem;
}

.home-slide {
  border-radius: 0.2rem;
  margin: 0.2rem 0.3rem;
}

.home-slide .swiper-wrapper {
  border-radius: 0.2rem;
}

.home-slide-swiper {
  border-radius: 0.2rem;
}

.home-slide .swiper-pagination {
  width: auto;
  left: auto;
  display: inline-block;
  bottom: 0.15rem !important;
  text-align: center;
  box-sizing: border-box;
}

.home-slide .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.9;
  width: 0.2rem;
  height: 0.2rem;
  margin: 0 0.15rem !important;
  border-radius: 50%;
}

.home-slide .swiper-pagination-bullet-active {
  background: #F86866;
}


.home-slide img {
  height: 3.9rem;
  width: 100%;
}

.home-slide .title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
  padding: 0.1rem 0.3rem;
  overflow: hidden;
  height: auto;
  line-height: 1;
}

.home-slide .title span {
  display: inline-block;
  width: 5rem;
  font-size: .24rem;
  color: #fff;
  line-height: 0.24rem;
}

/* 游戏攻略 */
.home-game-gl {}

.home-game-gl .thumb {
  width: 6.5rem;
  height: 2.7rem;
}

.home-gl-list .item:last-child {
  border-bottom: none !important;
  padding-bottom: 0;
}

.home-gl-list .title {
  font-size: 0.26rem;
  color: #333333;
  margin-left: 0.1rem;
  line-height: 0.4rem;
}

.home-gl-list .up-to-date {
  font-size: 0.26rem;
  color: #F86866;
  margin-left: -0.1rem;
}

.home-gl-list .more a {
  font-size: 0.24rem;
  color: #999999;
}

.home-gl-list .time {
  font-size: 0.24rem;
  color: #999999;
}

/* 游戏测评 */
.home-cp {}

.home-cp .thumb {
  display: block;
  width: 6.5rem;
  height: 2.8rem;
}

.home-cp .home-cp-list ul li:last-child {
  border: none !important;
}

.home-cp .home-cp-list ul li .title {
  font-size: 0.26rem;
  color: #333333;
  line-height: 1;
}

.home-cp .home-cp-list ul li .thumb {
  width: 6.5rem;
  height: 2.8rem;
}

.home-cp .home-cp-list ul li .time,
.home-cp .home-cp-list ul li .source {
  font-size: 0.24rem;
  color: #999999;
  line-height: 0.24rem;
}

/* 游戏资讯 */
.home-information {}

.home-information .item:last-child {
  border: none !important;
}

.home-information .thumb {
  width: 2.5rem;
  height: 1.5rem;
}

.home-information .item .time-top {
  font-size: 0.26rem;
  color: #F86866;
}

.home-information .item .title {
  font-size: 0.28rem;
  color: #333333;
  display: inline-block;
  padding-left: 0.1rem;
  margin: 0.15rem 0;
  line-height: 1;
}

.home-information .item .desc {
  font-size: 0.26rem;
  color: #666666;
  line-height: 0.45rem;
}

.home-information .item .time {
  font-size: 0.24rem;
  color: #999;
}

.home-information .item .source {
  font-size: 0.24rem;
  color: #999;
  padding-top: 0.1rem;
  display: inline-block;
}

.home-information .item:hover .title {
  color: #F86866;
}

/* 游戏资讯 */
.home-information {
  width: 100%;
  box-sizing: border-box;
}

.df {
  display: flex;
}

.home-information-list {
  margin-top: 16px;
  padding: 0 .25rem;
  box-sizing: border-box;
}

.home-information-list .new-games {
  width: 100%;
  box-sizing: border-box;
}

.new-games .new-games-item {
  width: 100%;
  margin-bottom: 10px;
}

.new-games .new-games-item .game-banner {
  display: block;
  position: relative;
}

.new-games .new-games-item .game-banner img {
  width: 100%;
  height: 160px;
}

.new-games .new-games-item .game-banner .tag {
  width: 54px;
  line-height: 28px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  background-color: #F86866;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: -5px;
  top: 0;
}

.new-games .new-games-item .game-dec {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
}

.new-games .new-games-item .game-dec a {
  display: block;
  width: 300px;
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-games .new-games-item .game-dec .date {
  font-size: 13px;
  color: #999;
}

/* 重点推荐 */
.rec-games {
  width: 94%;
  box-sizing: border-box;
  border: 1px dashed #999;
  padding: .2rem .25rem;
  margin: 0 auto;
  margin-bottom: .5rem;
}

.rec-games p.title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #4D4D4D;
  margin-bottom: 10px;
}

.rec-games .game-info-list {
  margin-bottom: 10px;
}

.game-info-list .game-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.game-info-list .game-info-item .tag {
  font-size: 14px;
  color: #F86866;
}

.game-info-list .game-info-item p {
  display: flex;
}

.game-info-list .game-info-item .game-info {
  display: inline-block;
  width: 240px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-info-list .game-info-item .date {
  font-size: 13px;
  color: #999;
}

/* 游戏新闻 */
.index-game-news {
  margin-top: 20px;
}

.index-news-list {
  margin-top: .3rem;
  padding: 0 15px;
}

.index-news-list .banner {
  display: block;
  width: 100%;
  height: 160px;
}

.index-news-list .banner img {
  width: 100%;
  height: 160px;
}

.index-news-list .news-list {
  display: flex;
  flex-direction: column;
}

.index-news-list .news-list .news-item {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px dashed #E6E6E6;
}

.index-news-list .news-list .news-item:last-child {
  border-bottom: none;
}

.index-news-list .news-list .news-item div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.index-news-list .news-list .news-item div .game-sketch {
  display: block;
  width: 218px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index-news-list .news-list .news-item div p {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
}

.index-news-list .news-list .news-item div p .desc {
  display: inline-block;
  width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index-news-list .news-list .news-item .game-banner {
  width: 100px;
  height: 60px;
}

/* 游戏测评 */
.home-cp {

}

.home-cp .home-cp-list {
  padding: 0 15px;
}

.home-cp .home-cp-list .game-banner {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.home-cp .home-cp-list .game-banner .item {
  display: block;
}

.home-cp .home-cp-list .game-banner .item img {
  width: 160px;
  height: 100px;
}

.home-cp .home-cp-list .info-list {
  margin-top: 10px;
}

.home-cp .home-cp-list .info-list .info-item {
  padding: 14px 0;
  border-bottom: 1px dashed #ccc;
}

.home-cp .home-cp-list .info-list .info-item:last-child {
  border: none;
}

.home-cp .home-cp-list .info-list .info-item h5 {
  width: 330px;
  font-size: 14px;
  color: #333;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-cp .home-cp-list .info-list .info-item .title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.home-cp .home-cp-list .info-list .info-item .dot {
  display: block;
  width: 4px;
  height: 4px;
  margin-right: 10px;
  background-color: #F86866;
  border-radius: 50%;
}

.home-cp .home-cp-list .info-list .info-item p {
  display: flex;
  justify-content: space-between;
}

.home-cp .home-cp-list .info-list .info-item p a {
  display: block;
  width: 280px;
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-cp .home-cp-list .info-list .info-item p .date {
  font-size: 13px;
  color: #666;
}

/* 游戏攻略 */
.home-gl {
  flex-direction: column;
  box-sizing: border-box;
}

.home-gl .gl-list {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
}

.home-gl .gl-list .gl-item p.gl-title {
  width: 100%;
  font-size: 15px;
  font-weight: bolder;
  margin-bottom: 12px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-gl .gl-list .gl-item {
  padding: 20px 0;
}

.home-gl .gl-list .gl-item:first-child {
  padding-top: 0;
  border-bottom: 1px dashed #ccc;
}

.home-gl .gl-list .gl-item .game-banner {
  width: 140px;
  height: 90px;
}

.home-gl .gl-list .gl-item>div {
  justify-content: space-between;
}

.home-gl .gl-list .gl-item .text {
  width: 190px;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 0;
}

.home-gl .gl-list .gl-item .game-sketch {
  width: 185px;
  padding-right: 20px;
  font-size: 14px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gl-item .date {
  font-size: 13px;
  color: #999;
}

.gl-list-right {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}

.gl-list-right .gl-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.gl-list-right .gl-item p {
  display: flex;
  align-items: center;
  flex: 1;
  overflow: hidden
}

.gl-list-right .gl-item p::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: #D9D9D9;
  margin-right: 15px;
}

.gl-list-right .gl-item p a {
  display: block;
  width: 280px;
  font-size: 14px;
  font-weight: 400;
  outline-color: #333;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 资讯列表 */
.game-list .item {}

.game-list .item:last-child {
  border: none;
}

.list-game-list .item .info {
  width: calc(100% - 3rem);
}

.list-game-list .item .info .time{
     color: #666;
   font-size: 14px
}

.list-game-list .item .icon {
  width: 1.31rem;
  height: 1.31rem;
}

.game-list .item .icon img {
  width: 100%;
  height: 100%;
  border-radius: 0.1rem;
}

.game-list .item .info p {
  margin: 0 !important;
}

.game-list .item .info a {
  font-size: 0.26rem;
  color: #333333;
  line-height: 0.3rem;
  font-weight: 700;
  display: inline-block;
  max-width: 100%;
}

.game-list .item .info .desc {
  font-size: 0.24rem;
  color: #666666;
  line-height: 0.3rem;
  margin-top: 0.1rem !important;
}

.game-list .item .info span {
  font-size: 0.24rem;
  color: #666666;
  line-height: 0.35rem;
}

.game-list .item .down {
  width: 0.6rem;
  height: 0.6rem;
  background: url("../images/down.png") no-repeat center/contain;
}

.game-list .item .more {
  color: #F86866;
  font-size: 0.24rem;
  width: 1.3rem;
  height: 0.6rem;
  line-height: 0.6rem;
  border-radius: 0.1rem;
  text-align: center;
  background: rgba(168, 30, 30, 0.05);
}

.game-list .item:hover .info a {
  color: #F86866;
}

.game-list .item:hover .more {
  background: #F86866;
  color: #fff;
}

.list-hot-game-list .item .icon {
  width: 0.98rem;
  height: 0.98rem;
  border-radius: 0.1rem;
}



/* 热门游戏 */
.list-hot-game-list ul {
  margin-left: -0.4rem;
}

.list-hot-game-list .item .icon {
  width: 1.31rem;
  height: 1.31rem;
  border-radius: 0.1rem;
}

.game-list .item .title {
  font-size: 0.26rem;
  color: #333333;
  display: inline-block;
  max-width: 100%;
  line-height: 1;
}

.list-hot-game-list .item {
  width: 25%;
  padding-left: 0.4rem;
  box-sizing: border-box;
  float: left;
}


.single-app .single-header {
  padding-top: 0.4rem;
}

.single-show-game .single-header {
  padding: 0.2rem 0;
}

.single-news .single-header {
  /* margin-top: 0.2rem; */
  padding-top: 0.5rem;
  padding-bottom: 0.2rem;
}

.single-header h1 {
  font-size: 0.4rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  padding-top: 0.1rem;
}

.single-header .single-info {
  text-align: left;
}

.single-header .single-info h1 {
  text-align: left;
  line-height: 0.3rem;
  padding-bottom: 0;
  margin-bottom: 0.1rem;
}

.single-header .info {
  text-align: center;
  margin: 0.5rem 0;
}

.single-header .info span {
  font-size: 0.22rem;
  color: #666666;
  margin-right: 0.15rem;
}

.single-header .single-info .icon {
  width: 1.3rem;
  height: 1.3rem;
  margin: 0 auto;
}

.single-header .single-info .icon img {
  width: 100%;
  height: 100%;
}

.single-header .single-info .title {
  font-size: 0.26rem;
  color: #2F2F2F;
  /* margin: 0.4rem 0; */
  line-height: 1;
}

.single-header .single-info .time {
  font-size: 0.24rem;
  color: #666666;
  margin: 0.4rem 0;
  display: block;
}

.single-header .single-info ul li {
  width: 50%;
  padding-right: 0.2rem;
  box-sizing: border-box;
  font-size: 0.24rem;
  color: #666666;
  padding-left: 0;
  line-height: 1;
}

.single-header .downbtn .ajax-btn {
  padding: 0.2rem 0.08rem;
  border-radius: 0.04rem;
  text-align: center;
  display: block;
  color: #fff;
  background-color: #F86866;
  position: relative;
  background-image: linear-gradient(0deg, #F86866 0%, #F86866 100%), linear-gradient(#F86866, #F86866);
  background-blend-mode: normal, normal;
  margin-top: 0.3rem;
  font-size: 0.24rem;
}

/* 游戏截图 */
.single-jt {}

.swiperImgs {
  margin-top: 0.2rem;
  overflow: hidden;
  margin: 0.2rem;
}

.swiperImgs .swiper-slide {
  transform: scale(.4);
  transition: all .3s ease-out;
  height: 3.7rem;
  width: 5rem;
  z-index: -1;
}

.swiperImgs .swiper-slide img {
  height: 3.7rem;
  width: 5rem;
}

.swiperImgs .swiper-slide.swiper-slide-prev,
.swiperImgs .swiper-slide.swiper-slide-next {
  transform: scale(.8);
}

.swiperImgs .swiper-slide.swiper-slide-active {
  transform: scale(1);
  z-index: 9;
}

/* 游戏简介 */
.single-content h2,
.single-content h3 {
  font-size: 0.28rem;
  font-weight: bold;
  margin: 0.1rem 0;
}

.single-content p {
  text-indent: 2em;
  font-size: 0.26rem;
  color: #666666;
  line-height: 0.58rem;
  margin-bottom: 0px !important;
  display: inline-block;
  margin: 0.1rem 0;
}

.single-app .single-content img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  height: auto !important;
}

/* 资讯列表 */
.list-app .list-news-lists {}

.list-app .list-news-lists li .title {
  font-size: 0.26rem;
  color: #333;
  display: inline-block;
  width: 100%;
  line-height: 1;
}

.list-app .list-news-lists li .thumb {
  width: 2.5rem;
  height: 1.5rem;
}

.list-app .list-news-lists li .info .desc {
  font-size: 0.24rem;
  color: #666666;
  line-height: 0.48rem;
}

.list-app .list-news-lists li .info .time {
  font-size: 0.24rem;
  color: #999;
}

/* 相关资讯 */
.xg-news {
  overflow: hidden;
  padding-bottom: 0;
}

.xg-news .news-list {}

.xg-news .news-list .list {
  box-sizing: border-box;
  padding-left: 0.25rem;
}

.xg-news .news-list .list::before {
  width: 0.1rem;
  height: 0.1rem;
  background: #F86866;
  border-radius: 50%;
  left: 0;
  top: 0.18rem;
}

.xg-news .news-list .list:last-child {
  border: none !important;
}

.xg-news .news-list .list .title {
  font-size: 0.26rem;
  color: #333333;
  line-height: 1;
}

.xg-news .news-list .list .time {
  font-size: 0.26rem;
  color: #999999;
  display: inline-block;
  margin-left: 0.1rem;
}

.xg-news .news-list .list:hover .title {
  color: #F86866;
}


/* list 样式 */
.list ul li a {
  padding-left: 0.2rem;
}

.list ul li a::before {
  display: inline-block;
  left: 0;
  width: 0.06rem;
  height: 0.06rem;
  background-color: #F86866;
}

/* 鼠标移入 阴影立体效果 */
.list-game-li ul li:hover {
  box-shadow: 0px 0px 0.16rem 0px rgba(100, 100, 100, 0.22);
  box-shadow: 0px 0px 0.09rem 0px rgba(210, 222, 235, 0.72);
}

/* 带图标 序号 */
.item .icon {
  width: 1rem;
  height: 1rem;
}

.item .num {
  margin-right: 0.2rem;
  text-align: center;
  width: 0.42rem;
  height: 0.27rem;
  line-height: 0.27rem;
  background-color: #e3e3e3;
  border-radius: 0px 0.14rem 0.14rem 0px;
  color: #fff;
}

.item:nth-child(-n + 3) .num {
  background-color: #F86866;
}

/* 卡片式 */
.gl-card .item:hover {
  background: #f7f7f7;
}

/* 
 * -n+3  获取前三个元素 
 * 2n    偶数even
 * 2n-1  奇数odd
*/

/* 公共样式 end */

/* 首页 */
.home- {}

/* 列表页 */
.category- {}

.list- {}

/* 文章内页 */
.single- {}

.mobile .title {
  font-size: 0.28rem;
}


/* 游戏新闻 */
.home-game-news {}

.home-game-news ul li {
  padding-left: 0.35rem;
  overflow: hidden;
  padding-bottom: 0.2rem;
}

.home-game-news ul li:last-child {
  border: none !important;
  padding-bottom: 0;
}

.home-game-news ul li::before {
  background: url("../images/list_dot.png") no-repeat center/contain;
  left: 0;
  width: 0.16rem;
  height: 0.18rem;
  top: 0.15rem;
}

.home-game-news ul li .title {
  font-size: 0.26rem;
  color: #333333;
  display: inline-block;
  width: 100%;
  line-height: 1;
}

.home-game-news ul li .desc {
  font-size: 0.24rem;
  color: #666;
  position: relative;
  line-height: 0.4rem;
}

.home-game-news ul li:hover .title {
  color: var(--pm-c);
}

.home-game-news ul li .time,
.home-game-news ul li .look,
.home-game-news ul li .source {
  font-size: 0.24rem;
  color: #999;
}

.home-game-news ul li p {
  margin-top: 0px !important;
  margin-bottom: 0px;
}

.home-game-news ul li .look {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* 新增开服表 样式 */
.server-container {
  margin-top: .2rem;
  padding: 0 .3rem;
}

.server-banner {
  display: block;
  width: 100%;
  height: 1.5rem;
}

.server-banner img {
  width: 100%;
  height: 100%;
}

.server-title {
  margin: 0 .3rem;
  font-size: .3rem;
  font-weight: bold;
  border-bottom: solid 0.01rem #eeeeee;
  margin-top: .4rem;
  margin-bottom: .35rem;
  padding-bottom: .2rem;
}

.server-main {
  background-color: #fff;
  padding: 0 .3rem;
}

.server-container {
  width: 100%;
}

/* 游戏列表 */
.server-container .game-list {
  width: 100%;
}

.server-container .game-list .game-item {

  width: 100%;
  height: 1.65rem;
  padding: .15rem 0;
  border-bottom: dashed 0.01rem #eeeeee;
  font-size: .24rem;
  color: #888;

  display: flex;
  align-items: center;
  position: relative;
}

.server-container .game-list .game-item::before {
  content: '';
  display: block;
  width: .5rem;
  height: .7rem;
  background: url(../images/hot-game.png) no-repeat center;
  background-size: contain;
  margin-right: 0.2rem;
}

.server-container .game-list .game-item .game-icon {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.2rem;
  margin-right: 0.2rem;
}


.server-container .game-list .game-item .desc {
  height: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.server-container .game-list .game-item .desc div {
  width: 3.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.server-container .game-list .game-item .desc .game-name span {
  font-size: .28rem;
  color: #333;
}

.server-container .game-list .game-item .desc .game-name .android-icon {
  padding: 0 .08rem;
  margin-left: 0.09rem;
  border-radius: 0.04rem;
  color: #2BC7BD;
  background-color: #ECFFFE;
  font-size: .14rem;
  border: 1px solid #2BC7BD;
}

.server-container .game-list .game-item .desc .game-name .ios-icon {
  padding: 0 .08rem;
  margin-left: 0.09rem;
  border-radius: 0.04rem;
  color: #FF7A00;
  background-color: #FDF3EB;
  font-size: .14rem;
  border: 1px solid #FF7A00;
}

.server-container .game-list .game-item .desc .new-server span {
  color: #666;
}

.server-container .game-list .game-item .details {
  display: inline-block;
  width: 1.2rem;
  height: 0.6rem;
  background-color: #F86866;
  border-radius: 0.1rem;
  margin-top: 0.07rem;
  text-align: center;
  font-size: .24rem;
  line-height: .6rem;
  letter-spacing: .01rem;
  color: #ffffff;
  position: absolute;
  right: 0.21rem;
}