/* 公共样式 */
:root {
	--pm-c: #5F66F9;
	--dm-c: #fdeaea;
	--bg-c: #f7f7f7;
	--br-c: #E6E6E6;
}

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

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

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

.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;
	font-size: .24rem;
}

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;
	object-fit: cover;
}

/*边框样式*/
.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 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 外下边距 */
.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-b-40 {
	margin-bottom: 0.4rem !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 .hr {
	display: inline-block;
	height: 0.12rem;
	width: 0.01rem;
	background: #bbb;
	margin: 0 0.05rem;
}

.item .title,
.list .title {
	display: block;
	font-size: .28rem;
	color: #333333;
}

.item .info,
.list .info {
	flex: 1;
	overflow: hidden;
}

.item .time,
.list .time {
	font-size: .28rem;
	color: #AAAAAA;
}

.item .text,
.list .text {
	font-size: .28rem;
	color: #777777;
}

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

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

.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 {
	position: relative;
	margin-bottom: .32rem;
	padding-bottom: .22rem;
	border-bottom: .02rem solid #E6E6E6;
}

.module-title .title {
	display: inline-block;
	font-size: 0.3rem;
	font-weight: bold;
	color: #1A1A1A;
	z-index: 11;
	background: url('../images/title_icon.png') no-repeat left/contain;
	background-size: .28rem;
	padding-left: .42rem;
}

.module-title .more {
	display: block;
	font-size: .24rem;
	color: #999;
}

/* .module-title .title::before {
	width: 1.6rem;
	height: 0.2rem;
	left: .01rem;
	top: .5rem;
	background: var(--pm-c);
	z-index: -1;
} */

.pd3 {
	padding: 0.24rem;
}

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

.module {
	padding: .32rem 0.24rem;
	background-color: #fff;
}

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

.home-links a {
	font-size: 0.28rem;
	color: #858585;
	padding-right: 0.15rem;
}

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

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

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

.footer ul li a {
	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;
}

.footer a {
	color: #999999;
	font-size: 0.24rem;
}

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

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

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

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

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

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

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

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

.pagination .page-item {
	display: inline-block;
	width: 1.8rem;
	height: .6rem;
	line-height: .52rem;
	font-size: .28rem;
	border: .01rem solid #E6E6E6;
	color: #4D4D4D;
	margin: 0 0.2rem .2rem;
}

.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: 0rem .4rem;
	border: .01rem solid transparent
}

.pagination li span {}

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

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

/* 列表 */
.list-container {
	position: relative;
	overflow: hidden;
}

.list-container .list {
	align-items: center;
}

.list-container .list .dot {
	display: block;
	width: .08rem;
	height: .08rem;
	background: var(--pm-c);
	border-radius: .08rem;
	margin-right: .2rem;
}

.list-container .list .dot_ {
	display: block;
	width: .08rem;
	height: .08rem;
	background: #D9D9D9;
	border-radius: .08rem;
	margin-right: .2rem;
}

.list-container .list .title {
	font-size: .28rem;
	color: #333333;
}

.list-container .list:hover .title {
	color: var(--pm-c);
}

.list-container .list .time {
	display: block;
	font-size: .28rem;
	color: #AAAAAA;
	margin-left: .2rem;
}

.list-container .list .tag {
	display: block;
	width: .72rem;
	height: .4rem;
	line-height: .38rem;
	background: var(--pm-c);
	border-radius: .04rem;
	text-align: center;
	font-size: .24rem;
	color: #FFFFFF;
	margin-right: .2rem;
}

.list-container .list .tag2 {
	display: block;
	width: .72rem;
	height: .4rem;
	line-height: .38rem;
	border: .01rem solid var(--pm-c);
	border-radius: .04rem;
	text-align: center;
	font-size: .24rem;
	color: var(--pm-c);
	margin-right: .2rem;
}

.list-container .list .tag_ {
	font-size: .28rem;
	color: var(--pm-c);
	margin-right: .2rem;
}

.list-container .list .order {
	display: block;
	width: .4rem;
	height: .4rem;
	line-height: .4rem;
	border: .01rem solid var(--pm-c);
	background: var(--pm-c);
	border-radius: .08rem;
	text-align: center;
	font-size: .24rem;
	color: #fff;
	margin-right: .2rem;
}

.list-container .list:hover .order {
	background: var(--pm-c);
	color: #FFFFFF;
}

header {
	position: relative;
	padding-bottom: 0rem !important;
	overflow: hidden;
}

.head {
	overflow: hidden;
	background: var(--pm-c);
}

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

.logo {
	flex: 1;
}

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

.search {
	position: relative;
	width: 3.4rem;
	height: .6rem;
	background: #F8F8F8;
	border-radius: 0.08rem;
}

.search input {
	width: 80%;
	height: .52rem;
	line-height: .5rem;
	border: 1px solid #e5e5e5;
	border-radius: 0.08rem;
	text-indent: 1em;
	background: transparent;
	color: #999999;
	font-size: .24rem;
}

input::-webkit-input-placeholder {
	font-size: .28rem;
	color: #ccc;
}

input::-moz-placeholder {
	font-size: .28rem;
	color: #ccc;
}

.search button {
	background-color: transparent;
	border: 0;
	width: 0.8rem;
	height: 0.52rem;
	position: absolute;
	top: 49%;
	transform: translate(0, -50%);
	right: .05rem;
	background: var(--pm-c) url("../images/search.png") no-repeat center/contain;
	background-size: .28rem;;
	border-radius: .08rem;
}

.nav {
	margin-left: -0.24rem;
	margin-right: -0.24rem;
	background: #FFFFFF;
	box-shadow: 0px 8px 40px 0px rgba(0,0,0,0.08);
}

.nav li {
	margin-right: 0.1rem;
	white-space: nowrap;
	height: 0.88rem;
	line-height: 0.88rem;
	padding: 0 0.3rem;
	box-sizing: border-box;
	text-align: center;
	position: relative;
}

.nav li a {
	width: 1.72rem;
	font-size: 0.28rem;
	color: #1A1A1A;
	position: relative;
	z-index: 22;
	text-align: center;
}

.nav li.active {
	height: 0.8rem;
	line-height: 0.8rem;
	background: linear-gradient( 180deg, rgba(95,102,249,0) 0%, rgba(95,102,249,0.08) 100%);
	border-bottom: .04rem solid var(--pm-c);
}

.nav li.active a {
	font-size: 0.3rem;
	color: var(--pm-c);
}

/* 首页轮播 */
.index-slide .uk-slideshow{
	position: relative;
	height: 3.8rem;
}
.index-slide .uk-slideshow-items{
	position: relative;
	overflow: hidden;
	height: 3.8rem;
}
.index-slide .uk-slideshow-items li{
	height: 3.8rem;
}
.index-slide .uk-slideshow-items li img{
	height: 3.8rem;
}
	
.index-slide .uk-slideshow-items li .title{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.6);
	height: .8rem;
	line-height: .8rem;
	padding: 0 .24rem;
	padding-right: 1.3rem;
	font-size: .3rem;
	color: #FFFFFF;
}
.index-slide .uk-dotnav>*>*{
	width: .16rem;
	height: .18rem;
	background: rgba(255,255,255,0.4);
	border-radius: .16rem;
	border: none;
	margin: 0 -.04rem;
}
.index-slide .uk-dotnav>.uk-active>* {
	background: var(--pm-c);
}
/* 最新资讯 */
.home-latest .list{
	margin-bottom: .4rem;
	position: relative;
}

.home-latest .list .tj_icon{
	width: 1.04rem;
	height: 1.04rem;
	background: #FFFFFF url('../images/tj_icon.png') no-repeat center/contain;
	background-size: .52rem;
	border-radius: .16rem;
	border: .02rem solid #BCBCBC;
}
.home-latest .list .title {
	display: block;
	font-size: .3rem;
	color: #1A1A1A;
	font-weight: bold;
}

.home-latest .list .text {
	font-size: .24rem;
	color: #999999;
	margin-top: .2rem;
}

/* 游戏测评 */
.home-game-cp .list{
	border-bottom: .01rem dashed #E6E6E6;
	padding-bottom: .24rem;
}
.home-game-cp .list:last-child{
	margin-bottom: 0 !important;
	border-bottom: 0;
	padding-bottom: 0;
}

.home-game-cp .list .name{
	font-size: .24rem;
	color: #999;
	padding: 0 .1rem;
}
.home-game-cp .list .name::after{
	content: '';
	display: inline-block;
	width: .02rem;
	height: .24rem;
	background: #CCCCCC;
	margin-left: .1rem;
	margin-top: 0rem;
	vertical-align: middle;
}

/* 小编推荐 */
.home-tj-news .item .thumb{
	width: 2.4rem;
	height: 1.6rem;
}
.home-tj-news .item .title{
	font-size: .28rem;
	color: #1A1A1A;
}
.home-tj-news .item .text{
	font-size: .24rem;
	color: #999999;
	margin-top: .2rem;
}
.home-tj-news .item .time{
	font-size: .24rem;
	color: #999999;
	display: block;
	margin-top: .15rem;
}
.home-tj-news .list{
	margin-top: .3rem;
}
.home-tj-news .list-container:nth-child(3){
	border-bottom: .01rem solid #F2F2F2;
	padding-bottom: .2rem;
	margin-bottom: .3rem;
}
/* 最新资讯 */
.home-hot-zx .item{
	margin-bottom: .28rem;
}
.home-hot-zx .item .date{
	width: 1.2rem;
	height: 1.08rem;
	border: .01rem solid var(--pm-c);
	margin-right: .2rem;
}
.home-hot-zx .item .day{
	height: .68rem;
	line-height: .68rem;
	background-color: var(--pm-c);
	text-align: center;
	font-size: .4rem;
	color: #fff;
}

.home-hot-zx .item .time{
	display: block;
	color: var(--pm-c);
	font-size: .24rem;
	line-height: .4rem;
  text-align: center;
}
.home-hot-zx .item .title{
	font-weight: bold;
	font-size: .28rem;
	color: #1A1A1A;
}
.home-hot-zx .item .text{
	font-size: .24rem;
	color: #999999;
} 
.home-hot-zx .list{
	margin-bottom: .25rem;
}

.home-hot-zx .list:last-child{
	margin-bottom: 0;
}

.home-hot-zx .list .name{
	font-size: .24rem;
	color: #A7A8A7;
	margin-right:.2rem
}
.home-hot-zx .list .name::after{
	  content: '';
	  display: inline-block;
	  width: .02rem;
	  height: .24rem;
	  background: #CCCCCC;
	  margin-left: .2rem;
	  vertical-align: middle;
}
.home-hot-zx .list:nth-child(-n+3) .num{
	color: var(--pm-c);
}
.home-hot-zx .list .title{
	font-size: .28rem;
	color: #1A1A1A;
}

.home-hot-zx .list .hits{
	margin-left: .2rem;
	font-size: .24rem;
	color: #999999;
	padding-left: .36rem;
	background: url('../images/hits_icon.png') no-repeat left/contain;
  background-size: .28rem;
}

/* 精选攻略 */
.home-hot-gl .item{
	margin-top: .28rem;
}

.home-hot-gl .item .thumb{
	width: 2.6rem;
	height: 1.6rem;
	display: none;
}
.home-hot-gl .item:nth-child(2) .thumb{
	display: block;
}
.home-hot-gl .item .info{
	margin-left: 0 !important;
}
.home-hot-gl .item:nth-child(2) .info{
	margin-left: .3rem !important;
}
.home-hot-gl .item .title{
	font-size: .28rem;
	color: #1A1A1A;
	margin-bottom: .2rem;
}
.home-hot-gl .item .text{
	font-size: .24rem;
	color: #999999;
	line-height: .42rem;
}
.home-hot-gl .item:nth-child(2) .text{
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	white-space: normal;
}
.home-hot-gl .item .time{
	font-size: .24rem;
	color: #999999;
	display: block;
}
.home-hot-gl .item .order{
	display: block;
	width: .36rem;
	height: .36rem;
	line-height: .36rem;
	border-radius: .06rem;
	background:  var(--pm-c);
	border: .01rem solid var(--pm-c);
	text-align: center;
	font-size: .24rem;
	color: #FFFFFF;
	margin-right: .2rem;
}
.home-hot-gl .item .item-info{
	border-bottom: .01rem solid #F2F2F2;
	padding-bottom: .28rem;
	overflow: hidden;
}
.home-hot-gl .item:last-child .item-info{
	border-bottom: none;
	padding-bottom: 0;
}
.home-hot-gl .item:nth-child(n+3) .order{
	background-color: #fff;
	color: var(--pm-c);
}
.home-hot-gl .item:nth-child(n+3) .info{
	display: flex;
	align-items: center;
}
.home-hot-gl .item:nth-child(n+3) .text{
	flex: 1;
}
.home-hot-gl .item:nth-child(n+3) .time{
	margin-top: 0 !important;
	margin-left: .2rem;
}
/* 热门资讯 */
.home-jx-gl .thumb{
	width: 100%;
	height: 3.2rem;
}
.home-jx-gl .list{
	margin-top: .32rem;
}

/* 最新应用 */
.home-app .item{
	display: flex;
	align-items: center;
	margin-top: .12rem;
}

.home-app .item .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .3rem;
	overflow: hidden;
}

.home-app .item .title {
	font-size: .28rem;
	color: #1A1A1A;
}

.home-app .item .type {
	color: #999999;
	font-size: .24rem;
	display: block;
	margin-top: .2rem;
}

/* 应用下载 */
.home-game .item {
	margin-bottom: .28rem;
	padding-bottom: .28rem;
	border-bottom: .01rem dashed #E6E6E6;
}

.home-game .item:last-child {
	margin-bottom: 0;
	padding-bottom:.1rem;
	border: none;
}
.home-game .item .order{
	width: .36rem;
	height: .36rem;
	border-radius: .06rem;
	color: #fff;
	font-size: .24rem;
	text-align: center;
	margin-right: .24rem;
	background-color: #ddd;
}

.home-game .item:nth-child(1) .order{
	background: #FF5A00;
}
.home-game .item:nth-child(2) .order{
	background: #FF9B19;
}
.home-game .item:nth-child(3) .order{
	background: #FFCB2E;
}
.home-game .item .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .3rem;
	overflow: hidden;
}

.home-game .item .title {
	font-size: .28rem;
	color: #1A1A1A;
	display: block;
}
.home-game .item .time{
	font-size: .24rem;
	color: #999999;
	display: block;
	margin-top: .2rem;
}
.home-game .item .type{
	font-size: .24rem;
	color: #999999;
	display: none;
	margin-left: .2rem;
}
.home-game .item .star{
	display: none;
}
.home-game .item .down {
	display: block;
	width: 1.36rem;
	height: .64rem;
	line-height: .64rem;
	border-radius: 1.99rem;
	text-align: center;
	font-size: .28rem;
	color: var(--pm-c);
	border: .01rem solid var(--pm-c);
}
.home-game .item:nth-child(n+4) .icon,
.home-game .item:nth-child(n+4) .down,
.home-game .item:nth-child(n+4) .time{
	display: none;
}
.home-game .item:nth-child(n+4) .type,
.home-game .item:nth-child(n+4) .star{
	display: block;
}
.home-game .item:nth-child(n+4) .info{
	margin-left: 0 !important;
}
/* 游戏列表 */
.game-warp .item {
	margin-bottom: .32rem;
	padding-bottom: .32rem;
	border-bottom: .01rem dashed #E6E6E6;
}

.game-warp .item .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .3rem;
	overflow: hidden;
	position: relative;
}

.game-warp .item .title {
	font-weight: bold;
	font-size: .28rem;
	color: #1A1A1A;
}
.game-warp .item .type{
	display: flex;
}
.game-warp .item .type span {
	display: inline-block;
	font-size: .24rem;
	color: #999999;
	margin-bottom: .16rem
}
.game-warp .item .type .pf{
	border: .01rem solid #F8A749;
	color: #F8A749;
}
.game-warp .item .text{
	font-size: .24rem;
	color: #666666;
	margin-top: .1rem;
}

.game-warp .item .down {
	display: inline-block;
	width: 1.36rem;
	height: .64rem;
	line-height: .64rem;
	border-radius: .99rem;
	font-size: .28rem;
	color: var(--pm-c);
	border: .01rem solid var(--pm-c);
	text-align: center;
}

/* 游戏详情 */
.single-game {
	background: #fff;
	padding-top: 1.04rem;
}

.single-game .single-header {
	position: relative;
	padding: 1.06rem .4rem .3rem;
	margin: 0rem .24rem;
	background: url('../images/single_header.png') no-repeat top/cover;
}

.single-game .single-header .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .3rem;
	overflow: hidden;
	position: absolute;
	top: -.6rem;
	text-align: center;
	margin: 0 auto;
	left: 50%;
	transform: translate(-50%, 0);
}

.single-game .single-header .single-info {
}

.single-game .single-header .single-title {
	text-align: center;
	margin: 0 auto;
}

.single-game .single-header .single-title h1 {
	font-size: .32rem;
	font-weight: bold;
	letter-spacing: .02rem;
	color: #1A1A1A;
	margin-bottom: 0rem;
}

.single .single-header .down-href {
	display: block;
	width: 100%;
	font-size: .32rem;
	color: #fff;
}

.single .single-header .down-href a {
	display: block;
	height: .88rem;
	line-height: .88rem;
	width: 100%;
	text-align: center;
	padding-left: .36rem;
	box-sizing: border-box;
	background: #F46A2F url('../images/single_down.png') no-repeat 2.2rem/contain;
	background-size: .36rem;
	border-radius: 1.99rem;
	margin-bottom: .2rem;
	font-size: .32rem;
	color: #fff;
}


.single .single-header .down-href a.ios {
	background-color: #ffb22d;
}

.single .down-href .none {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	-webkit-filter: grayscale(1);
	opacity: .4;
	border: none;
}

.single-game .single-header ul {
	/* padding-top: .2rem; */
	margin-left: .14rem;
}

.single-game .single-header ul li {
	font-size: .24rem;
	color: #808080;
	margin-top: .2rem;
	background: url('../images/single_icon.png') no-repeat left/contain;
	background-size: .28rem;
	border-radius: .06rem;
	padding-left: 0.4rem;
	width: 48%;
		
}
.single-game .single-header ul li:nth-child(odd){
	 margin-right: .1rem;
}
.single-game .single-header ul li:nth-child(even){
	 margin-left: .1rem;
	 padding-left: 0.36rem;
}
.single-game .single-header ul li span {
	font-size: .24rem;
	color: #808080;
}

.single-slide .item {
	width: 3.2rem;
	object-fit: contain;
}

.single-slide img {
	width: 3.2rem;
	overflow: hidden;
}

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

.news-list .item{
	border-bottom: .02rem solid #F2F2F2;
	padding-bottom: .32rem;
	margin-bottom: .32rem;
}
.news-list .item:last-child{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}
.news-list .item .thumb{
	width: 2.2rem;
	height: 1.6rem;
}
.news-list .item .title{
	font-size: .28rem;
	color: #1A1A1A;
}
.news-list .item span{
	border-radius: 0.08rem;
	border: .01rem solid #EBEBEB;
	padding: 0.06rem .1rem;
	margin-right: .2rem;
}
.news-list .item .type{
	font-size: .24rem;
	color: #999999;
	display: block;
	padding-left: .44rem;
	background: url('../images/come_from.png') no-repeat .1rem/contain;
	background-size: .28rem;
}
.news-list .item .time{
	font-size: .24rem;
	color: #999999;
	display: block;
	padding-left: .44rem;
	background: url('../images/time.png') no-repeat .1rem/contain;
	background-size: .28rem;
}

.news-list .item .text{
	font-size: .24rem;
	color: #999999;
	margin-top: .1rem;
}

/* 资讯详情 */
.single-news .single-header{
	border: .01rem solid #EBEBEB;
	padding: .2rem .36rem;
}
.single-news .single-header .title {
	font-weight: bold;
	font-size: .36rem;
	line-height: .6rem;
	color: #1A1A1A;
	overflow: visible;
	text-overflow: inherit;
	white-space: wrap;
	margin-top: .36rem;
	text-align: center;
}

.single-news .single-header .info {
	display: flex;
	justify-content: space-between;
	margin-bottom: .24rem;
	margin-top: .32rem;
}

.single-news .info span {
	font-size: 0.24rem;
	line-height: 0.28rem;
	color: #999999;
	margin-right: 0.1rem;
}

.single-news .info span:nth-child(2) {
	margin-left: 0.1rem;
	margin-right: 0.1rem;
}

/* 详情公共样式 */
.single-content {
	overflow: hidden;
}

.single .single-content h2,
.single .single-content h3 {
	display: inline-block;
	font-size: .32rem;
	color: var(--pm-c);
	text-align: left;
	margin-top: .2rem;
	font-weight: bold;
}
.single .single-content h2::before,
.single .single-content h3::before {
	content: '';
	display: inline-block;
	width: .28rem;
	height: .28rem;
	background: url('../images/single_h2.png') no-repeat center/contain;
	margin-right: .12rem;
	vertical-align: middle;
	margin-bottom: .06rem;
}
/* .single .single-content h2::after,
.single .single-content h3::after {
	content: '';
	display: inline-block;
	width: .28rem;
	height: .28rem;
	background: url('../images/h3_after.png') no-repeat center 1px/contain;
	background-size: .28rem;
	margin-left: .12rem;
} */

.single-content p {
	text-indent: 2em;
	font-size: 0.28rem;
	line-height: 0.64rem;
	letter-spacing: 0.01rem;
	color: #333;
}

.single-content img {
	display: block;
	max-width: 90%;
	margin: 0.1rem auto;
	border-radius: .16rem;
}

/* 底部公共板块 */
.single-like-game .item{
	background: #F7F7F7;
	padding: .3rem;
	border-bottom: none;
}
.single-like-game .item:last-child{
	border-bottom: none;
	margin-bottom: .1rem;
}
.single-like-game .item .type span{
	margin-bottom: 0;
}
/* 单页 */
.page-content {
	margin: .38rem 0;
}

.page-content p {
	font-size: .26rem;
	line-height: .6rem;
	letter-spacing: .01rem;
	color: #666666;
	text-indent: 2em;
}

.page-content ul li a {
	display: block;
	font-size: .26rem;
	letter-spacing: .02rem;
	color: #666666;
	background: url('../images/kaifu_icon.png') no-repeat left/contain;
	background-size: .2rem;
	padding-left: .3rem;
}

/* 搜索页 */
.search-total {
	display: block;
	margin: .3rem 0 .4rem;
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #666666;
}

/* 404 500 错误页面 */
.page-error {
	text-align: center;
	min-height: 8rem;
}

.page-error img {
	width: 50%;
	margin: 2.45rem auto 1rem;
}

.page-error p {
	font-size: .26rem;
	color: #666666;
	letter-spacing: .02rem;
}

.page-error a.go-home {
	width: 1.76rem;
	height: .61rem;
	line-height: .56rem;
	text-align: center;
	border-radius: .06rem;
	border: .02rem solid #FAD5C3;
	font-size: .24rem;
	color: var(--pm-c);
	display: block;
	margin: .68rem auto 1.2rem;
}

/* 开服表 */
.category-kaifu {}

.kaifu-title {}

.kaifu-title .time {
	font-size: .28rem;
	color: #999;
	margin-left: .2rem;
}

.kaifu-title p {

	color: #333333;
	font-size: .28rem;
}

.kaifu-menu {
	margin: .4rem 0;
}

.kaifu-menu button {
	font-size: .26rem;
	letter-spacing: .01rem;
	color: #333333;
	border-radius: .1rem;
	border: solid .01rem #eeeeee;
	background: url('../images/kaifu_icon.png') no-repeat 1.7rem/contain;
	background-size: .25rem;
	padding-right: .3rem;
	text-align: left;
	padding-left: .2rem;
	width: 2.16rem;
}

.kaifu-menu button:hover {
	background: url('../images/kaifu_icon_.png') no-repeat 1.7rem/contain;
	background-size: .25rem;
}

.kaifu-menu .uk-dropdown {
	padding: .2rem;
}

.kaifu-menu ul li {
	padding-left: .2rem;
}

.kaifu-menu ul li a {
	font-size: .26rem;
	color: #333333;
}

.kaifu-menu ul li.uk-active {
	background: var(--pm-c);
}

.kaifu-menu ul li.uk-active a {
	color: #fff;
}

.kaifu-warp .item {
	position: relative;
	padding-bottom: .2rem;
	border-bottom: .02rem solid #F2F2F2;
	margin-bottom: .32rem;
}
.kaifu-warp .item:last-child{
	border: none;
	paddong-bottom: 0;
}
/* .kaifu-warp .item:nth-child(odd) {
	background-color: #F6FAFF;
} */

.kaifu-warp .item .icon {
	width: 1.24rem;
	height: 1.24rem;
	border-radius: .24rem;
	overflow: hidden;
}

.kaifu-warp .item .title {
	font-size: .28rem;
	color: #1A1A1A;
	display: block;
	font-weight: 600;
}

.kaifu-warp .item .type span {
	font-size: .24rem;
	color: #999999;
	display: block;
	margin-top: .1rem;
}

.kaifu-warp .item .more {
	display: block;
	width: 1.36rem;
	height: .64rem;
	line-height: .64rem;
	background: #fff;
	color: var(--pm-c);
	font-size: .28rem;
	text-align: center;
	border: .01rem solid var(--pm-c);
	border-radius: 1.98rem;
}

.kaifu-warp .platform i {
	display: inline-block;
	width: .28rem;
	height: .28rem;
	background-repeat: no-repeat;
}
.kaifu-warp .platform .az_ {
	background: url(../images/kf_az.png) no-repeat center/contain;
	margin-right: .1rem;
}

.kaifu-warp .platform .az {
	background: url(../images/kf_az_.png) no-repeat center/contain;
	margin-right: .1rem;
}

.kaifu-warp .platform .ios_ {
	background: url(../images/kf_ios.png) no-repeat center/contain;
}
.kaifu-warp .platform .ios {
	background: url(../images/kf_ios_.png) no-repeat center/contain;
}
