/* 公共样式 */
:root {
  --pm-c: #E57B14;
  --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%);
}

.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;
  font-family: Microsoft YaHei;
  overflow: scroll
}

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

ol,
ul {
  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;
  object-fit: cover;
}

.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: .05rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-t-5 {
  margin-top: .05rem !important;
}

.m-t-10 {
  margin-top: .1rem !important;
}

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

.m-t-20 {
  margin-top: .2rem !important;
}

.m-t-30 {
  margin-top: .3rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.b-r-24 {
  border-radius: .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: .12rem;
  overflow: hidden;
}

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

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

.item .hr {
  display: inline-block;
  height: .12rem;
  width: .01rem;
  background: #bbb;
  margin: 0 .05rem;
}

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

/*面包屑导航*/
.crumbs {
  font-size: .24rem;
  padding: 0 .3rem;
  color: #a5a5a5;
}

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

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

/* 平台 安卓 苹果 图标显示 */
.platform i {
  display: inline-block;
  width: .15rem;
  height: .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 .title {
  font-size: .3rem;
  font-weight: bold;
  color: #333333;
}

.module-title {
  display: flex;
  justify-content: space-between;
}

.module-title .info {
  display: flex;
  align-items: center;
}

.module-title .info img {
  width: .25rem;
  height: .25rem;
}

.module-title .title::after {
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: .08rem;
  background: #FFD2A7;
  margin-top: .2rem;
}

.module-title .more {
  display: block;
  font-size: .24rem;
  color: #999999;
  text-align: right;
  margin-right: .1rem;
}


.pd3 {
  padding: .3rem;
}

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

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

/* 友情链接 */
.home-links li {
  display: inline-block;
  margin-right: .15rem;
  margin-bottom: .05rem;
}

.home-links a {
  font-size: .12rem;
  color: #8d8c8c;
  border-right: 1px solid #999999;
  padding-right: .15rem;
}

.home-links li:last-child a {
  border: none;
  padding-right: 0rem;
}

/* 页脚 */
.footer {
  font-size: .24rem;
  color: #999;
  line-height: .5rem;
  padding-bottom: .38rem;
  padding-top: .38rem;
  background: #333333;
  padding-left: .3rem;
  padding-right: .3rem;
}

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

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

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

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

.footer p a {
  color: #999999 !important;
}

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

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

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

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

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

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

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

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

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

.pagination .active span {
  background: var(--pm-c);
  color: #fff;
}

.pagination .page-item:hover {
  background: var(--pm-c);
  color: #fff;
}

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

.pagination li span {}

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

.pagination li a:hover {
  background: var(--pm-c);
  color: #fff;
  border: 1px solid var(--pm-c) !important;
}

/* 上一页 下一页 */
.page {
  overflow: hidden;
}

.page a {
  width: 100%;
  display: block;
  height: .5rem;
  line-height: .5rem;
  text-align: left;
  font-size: .26rem;
  color: #666;
}

header {
  background-color: #fff;
}

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

.logo {
  flex: 1;
}

.logo img {
  width: 2.23rem;
}

.head .menu-img {
  margin-left: .24rem;
  width: .35rem;
  height: .28rem;
  padding-left: .1rem;
}

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

.search input {
  width: 100%;
  height: 100%;
  border: 1px solid var(--br-c);
  border-radius: .1rem;
  font-size: .24rem;
  text-indent: 1em;
  background: #EAEAEA;
  opacity: 0.5;
}

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

.nav {
  margin-left: -0.3rem;
  background: var(--pm-c);
}

.nav li {
  margin-right: .3rem;
  white-space: nowrap;
  position: relative;
  line-height: .9rem;
  padding: 0 .2rem;
}

.nav li::after {
  content: "|";
  right: 0;
  color: #fff;
  margin-top: -2px;
}

.nav li a {
  font-size: .28rem;
  color: #ffffff;
  line-height: .4rem;
  padding-bottom: .12rem;
  margin-right: .4rem;
}

.nav li.active a {
  border-bottom: 4px solid #fff;
}


.home-slide-swiper {
  margin: .2rem .5rem;
  border-radius: .2rem;
}

.home-slide .swiper-slide {
  border-radius: .2rem;
  overflow: hidden;
}

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

.home-slide-1 {
  position: relative;
}


.home-slide .swiper-pagination-bullet {
  background-color: #D9D9D9;
  opacity: 0.6;
  width: .15rem;
  height: .05rem;
  margin: 0 .06rem !important;
  border-radius: .03rem;
}

.home-slide .swiper-pagination-bullet-active {
  background-color: #FF7E00;
  width: .15rem;
}

.home-slide .swiper-slide .swiper-box {
  transform: scale(0.94);
  display: inline-block;
  overflow: hidden;
  border-radius: .2rem;
}

.home-slide .swiper-slide-active .swiper-box,
.home-slide .swiper-slide-duplicate-active .swiper-box {
  transform: scale(1);
}

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

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

.home-slide .title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
  padding: .15rem .3rem;
  overflow: hidden;
  height: auto;
  text-align: center;
}

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

/* 游戏测评 */

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

.home-cp-list .thumb {
  width: 2.51rem;
  height: 1.5rem;
}

.home-cp-list .thumb a {
  width: 2.51rem;
  height: 1.5rem;
}

.home-cp-list .thumb img {
  width: 100%;
  height: 100%;
  border-radius: .1rem;
}

.home-cp-list .title {
  font-size: .26rem;
  color: #333333;
  margin-bottom: .35rem;
  line-height: 1;
}

.home-cp-list .desc {
  font-size: .24rem;
  color: #666;
  line-height: .4rem;
}

.home-cp-list .time {
  font-size: .24rem;
  color: #999999;
}

.home-cp-list .look {
  font-size: .24rem;
  color: var(--pm-c);
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: .4rem;
}


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

.home-game-gl .thumb {
  display: block;
  width: 6.9rem;
  height: 2.9rem;
  margin-bottom: .4rem;
}

.home-game-gl .home-gl-list .item {
  padding-left: .28rem;
}

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

.home-game-gl .home-gl-list .item::before {
  width: .1rem;
  height: .1rem;
  background: var(--pm-c);
  left: 0;
  top: .13rem;
}

.home-game-gl .home-gl-list .item .title {
  font-size: .26rem;
  color: #333333;
  line-height: 1;
}

.home-game-gl .home-gl-list .item .source {
  font-size: .24rem;
  color: #999;
}

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

.home-game-gl .home-gl-list .up-to-date {
  color: #999;
  font-size: .24rem;
}

/* 游戏资讯 */
.home-game-zx {}

.home-game-zx ul li {
  overflow: hidden;
  padding-bottom: .2rem;
}

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

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

.home-game-zx ul li .title {
  font-size: .26rem;
  color: #333333;
  display: inline-block;
  line-height: .26rem;
}

.home-game-zx ul li .time {
  font-size: .24rem;
  color: #999;
}

.home-game-zx ul li .up-to-date {
  font-size: .24rem;
  color: var(--pm-c);
  margin-right: .05rem;
  line-height: .26rem;
  margin-left: -0.1rem;
}

.home-game-zx ul li .desc {
  font-size: .24rem;
  color: #666;

}

.home-game-zx ul li .look {
  font-size: .24rem;
  color: #999;
  position: absolute;
  right: 0;
  bottom: 0;
}

.home-game-zx ul li .source {
  font-size: .24rem;
  color: #999;
}

/* 游戏新闻 */



.home-news-list ul li:last-child,
.home-news-list ul li:last-child .item {
  margin-bottom: 0 !important;
  border: none !important;
  padding-bottom: 0;
}

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

.home-news-list .thumb img {
  width: 100%;
  height: 100%;
  border-radius: .1rem;
}

.home-news-list .title {
  font-size: .28rem;
  color: #333333;
  margin-left: .1rem;
  display: inline-block;
  font-weight: bold;
  line-height: 1;
}

.home-news-list .desc {
  font-size: .24rem;
  color: #666666;
  line-height: .44rem;
  margin-bottom: .15rem;
}

.home-news-list .source {
  font-size: .24rem;
  color: #999;
}

.home-news-list .time {
  font-size: .24rem;
  color: #999;
}

.home-news-list .type {
  font-size: .22rem;
  color: var(--pm-c);
  border-radius: .05rem;
  border: .01rem solid var(--pm-c);
  text-align: center;
  line-height: .24rem;
  padding: .04rem .08rem;
}

.home-news-list ul li .info {
  margin-right: 20px;
}

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

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

.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;
}

.list-game-list .item .more {
  color: var(--pm-c);
  border-radius: .1rem;
  font-size: .24rem;
  text-align: center;
  padding: .16rem 0;
  width: 1.3rem;
  box-sizing: border-box;
  background: rgba(2229, 123, 20, 0.05);
}

/* 热门游戏 */
.game-list .item .info .title {
  font-size: .26rem;
  color: #333;
}

.game-list .item .info .score {
  font-size: .24rem;
  color: #666;
}

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

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

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

.game-list .item .info .desc {
  font-size: .24rem;
  color: #666666;
  line-height: .3rem;
  margin-top: .1rem !important;
}

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

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

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

/* 热门游戏 */
.list-hot-game-list ul {}

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

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

.list-hot-game-list .item .title {
  font-size: .26rem;
  color: #2F2F2F;
  line-height: 1;
}

.list-hot-game-list .item .desc {
  font-size: .24rem;
  color: #666;
}

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

.list-hot-game-list .item .num {
  color: #999;
  font-size: .3rem;
  margin-right: .2rem;
  align-self: flex-start;
}

.list-hot-game-list .item:nth-child(-n+3) .num {
  color: var(--pm-c);
}


.single-news .single-header {
  padding: 23px 15px;
  background: #FFF;
  border-bottom: 1px solid #EBEBEB;
}

.single-news .single-header .info {
  display: flex;
  justify-content: space-evenly;
}

.single-header h1 {
  font-size: 18px;
  color: #1A1A1A;
  line-height: 29px;
  text-align: center;
  font-weight: bold;
}

.single-header .single-info {
  text-align: left;
  padding-bottom: 0!important
}

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

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

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

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

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

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

.single-header .single-info ul li {
  width: 50%;
  padding-right: .2rem;
  box-sizing: border-box;
  font-size: .24rem;
  color: #666666;
  padding-left: 0;
  margin-top: .05rem !important;
}

.single-header .downbtn .ajax-btn {
  padding: .2rem .08rem;
  border-radius: .04rem;
  text-align: center;
  display: block;
  color: #fff;
  background-color: var(--pm-c);
  position: relative;
  background-image: linear-gradient(0deg, var(--pm-c) 0%, var(--pm-c) 100%), linear-gradient(var(--pm-c), var(--pm-c));
  background-blend-mode: normal, normal;
  margin-top: .3rem;
  font-size: .24rem;
}

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

.single-app .single-slide .item {
  width: 2.55rem;
  height: 3.4rem;
}

.single-app .single-slide .uk-slider-items {
  overflow-x: scroll;
  flex-wrap: nowrap;
}

.single-app .single-slide .item img {
  width: 100%;
  height: 100%;
}

/* 游戏简介 */
.single-content p {
  text-indent: 2em;
  font-size: .26rem;
  color: #666666;
  line-height: .58rem;
  margin-bottom: 0px !important;
  display: inline-block;
  margin: .1rem 0;
}

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

.single-content h2,
.single-content h3 {
  font-weight: bold;
  font-size: .28rem;
  margin: .1rem 0;
}

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

.list-app .list-news-list li {
  padding: .2rem;
}

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

.list-app .list-news-list li:hover .title {
  color: var(--pm-c);
}

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

.list-app .list-news-list li .time {
  text-align: center;
}

.list-app .list-news-list li .time span {
  display: block;
}

.list-app .list-news-list li .date {
  font-size: .3rem;
  color: var(--pm-c);
}

.list-app .list-news-list li .year {
  font-size: .24rem;
  color: var(--pm-c);
  margin-top: .2rem;
}

.list-app .list-news-list li .info {
  position: relative;
}

.list-app .list-news-list li .info .look {
  font-size: .24rem;
  color: var(--pm-c);
  position: absolute;
  bottom: .06rem;
  right: 0;
  background-color: #f8f8f8;
}

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

.xg-news .news-list {}

.xg-news .news-list .list {
  box-sizing: border-box;
  border-radius: .05rem;
}

.xg-news .news-list .list::before {
  width: .1rem;
  height: .1rem;
  background: var(--pm-c);
  border-radius: 50%;
  left: 0;
}

.xg-news .news-list .list:last-child {}

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

.xg-news .news-list .list .desc {
  font-size: .24rem;
  color: #666;
  margin: .1rem 0;
}

.xg-news .news-list .list .look {
  font-size: .24rem;
  color: #999;
}

.xg-news .news-list .list .source {
  font-size: .24rem;
  color: #999;
}

.xg-news .news-list .list .time {
  font-size: .24rem;
  color: #999;
}

.xg-news .news-list .list .up-to-date {
  font-size: .24rem;
  color: var(--pm-c);
  margin-right: .1rem;
  border-right: 1px solid #ccc;
  padding-right: .1rem;
  line-height: .22rem;
}

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

.list ul li a::before {
  display: inline-block;
  left: 0;
  width: .06rem;
  height: .06rem;
  background-color: var(--pm-c);
}

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

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

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

/* 公共样式 end */

/* 首页 */
.home- {}

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

.list- {}

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

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

.t1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.t2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*  */
/*  */
/*  */
/*  */

.domestic:last-child {
  padding: 0;
}

.domestic ul {
  border-bottom: 1px dashed #E6E6E6;
}

.domestic ul:last-child {
  border-bottom: 0;
}

.domestic ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.domestic ul li .dot {
  font-size: 14px;
  line-height: 16.41px;
  color: #999999;
  margin-right: 8px;
}

.domestic ul li .title {
  font-size: 14px;
  line-height: 16.41px;
  color: #333333;
  flex: 1;
  margin-right: 20px;
}

.domestic ul li .date {
  font-size: 13px;
  color: #999999;
  line-height: 15px;
}

/*  */
/*  */
.strategy ul li {
  padding-top: .4rem;
}

.strategy ul li a {
  display: flex;

}

.strategy ul li a img {
  width: 2.6rem;
  height: 1.6rem;
  display: block;
}

.strategy ul li a .date {
  font-size: .24rem;
  color: #FFFFFF;
  line-height: .48rem;
  width: .92rem;
  height: .48rem;
  background: #FF7E00;
  position: absolute;
  text-align: center;
}

.strategy ul li a .info {
  padding: .1rem .3rem;
  background: #F6F6F6;
}

.strategy ul li a .info .title {
  font-size: .28rem;

  font-weight: bold;
  color: #1A1A1A;
  line-height: .32rem;
}

.strategy ul li a .info .desc {
  font-size: .24rem;
  font-weight: 500;
  color: #4D4D4D;
  line-height: .28rem;
}

/*  */
/*  */
.evaluation-box {
  display: flex;
  justify-content: space-between;
}

.hotspot-box {
  margin: .4rem 0;
}

.evaluation .hotspot {
  /* border-bottom: 1px dashed #EBEBEB; */
  padding-bottom: .3rem;
}

.evaluation .hotspot:last-child {
  padding-bottom: 0;
}

.evaluation .hotspot li:nth-child(1) a {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-start;
}

.evaluation .hotspot li:nth-child(1) a div {
  font-size: .26rem;
  color: #FFFFFF;
  line-height: .44rem;
  width: .76rem;
  height: .44rem;
  background: #FF3F3F;
  text-align: center;
  margin-right: .28rem;
  flex-shrink: 0;

}

.evaluation .hotspot li:nth-child(1) a p {
  font-size: .3rem;
  color: #333333;
  line-height: .36rem;
}

.evaluation .hotspot li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: .4rem;
  padding-top: .2rem;
}


.evaluation .hotspot li a p {
  font-size: .24rem;
  color: #333333;
  line-height: .32rem;
  margin-right: .4rem;
}

.evaluation .hotspot li a span {
  font-size: .26rem;
  color: #999999;
  line-height: .3rem;
  flex-shrink: 0;
}

.evaluation .hotspot li a img {
  position: absolute;
  left: 11%;
}

/*  */

.evaluation-img {
  margin-top: .4rem;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  justify-content: space-between;
  display: flex;
  gap: .2rem;
}

.evaluation-img a {
  display: block;
  width: 5rem;
  height: 2.8rem;
  position: relative;
  flex-shrink: 0;
}

.evaluation-img a img {
  width: 5rem;
  height: 2.8rem;
  display: block;
}

.evaluation-img a div {
  position: absolute;
  padding: .11rem .2rem;
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

.evaluation-img a div span {
  font-size: .28rem;
  color: #FFFFFF;
}

/*  */

.latest ul li {
  padding: .16rem 0;
  border-bottom: dashed .01rem #E6E6E6;
}

.latest ul li:last-child {
  border-bottom: 0;
}

.latest ul li a {
  display: flex;
  justify-content: space-between;
}

.latest ul li a img {
  width: 1.8rem;
  height: 1.6rem;
  display: block;
}

.latest ul li a .info {
  width: 100%;
  padding-right: .28rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;

}

.latest ul li a .info .title {
  font-size: .28rem;
  color: #1A1A1A;
  line-height: .33rem;
  margin: 0;
}

.latest ul li a .info .desc {
  font-size: .24rem;
  color: #4D4D4D;
  line-height: .28rem;
  margin: 0;
}

.latest ul li a .info .date {
  display: flex;
  align-items: center;
}

.latest ul li a .info .date img {
  width: .28rem;
  height: .28rem;
  margin-right: .16rem;
}

.latest ul li a .info .date span {
  font-size: .24rem;
  color: #999999;
  line-height: .28rem;
}

/*  */

.information ul {
  margin-top: .4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .27rem;
}

.information ul li {
  width: 48%;
}

.information ul li a {
  display: flex;
  flex-direction: column;
}

.information ul li a img {
  width: 100%;
  height: 2.2rem;
  display: block;
}

.information ul li a p {
  font-size: .24rem;
  color: #333333;
  line-height: .32rem;
  padding: 0
}

.interval {
  width: 100%;
  height: .2rem;
  background: #F7F7F7;
  margin: .1rem 0;
}

/*  */
/*  */
/*  */
.single-app {
  margin-bottom: .38rem;
}

.xg ul {
  margin-top: .4rem;
}

.xg ul li {
  padding-bottom: .32rem;
}

.xg ul li:last-child {
  padding-bottom: 0px;
}

.xg ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.xg ul li a .dot {
  width: .06rem;
  height: .06rem;
  border-radius: .06rem;
  margin-right: .1rem;
  background: #FF7E00;
}

.xg ul li a p {
  font-size: .28rem;
  font-weight: 600;
  color: #1A1A1A;
  line-height: .32rem;
  flex: 1;
  margin: 0;
}

.xg ul li a span {
    font-size: .24rem;
  font-weight: 500;
  color: #999999;
  line-height: .14rem;
}

/*  */
/*  */
/*  */
.region {
  margin-top: .25rem;
}

.region-top {
  margin-top: .2rem;
  display: block;
  background: url(/themes/default/common_cms/mobile/assets/images/3570.png)no-repeat;
  background-size: 100%;
  padding: .13rem .17rem;
}

.region-top span {
  font-size: .12rem;
  font-weight: 500;
  color: #4D4D4D;
  line-height: .22rem;
}

.region-top span .data {
  color: #FA4B4A;
}

.region ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .16rem 0;
  border-bottom: .01rem dashed #EDEDED;
}

.region ul li:last-child {
  border-bottom: 0;
}

.region .region-cen {
  display: flex;
  flex: 1;
  padding-left: .15rem;
}

.region ul li .region-cen img {
  width: 1.2rem;
  height: 1.2rem;
}

.region ul li .region-cen .info {
  padding-left: .2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.region ul li .region-cen .info .title {
  display: flex;
  align-items: center;
  height: .4rem;
}

.region ul li .region-cen .info .desc {
  display: flex;
  align-items: center;
  height: .4rem;
}

.region ul li .region-cen .info .date>div {
  display: flex;
  width: .8rem;
  height: .36rem;
  align-items: center;
  justify-content: center;
  background: #FDF5E9;
}

.region ul li .region-cen .info .title p {
  font-size: .28rem;
  font-weight: 600;
  color: #333333;
  line-height: .32rem;
  margin-right: .12rem;
}

.region ul li .region-cen .info .desc p {
  font-size: .24rem;
  font-weight: 500;
  color: #999999;
  line-height: .28rem;
  margin-right: .1rem;
}

.region ul li .region-cen .info .date div {
  font-size: .24rem;
  font-weight: 500;
  color: #FF7E00;
  line-height: .28rem;
  text-align: center;
}

.region ul li:nth-child(even) .region-cen .info .date div,
.region ul li:nth-child(even) .region-cen .info .date>div {
  color: #00B1E9;
  background: #EAF9FE;
}

.region ul li a {
  display: flex;
  width: .6rem;
  height: .6rem;
  background: #FF7E00;
  border-radius: .6rem;
  align-items: center;
  justify-content: center;
}

.region ul li a img {
  width: .28rem;
  height: .28rem;
}