:root {
	--pm-c: #02A76C;
	--br-c: #e5e5e5;
}

/*隐藏类*/
.hide {
	display: none !important;
}

/*隐藏遮罩*/
#aq-model {
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 999;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #fff url(/themes/default/404.png) no-repeat center;
}

/*应用信息样式*/
#app_info {
	margin: 20px 0
}

#app_info li {
	display: inline-block;
	width: 33.33%;

}

#app_info li b {
	cursor: pointer;
}

#app_info_cover {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	text-align: center;
	z-index: 9999
}

#app_info_cover .app_info_main {
	background: #fff;
	width: 520px;
	margin: auto;
	margin-top: 100px;
	border-radius: 8px;
	overflow: hidden;
}

#app_info_cover .app_info_title {
	background: #5CA8F6;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 50px;
}

#app_info_cover .app_info_body {
	padding: 20px;
	height: 320px;
	overflow-y: scroll;
	text-align: left;
}

#app_info_cover .app_info_close {
	margin: 20px;
	font-size: 17px;
	color: #fff;
	background: #5CA8F6;
	line-height: 48px;
	border-radius: 20px;
	cursor: pointer;
	display: block;
	font-weight: bold;
	margin-top: 30px;
}

@media (max-width: 760px) {
	#app_info li {
		width: 100%;
		margin-top: 10px;
	}

	#app_info_cover .app_info_main {
		width: 98%;
	}

	#app_info_cover .app_info_close {
		font-size: 16px;
		line-height: 42px;
	}
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
button,
textarea,
p,
th,
td,
span,
a,
b,
i,
strong,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

em,
i {
	font-style: normal;
}

table {
	border-collapse: collapse;
}

input {
	border: none;
	/*在移动端浏览器默认的外观在iOS上加上这个属性才能给按钮和输入框自定义样式*/
	-webkit-appearance: none;
}

a {
	text-decoration: none;
	background: none;
	font-size: inherit;
	color: inherit;
	transition: all .2s ease-out;
}

a:hover {
	color: var(--pm-c);
	text-decoration: none;
}

ul,
li,
ol {
	list-style: none;
}

:focus {
	outline: none;
}

/*点击高亮我们需要清除  设置为transparent 完成透明*/
* {
	-webkit-tap-highlight-color: transparent;
}

/*禁用长按页面时的弹出菜单*/
img,
a {
	-webkit-touch-callout: none;
}

/* 去掉滑动条 */
::-webkit-scrollbar {
	display: none
}

/* 滚动槽 */
::-webkit-scrollbar-track {
	/* -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3); */
	border-radius: 10px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.1);
	/* -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5); */
}

::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255, 0, 0, 0.4);
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
	width: .12rem;
}

.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: linear;
	-moz-transition-timing-function: linear;
	-ms-transition-timing-function: linear;
	-o-transition-timing-function: linear;
	transition-timing-function: linear;
}

body {
	font-size: .24rem;
	line-height: 1.5;
	color: #333;
	background: #F5FCF9;
	width: 7.5rem;
	min-width: 320px;
	max-width: 750px;
	margin: 0 auto;
	letter-spacing: .01rem;
}

/*图片高清*/
img {
	border: 0;
	display: block;
	width: 100%;
	height: 100%;
	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;
	transition: all .3s ease-out;
}

a.title {
	display: block;
}

.mt-0 {
	margin-top: 0rem !important;
}

.mt-1 {
	margin-top: .1rem !important;
}

.mt-2 {
	margin-top: .2rem !important;
}

.mt-3 {
	margin-top: .3rem !important;
}

.mt-4 {
	margin-top: .4rem !important;
}
.mb-0 {
	margin-bottom: 0rem !important;
}

.mb-1 {
	margin-bottom: .1rem !important;
}

.mb-2 {
	margin-bottom: .2rem !important;
}

.mb-3 {
	margin-bottom: .3rem !important;
}

.mb-4 {
	margin-bottom: .4rem !important;
}

.ml-0 {
	margin-left: 0rem !important;
}

.ml-1 {
	margin-left: .1rem !important;
}

.ml-2 {
	margin-left: .2rem !important;
}

.ml-3 {
	margin-left: .3rem !important;
}

.mr-0 {
	margin-right: 0rem !important;
}

.mr-1 {
	margin-right: .1rem !important;
}

.mr-2 {
	margin-right: .2rem !important;
}

.mr-3 {
	margin-right: .3rem !important;
}

.m-3 {
	margin: 0 .3rem;
}

.ma-2 {
	margin: .2rem;
}

.ma-3 {
	margin: .3rem;
}

.pl-0 {
	padding-left: 0rem !important;
}

.pl-1 {
	padding-left: .1rem !important;
}

.pl-3 {
	padding-left: .3rem !important;
}

.pr-0 {
	padding-right: 0rem !important;
}

.pr-1 {
	padding-right: .1rem !important;
}

.pr-3 {
	padding-right: .3rem !important;
}

.pt-0 {
	padding-top: 0rem !important;
}

.pt-2 {
	padding-top: .2rem !important;
}

.pt-3 {
	padding-top: .3rem !important;
}

.pb-0 {
	padding-bottom: 0rem !important;
}

.pb-2 {
	padding-bottom: .2rem !important;
}

.pb-3 {
	padding-bottom: .3rem !important;
}

.pb-4 {
	padding-bottom: .4rem !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);
}

.module {
	padding: .3rem;
	background: #fff;
	margin-bottom: .24rem;
}

.title {
	font-size: .28rem;
	color: #333333;
	letter-spacing: .02rem;
	display: block;
}

.info {
	margin-left: .2rem;
	overflow: hidden;
	flex: 1;
}

.icon {
	width: 1.21rem;
	height: 1.21rem;
	border-radius: .15rem;
	overflow: hidden;
}

.desc {
	font-size: .24rem;
	color: #888888;
}

.type {
	font-size: .24rem;
	color: #888888;
}

.time {
	font-size: .24rem;
	color: #999999;
}

.score {
	font-size: .28rem;
	color: #FF6969;
}

.down {
	display: block;
	text-align: center;
	letter-spacing: .02rem;
}

/*分页*/
.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 {
	overflow: hidden;
}

.list-container li {
	margin-top: .35rem;
}

.list-container li .dot {
	display: block;
	width: .12rem;
	height: .12rem;
	background: #E5E5E5;
}

.list-container li .tag {
	color: #888888;
	font-size: .24rem;
}

.list-container li .order {
	width: .45rem;
	height: .45rem;
	line-height: .45rem;
	background-color: #e0e0e0;
	border-radius: .06rem;
	text-align: center;
	color: #ffffff;
	font-size: .24rem;
}

.list-container li .title {
	display: block;
	margin-left: .2rem;
	margin-right: .3rem;
	color: #333333;
	font-size: .28rem;
}

.list-container li .time {
	font-size: .24rem;
	color: #999999;
}

/* 评分图标 */
.star {
	height: 0.24rem;
	width: 1.2rem;
	background: url('../images/star_bg.png') repeat-x center/0.24rem;
	display: inline-block;
}

.star:before {
	content: "";
	display: block;
	background: url('../images/star.png') repeat-x 0/0.24rem;
	height: 0.24rem;
}

.star-1:before {
	width: 0.24rem;
}

.star-2:before {
	width: 0.48rem;
}

.star-3:before {
	width: 0.72rem;
}

.star-4:before {
	width: 0.96rem;
}

.star-5:before {
	width: 1.2rem;
}

.star1 {
	height: 0.24rem;
	width: 1.2rem;
	background: url('../images/icon_star_bg.png') repeat-x center/0.24rem;
	display: inline-block;
}

.star1:before {
	content: "";
	display: block;
	background: url('../images/icon_star.png') repeat-x 0/0.24rem;
	height: 0.24rem;
}

.star1-1:before {
	width: 0.24rem;
}

.star1-2:before {
	width: 0.48rem;
}

.star1-3:before {
	width: 0.72rem;
}

.star1-4:before {
	width: 0.96rem;
}

.star1-5:before {
	width: 1.2rem;
}

/* 公共标题 */
.module-title {
	position: relative;
}

.module-title .title {
	display: block;
	line-height: 0.36rem;
	font-size: 0.32rem;
	font-weight: bold;
	color: #333;
	padding-left: 0.58rem;
	letter-spacing: .02rem;
}

.module-title .more {
	display: block;
	font-size: .24rem;
	color: #999;
}

.module-title .title::before {
	display: inline-block;
	width: 0.48rem;
	height: 0.32rem;
	background: url('../images/title.png') no-repeat center/contain;
	left: 0rem;
}

/* 头尾 */
.header {
	width: 100%;
	background: #fff;
	padding: .3rem 0 0;
	box-sizing: border-box;
}
.header-top{
	padding: 0 .3rem;
}
.header .logo {
	width: auto;
	height: .58rem;
}

.search {
	width: 3.12rem;
	height: .6rem;
	border-radius: .08rem;
	overflow: hidden;
	display: flex;
	margin-left: .2rem;
	background: #fff;
	box-sizing: border-box;
	border: .01rem solid var(--pm-c);
}

.search .search-input {
	width: calc(100% - .84rem);
	height: 100%;
	background: #fff;
	padding: 0 .2rem;
	font-size: .24rem;
	color: #c6c6c6;
	box-sizing: border-box;
}

.search .search-btn {
	width: .84rem;
	height: 100%;
	cursor: pointer;
	background: var(--pm-c) url('../images/search.png') no-repeat center/contain;
	background-size: .24rem;
	color: #fff;
	font-size: .24rem;
	border: none;
}

input::-webkit-input-placeholder {
	font-size: .24rem;
    color: #c6c6c6;
}

input::-moz-placeholder {
	font-size: .24rem;
	color: #c6c6c6;
}

.header .nav {
	width: 100%;
	overflow: auto hidden;
	margin-top: .48rem;
	line-height: .9rem;
	background: linear-gradient( 90deg, #76EB88 0%, #01A66C 100%);
}

.header .nav li {
	flex-shrink: 0;
	min-width: 1.58rem;
	height: .9rem;
	line-height: .9rem;
	padding: 0 0.56rem;
	box-sizing: border-box;
	text-align: center;
}

.header .nav li.active {
	background: rgba(255,255,255,0.3);
}

.header .nav li a {
	display: block;
	font-size: .28rem;
	color: #ffffff;
	height: .9rem;
	line-height: .9rem;
}

.header .nav li.active a {
	font-weight: bold;
}

.footer {
	background-color: #333333;
	padding: .3rem;
	color: #999999;
	font-size: .26rem;
	text-align: center;
}

.footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer ul li {
	margin: .2rem 0;
	padding: 0 .2rem;
	line-height: 1;
}

.footer ul li:last-child {
	border-right: 0;
}

.footer p {
	line-height: .72rem;
	margin-top: .1rem;
}

/* 友情链接 */
.index_link {
	padding-bottom: 0;
}

.flink {
	overflow: hidden;
}

.flink a {
	/* display: inline-block; */
	float: left;
	margin-right: .3rem;
	white-space: nowrap;
	margin-bottom: 0.28rem;
	line-height: .28rem;
	font-size: 0.24rem;
	color: #888888;
}

.flink a::after {
	content: '|';
	display: inline-block;
	margin-left: .3rem;
	font-size: 0.24rem;
	color: #888888;
}

.flink a:last-child::after {
	display: none;
}

.mian {
	overflow: hidden;
	position: relative;
}

/* 轮播图 */
.index_slider {
	position: relative;
	overflow: hidden;
	height: 3.78rem;
	margin-top: .3rem;
}
.index_slider .slider{
    margin-left: 0rem;
}
.index_slider li {
	/* width: 100%; */
	width: 6.02rem;
	height: 100%;
	margin-right: .26rem;
	border-radius: .08rem;
	padding-left: 0;
}

.index_slider li .thumb {
	display: block;
	width: 100%;
	height: 3.78rem;
	border-radius: .08rem;
}

.index_slider li .thumb img {
	border-radius: .08rem;
	overflow: hidden;
}

.index_slider li .title{
	height: .68rem;
    line-height: .68rem;
	background: rgba(0,0,0,0.5);
	border-radius: 0rem 0rem .08rem .08rem;
	color: #fff;
	font-size: .28rem;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: .0 .3rem;
	text-align: center;
}

/* 今日要闻 */
.index_jr_news .tig_title{
   width: 100%;
   height: 1.2rem;
   margin-bottom: 0.6rem;
   background: url('../images/title_jryw.png') no-repeat center/cover;
}
.index_jr_news ul{
	border-left: 1px solid #EFEFEF;
	padding-left: 0.36rem;
}
.index_jr_news ul li{
   margin-bottom: 0.36rem;
   position: relative;
}
.index_jr_news ul li:last-child{
	margin-bottom: 0;
}
.index_jr_news ul li::before{
	content: '';
	display: block;
	width: 0.12rem;
	height: 0.12rem;
	border-radius: 0.12rem;
	border: 0.04rem solid var(--pm-c);
	position: absolute;
	top: .04rem;
	left: -0.43rem;
	background: #FFFFFF;
}
.index_jr_news ul li .score{
	display: block;
	width: 0.96rem;
	height: 0.4rem;
	line-height: 0.4rem;
	background: linear-gradient( 90deg, #76EB88 0%, #01A66C 100%);
	border-radius: 0.12rem 0.12rem 0 0.12rem;
	font-weight: bold;
	font-size: 0.24rem;
	color: #FFFFFF;
	margin-right: 0.2rem;
	align-self: baseline;
}
.index_jr_news ul li .score::before{
	content: '';
	display: inline-block;
	width: 0.24rem;
	height: 0.24rem;
	margin: 0 0.08rem 0 .1rem;
	background: url('../images/score.png') no-repeat center .03rem/contain;
}
.index_jr_news ul li .title{
	font-size: 0.28rem;
    color: #333333;
}

.index_jr_news ul li .text{
	font-size: 0.24rem;
	color: #999999;
	margin: 0.28rem 0 0.24rem;
}
.index_jr_news ul li .time{
	font-size: 0.24rem;
	color: #999999;
}

/* 热门手游 */
.index_recom_game .item{
  text-align: center;
}
.index_recom_game .item .icon{
	width: 1.32rem;
	height: 1.32rem;
	border-radius: 0.3rem;
	overflow: hidden;
}
.index_recom_game .item .title{
	font-size: 0.28rem;
	color: #333;
	margin: 0.2rem auto;
}
.index_recom_game .item .size{
	font-size: 0.24rem;
	color: #999999;
}
.index_recom_game .item .down{
	display: block;
    width: 1.32rem;
	height: 0.56rem;
	line-height: 0.52rem;
	border-radius: 0.08rem;
	border: .02rem solid var(--pm-c);
	margin: 0.3rem  auto 0;
	font-size: 0.24rem;
	color: var(--pm-c);
	padding-left: 0.3rem;
	text-align: left;
	background: url('../images/icon_jt.png') no-repeat  0.9rem 0.2rem/contain;
	background-size: 0.26rem 0.14rem;
	box-sizing: border-box;
}

/* 热门攻略 */
.index_hot_gl{
	width: 100%;
}
.index_hot_gl .item{
	margin-top: 0.36rem;
	padding-bottom: 0.36rem;
	border-bottom: .02rem dashed #E5E5E5;
}
.index_hot_gl .item:last-child{
	border-bottom: none;
	padding-bottom: 0;
}
.index_hot_gl .item .thumb{
	width: 2.34rem;
	height: 1.7rem;
}
.index_hot_gl .item .title{
	font-size: 0.28rem;
	color: #000;
	margin-bottom: 0.24rem;
}
.index_hot_gl .item:hover .title{
	color: var(--pm-c);
}
.index_hot_gl .item .text{
	font-size: 0.24rem;
	color: #999999;
	margin-bottom: 0.28rem;
}
.index_hot_gl .item .type{
	display: inline-block;
	margin-right: 0.12rem;
	padding: 0 0.24rem;
	height: 0.4rem;
	line-height: 0.4rem;
	background: #F4F9F8;
	border-radius: 0.08rem 0.08rem 0.08rem 0;
	font-size: 0.24rem;
	color: var(--pm-c);
}
.index_hot_gl .item .time{
	display: block;
	font-size: 0.24rem;
	color: #999999;
	background: url('../images/time.png') no-repeat left/contain;
    background-size: 0.28rem;
	padding-left: 0.46rem;
}

/* 游戏安利墙 */
.index_game_alq{
	padding: .58rem  0 .3rem .4rem;
	background: url('../images/bg_yxalq.png') no-repeat center/cover;
}
.index_game_alq .big_title{
	font-weight: bold;
	font-size: .3rem;
	color: #333333;
	text-align: center;
	padding-bottom: .54rem;
}

.index_game_alq .big_title::before{
	content: '';
	display: inline-block;
	width: 1.2rem;
	height: .24rem;
	margin: 0 .3rem;
	background: url('../images/icon_yxalq_l.png') no-repeat center 2px/contain;
}

.index_game_alq .big_title::after{
	content: '';
	display: inline-block;
	width: 1.2rem;
	height: .24rem;
	margin: 0 .3rem;
	background: url('../images/icon_yxalq_r.png') no-repeat center 2px/contain;
}
.index_game_alq .game_alq{
   display: flex;
   overflow-x: scroll;
}

.index_game_alq .item{
	min-width: 3.8rem;
	background-color: #fff;
	box-shadow: 0rem 0rem .16rem 0rem #DEF4E8;
	padding: 0.7rem 0.5rem .58rem;
	text-align: center;
	box-sizing: border-box;
	 margin-right: .24rem;
}

.index_game_alq .item .icon{
	width: 1.6rem;
	height: 1.6rem;
	margin: 0 auto;
	border-radius: 50%;
}
.index_game_alq .item .title{
	font-size: 0.3rem;
	color: #333333;
	margin: 0.32rem auto;
	text-align: center;
}
.index_game_alq .item:hover .title{
	color: var(--pm-c);
}

.index_game_alq .item .text{
	font-size: 0.24rem;
	color: #999999;
    margin: 0.6rem 0 0.2rem;
}
 
.index_game_alq .item .desc{
    position: relative;
}
.index_game_alq .item .desc::before{
	content: '';
	display: inline-block;
	width: 0.2rem;
	height: 0.2rem;
	position: absolute;
	left: -0.24rem;
	top: -0.34rem;
	background: url('../images/icon_text_l.png') no-repeat center 2px/contain;
}
.index_game_alq .item .desc::after{
	content: '';
	display: inline-block;
	width: 0.2rem;
	height: 0.2rem;
	position: absolute;
	right: -0.24rem;
	bottom: -0.34rem;
	background: url('../images/icon_text_r.png') no-repeat center/contain;
}

/* 新游动态 */
.index_xy_dt{
	width: 100%;
	padding-right: 0rem;
	padding-bottom: .48rem;
}
.index_xy_dt .more{
	margin-right: .3rem;
}
.index_xy_dt .list{
	background: #F9F9F9;
	margin-top: 0.64rem;
	position: relative;
	padding: 0.4rem 0.6rem 0.32rem .32rem;
}

.index_xy_dt .list .time{
	position: absolute;
	left: 0px;
	top: -0.24rem;
	font-size: 0.24rem;
	color: #fff;
	width: 1.2rem;
	height: 0.48rem;
	line-height: 0.48rem;
	background: url('../images/bg_title.png') no-repeat center/contain;
	padding-left: 0.16rem;
    box-sizing: border-box;
}
.index_xy_dt .list .title{
	font-size: 0.28rem;
	color: #000;
}
.index_xy_dt .list .text{
	font-size: 0.24rem;
	color: #999999;
	margin-top: 0.24rem;
}
.index_xy_dt .list .down{
	display: inline-block;
	width: 1.2rem;
	height: 0.56rem;
	line-height: 0.56rem;
	border-radius: 0.08rem;
	border: .02rem solid var(--pm-c);
	font-size: 0.26rem;
    color: var(--pm-c);
	margin-left: 0.3rem;
	text-align: center;
}

/* 推荐手游 */
.index_game .itemBox{
	padding-bottom: .18rem;
}
.index_game .item{
	position: relative;
	margin-top: .6rem;
}

.index_game .itemBox .item .icon{
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .3rem;
}
.index_game .itemBox .item .title{
	font-size: 0.28rem;
	color: #333;
	margin-bottom: .1rem;
}

.index_game .itemBox .item .type{
	display: inline-block;
	margin-right: 0.12rem;
	padding: 0 0.16rem;
	height: 0.44rem;
	line-height: 0.4rem;
	border: .02rem solid #EEEEEE;
	font-size: 0.24rem;
	color: #666;
	margin-top: 0.08rem;
}
.index_game .itemBox .item .down{
	display: block;
	width: 1.2rem;
	height: 0.56rem;
	line-height: 0.56rem;
	background: var(--pm-c);
	border-radius: 0.08rem;
	text-align: center;
	font-size: 0.26rem;
    color: #FFFFFF;
}

/* 手游专辑 */
.index_game_album .item{
   background:url('../images/bg_album.png') no-repeat top center;
   padding-top: 0.28rem;
   background-size: 2.8rem;
}
.index_game_album .item .thumb{
	width: 3.2rem;
	height: 1.94rem;
	border-radius: 0.16rem;
}
.index_game_album .item .title{
	font-size: 0.28rem;
	color: #666;
	margin-top: 0.3rem;
	text-align: center;
}

.index_game_album .list{
	height: 1rem;
	line-height: 1rem;
	background: #F8F8F8;
	border-radius: 0.12rem;
	padding: 0 0.6rem;
	justify-content: center;
}

.index_game_album .list:last-child{
    margin-right: 0;
}
.index_game_album .list .icon{
	width: 0.46rem;
	height: 0.46rem;
	border-radius: 0.12rem;
	margin-right: 0.16rem;
}
.index_game_album .list .title{
	font-size: 0.28rem;
	color: #333333;
	margin-left: 0.08rem;
}

/* 游戏排行 */
.index_rank .itemBox{
	margin-top: .4rem;
	margin-bottom: .2rem;
}

.index_rank .itemBox .item .bottom_warp{
	display: none;
	background: #F9F9F9;
	padding: 0.4rem 0.4rem 0.4rem 0
}
.index_rank .itemBox .item:nth-child(1) .top_warp{
	display: none;
}
.index_rank .itemBox .item:nth-child(1) .bottom_warp{
	display: flex;
}
.index_rank .itemBox .item {
	margin-bottom: 0.4rem;
	position: relative;
}
.index_rank .itemBox .item:last-child{
	margin-bottom: 0;
}
.index_rank .itemBox .item .icon{
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 0.3rem;
	margin-left: 0.78rem;
}
.index_rank .itemBox .item .title{
	font-size: 0.28rem;
	color: #333;
	margin-bottom: .08rem;
}
.index_rank .itemBox .item .order{
	display: block;
	width: 0.48rem;
	height: 0.48rem;
	line-height: 0.48rem;
	background-color: #E7E7E7;
	text-align: center;
	font-size: 0.28rem;
	color: #fff;
}
.index_rank .itemBox .item .bottom_warp .order{
	position: absolute;
	top: 0;
	left: 0;
}
.index_rank .itemBox .item:nth-child(-n+3) .order{
	background: var(--pm-c);
}

.index_rank .itemBox .item .c_name{
	font-size: 0.24rem;
	color: #999999;
}

.index_rank .item .type{
	display: inline-block;
	margin-right: 0.12rem;
	padding: 0 0.16rem;
	height: 0.44rem;
	line-height: 0.4rem;
	border: .02rem solid #EEEEEE;
	font-size: 0.24rem;
	color: #666;
	margin-top: 0.08rem;
}
.index_rank .item .down{
	display: block;
	width: 1.32rem;
	height: 0.6rem;
	line-height: 0.6rem;
	background: var(--pm-c);
	border-radius: 0.12rem;
	text-align: center;
	font-size: 0.28rem;
    color: #FFFFFF;
}

/* 公共菜单栏 */
.menu_nav {}

.menu_nav li {
	width: 2.15rem;
	height: .72rem;
	line-height: .72rem;
	padding: 0 .6rem 0 .2rem;
	background: #F9F9F9 url('../images/icon_about.png') no-repeat 1.6rem/contain;
	background-size: .34rem .22rem;
	margin-right: 0.16rem;
	box-sizing: border-box;
	margin-bottom: .2rem;
}
.menu_nav li:nth-child(3n){
	margin-right: 0;
}
.menu_nav li a {
	display: block;
	font-size: .28rem;
	letter-spacing: .02rem;
	color: #666666;
	border-radius: .1rem;
}

.menu_nav li.active {
	background: #F4F9F8 url('../images/icon_about_.png') no-repeat 1.6rem/contain;
	background-size: .34rem .22rem;
}
.menu_nav li.active a{
	color: var(--pm-c);
}

/* 公共详情样式 */
.single_content {
	overflow: hidden;
}

.single .single_content h2,
.single .single_content h3 {
    font-size: 0.28rem;
    margin: 0.3rem 0 0.3rem 0.15rem;
	height: 0.64rem;
	line-height: 0.64rem;
	background: #F9F9F9;
	position: relative;
}
.single .single_content h2 span,
.single .single_content h3 span{
	display: inline-block;
	padding: 0 0.36rem;
	height: 0.64rem;
	line-height: 0.64rem;
	background: var(--pm-c);
	color: #fff;
	font-size: 0.28rem;
}
.single .single_content h2::before,
.single .single_content h3::before{
	content: '';
	display: inline-block;
	width: 0.28rem;
	height: 0.26rem;
	background: url(../images/single_title_h3.png) no-repeat center / contain;
	position: absolute;
	left: -0.12rem;
	top: -0.12rem;
}

.single_content p {
	text-indent: 2em;
	font-size: 0.28rem;
	line-height: 0.72rem;
	letter-spacing: 0.01rem;
	color: #555;
}

.single_content img {
	display: block;
	max-width: 100%;
	margin: 0.1rem auto;
}

.single-content-title {
	height: .8rem;
	line-height: .8rem;
	background: #FDF1F1 url('../images/single_content_title.png') no-repeat .2rem/contain;
	border-radius: .16rem;
	padding-left: .56rem;
	font-size: 0.36rem;
	font-weight: bold;
	line-height: 0.8rem;
	letter-spacing: 0.01rem;
	color: #1A1A1A;
	margin-bottom: .3rem;
}

/* 资讯列表 */
.menu_nav_news li {
	background: #F9F9F9;
	text-align: center;
	padding-right: .2rem;
}
.menu_nav_news li:nth-child(2n){
	margin-right: 0.16rem;
}
.menu_nav_news li:nth-child(3n) {
  margin-right: 0;
}
.menu_nav_news li.active {
	background: #F4F9F8;
}

.list_news_wrap .item {
	margin-top: .35rem;
	background: linear-gradient( 90deg, #F7F7F7 0%, #FFFFFF 100%);
	padding: .22rem .2rem;
}

.list_news_wrap .item .thumb {
	width: 2.44rem;
	height: 1.64rem;
	margin-right: .26rem;
}

.list_news_wrap .item .title {
	font-weight: 600;
	font-size: .28rem;
	color: #333;
}

.list_news_wrap .item .text {
	font-size: .24rem;
	color: #999;
	letter-spacing: .01rem;
}

.list_news_wrap .item .more {
	display: inline-block;
	padding: 0 .26rem;
	height: .48rem;
	line-height: .4rem;
	border-radius: .08rem;
	border: solid .01rem var(--pm-c);
	font-size: .24rem;
	color: var(--pm-c);
}

.list_news_wrap .item .right {
	text-align: center;
	padding-left: .35rem;
	margin-left: .35rem;
}

/* 资讯详情 */
.single_news .single_header .title {
	font-weight: bold;
	font-size: .32rem;
	line-height: .4rem;
	color: #333333;
	overflow: visible;
	text-overflow: inherit;
	white-space: wrap;
	margin-top: .54rem;
	text-align: center;
}

.single_news .single_header .info {
	display: flex;
	justify-content: space-between;
	border-bottom: .02rem dashed #E5E5E5 ;
	padding-bottom: .36rem;
	margin-bottom: .36rem;
	margin-top: .5rem;
}

.single_news .single_header .info span {
	font-size: 0.24rem;
	color: #999999;
	line-height: 0.6rem;
	margin-right: 0.1rem;
}

.single_news .single_header .info span:nth-child(2) {
	margin-left: 0.1rem;
	margin-right: 0.1rem;
}

/* 游戏列表 */
.list_game_wrap .item {
	margin-bottom: .6rem;
}
.list_game_wrap .item:last-child{
	margin-bottom: 0;
}
.list_game_wrap .item .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .3rem;
	overflow: hidden;
	position: relative;
}

.list_game_wrap .item .down {
	display: inline-block;
	width: 1.12rem;
	height: .56rem;
	line-height: .56rem;
	background-color: var(--pm-c);
	border-radius: .08rem;
	font-size: .26rem;
	letter-spacing: .01rem;
	color: #fff;
	text-align: center;
	margin-left: .2rem;
}

.list_game_wrap .item .title {
	letter-spacing: .02rem;
	font-size: .28rem;
	color: #333;
	font-weight: bold;
	max-width: 80%;
}

.list_game_wrap .item .score{
	font-size: .24rem;
	color: #999;
	margin-left: .2rem;
}

.list_game_wrap .item .label {
	display: inline-block;
	height: .48rem;
	line-height: .48rem;
	padding: 0 .14rem;
	border: .01rem solid #eee;
	font-size: .24rem;
	color: #888888;
	margin-right: .1rem;
}

.list_game_wrap .itemBottom {
	background: #F9F9F9;
	padding: .2rem;
}

.list_game_wrap .item .time {
	font-size: .24rem;
	color: #888888;
	display: block;
	padding-left: .3rem;
	background: url('../images/date.png') no-repeat left/contain;
	background-size: .24rem;
}

/* 游戏详情 */
.single_game .single_header .icon {
	width: 1.6rem;
	height: 1.6rem;
	border-radius: .3rem;
	overflow: hidden;
}

.single_game .single_header .title {
	font-size: .32rem;
	font-weight: 600;
	letter-spacing: .02rem;
	color: #333333;
	max-width: 76%;
}

.single_game .single_header .single_score{
    display: inline-block;
	width: 2.18rem;
	height: .44rem;
	line-height: .44rem;
	background: url('../images/single_header_pf.png') no-repeat center/contain;
	padding-left: .224rem;
	box-sizing: border-box;
	font-size: .24rem;
	color: #fff;
	margin-left: .2rem;
}

.single_game .single_header .date {
	display: inline-block;
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #666;
	margin-top: .3rem;
}

.single_game .single_header .label{
	height: .56rem;
	line-height: .56rem;
    border: .02rem solid #EEEEEE;
	padding-left: .22rem;
	font-size: .24rem;
	color: #666;
}

.single_game .single_header .single_icon{
	width: .96rem;
	height: 1.16rem;
	background: url('../images/single_header_icon.png') no-repeat center/contain;
}

.single-slide .item {
	width: 2.94rem;
	border-radius: .12rem;
	margin-right: .16rem;
}

.single-slide .item img{
   object-fit: contain;
   border-radius: .12rem;
}

/* 下载按钮 */
.single .single_header .down-href {
	display: block;
	width: 100%;
	font-size: .3rem;
	color: #fff;
	font-weight: bold;
	margin: 0.44rem 0 .3rem;
}
.single .single_header .down a,
.single .single_header .down-href a {
	display: block;
	height: .88rem;
	line-height: .88rem;
	width: 100%;
	text-align: center;
	background: #4790FF;
	border-radius: .16rem;
	font-size: .3rem;
	color: #fff;
	font-weight: bold;
}

.single .single_header .down a.xz {
	background: #4790FF;
}
.single .single_header .down a.lb {
	background-color: var(--pm-c);
}

.single .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;
}

/* 专辑列表 */
.menu_nav_collection li{
	width: 2.4rem;
	background-position-x: 1.8rem;
}
.menu_nav_collection li.active{
	background-position-x: 1.8rem;
}
.list_collection_wrap .item{
	position: relative;
	background: linear-gradient( 180deg, #FFFFFF 0%, #FAFAFA 100%);
    box-shadow: 0px -.08rem .16rem 0px rgba(0,0,0,0.05);
	border-radius: .16rem;
	border: .01rem solid #F8F8F8;
	padding: .4rem .32rem .32rem;
	margin-top: .6rem;
}
.list_collection_wrap .item::before{
	content: '';
	display: inline-block;
	position: absolute;
	top: -.3rem;
	left: .44rem;
	width: 6.04rem;
	height: 2.78rem;
	border-radius: 0.16rem;
	overflow: hidden;
	background: #FAFAFA;
	z-index: 1;
}
.list_collection_wrap .item::after{
    content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	left: .2rem;
	right: .2rem;
	bottom: .2rem;
	z-index: 2;
	background: linear-gradient( 180deg, #FFFFFF 0%, #FAFAFA 100%);
	border-radius: .16rem;
}
.list_collection_wrap .item .zj_info{
	background: url('../images/icon_album.png') no-repeat 5.5rem/contain;
	background-size: .48rem;
    font-size: .24rem;
	color: #999999;
	position: relative;
	z-index: 11;
}
.list_collection_wrap .item .zj_info .title{
	font-weight: bold;
	font-size: 0.3rem;
	color: #333333;
	padding-right: .8rem;
}
.list_collection_wrap .item .zj_info span{
	display: inline-block;
	font-size: 0.24rem;
	color: #999999;
}
.list_collection_wrap .item .zj_game{
	position: relative;
	z-index: 11;
}
.list_collection_wrap .zj_game_item{
	width: 25%;
	padding: 0 0.2rem;
	box-sizing: border-box;
}
.list_collection_wrap .zj_game .icon{
	width: 1.16rem;
	height: 1.16rem;
	border-radius: 0.3rem;
}
.list_collection_wrap .zj_game .title{
	font-size: 0.24rem;
	color: #666666;
	margin-top: 0.2rem;
	text-align: center;
}
.list_collection_wrap .item .more{
	display: block;
	height: 0.8rem;
	line-height: 0.8rem;
	text-align: center;
	border-radius: 0.08rem;
	background: #F4F9F8;
	font-size: 0.28rem;
	color: var(--pm-c);
	margin-top: 0.36rem;
	position: relative;
	z-index: 11;
}

/* 专辑详情 */
.single_collection .single_header .single_type {
	display: inline-block;
	width: 65px;
	height: 22px;
	line-height: 22px;
	padding-left: 11px;
	box-sizing: border-box;
	margin-left: 10px;
	font-size: 12px;
	color: #fff;
	background: url("../images/icon_pf.png") no-repeat left / cover;
}

.single_collection .single_header .single_info .label{
	padding: 0 .22rem;
	margin: 0 .18rem;
}

.single_collection .single_header .single_more_album span {
	font-size: .24rem;
	color: #999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.single_collection .single_header .single_more_album span::before{
	content: '';
	display: inline-block;
	width: 1.34rem;
	height: .1rem;
	background: url('../images/icon_collection_l.png') no-repeat center/contain;
	margin-right: .3rem;
}

.single_collection .single_header .single_more_album span::after{
	content: '';
	display: inline-block;
	width: 1.34rem;
	height: .1rem;
	background: url('../images/icon_collection_r.png') no-repeat center/contain;
	margin-left: .3rem;
}

.single_collection .single_header .single_more_album a {
	width: 48%;
	height: .6rem;
	line-height: .6rem;
	padding: 0 .2rem;
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #888888;
	margin-right: .24rem;
	box-sizing: border-box;
	margin-bottom: .2rem;
	text-align: center;
}
.single_collection .single_header .single_more_album a:nth-child(2n){
	margin-right: 0;
}
.single_collection .single_header .single_more_album a:nth-child(1){
    background: rgba(255,182,68,0.1);
	color: #FFB744;
}
.single_collection .single_header .single_more_album a:nth-child(2){
	background: rgba(51,196,120,0.1);
	color: #33C478;
}
.single_collection .single_header .single_more_album a:nth-child(3){
	background: rgba(68,165,255,0.1);
	color: #44A5FF;
}
.single_collection .single_header .single_more_album a:nth-child(4){
	background: rgba(255,118,68,0.1);
	color:#FF7644;
}

.single_collection .single_recom_game {
	min-height: 3.94rem;
	background: url('../images/single_game_bg.png') no-repeat top/contain;
	padding: .6rem .66rem .6rem;
	margin-top: .34rem;
}

.single_collection .single_recom_game .icon {
	width: 1.27rem;
	height: 1.27rem;
	border-radius: .3rem;
}

.single_collection .single_recom_game .title {
	font-weight: 400;
	font-size: .3rem;
	color: #333;
	max-width: 70%;
}

.single_collection .single_recom_game .tag {
	display: inline-block;
	width: 1.3rem;
	height: .4rem;
	line-height: .4rem;
	color: #FFA41D ;
	border: .01rem solid #FFA41D ;
	margin-left: .1rem;
	text-align: center;
	box-sizing: border-box;
}

.single_collection .single_recom_game .label{
	font-size: .24rem;
	color: #999999;
}

.single_collection .single_recom_game .down {
	width: 100%;
	height: .64rem;
	line-height: .64rem;
	border-radius: .12rem;
	text-align: center;
	color: #fff;
	font-size: .28rem;
	background: #83C478;
}

.single_collection .list_game_wrap .item{
	position: relative;
}
.single_collection .list_game_wrap .item .order {
	font-size: .24rem;
	color: #ffffff;
	font-weight: bold;
	position: absolute;
	left: 0rem;
	top: 0rem;
	z-index: 11;
	width: .44rem;
	height: .44rem;
	line-height: .44rem;
	background: #D9D9D9;
	text-align: center;
}

.single_collection .list_game_wrap .item:nth-child(-n+3) .order {
	background: #FFCD44;
}

/* 礼包列表 */
.list_package_warp .item{
	background: #F9F9F9;
	margin-bottom: 0.64rem;
	position: relative;
	padding: 0.5rem 0.4rem 0.38rem;
}

.list_package_warp .item .num{
	position: absolute;
	left: 0px;
	top: -0.28rem;
	font-size: 0.24rem;
	color: #fff;
	width: 2.4rem;
	height: 0.48rem;
	line-height: 0.48rem;
	background: url('../images/bg_gift_num.png') no-repeat center/contain;
	padding-left: 0.22rem;
    box-sizing: border-box;
}
.list_package_warp .item .icon{
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 0.3rem;
	margin-right: 0.2rem;
}
.list_package_warp .item .title{
	font-size: 0.28rem;
	color: #333;
	font-weight: bold;
}
.list_package_warp .item .text{
	font-size: 0.24rem;
	color: #999999;
	margin-top: 0.3rem;
}
.list_package_warp .item .down{
	display: inline-block;
	width: 1.2rem;
	height: 0.56rem;
	line-height: 0.56rem;
	border-radius: 0.08rem;
	border: 1px solid var(--pm-c);
	font-size: 0.26rem;
    color: var(--pm-c);
	margin-left: 0.2rem;
	text-align: center;
}
.list_package_warp .item:hover .down{
	background-color: var(--pm-c);
	color: #fff;
}

/* 礼包详情 */
.single-gift .single-header ul {
	padding: .3rem .8rem;
}

/* 排行榜 */
.menu_nav_rank li{
   width: 3.33rem;
   background-position-x: 2.7rem;
}
.menu_nav_rank li.active{
	background-position-x: 2.7rem;
}
.menu_nav_rank li:nth-child(3n){
	margin-right: 0.16rem;
}
.menu_nav_rank li:nth-child(2n) {
  margin-right: 0;
}
.list_rank .rank_banner {
	height: 2.96rem;
	background: url('../images/rank_banner.png') no-repeat center/contain;
}
.list_rank_warp .item{
	position: relative;
	margin-top: 0.64rem;
	padding: 0.56rem 0.2rem;
	background: linear-gradient( 90deg, #F7F7F7 0%, #FFFFFF 100%);
}
.list_rank_warp .item .score{
	position: absolute;
	left: 0px;
	top: -0.28rem;
	font-size: 0.24rem;
	color: #fff;
	width: 2.4rem;
	height: 0.48rem;
	line-height: 0.48rem;
	background: url("../images/bg_rank_pf.png") no-repeat center / contain;
	padding-left: 0.24rem;
	box-sizing: border-box;
}
.list_rank_warp .item .icon{
	width: 1.32rem;
	height: 1.32rem;
	border-radius: 0.3rem;
	margin-left: 0.2rem;
}
.list_rank_warp .item .order{
	width: .48rem;
	height: .44rem;
	line-height: 0.44rem;
	font-weight: bold;
	font-size: 0.24rem;
	color: #818181;
	text-align: center;
	background: url('../images/rank_n.png') no-repeat center/contain;
}
.list_rank_warp .item.item:nth-child(-n+3) .order{
    color: transparent;
}
.list_rank_warp .item:nth-child(1) .order{
    background: url('../images/rank_1.png') no-repeat center/contain;
}
.list_rank_warp .item:nth-child(2) .order{
   background: url('../images/rank_2.png') no-repeat center/contain;
}
.list_rank_warp .item:nth-child(3) .order{
   background: url('../images/rank_3.png') no-repeat center/contain;
}
.list_rank_warp .item .title{
	font-weight: bold;
	font-size: 0.28rem;
	color: #333333;
}
.list_rank_warp .item .text{
	font-size: 0.24rem;
	color: #999999;
	margin-top: 0.12rem;
	margin-bottom: 0.16rem;
}
.list_rank_warp .item .type{
	font-size: 0.24rem;
	color: #999999;
}
.list_rank_warp .item .labe{
	font-size: 0.24rem;
	color: #999999;
}
.list_rank_warp .item .down{
	width: 1.2rem;
	height: 0.6rem;
	line-height: 0.6rem;
	text-align: center;
	border-radius: 0.08rem;
	border: 1px solid var(--pm-c);
	font-size: 0.26rem;
    color: var(--pm-c);
	margin-left: 0.2rem;
}

/* 排行榜大全 */
.list_rank_news_warp .item{
  background: #FFFAF9;
	margin-bottom: 0.4rem;
	padding-bottom: 0.32rem;
	padding-right: .3rem;
	position: relative;
}

.list_rank_news_warp .item:nth-child(4n-3){
    background: #FFFAF9;
}

.list_rank_news_warp .item:nth-child(4n-2){
    background: #F4F9F8;
}

.list_rank_news_warp .item:nth-child(4n-1){
    background: #F8FAFF;
}

.list_rank_news_warp .item:nth-child(4n){
    background: #FFFCF2;
}

.list_rank_news_warp .item_info{
	border-bottom: 1px dashed #FCCEC2;
	padding-right: 0.4rem;
	padding-left: 1.18rem;
	padding-top: .2rem;
	padding-bottom: .22rem;
}

.list_rank_news_warp .item:nth-child(4n-3) .item_info{
    border-bottom: 1px dashed #FCCEC2;
}

.list_rank_news_warp .item:nth-child(4n-2) .item_info{
    border-bottom: 1px dashed #B9E8D7;
}

.list_rank_news_warp .item:nth-child(4n-1) .item_info{
    border-bottom: 1px dashed #D1DCF6;
}

.list_rank_news_warp .item:nth-child(4n) .item_info{
    border-bottom: 1px dashed #F1E5BC;
}

.list_rank_news_warp .item_info::before{
	content: '';
	display: inline-block;
	width: 0.88rem;
	height: 1.3rem;
	background: #FA7A5A url('../images/icon_rank_list.png') no-repeat center/contain;
	background-size: 0.52rem;
	margin-right: 0.3rem;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 11;
}
.list_rank_news_warp .item:nth-child(4n-3) .item_info::before{
	background-color: #FA7A5A;
}
.list_rank_news_warp .item:nth-child(4n-2) .item_info::before{
	background-color: var(--pm-c);
}
.list_rank_news_warp .item:nth-child(4n-1) .item_info::before{
	background-color: #719CFF;
}
.list_rank_news_warp .item:nth-child(4n) .item_info::before{	
	background-color: #FAD45A;
}
.list_rank_news_warp .item_info .title{
	font-size: 0.28rem;
	color: #333333;
	font-weight: bold;
}

.list_rank_news_warp .item_info .time{
	font-size: 0.24rem;
	color: #999999;
	display: inline-block;
}

.list_rank_news_warp .item_game{
	margin-top: 0.5rem;
	padding-left: 0.4rem;
}
.list_rank_news_warp .item_game .game_list{
	margin-right: 0.42rem;
	text-align: center;
	max-width: 1.1rem;
}

.list_rank_news_warp .item_game .icon{
	width: 1.1rem;
	height: 1.1rem;
	border-radius: 0.2rem;
}

.list_rank_news_warp .item_game .title{
	font-size: 0.24rem;
	color: #666;
	margin-top: 0.24rem;
}
.list_rank_news_warp .item_game .game_list:nth-child(4) {
	margin-right: 0.4rem;
}
.list_rank_news_warp .item_game .game_list:nth-child(4) .icon{
	width: .88rem;
	height: .88rem;
	border-radius: 50%;
	margin-top: -0.5rem;
	margin-left: -0.08rem;
}
.list_rank_news_warp .item_game .game_list:nth-child(4) .title{
	display: none;
}
.list_rank_news_warp .item_game .more{
	display: inline-block;
	width: .88rem;
	height: .88rem;
	border-radius: 100px;
	background: #FDF1EC url('../images/icon_more_1.png') no-repeat center/contain;
    background-size: 0.4rem 0.4rem;
	margin-top: -0.5rem;
	margin-left: -0.5rem;
}
.list_rank_news_warp .item:nth-child(4n-3) .more{
    background: #FDF1EC  url('../images/icon_more_1.png') no-repeat center/contain;
   background-size: 0.4rem 0.4rem;
}
.list_rank_news_warp .item:nth-child(4n-2) .more{
    background: #E2F3F0 url('../images/icon_more_2.png') no-repeat center/contain;
    background-size: 0.4rem 0.4rem;
}
.list_rank_news_warp .item:nth-child(4n-1) .more{
    background: #E9EFFF url('../images/icon_more_3.png') no-repeat center/contain;
    background-size: 0.4rem 0.4rem;
}

.list_rank_news_warp .item:nth-child(4n) .more{
    background: #FFF7DC url('../images/icon_more_4.png') no-repeat center/contain;
    background-size: 0.4rem 0.4rem;
}
/* 排行榜详情 */
.single_rank_banner {
	width: 100%;
	height: 3.6rem;
	background: url('../images/show_rank_banner.png') no-repeat center/cover;
	background-size: 100% 100%;
	position: relative;
}

.single_rank_banner::before{
	content: '';
	display: block;
	width: 5.88rem;
	height: 2.42rem;
	background: rgba(255,255,255,0.4);
	position: absolute;
	top: .6rem;
	left: .7rem;
	z-index: 0;
}

.single_rank_banner::after{
	content: '';
	display: block;
	width: 5.52rem;
	height: 2.14rem;
	background: rgba(255,255,255,0.5);
	position: absolute;
	top: .74rem;
	left: .88rem;
	z-index: 1;
}
.single_rank_banner .title{
	position: relative;
	z-index: 11;
	max-width: 5.1rem;
	padding-top: 1.32rem;
	margin-left: 1.1rem;
	font-size: 0.36rem;
	color: #333;
	font-weight: bold;
	text-align: center;
}
.single_rank_banner .time{
    font-size: 0.24rem;
	color: #999999;
	padding-left: 2.2rem;
	margin-top: 0.3rem;
	position: relative;
	z-index: 11;
}

/* 详情单个板块 */
/* 更多礼包 */
.sigle_more_gift{
	padding-bottom: .01rem;
}
/* 礼包推荐 */
.side_recom_gift .down{
	font-size: .24rem;
	color: var(--pm-c);
	margin-left: .2rem;
}
/* 热门资讯 */
.single_hot_zx .item .thumb{
	width: 3.32rem;
	height: 2.2rem;
	border-radius: .04rem;
}
.single_hot_zx .item .title{
	font-size: .28rem;
	color: #666666;
	text-align: center;
}
.single_hot_zx ul{
	border-top: .02rem dashed #E5E5E5;
}
.single_hot_zx ul li:last-child{
	margin-bottom: 0;
}
/* 最新排行 */
.side_more_rank .list .order{
	display: inline-block;
	width: 0.48rem;
	height: 0.48rem;
	line-height: 0.48rem;
	text-align: center;
	background: #E7E7E7;
	font-size: 0.28rem;
	color: #fff;
}

.side_more_rank ul li:nth-child(-n+3) .order{
    background: var(--pm-c);
}

.side_more_rank .list .title{
	font-size: 0.28rem;
	color: #000;
}

.side_more_rank .list .down{
   font-size: 0.24rem;
   color: var(--pm-c);
}

.side_more_rank .game_list{
  margin: 0 .1rem;
}

.side_more_rank .item{
	width: 25%;
	padding: 0.1rem;
	box-sizing: border-box;
}

.side_more_rank .item .title{
	font-size: 0.24rem;
	color: #666;
	margin-top: 0.15rem;
}
.side_more_rank .item .icon{
	width: 1rem;
    height: 1rem;
	border-radius: 50%;
	margin: 0 auto;;
}

.side_more_rank ul li .game_list{
  display: none;
}

.side_more_rank ul li.active{
	 background: #F9F9F9;
}

.side_more_rank ul li.active .game_list{
	display: flex;
}
.side_more_rank ul li.active .title{
	margin-top: 0.2rem;
}
.side_more_rank ul li.active .down{
	margin-right: 0.2rem;
	margin-top: 0.2rem;
}

/* 单页 */
.page_nav li{
	width: 2.1rem;
	height: .72rem;
	line-height: .72rem;
	padding: 0 .2rem;
	box-sizing: border-box;
	font-size: .28rem;
	letter-spacing: .02rem;
	color: #666666;
	background: #F9F9F9 url('../images/icon_about.png') no-repeat 1.6rem/contain;
	background-size: .34rem .22rem;
     border-radius: .08rem; 
	 margin-right: .16rem;
	 margin-bottom: .2rem;
}
.page_nav li:nth-child(3n){
	margin-right: 0;
}
.page_nav li.active {
	background: #F4F9F8 url('../images/icon_about_.png') no-repeat 1.6rem/contain;
	background-size: .34rem .22rem;
}
.page_nav li.active a{
	color: var(--pm-c);
}

.page_content{
	margin: .2rem 0;
}

.page_content p{
	font-size: .28rem;
	line-height: .72rem;
	letter-spacing: .01rem;
	color: #666666;
	text-indent: 2em;
}

.page_content .page_title{
    margin: .5rem 0 .32rem .1rem;
	height: .64rem;
	line-height: .64rem;
    background: #F9F9F9;
	position: relative;
}

.page_content .page_title p{
   display: inline-block;
	padding: 0 .36rem;
	height: .64rem;
	line-height: .64rem;
	background: var(--pm-c);
	color: #fff;
	text-indent: 0;
}

.page_content .page_title::before{
	content: '';
	display: inline-block;
	width: .28rem;
	height: .25rem;
	background: url('../images/single_title_h3.png') no-repeat center/contain;
	position: absolute;
	left: -.1rem;
	top: -.12rem;
}

.page_content ul li a{
	display: block;
	font-size: .28rem;
	letter-spacing: .02rem;
	color: #666666;
	margin-right: .4rem;
	margin-top: .2rem;
}

/* 搜索页 */
.search_total{
	display: block;
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #999;
}

/* 404 500 错误页面 */
.page-error {
	text-align: center;
	min-height: 8rem;
	padding-top: 2rem;
}

.page-error .page-404 {
	width: 2.96rem;
	height: 2.96rem;
	margin: 0 auto;
	background: url("../images/404.png") no-repeat center/contain;
}

.page-error .page-500 {
	width: 2.96rem;
	height: 2.96rem;
	margin: 0 auto;
	background: url("../images/500.png") no-repeat center/contain;
}

.page-error p {
	font-size: .24rem;
	color: #999;
	letter-spacing: .02rem;
}

.page-error a.go-home {
	width: 2.16rem;
	height: .72rem;
	line-height: .72rem;
	text-align: center;
	border-radius: .08rem;
	background: #F9F9F9;
	font-size: .28rem;
	color: #666666;
	display: block;
	margin: .68rem auto 1.2rem;
}

/* 开服表 */
.list_kaifu{
	padding: 0 .1rem;
}
.kaifu_menu{
	margin: .4rem .2rem
}
.kaifu_menu button{
	font-size: .28rem;
	letter-spacing: .01rem;
	color: #666;
	border-radius: .1rem;
	background: #F9F9F9 url('../images/kf_select.png') no-repeat 1.7rem .25rem/contain;
	background-size: .15rem;
	padding-right: .3rem;
	text-align: left;
	padding-left: .2rem;
	width: 2.2rem;
	border: none;
}
.kaifu_menu button:hover{
	background: #F4F9F8 url('../images/kf_select_.png') no-repeat 1.7rem .25rem/contain;
    background-size: .15rem;
}
.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_text{
  font-size: .24rem;
  color: #999;
}

.kaifu_warp .item{
	margin: .38rem .3rem;
	padding-bottom: .38rem;
    border-bottom: .01rem dashed #E5E5E5;
}

.kaifu_warp .item .title{
	position: relative;
	display: inline-block;
	max-width: 3rem;
	min-width: auto;
	margin-right: 0.2rem;
	font-size: .28rem;
	color: #333;
}
.kaifu_warp .item .platform{
	display: inline-block;
	margin-top: .1rem;
}
.kaifu_warp .item .platform i{
	display: inline-block;
	width: .28rem;
	height: .28rem;
}
.kaifu_warp .item .az{
	background: url('../images/kf_az.png') no-repeat center/contain;
}
.kaifu_warp .item .ios{
	background: url('../images/kf_ios.png') no-repeat center/contain;
}
.kaifu_warp .item .az_{
	background: url('../images/kf_az_.png') no-repeat center/contain;
}
.kaifu_warp .item .ios_{
	background: url('../images/kf_ios_.png') no-repeat center/contain;
}
.kaifu_warp .item .info{
	margin-left: .24rem;
}

.kaifu_warp .item .label{
	display: inline-block;
	font-size: .24rem;
	color: #999;
}

.kaifu_warp .item .time{
  color: #999;
  font-size: .24rem;
}
.kaifu_warp .item .time span{
	color: var(--pm-c);
}
.kaifu_warp .item .down{
	display: block;
	width: 1.2rem;
	height: .6rem;
	line-height: .6rem;
	border: .01rem solid var(--pm-c);
	border-radius: .08rem;
	text-align: center;
	font-size: .28rem;
	color: var(--pm-c);
}