html,
body,
div,
span,
applet,
object,
p,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 12px;
	font: inherit;
	font-weight: normal;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ol,
ul,
li {
	list-style: none;
	padding: 0;
	margin: 0;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th,
td {
	vertical-align: middle;
}

/* custom */
a {
	outline: none;
	color: #16418a;
	font-size: 12px;
	text-decoration: none;
	-webkit-backface-visibility: hidden;
}
a:active,
a:focus{
	text-decoration: none;
}
a:focus {
	outline: none;
}

input:focus,
select:focus,
textarea:focus {
	outline: -webkit-focus-ring-color auto 0;
}

div {
	font-size: 12px;
	box-sizing: border-box;
}
/* 溢出1行省略号 */
.line {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/* 溢出2行省略号 */
.line2 {
	display: -webkit-box;
	/*将对象转为弹性盒模型展示*/
	-webkit-box-orient: vertical;
	/*设置弹性盒模型子元素的排列方式*/
	-webkit-line-clamp: 2;
	/*限制文本行数*/
	overflow: hidden;
	/*超出隐藏*/
}
/* 溢出3行省略号 */
.line3 {
	display: -webkit-box;
	/*将对象转为弹性盒模型展示*/
	-webkit-box-orient: vertical;
	/*设置弹性盒模型子元素的排列方式*/
	-webkit-line-clamp: 3;
	/*限制文本行数*/
	overflow: hidden;
	/*超出隐藏*/
}

/* 溢出4行省略号 */
.line4 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
}

.hide {
  display: none !important;
}
.no-scrollbal::-webkit-scrollbar {
	display: none;
}
.mt-0{
	margin-top: 0rem !important;
}
.mt-1 {
	margin-top: .1rem !important;
}

.mt-2 {
	margin-top: .2rem !important;
}

.mt-3 {
	margin-top: .3rem !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;
}
.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-3{
	padding-left: .3rem !important;
}
.pr-0{
	padding-right: 0rem !important;
}
.pr-3{
	padding-right: .3rem !important;
}
.pt-0{
	padding-top: 0rem !important;
}
.pt-3{
	padding-top: .3rem !important;
}
.pb-0{
	padding-bottom: 0rem !important;
}
.pb-3{
	padding-bottom: .3rem !important;
}
.flex1{
	flex:1;
}

/*伪类居中*/
/* 增加伪类 前置 */
.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);
}

#aq-model {
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 999;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #fff url(../../../../404.png) no-repeat center;
}

:root {
	--pm-c: #F12626;
}

body {
	background: #F7F7F7;
	margin: 0;
}

img {
	object-fit: cover;
}

a {
	text-decoration: none;
	color: inherit;
}

a[class="title"] {
	display: block;
}

.module {
	padding: .24rem;
	background: #fff;
	margin-bottom: .2rem;
}

/* 公共标题 */
.module-title {
	position: relative;
	border-bottom: .01rem solid #F2F2F2;
	padding-bottom: .24rem;
}

.module-title .title {
	font-size: 0.36rem;
	font-weight: bold;
	color: #1A1A1A;
	padding-left: 0.55rem;
	display: block;
	flex: 1;
}

.module-title .more {
	display: block;
	width: 0.36rem;
	height: 0.36rem;
	background: url('../images/more.png') no-repeat center/contain;
}

.module-title .title::before {
	display: inline-block;
	width: 0.36rem;
	height: 0.36rem;
	background: url('../images/modle_title_icon.png') no-repeat center/contain;
	left: 0rem;
}

.title {
	font-size: .28rem;
	color: #1A1A1A;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.info {
	margin-left: .15rem;
	overflow: hidden;
	flex: 1;
}

.icon{
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .4rem;
	overflow: hidden;
}

.desc{
	font-size: .24rem;
	color: #999999;
}

.type{
	font-size: .24rem;
	color: #999999;
}

.time{
	font-size: .24rem;
	color: #999999;
}

.score{
	font-size: .24rem;
	color: #FF6969;
}

/* 公共列表样式 */
.list-container{
	overflow: hidden;
}
.list-container li {
	margin-top: .4rem;
}
.list-container li .dot{
	display: block;
	width: .08rem;
	height: .08rem;
	background: #E6E6E6;
	border-radius: .02rem;
}
.list-container li .tag{
	color: #999999;
	font-size: .28rem;
}
.list-container li  .num{
	width: .4rem;
	height: .4rem;
	line-height: .4rem;
	background: #F0F0F0;
	border-radius: .08rem;
	text-align: center;
}
.list-container li .title{
	display: block;
	margin-left: .15rem;
	margin-right: .3rem;
	color: #1A1A1A;
	font-size: .28rem;
} 
.list-container li .time{
	font-size: .24rem;
	color: #999999;
} 

/*分页*/
.pagination {
	margin: .3rem 0;
	text-align: center;
}

.pagination .page-item {
	display: inline-block;
	width: 0.8rem;
	height: .6rem;
	line-height: .6rem;
	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
}

/* 平台 */
.platform i {
	display: inline-block;
	width: .48rem;
	height: .48rem;
	background-repeat: no-repeat;
}
.platform .az_ {
	background-image: url('../images/az.png');
	margin-right: .2rem;
}

.platform .az {
	background-image: url('../images/az_.png');
	margin-right: .2rem;
}

.platform .ios_ {
	background-image: url('../images/ios.png');
}
.platform .ios {
	background-image: url('../images/ios_.png');
}

/* 评分图标 */
.star {
  height: 0.18rem;
  width: 0.9rem;
  background: url('../images/star_bg.png') repeat-x center/0.18rem;
  display: inline-block;
}

.star:before {
  content: "";
  display: block;
  background: url('../images/star.png') repeat-x 0/0.18rem;
  height: 0.18rem;
}

.star-1:before {
  width: 0.18rem;
}

.star-2:before {
  width: 0.36rem;
}

.star-3:before {
  width: 0.54rem;
}

.star-4:before {
  width: 0.72rem;
}

.star-5:before {
  width: 0.9rem;
}


/* 头部 */
.header {
	height: 2.1rem;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.14rem .24rem .3rem;
	background: linear-gradient(180deg, #F68E8E 0%, var(--pm-c) 100%);
	position: relative;
}

.header-top::before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url('../images/header_bg.png') no-repeat center/contain;
}
/* logo */
.header .logo{
	position: relative;
	z-index: 111;
}
.header-logo {
	width: 2.56rem;
	height: .6rem;
}
/* 搜索 */
.search {
	box-sizing: border-box;
	display: flex;
	align-items: stretch;
	background: #FFFFFF;
	width: 3.4rem;
	height: 0.6rem;
	line-height: 0.6rem;
	padding-left: .15rem;
	border-radius: 1.98rem;
	border: solid 0.01rem var(--pm-c);
	position: relative;
	z-index: 111;
}

.search-input {
	flex-grow: 1;
	width: 2.8rem;
	padding: 0;
	border: none;
	outline: medium;
	background: none;
	color: #999999;
	font-size: .28rem;
	text-indent: .5em;
}

.search-btn {
	width: 0.6rem;
	background: url(../images/search.png) no-repeat center/.32rem .32rem;
	border: none;
	text-align: center;
}

input::-webkit-input-placeholder {
	color: #999999;
	font-size: .28rem;
}

input::-moz-placeholder {
	color: #999999;
	font-size: .28rem;
}

/* 导航栏 */
.head-nav {
	display: flex;
	height: 1rem;
	line-height: 1rem;
	background: #FFFFFF;
	box-shadow: 0px .08rem .4rem 0px rgba(0,0,0,0.08);
	overflow: auto visible;
	scrollbar-width: 0;
	padding: 0 .3rem;
}

.head-nav::-webkit-scrollbar {
	height: 0;
}

.head-nav-item {
	margin-right: .3rem;
}

.head-nav-item:last-child{
	margin-right: 0;
}

.head-nav-item a {
	display: block;
	white-space: nowrap;
	text-align: center;
	font-size: 0.32rem;
	color: #4D4D4D;
	position: relative;
	padding-left: .45rem;
	background:url('../images/nav_home.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}

.head-nav-item.active a {
	color: var(--pm-c);
	background:url('../images/nav_home_.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}

.head-nav-item a::after {
	content: "/";
	width: 0.2rem;
	height: 0.2rem;
	color: #E6E6E6;
	margin-left: .2rem;
}
.head-nav-item:last-child  a::after{
	display: none;
}
.head-nav li:nth-child(2) a{
	background:url('../images/nav_game.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(2).active a{
	background:url('../images/nav_game_.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(3) a{
	background:url('../images/nav_app.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(3).active a{
	background:url('../images/nav_app_.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(4) a{
	background:url('../images/nav_news.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(4).active a{
	background:url('../images/nav_news_.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(5) a{
	background:url('../images/nav_album.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(5).active a{
	background:url('../images/nav_album_.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(6) a{
	background:url('../images/nav_gift.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(6).active a{
	background:url('../images/nav_gift_.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(7) a{
	background:url('../images/nav_rank.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(7).active a{
	background:url('../images/nav_rank_.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(8) a{
	background:url('../images/nav_kf.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}
.head-nav li:nth-child(8).active a{
	background:url('../images/nav_kf_.png') no-repeat left/contain;
	background-size: .4rem .4rem;
}

/* 底部 */
.footer {
	width: 100%;
	padding: .4rem .24rem .32rem;
	background: #1A1A1A;
	text-align: left;
	font-size: 0.24rem;
	color: #999999;
}

.footer-logo {
	display: block;
	width: 2.56rem;
	height: .6rem;
	margin-bottom: .3rem;
}
.footer ul{
	flex-wrap: wrap;
}
.footer ul li{
	line-height: .4rem;
	overflow: hidden;
	display: flex;
	margin-right: .15rem;
}
.footer ul li::after{
	content: '|';
	display: inline-block;
	margin-left: .15rem;
	font-size: 0.24rem;
	color: #999999;
}
.footer ul li:nth-last-child(2)::after{
	display: none;
}
.footer a{
	font-size: 0.24rem;
	color: #999999;
	display: inline-block;
	line-height: .4rem;
}
.footer p{
	font-size: 0.24rem;
	color: #999999;
	line-height: .4rem;
}

/* 友情链接 */
.link{
	padding-bottom: 0;
}
.flink {
	overflow: hidden;
}

.flink a {
	display: inline-block;
	margin-right: .3rem;
	white-space: nowrap;
	font-size: 0.28rem;
	margin-bottom: 0.28rem;
	color: #4D4D4D;
}

.flink a::after{
	content: '|';
	display: inline-block;
	margin-left: .3rem;
	font-size: 0.24rem;
	color: #E6E6E6;
}

.flink a:last-child::after{
	display: none;
}

/* 内容 */
main {
	font-size: 0;
	margin-top: 1rem;
}

.main-swiper {
	width: 100%;
	height: 4rem;
	overflow: hidden;
}

.main-swiper .swiper-slide {
	width: 7.5rem;
	height: 4rem;
	position: relative;
}

.main-swiper .title {
	width: 100%;
	padding: 0 .24rem;
	font-size: 0.32rem;
	color: #FFFFFF;
	position: absolute;
	bottom: 0;
	height: 2.6rem;
	line-height: 3.6rem;
	text-align: center;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000000 100%);
}

.main-swiper-pagination {
	width: 1.5rem !important;
	background: #fff;
	padding: .05rem 0;
	position: absolute;
	bottom: 0 !important;
	right: 0;
	left: initial !important;
	z-index: 9;
}

.main-swiper-pagination .swiper-pagination-bullet {
	width: 0.3rem;
	height: 0.3rem;
	background-color: #666666;
	border-radius: 0;
	margin: 0 0 0 .2rem !important;
	opacity: 1;
	text-align: center;
	font-size: 0.24rem;
	line-height: 0.3rem;
	color: #ffffff;
}

.main-swiper-pagination .swiper-pagination-bullet-active {
	background: var(--pm-c);
}

.home-top{
	position: relative;
	top: -.36rem;
	z-index: 11;
	background: #FFFFFF;
	border-radius: .4rem .4rem 0px 0px;
}
.home-game-type{
	display: flex;
	justify-content: space-between;
	padding: 0.2rem 0;
}
.home-game-type .item-type{
	/* width: 25%; */
	padding: 0 .1rem;
	text-align: center;
	box-sizing: border-box;
}

.home-game-type .item-type:nth-child(4n) {
	margin-right: 0;
}

.home-game-type .item-type:nth-child(n + 5) {
	margin-top: .38rem;
}

.home-game-type .item-type .icon {
	width: 1.12rem;
	height: 1.12rem;
	border-radius: 0.2rem;
	overflow: hidden;
	margin: 0 auto;
}

.home-game-type .item-type .title {
	display: block;
	margin: .1rem 0 0;
	text-align: center;
}

.home-top-news{
	height: 1.2rem;
	background: linear-gradient(90deg, rgba(255,228,228,0.68) 0%, rgba(255,237,237,0) 100%);
	border-radius: .2rem;
	border: 0.01rem solid #F4F4F4;
	padding: .24rem .2rem;
}
.home-top-news .name{
	width: .6rem;
	height: .72rem;
	background: url('../images/tt_icon.png') no-repeat center/contain;
}
.home-top-news .name::after{
	width: 0;
	height: .56rem;
	border: .01rem solid #DEDEDE;
	left: .85rem;
}
.home-top-news .info{
	margin-left: .5rem;
}
.home-top-news .title{
	font-size: .26rem;
	font-weight: bold;
	color: #1A1A1A;
}
.home-top-news .info span{
	font-size: .24rem;
	color: #999999;
	display: block;
	padding-left: .32rem;
}
.home-top-news .info .time{
	margin-right: .2rem;
	background: url('../images/time.png') no-repeat left/contain;
	background-size: .28rem .28rem;
}
.home-top-news .info .hits{
	background: url('../images/hits.png') no-repeat left/contain;
	background-size: .28rem .28rem;
}

.home-news-item .item{
	border-bottom: .01rem solid #F2F2F2;
	padding-bottom: .36rem;
	margin-top: .36rem;
	position: relative;
}
.home-news-item .item:last-child{
	border: none;
	padding-bottom: 0.2rem;
}
.home-news-item .item::before{
	width: .86rem;
	height: .86rem;
	right: 0;
	top: 0.5rem;
	z-index: 11;
	display: block;
}

.home-news-item .item:first-child::before {
	background: url('../images/rd_icon.png') no-repeat center/contain;
}
.home-news-item .item:last-child::before{
	background: url('../images/tj_icon.png') no-repeat center/contain;
}

.home-news-item .item .title{
	display: block;
	font-weight: bold;
}
.home-news-item .item .desc{
	color: #4D4D4D;
}
.home-news-item .item .time{
	display: block;
	background: url('../images/time.png') no-repeat left/contain;
	background-size: 0.28rem;
	padding-left: .32rem;
	margin-top: .25rem;
}
.home-news-item .item .thumb{
	width: 2.2rem;
	height: 1.4rem;
	border-radius: .14rem;
	overflow: hidden;
}

/* 编辑推荐 */
.home-game-tj{
	display: flex;
	overflow-x: scroll;
}
.home-game-tj .game-list{
	margin-right: 0.3rem;
}
.home-game-tj .game-list .item{
	min-width: 6.2rem;
}

.home-game-tj .game-list .item .icon{
	width: 1.28rem;
	height: 1.28rem;
	border-radius: .32rem;
	overflow: hidden;
	margin-bottom: .3rem;
}
.home-game-tj .game-list .item .item-info{
	border-bottom: .01rem solid #F2F2F2;
	display: flex;
	align-items: center;
	padding-bottom: .3rem;
}
.home-game-tj .game-list .item:last-child .item-info{
	border-bottom: none;
}
.home-game-tj .game-list .item .num{
	width: .52rem;
	height: .52rem;
	line-height: .54rem;
	text-align: center;
	color: #FFFFFF;
	font-size: .24rem;
	background: url('../images/bj_icon1.png') no-repeat center/contain;
}
.home-game-tj .game-list .item:nth-child(2) .num{
	background: url('../images/bj_icon2.png') no-repeat center/contain;
}
.home-game-tj .game-list .item:nth-child(3) .num{
	background: url('../images/bj_icon3.png') no-repeat center/contain;
}
.home-game-tj .game-list .item .info{
	
}
.home-game-tj .game-list .item .title{
	display: block;
}
.home-game-tj .game-list .item .type{
	margin-top: .2rem;
	display: block;
}
.home-game-tj .game-list .item .down{
	display: block;
	padding: 0 .34rem;
	height: .64rem;
	line-height: .64rem;
	font-size: .28rem;
	color: var(--pm-c);
	border-radius: .1rem;
	border: .01rem solid var(--pm-c);
}

/* 手游下载 */
.home-game-nav {
	display: flex;
	overflow-x: scroll;
	margin-bottom: .3rem;
}

.home-game-nav-item {
	width: 1.8rem;
	min-width: 1.8rem;
	height: 0.68rem;
	line-height: 0.68rem;
	border-radius: 0.1rem;
	margin-top: .3rem;
	background: #F4F4F4;
	border: 0.01rem solid #E4E4E4;
	margin-right: .28rem;
	text-align: center;
}
.home-game-nav-item.uk-active{
	height: 0.84rem;
	line-height: 0.68rem;
	border: none;
	background:url('../images/menu_bg.png') no-repeat center/contain;
}
.home-game-nav-item a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 0.28rem;
	color: #808080;
}

.home-game-nav-item.uk-active a{
	color: #FFFFFF;
	text-decoration: none;
}

.home-game-list .game-item {
	padding-bottom: .36rem;
	border-bottom: .01rem solid #F2F2F2;
	margin-bottom: .36rem;
}

.home-game-list .game-item:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

.home-game-list .game-item .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 0.4rem;
	overflow: hidden;
}

.home-game-list .game-item .title {
	display: block;
}

.home-game-list .game-item .desc {
	margin-top: .2rem;
}

.home-game-list .game-item .time{
	display: block;
	background: url('../images/date.png') no-repeat left/contain;
	background-size: .24rem .24rem;
	padding-left: .3rem;
} 
.home-game-list .game-item .score {
	color: #FF6969;
	font-size: 0.24rem;
	display: inline-block;
	margin-right: .2rem;
	background: url('../images/score_.png') no-repeat left/contain;
	background-size: .28rem .28rem;
	padding-left: .34rem;
}

.home-game-list .game-item .type{
  display: block;
	line-height: .3rem;
}

.home-game-list .game-item .down {
	display: block;
	width: 1.36rem;
	height: 0.64rem;
	border-radius: 0.1rem;
	text-align: center;
	font-size: 0.28rem;
	line-height: 0.64rem;
	color: #fff;
	background: var(--pm-c);
}

/* 最新资讯 */
.home-gl-one .thumb{
	width: 100%;
	height: 3.4rem;
	border-radius: .2rem;
  overflow: hidden;
	position: relative;
}
.home-gl-one .title{
	width: 100%;
	display: block;
	position: absolute;
	bottom: 0;
	height: 2rem;
	line-height: 3.2rem;
	background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
	border-radius: 0 0 .2rem .2rem;
  color: #FFFFFF;
	font-size: .28rem;
	padding: 0 .2rem;
	text-align: center;
}
.home-gl-one .thumb::before{
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	left: 0;
	top: .55rem;
	z-index: 11;
	background: url('../images/new_icon.png') no-repeat center/contain;
}

.home-gl-list .thumb{
	width: 3.36rem;
	height: 2rem;
	border-radius: .16rem;
	overflow: hidden;
	position: relative;
}
.home-gl-list .title{
	width: 90%;
	display: block;
	position: absolute;
	bottom: 0;
	height: .8rem;
	line-height: .96rem;
	background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
	border-radius: 0 0 .16rem .16rem;
	color: #FFFFFF;
	font-size: .28rem;
	padding: 0 .2rem;
	text-align: center;
}
/* 游戏攻略 */
.home-sy-gl .item{
	background: #F7F7F7;
	border-radius: .16rem;
}
.home-sy-gl .item .thumb{
	width: 3rem;
	height: 1.8rem;
	border-radius: .16rem;
	overflow: hidden;
}
.home-sy-gl .item .info{
	height: 1.8rem;
	background: #F7F7F7;
	border-radius: 0 .16rem .16rem 0;
	margin-left: 0;
	padding: .24rem .3rem;
}
.home-sy-gl .item .title{
	font-weight: bold;
	display: block;
}
.home-sy-gl .item .desc{
	color: #4D4D4D;
	margin-top: .18rem;
}
.home-sy-gl .item .time{
	display: block;
	margin-top: 0.16rem;
	background: url('../images/time.png') no-repeat left/contain;
	background-size: .25rem .25rem;
	padding-left: .3rem;
}

/* 精选专辑 */
.home-jx-album{
	padding-top: 0;
	position: relative;
	background: linear-gradient( 180deg, #FFEBE2 0%, rgba(255,235,226,0) 100%);
}
.home-jx-album::before{
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 2.2rem;
	height: 1.6rem;
	background: url('../images/home_album_bg.png') no-repeat center/contain;
}
.home-jx-album .name{
	width: 3.52rem;
	height: .72rem;
	text-align: center;
	margin: 0 auto;
	background: url('../images/jx_album_title.png') no-repeat center/contain;
}
.home-jx-album .h1h{
	display: block;
	height: .28rem;
	position: absolute;
	right: .24rem;
	top: .2rem;
	font-size: .24rem;
	color: #FF4A3A;
	background: url('../images/h1h_icon.png') no-repeat left/contain;
  background-size: .28rem .28rem;
	padding-left: .32rem;
}
.home-album-list {
	margin-top: .56rem;
	flex-wrap: wrap;
	position: relative;
	z-index: 11;
}

.home-album-item {
	width: 3.4rem;
	background: #FFFFFF;
	box-shadow: 0px 0px .4rem 0px rgba(0,0,0,0.06);
	border-radius: .2rem;
	margin-bottom: .22rem;
	padding: .3rem;
}
.home-album-item:nth-child(odd){
	margin-right: .22rem;
}
.home-album-item .game-list{
	justify-content: center;
}
.home-album-item .game-list .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .4rem;
	overflow: hidden;
}
.home-album-item .icon-list .icon{
	width: .6rem;
	height: .6rem;
	border-radius: .2rem;
	overflow: hidden;
}
.home-album-item .icon-list .icon:nth-child(2){
	margin-top: .2rem;
}
.home-album-item .album-itme-bottom {
	border-top: .01rem solid #E6E6E6;
	padding-top: .24rem;
	margin-top: .24rem;
	text-align: center;
}

.home-album-item .title {
	font-weight: bold;
	display: block;
}

.home-album-item .type {
	margin-top: .2rem;
	color: #999999;
}
.home-album-item .type span i{
	color: var(--pm-c);
}
.main-album-item .info span {
	padding: .08rem .11rem;
	background-color: #fff;
	border-radius: .2rem;
	margin-right: .12rem;
}
/* 游戏测评 */
.home-news-cp .item{
	margin-top: .36rem;
	border-bottom: .02rem solid #F2F2F2;
	padding-bottom: .36rem;
}
.home-news-cp .item:last-child{
	border: none;
}
.home-news-cp .item .thumb{
	width: 2rem;
	height: 1.2rem;
	border-radius: .16rem;
	overflow: hidden;
}

.home-news-cp .item .pc_score{
	display: inline-block;
	margin-right: .3rem;
	height: .44rem;
	line-height: .44rem;
	width: .88rem;
	padding: 0 .14rem;
	border-radius: .08rem;
	border: .02rem solid #FAB4B4;
	text-align: center;
	font-size: .24rem;
	color: var(--pm-c);
}

/* 游戏视频 */
.home-video-list .item .thumb{
	width: 3.36rem;
	height: 2rem;
	border-radius: .16rem;
	overflow: hidden;
	position: relative;
}
.home-video-list .item .hits{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: .8rem;
	line-height: 1rem;
	background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
	border-radius: 0px 0px .16rem .16rem;
	font-size: .24rem;
	color: #FFFFFF;
	padding: 0 .18rem;
	padding-left: .5rem;
}
.home-video-list .item .hits::before{
	display: block;
	left: 0.16rem;
	top: .5rem;
	width: .27rem;
	height: .27rem;
	background: url('../images/video_icon.png') no-repeat center/contain;
}
.home-video-list .item .title{
	display: block;
	margin-top: .16rem;
}

/* 排行榜 */
.home-rank ul li{
	width: 3.2rem;
	height: .8rem;
	line-height: .8rem;
	background: #F4F4F4;
	border-radius: .1rem;
	border: .01rem solid #E4E4E4;
	text-align: center;
	margin-left: .1rem;
	margin-top: .36rem;
}
.home-rank ul li a{
	font-size: .28rem;
	color: #808080;
}
.home-rank ul li.uk-active{
	position: relative;
	background: var(--pm-c);
	border: none;
}
.home-rank ul li.uk-active a{
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
.home-rank ul li.uk-active::before{
	content: '';
	display: block;
	position: absolute;
	bottom: -.17rem;
	left: 38%;
	width: .76rem;
	height: .2rem;
	background: url('../images/rank_nav_before.png') no-repeat center/contain;
}

.home-rank .home-game-list {
	background: #FFFFFF;
	border-radius: .2rem;
	border: .02rem solid #F2F2F2;
}
.home-rank .home-game-list .game-list-wrap{
	padding: .3rem;
}
.home-rank .home-game-list .name{
	height: 1.4rem;
	background: url('../images/rank_title.png') no-repeat center/contain;
}
.home-rank-wrap .home-game-list:nth-child(2) .name{
	background: url('../images/rank_title2.png') no-repeat top/contain;
}
.home-rank .home-game-list .num{
	width: .4rem;
	height: .4rem;
	line-height: .4rem;
	background: #F0F0F0;
	border-radius: .08rem;
	text-align: center;
	font-size: .24rem;
	color: #999999;
}
.home-rank .home-game-list .game-item:nth-child(-n+3) .num{
	background: #FF8B8B;
	color: #FFFFFF;
}
.home-rank-wrap .home-game-list:nth-child(2) .game-item:nth-child(-n+3) .num{
	background: #99BFFD;
}
.home-rank .home-game-list .type{
	color: #4D4D4D;
}
.home-rank .home-game-list .type-score{
	color: #999999;
}
.home-rank .home-game-list .type .score{
	color: #999999;
	background: url('../images/score.png') no-repeat left/contain;
	background-size: .28rem .28rem;
}
.category-news{
	padding-top: 0.2rem;
	background: linear-gradient( 180deg, #F0F0F0 2%, #fff 10%);
}

.single-news{
	padding-top: 0.2rem;
	background: linear-gradient( 180deg, #F0F0F0 1%, #fff 3%);
}
.category-albume-hot{
	padding-top: 0.2rem;
	background: linear-gradient( 180deg, #F0F0F0 2%, #fff 8%);
}
.category-gift{
	padding-top: 0.4rem;
	background: linear-gradient( 180deg, #F0F0F0 1%, #fff 3%);
}
.single-gift{
	padding-top: 0.2rem;
	background: linear-gradient( 180deg, #F0F0F0 1%, #fff 3%);
}
/* 资讯菜单栏 */
.other-nav {
	display: flex;
	align-items: stretch;
	height: 0.8rem;
	background: #fff;
	border-radius: 0.1rem;
	margin-bottom: .2rem;
	overflow: auto visible;
	scrollbar-width: 0;
}

.other-nav::-webkit-scrollbar {
	height: 0;
}

.other-nav-item {
	flex-shrink: 0;
	height: .68rem;
	margin-right: .2rem;
}

.other-nav-item a {
	display: block;
	padding: 0 .32rem;
	font-size: 0.28rem;
	color: #666666;
	line-height: .68rem;
	background: #F7F7F7;
	border-radius: .1rem;
}

.other-nav-item.current a {
	background: #FFE7E7;
	font-weight: bold;
	color: var(--pm-c);
	position: relative;
}
.other-nav-item.current a::before{
	content: '';
	display: block;
	width: .6rem;
	height: .16rem;
	background: url('../images/new_nav_icon.png') no-repeat center/contain;
  position: absolute;
	bottom: -0.15rem;
	left: 38%;
}

.news-swiper {
	width: 100%;
	overflow: hidden;
	position: relative;
	border-radius: .16rem;
}
.news-swiper::before{
	content: '今日头条';
	display: block;
	height: .56rem;
	line-height: .56rem;
	padding: 0 .24rem;
	background: var(--pm-c);
	border-radius: .16rem 0 .16rem 0;
	font-size: .24rem;
	color: #FFFFFF;
	position: absolute;
	left: 0;
	top: 0.2rem;
	z-index: 11;
}

.news-swiper .icon {
	width: 100%;
	height: 3.4rem;
	border-radius: .2rem;
	overflow: hidden;
}

.news-swiper .title{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2.2rem;
	line-height: 3rem;
	background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
	border-radius: 0px 0px .2rem .2rem;
	font-size: .28rem;
	color: #FFFFFF;
	text-align: center;
	padding: 0 .2rem;
}

.news-swiper-pagination {
	width: 1.3rem !important;
	position: absolute;
	bottom: .1rem !important;
	right: .1rem;
	margin: 0 auto;
	z-index: 9;
}

.news-swiper-pagination .swiper-pagination-bullet {
	width: 0.12rem;
	height: 0.12rem;
	background: #D9D9D9;
	border-radius: .03rem;
	margin: 0 0 0 .2rem !important;
	opacity: 1;
	color: transparent;
}

.news-swiper-pagination .swiper-pagination-bullet-active {
	background: var(--pm-c);
}

/* 资讯列表 */
.news-item {
	margin-bottom: .36rem;
	border-bottom: .01rem solid #F2F2F2;
	padding-bottom: .36rem;
}

.news-item:last-child {
	margin-bottom: 0;
	border: none;
}

.news-item .thumb {
	width: 2.4rem;
	height: 1.4rem;
	border-radius: 0.16rem;
	overflow: hidden;
}
.news-item .type span{
	display: block;
	padding-left: .36rem;
}
.news-item .time {
	background: url('../images/time.png') no-repeat left/contain;
	background-size: 0.28rem 0.28rem;
}
.news-item .hits {
	background: url('../images/hits.png') no-repeat left/contain;
	background-size: 0.28rem 0.28rem;
}
.news-item .desc {
	margin-top: .2rem;
	color: #4D4D4D;
}

.image-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.image-item {
	width: 3.1rem;
	margin-bottom: .3rem;
	position: relative;
}

.image-item .icon {
	width: 3.1rem;
	height: 1.76rem;
	border-radius: 0.06rem;
}

.image-item .title {
	padding-left: .03rem;
	margin-top: .14rem;
	font-size: 0.26rem;
	font-weight: bold;
	color: #333333;
}

.image-item .info {
	padding-left: .05rem;
	margin-top: .11rem;
	font-size: 0.24rem;
	color: #999999;
}

.image-item .video-lable {
	width: 0.6rem;
	height: 0.4rem;
	background-color: var(--main-color);
	border-radius: 0.06rem 0rem 0.06rem 0rem;
	position: absolute;
	top: 0;
	left: 0;
	text-align: center;
	font-size: 0.24rem;
	line-height: 0.4rem;
	letter-spacing: 0.01rem;
	color: #ffffff;
}

.image-swiper {
	margin: .13rem 0 .2rem;
}

.image-swiper .swiper-slide {
	width: 5.5rem;
}

.image-swiper .icon {
	width: 100%;
	border-radius: 0.06rem;
}

.video-top {
	width: 6.5rem;
	height: 3.4rem;
	border-radius: 0.06rem;
	overflow: hidden;
	position: relative;
}

.video-top iframe {
	width: 100%;
	height: 100%;
}

.game-nav {
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	padding-top: .4rem;
	background: linear-gradient( 180deg, #F0F0F0 0%, #fff 30%);
}

.game-nav-item {
	box-sizing: border-box;
	width: 1.6rem;
	height: 0.6rem;
	line-height: 0.6rem;
	text-align: center;
	background: #F7F7F7;
	border-radius: 0.1rem;
	margin: 0 .2rem .2rem 0;
}

.game-nav-item:nth-child(4n) {
	margin-right: 0;
}

.game-nav-item.current {
	background: #FFE7E7;
}

.game-nav-item a {
	display: block;
	text-align: center;
	font-size: 0.24rem;
	line-height: 0.6rem;
	color: #666666;
}

.game-nav-item.current a {
	font-weight: bold;
	color: var(--pm-c);
}

/* 详情页 */
.single .single-head {
	margin-bottom: .2rem;
	padding: .4rem .24rem .1rem;
	
}
.single-app .single-head{
	background: #fff url('../images/single_game.png') no-repeat top/contain;
}
.single-head .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 0.4rem;
	margin-right: .3rem;
}

.single-head .score{
	font-weight: bold;
	font-size: .4rem;
	color: #FF6969;
	background: url('../images/score_.png') no-repeat left/contain;
	background-size: 0.4rem 0.4rem;
	padding-left: 0.54rem;
}

.single-head .single-info .title {
	font-weight: bold;
	font-size: .32rem;
	color: #1A1A1A;
}

.single-head .single-info .info {
	color: #999999;
	font-size: .24rem;
	margin-left: 0;
}

.single-head .single-info .info span {
	color: #4D4D4D;
}

.single-head .single-info .info .date {
	margin-top: .16rem;
}
.single-head ul {
	border-top: .01rem solid #E6E6E6;
	padding-top: .4rem;
	margin-top: .4rem;
}

.single-head ul li{
	width: 25%;
	text-align: center;
	border-right: .01rem solid #E5E4E4;
}
.single-head ul li:last-child{
	border: none;
}
.single-head ul li span{
	font-size: .24rem;
	color: #4D4D4D;
	display: block;
}
.single-head ul li .name{
	color: #999999;
	margin-bottom: .22rem;
}
.down-href a {
	display: block;
	width: 100%;
	height: 0.88rem;
	line-height: 0.88rem;
	background: var(--pm-c) url('../images/down.png') no-repeat 2.55rem/contain;
	background-size: .36rem .36rem;
	border-radius: 0.16rem;
	margin: .4rem 0;
	text-align: center;
	font-size: 0.32rem;
	color: #fff;
	padding-left: .3rem;
	box-sizing: border-box;
}

.downBtn a {
	display: block;
	width: 100%;
	height: 0.8rem;
	background-color: #2194ff;
	border-radius: 0.1rem;
	margin: .2rem 0;
	text-align: center;
	font-size: 0.24rem;
	font-weight: bold;
	line-height: 0.8rem;
	letter-spacing: 0.02rem;
	color: #fafafa;
}

/* 游戏截图 */
.single-swiper {
	margin-top: .2rem;
}

.single-swiper .swiper-slide {
	width: 3.2rem;
	margin-right: .3rem;
}

.single-swiper .swiper-slide img {
	width: 100%;
	height: 100%;
	border-radius: 0;
}

/* 游戏内容 */
.single-content{
	overflow: hidden;
}

.single-content h3 {
	font-size: 0.32rem;
	font-weight: bold; 
	color: #1A1A1A;
	background: url('../images/single_h3_dot.png') no-repeat left/contain;
  background-size: .36rem .36rem;
	padding-left: .48rem;
	margin: .2rem 0;
}

.single-content p {
	text-indent: 2em;
	font-size: 0.28rem;
	line-height: 0.58rem;
	letter-spacing: 0.01rem;
	color: #666666;
}

.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;
}

.single-news .single-head .title{
	font-weight: bold;
	font-size: .36rem;
	line-height: .58rem;
	color: #1A1A1A;
	overflow: visible;
	text-overflow: inherit;
	white-space: wrap;
	margin-top: .2rem;
	text-align: center;
}
.single-news .single-head .info{
	display: flex;
	justify-content: space-between;
	border-bottom: .02rem dotted #EBEBED;
	padding-bottom: .32rem;
	margin-bottom: .32rem;
	margin-top: .8rem;
}
.single-news .info span {
  font-size: 0.24rem;
  line-height: 0.6rem;
  color: #999999;
  margin-right: 0.1rem;
}
.single-news .info span:nth-child(2){
	margin-left: 0.1rem;
	margin-right: 0.1rem;
}
/* 猜你喜欢 */
.single-game-like .game-like-list{
	display: flex;
	overflow-x: scroll;
}
.single-game-like .game-like-list .game-list{
	max-width: 1.2rem;
	margin-right: .48rem;
}
.single-game-like .game-like-list .game-list .icon{
	width: 1.2rem;
	height: 1.2rem;
	border-radius: .3rem;
	overflow: hidden;
}
.single-game-like .game-like-list .game-list .title{
	margin-top: .24rem;
}

.single-game-like .game-like-list .game-list .down{
	display: block;
	idth: 1.2rem;
	height: .6rem;
	line-height: .6rem;
	font-size: .28rem;
	color: #FFFFFF;
	background: var(--pm-c);
	border-radius: .1rem;
	overflow: hidden;
	text-align: center;
	margin-top: .24rem;
}
/* 热门游戏 */
.single-hot-game .type{
	color: #4D4D4D;
}

/* 新游动态 */
.single-xy-dt .item .title{
	font-weight: bold;
	font-size: .32rem;
	color: #1A1A1A;
}
.single-xy-dt .item .thumb{
	width: 3rem;
	height: 1.8rem;
	border-radius: .16rem;
	overflow: hidden;
}
.single-xy-dt .item .desc{
	font-size: .28rem;
	color: #4D4D4D;
	line-height: .48rem;
}
.single-xy-dt .item .hits{
	font-size: .24rem;
	color: #999999;
	display: block;
	margin-top: .4rem;
	background: url('../images/hits.png') no-repeat left/contain;
	background-size: 0.24rem 0.24rem;
	padding-left: 0.3rem;
}
/* 热门专辑 */
.single-hot-album .list-container li .num{
	font-size: .28rem;
	color: #B3B3B3;
	background: none;
	font-weight: bold;
	font-style: italic;
}
.single-hot-album .list-container li:nth-child(1) .num{
	color: #F21414;
}
.single-hot-album .list-container li:nth-child(2) .num{
	color: #FF4C00;
}
.single-hot-album .list-container li:nth-child(3) .num{
	color: #FF8A00;
}

.album-swiper {
	width: 100%;
	height: 4.5rem;
	overflow: hidden;
	position: relative;
}

.album-swiper .swiper-slide {
	width: 7.5rem;
	height: 4rem;
	position: relative;
	border-radius: .2rem;
}

.album-swiper .swiper-slide img{
	object-fit: cover;
	border-radius: .2rem;
}
.album-swiper .title {
	width: 100%;
	padding: 0 .24rem;
	font-size: 0.32rem;
	color: #FFFFFF;
	position: absolute;
	bottom: 0;
	height: 2.6rem;
	line-height: 4.2rem;
	text-align: center;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000000 100%);
}

.album-swiper-pagination {
	text-align: center;
	background: #fff;
	padding: .05rem 0;
	position: absolute;
	bottom: -.15rem !important;
	right: 0;
	left: 0 !important;
	z-index: 9;
}

.album-swiper-pagination .swiper-pagination-bullet {
	width: 0.16rem;
	height: 0.16rem;
	background-color: #D9D9D9;
	border-radius: .04rem;
	margin: 0 0 0 .2rem !important;
	opacity: 1;
	text-align: center;
	font-size: 0.24rem;
	line-height: 0.3rem;
	color: transparent;
}

.album-swiper-pagination .swiper-pagination-bullet-active {
	background: var(--pm-c);
	color: transparent;
}

.single-hot-album .album-swiper::before{
	content: '';
	display: block;
	position: absolute;
	left: -.02rem;
	top: 0;
	z-index: 111;
	width: 1.2rem;
	height: 1.2rem;
	background: url('../images/album_hot.png') no-repeat center/contain;
}

/* 最新专辑 */
.single-new-album .new-album-item{
	padding: .3rem;
	border-radius: .2rem;
	border: .01rem solid #E6E6E6;
	background: url('../images/album_bg1.png') no-repeat top/contain;
  background-size: 100% 1.52rem;
}
.single-new-album .new-album-item:nth-child(2n+2) {
	background: url('../images/album_bg2.png') no-repeat top/contain;
	background-size: 100% 1.52rem;
}
.single-new-album .new-album-item:nth-child(3n+3) {
	background: url('../images/album_bg3.png') no-repeat top/contain;
	background-size: 100% 1.52rem;
}
.single-new-album .new-album-item:nth-child(4n+4) {
	background: url('../images/album_bg4.png') no-repeat top/contain;
	background-size: 100% 1.52rem;
}
.new-album-item .album-top .title{
	font-weight: bold;
	font-size: .3rem;
	color: #1A1A1A;
}

.new-album-item .album-top .type{
	font-size: .24rem;
	color: #999999;
	display: block;
	margin-top: .2rem;
}
.new-album-item .album-top .type i{
 	font-weight: bold;
}
.new-album-item .album-top .more{
	display: block;
	width: .48rem;
	height: .48rem;
	border-radius: .1rem;
	border: .01rem solid #CCCCCC;
	background: #fff url('../images/more_jt.png') no-repeat center/contain;
  background-size: .2rem .2rem;
}
.new-album-item .game-list{
	border-top: .01rem solid #E6E6E6;
	padding-top: .3rem;
	margin-top: .3rem;
}
.new-album-item .game-list .item{
	max-width: 25%;
	padding-right: .1rem;
	box-sizing: border-box;
}
.new-album-item .game-list .item:last-child{
	padding-right: 0rem;
}
.new-album-item .game-list .icon{
	width: 1.2rem;
	height: 1.2rem;
	border-radius: .3rem;
	overflow: hidden;
	margin: 0 auto;
}
.new-album-item .game-list .title{
	font-size: .24rem;
	color: #4D4D4D;
	margin-top: .2rem;
	text-align: center;
}
/* 近期热点 */
.single-jq-hot .list:nth-child(-n+3) .num{
	color: #FFFFFF;
	background: var(--pm-c);
}
.single-jq-hot .list:first-child .num{
	color: transparent;
	background: url('../images/hot_dot_icon.png') no-repeat center/contain;
}
.single-jq-hot .list:first-child .title{
	font-weight: bold;
	font-size: .32rem;
	color: #1A1A1A;
}
.single-jq-hot .list:first-child .time{
	display: none;
}

/* 手游推荐 */
.single-game-tj .game-tj-list{
	display: flex;
	overflow-x: scroll;
}
.single-game-tj .game-tj-list .game-list{
	min-width: 6.5rem;
}
.single-game-tj .game-tj-list .game-item{
	margin-right: 0.24rem;
	
}
.single-game-tj .game-tj-list .icon{
	margin-bottom: 0.64rem;
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .4rem;
	overflow: hidden;
}
.single-game-tj .game-tj-list .info{
	margin-bottom: 0.32rem;
	padding-bottom: .32rem;
	border-bottom: .01rem solid #F2F2F2;
}
.single-game-tj .game-item:last-child .icon{
	margin-bottom: 0.2rem;
}
.single-game-tj .game-item:last-child .info{
	border: none;
	padding-bottom: 0;
	margin-bottom: 0.2rem;
}
.single-game-tj .game-tj-list .title{
	display: block;
}
.single-game-tj .game-tj-list .score{
	margin-right: 0.24rem;
	font-size: 0.24rem;
	display: inline-block;
	margin-right: 0.2rem;
	background: url('../images/score_.png') no-repeat left/contain;
	background-size: 0.28rem 0.28rem;
	padding-left: 0.34rem;
}
.single-game-tj .game-tj-list .type{
	margin-top: 0.15rem;
}
.single-game-tj .game-tj-list .desc{
	margin-top: 0.15rem;
}
.single-game-tj .game-tj-list .down{
	margin-bottom: 0.64rem;
	display: block;
	width: 1.24rem;
	height: 0.64rem;
	border-radius: 0.1rem;
	text-align: center;
	font-size: 0.28rem;
	line-height: 0.64rem;
	color: var(--pm-c);
	border: .01rem solid var(--pm-c);
}
/* 最新游戏 */
.single-new-game .game-list .item{
	margin-top: .3rem;
}
.single-new-game .game-list .item .icon{
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .4rem;
	overflow: hidden;
	margin: 0 auto .2rem;
}
.single-new-game .game-list .item .title{
	text-align: center;
}
/* 更多礼包 */
.single-more-gift ul li{
	padding-bottom: .3rem;
	border-bottom: .01rem solid #F2F2F2;
}
.single-more-gift ul li:last-child{
	border-bottom: none;
}
.single-more-gift .icon{
	width: .6rem;
	height: .6rem;
	border-radius: 1.98rem;
	overflow: hidden;
}

/* 相关阅读 */
.single-xg-read .xg-read-list{
	overflow-x: scroll;
}
.single-xg-read .item{
	max-width: 3.72rem;
	margin-right: .4rem;
	background: #F7F7F7;
	border-radius: .2rem;
	position: relative;
}
.single-xg-read .item .thumb{
	width: 3.72rem;
	height: 2rem;
	border-radius: .2rem .2rem 0 0;
	overflow: hidden;
}
.single-xg-read .item .tag{
	position: absolute;
	top: 0;
	left: 0;
	width: 1.44rem;
	height: .56rem;
	line-height: .56rem;
	background: rgba(0,0,0,0.6);
	border-radius: .2rem 0px .2rem 0px;
	color: #FFFFFF;
	font-size: .24rem;
	text-align: center;
}

.single-xg-read .item .info{
	background: #F7F7F7;
	border-radius: .2rem;
	padding: .2rem .3rem;
}

.single-xg-read .item .title{
	font-weight: bold;
}
.single-xg-read .item .desc{
	color: #4D4D4D;
}
.single-xg-read .item .time{
	display: block;
	margin-top: .4rem;
	background: url('../images/time.png') no-repeat left/contain;
	background-size: 0.24rem 0.24rem;
	padding-left: 0.32rem;
}

/* 专辑菜单 */
.album-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: .1rem;
}

.album-nav-item {
	width: 3.2rem;
	height: 0.8rem;
	line-height: .8rem;
	background: #F4F4F4;
	border-radius: 0.1rem;
	border: 0.01rem solid #E4E4E4;
	text-align: center;
	margin-left: 0.1rem;
	margin-top: 0.36rem;
}

.album-nav-item.current{
	position: relative;
	background: var(--pm-c);
	border: none;
}

.album-nav-item.current::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -0.18rem;
  left: 38%;
  width: 0.76rem;
  height: 0.2rem;
  background: url('../images/rank_nav_before.png') no-repeat center/contain;
}
.album-nav-item a {
	display: block;
	text-align: center;
	font-size: .28rem;
	color: #808080;
	text-decoration: none;
}

.album-nav-item.current a {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}

/* 专辑详情-热门专辑 */
.category-albume-hot{
	overflow-x: scroll;
	padding-top: .3rem;
	padding-bottom: .4rem;
}
.category-albume-hot .item{
	position: relative;
	margin-right: 0.4rem;
}
.category-albume-hot .thumb{
	width: 3.8rem;
	height: 2.2rem;
	border-radius: .2rem;
	overflow: hidden;
}
.category-albume-hot .tag{
	position: absolute;
	top: 0;
	left: 0;
	height: .56rem;
	font-weight: bold;
	font-size: .24rem;
	color: #FFFFFF;
	line-height: .56rem;
	padding-left:.48rem;
	padding-right: .22rem;
	background: #FF7337 url('../images/tag_icon1.png') no-repeat .16rem/contain;
	background-size: .24rem .24rem;
	border-radius: .2rem 0px .2rem 0px;
}

.category-albume-hot .title{
	height: 1rem;
	line-height: 1.26rem;
	background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
	border-radius: 0px 0px .2rem .2rem;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0 .2rem;
	font-size: .28rem;
	color: #FFFFFF;
	text-align: center;
}

/* 专辑详情 */
.single-album-head{
	padding-top: 0.1rem;
	  background: linear-gradient( 180deg, #F0F0F0 1%, #fff 8%);
}
.single-album .single-head {
	border-bottom: .02rem solid #F2F2F2;
	padding: 0.3rem 0;
	margin-bottom: .3rem;
	
}

.single-album .single-head .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 0.4rem;
	overflow: hidden;
}

.single-album .single-head .info {
	display: flex;
	justify-content: space-between;
	margin-top: .35rem;
	position: relative;
}
.single-album .single-head .info::before{
	content: '';
	display: inline-block;
	width: .08rem;
	height: .08rem;
	border-radius: .02rem;
	overflow: hidden;
	position: absolute;
	top: .45rem;
	left: 1.15rem;
	background: var(--pm-c);
	
}
.single-album .single-head .info::after{
	content: '';
	display: inline-block;
	width: .08rem;
	height: .08rem;
	border-radius: .02rem;
	overflow: hidden;
	position: absolute;
	top: .45rem;
	right: 1.97rem;
	background: var(--pm-c);
}
.single-album .single-head .info span {
	font-size: .24rem;
	color: #4D4D4D;
}
.single-album .single-head .info span:nth-child(-n+2){
	display: inline-block;
	margin-right: .48rem;
}
.album-details-head .intro {
	margin-top: .27rem;
	line-height: 0.48rem;
	color: #666666;
}

/* 相关推荐 */
.single-album-more .name{
	font-weight: bold;
	font-size: .28rem;
	color: #4D4D4D;
	background: url('../images/xg_album.png') no-repeat left/contain;
	background-size: .3rem .27rem;
	padding-left: .4rem;
}
.single-album-more ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: .3rem;
}

.single-album-more ul li{
	width: 48%;
	height: .48rem;
	line-height: .48rem;
	background: #F8F8F8;
	border-radius: 1.98rem;
	padding: 0 .2rem;
	box-sizing: border-box;
	margin-bottom: .3rem;
}
.single-album-more ul li a {
	display: block;
	box-sizing: border-box;
	text-align: center;
	font-size: 0.24rem;
	color: #999999;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* 第一个专辑卡片 */
.single-one-album{
	margin-top: .2rem;
	margin-bottom: .2rem;
	border-radius: .2rem;
	background: linear-gradient( 180deg, #26CB84 0%, #26CBCB 100%);
}
.single-one-album .name{
	width: .72rem;
	height: 3.2rem;
	background: url('../images/album_tj.png') no-repeat center/contain;
	border-radius: .2rem 0px 0px .2rem;
	background-size: .56rem 1.8rem;
}
.single-one-album .one-album-list{
	background: #fff;
	padding: .4rem .3rem;
	border-radius: 0px .2rem .2rem 0px;
  border: .02rem solid rgba(38, 203, 133, 1);
}
.single-one-album .one-album-list .icon{
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .4rem;
	overflow: hidden;
}
.single-one-album .one-album-list .title{
	font-weight: bold;
	font-size: .3rem;
	color: #1A1A1A;
}
.single-one-album .one-album-list .type{
	font-size: .24rem;
	color: #4D4D4D;
	display: block;
	padding-left: .44rem;
	background: url('../images/type_icon.png') no-repeat left/contain;
	background-size: .32rem .32rem;
}
.single-one-album .one-album-list .down{
	display: block;
	width: 100%;
	height: .68rem;
	line-height: .68rem;
	background: #D6F4F3;
	border-radius: .1rem;
	font-size: .28rem;
	color: #1DB7B2;
	text-align: center;
}
/* 专辑详情列表 */
.single-album-item {
	background: #F7F7F7;
	border-radius: .2rem;
	height: 2rem;
	padding: .3rem;
	margin-top: .3rem;
	position: relative;
}
.single-album-item:nth-child(-n+2):before {
	content: '';
	display: block;
	width: 1.28rem;
	height: 1.28rem;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 11;
}
.single-album-item:nth-child(1):before {
	background: url('../images/album_hp.png') no-repeat center/contain;
}

.single-album-item:nth-child(2):before {
	background: url('../images/album_xz.png') no-repeat center/contain;
}

.single-album-item .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 0.4rem;
	overflow: hidden;
}
.single-album-item .type{
	color: #4D4D4D;
}
.single-album-item .down {
	display: block;
	width: 1.36rem;
	height: 0.64rem;
	line-height: 0.64rem;
	background-color: var(--pm-c);
	border-radius: .1rem;
	text-align: center;
	font-size: 0.28rem;
	color: #ffffff;
}
.single-album-item .none{
	display: none !important;
}

/* 礼包列表 */
.category-gift-list .category-gift-item{
	border-radius: .2rem;
	border: .02rem solid #EBEBEB;
	margin-bottom: .3rem;
}

.category-gift-list .category-gift-item .icon{
	margin: .3rem 0rem .3rem .3rem;
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .4rem;
	overflow: hidden;
}

.category-gift-list .category-gift-item .info{
	padding: .3rem .3rem .3rem 0;
}

.category-gift-list .category-gift-item .time{
	display: block;
}

.category-gift-list .category-gift-item .btn{
	display: block;
	width: 1rem;
	background: #FDF0F0 url('../images/gift_icon.png') no-repeat center .54rem/contain;
	background-size: .44rem .44rem;
	border-radius: 0px .2rem .2rem 0px;
	padding: 1.12rem .22rem 0;
	box-sizing: border-box;
	font-size: .28rem;
	color: var(--pm-c);
}
.single-gift .single-head{
	padding: 0;
	margin-top: .2rem;
}
.single-gift .single-head .info{
	margin-top: .15rem;
	font-size: .24rem;
	color: #4D4D4D;
}
.single-gift .single-head .info .time{
	font-size: .24rem;
	color: #4D4D4D;
}
.single-gift .single-head .info span i{
	color: var(--pm-c);
}
.single-gift .single-head .receive-gift{
	display: block;
	width: 100%;
	height: 0.88rem;
	line-height: 0.88rem;
	background: var(--pm-c) url('../images/gift.png') no-repeat 2.55rem/contain;
	background-size: 0.36rem 0.36rem;
	border-radius: 0.16rem;
	margin: 0.4rem 0;
	text-align: center;
	font-size: 0.32rem;
	color: #fff;
	padding-left: 0.5rem;
	box-sizing: border-box;
}

.single-gift .single-head .game-btn{
	display: block;
	width: 100%;
	height: 0.88rem;
	line-height: 0.88rem;
	background: #0598FA url('../images/down.png') no-repeat 2.55rem/contain;
	background-size: 0.36rem 0.36rem;
	border-radius: 0.16rem;
	margin: 0.4rem 0;
	text-align: center;
	font-size: 0.32rem;
	color: #fff;
	padding-left: 0.5rem;
	box-sizing: border-box;
}

/* 热门礼包 */
.single-hot-gift .category-gift-list .category-gift-item{
	border: none;
	border-bottom: .02rem solid #F2F2F2;
	border-radius: 0px;
	padding-bottom: .36rem;
}
.single-hot-gift .category-gift-list .category-gift-item:last-child{
	border: none;
	padding-bottom: 0;
}
.single-hot-gift .category-gift-list .category-gift-item .btn{
	width: 1.36rem;
	height: .64rem;
	line-height: .64rem;
	border-radius: .1rem;
	border: .01rem solid var(--pm-c);
	background: #ffffff url('../images/gift_icon.png') no-repeat .2rem/contain;
	background-size: .32rem;
	padding: 0 0 0 0.6rem;
	margin-left: .2rem;
}

.single-hot-gift .category-gift-list .category-gift-item .icon{
	margin: 0;
}

.single-hot-gift .category-gift-list .category-gift-item .info{
	padding: 0;
}

.single-hot-gift .category-gift-list .category-gift-item .info .time i{
	color: var(--pm-c);
}

/* 礼包弹窗 */
.whole-mask{
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 1111;
	background: rgba(0,0,0,0.6);
	display: none;
}
.whole-mask .inner{
	width: 5.4rem;
	height: 6.4rem;
	background: linear-gradient( 180deg, #FFFFFF 14%, #FFF0F0 100%);
	border-radius: .4rem;
  position: relative;
	top: 3.28rem;
	margin: 0 auto;
	overflow: hidden;
}
.whole-mask .inner .receive-gift-close{
	position: absolute;
	right: .28rem;
	top: .28rem;
}
.whole-mask .inner .receive-gift{
	width: 3rem;
	height: 3rem;
	background: transparent;
	margin: .48rem auto 0.4rem;
	padding: 0;
	overflow: hidden;
}
.whole-mask .inner .active-code{
	margin: 0 auto;
	text-align: center;
}
.whole-mask .inner .active-code span{
	display: inline-block;
	width: .88rem;
	height: .4rem;
	line-height: .42rem;
	border-radius: .08rem;
	text-align: center;
	border: .02rem solid #FF8E8E;
	font-weight: bold;
	font-size: .24rem;
	color: #FF8E8E;
	margin-right: .12rem;
}
.whole-mask .inner .receive-btn{
	width: 3.96rem;
	height: .92rem;
	color: transparent;
	margin: 0.56rem auto 0;
	background: url('../images/receive_btn.png') no-repeat center/contain;
}

/* 手游排行榜 */
/* 排行榜菜单 */
.rank-nav li{
	width: 3.4rem;
	height: .8rem;
	line-height: .8rem;
	background: url('../images/rank_icon6.png') no-repeat .36rem/contain #FFFFFF;
	background-size: .32rem;
	border-radius: 1.98rem;
	border: .02rem solid #E6E6E6;
	margin-bottom: .22rem;
	padding-left: .86rem;
	box-sizing: border-box;
}
.rank-nav li:nth-child(2){
	background: url('../images/rank_icon3.png') no-repeat .36rem/contain #FFFFFF;
	background-size: .32rem;
}
.rank-nav li:nth-child(3){
	background: url('../images/rank_icon4.png') no-repeat .36rem/contain #FFFFFF;
	background-size: .32rem;
}
.rank-nav li:nth-child(4){
	background: url('../images/rank_icon1.png') no-repeat .36rem/contain #FFFFFF;
	background-size: .32rem;
}
.rank-nav li:nth-child(5){
	background: url('../images/rank_icon2.png') no-repeat .36rem/contain #FFFFFF;
	background-size: .32rem;
}
.rank-nav li:nth-child(6){
	background: url('../images/rank_icon5.png') no-repeat .36rem/contain #FFFFFF;
	background-size: .32rem;
}
.rank-nav li a{
	display: block;
	font-size: .32rem;
	color: #808080;
}
.rank-nav li.current{
	background-color: #FDF0F0;
	background-size: .32rem;
	border: .02rem solid #FDF0F0;
}
.rank-nav li.current a{
	font-weight: bold;
	color: #4C4C4C;
}

.rank-banner{
	width: 100%;
	height: 2rem;
}
/* 排行榜列表 */
.category-rank .rank-list .rank-item .num{
	width: .4rem;
	height: .4rem;
	line-height: .4rem;
	text-align: center;
	background: #F0F0F0;
	border-radius: .08rem;
	font-size: .24rem;
	color: #999999;
	margin-right: .4rem !important;
}
.category-rank .rank-list .rank-item:nth-child(-n+3) .num{
  width: .6rem;
	height: .6rem;
	line-height: .6rem;
	border-radius: 0rem;
	margin-right: .2rem !important;
	color: transparent;
}
.category-rank .rank-list .rank-item:nth-child(1) .num{
  background: url('../images/rank_01.png') no-repeat center/contain;
}
.category-rank .rank-list .rank-item:nth-child(2) .num{
  background: url('../images/rank_02.png') no-repeat center/contain;
}
.category-rank .rank-list .rank-item:nth-child(3) .num{
  background: url('../images/rank_03.png') no-repeat center/contain;
}

/* 排行榜大全 */
.rank-news-list .top-info{
	background: #F7F7F7 url('../images/rank_news_list_icon.png') no-repeat right/contain;
	border-radius: .2rem .2rem 0px 0px;
	height: 1.4rem;
	padding: .24rem;
	box-sizing: border-box;
	text-align: center;
}
.rank-news-list .name{
	font-weight: bold;
	font-size: .32rem;
	color: #1A1A1A;
}
.rank-news-list .date{
	font-size: .24rem;
	color: #999999;
	margin-top: .16rem;
}
.rank-news-list{
	background: #FFFFFF;
	border-radius: .2rem;
	border: .02rem solid #E6E6E6;
}
.rank-news-list .game-list{
	padding: .3rem .4rem;
}
.rank-news-list .game-list .num{
	font-weight: bold;
	font-size: .28rem;
	color: #333333;
	display: block;
	margin-right:.3rem;
}
.rank-news-list .game-list .icon{
	width: 1rem;
	height: 1rem;
	border-radius: .24rem;
	overflow: hidden;
}
.rank-news-list .game-list .title{
	margin-right: .2rem;
	max-width: 3.5rem;
}
.rank-news-list .game-list .score{
	color: #FF6969;
	font-size: 0.24rem;
	display: inline-block;
	margin-right: 0.2rem;
	background: url('../images/score_.png') no-repeat left/contain;
	background-size: 0.28rem 0.28rem;
	padding-left: 0.34rem;
}
.rank-news-list .game-list .type{
	display: block;
	width: 1.12rem;
	height: .4rem;
	line-height: .4rem;
	border-radius: .08rem;
	border: .01rem solid #DFDFDF;
	font-size: .24rem;
	color: #4D4D4D;
	text-align: center;
}
.rank-news-list .game-list .desc{
	margin-left: .16rem;
}

/* 排行榜详情 */
.single-rank-list .rank-list .rank-info{
	background: #FFFFFF url('../images/rank_dot.png') no-repeat .3rem/contain;
	background-size: .36rem;
	box-shadow: 0px .12rem .12rem 0px rgba(0,0,0,0.05);
	border-radius: .2rem;
	border: .02rem solid #E6E6E6;
	height: .96rem;
	line-height: .96rem;
	padding: 0 .3rem 0 .78rem;
}
.single-rank-list .rank-list .rank-info .name{
	font-weight: bold;
	font-size: .32rem;
	color: #1A1A1A;
}
.single-rank-list .rank-list .rank-info .date{
	font-size: .24rem;
	color: #999999;
}

/* 下载排行 */
.single-game-rank .home-game-list{
	border: none;
}
.single-game-rank .home-game-list .game-item:nth-child(-n+3) .num{
	background: var(--pm-c);
}
.single-game-rank .home-game-list .type-icon{
	background: url('../images/rank_hits.png') no-repeat left/contain;
	background-size: .28rem;
	color: #999999;
	padding-left: .32rem;
}
.single-game-rank .home-game-list .type{
	color: #999999;
}
.single-game-rank .home-game-list .game-item:last-child{
	padding-bottom: 0;
}

/* 最新资讯 */
.single-new-zx .item{
	margin-top: .36rem;
	position: relative;
}

.single-new-zx>.item::before{
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 11;
	width: 1.2rem;
	height: 1.2rem;
	background: url('../images/new_icon.png') no-repeat center/contain;
}
.single-new-zx .item .thumb{ 
	height: 3.4rem;
	width: 100%;
	border-radius: .2rem;
	overflow: hidden;
}
.single-new-zx .item .title{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 2rem;
	line-height: 3.1rem;
	background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
	border-radius: 0px 0px .2rem .2rem;
	font-size: .28rem;
	color: #FFFFFF;
	padding: 0 .4rem;
	box-sizing: border-box;
	text-align: center;
}

.single-new-zx .news-list .item .thumb{ 
	width: 3.36rem;
	height: 2rem;
	border-radius: .16rem;
	overflow: hidden;
	position: relative;
}
.single-new-zx .news-list .item .title{
	width: 3.36rem;
	height: .8rem;
	line-height: .9rem;
	padding: 0 .2rem;
	background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
	border-radius: 0px 0px .16rem .16rem;
	position: absolute;
	bottom: 0;
	left: 0.4rem;
	right: 0;
	font-size: .28rem;
	color: #FFFFFF;
}

/* 更多排行 */
.single-more-rank ul li{
	border: .01rem solid #E6E6E6;
	background: #F7F7F7 url('../images/more_rank_bg.png') no-repeat right/contain;
	border-radius: .2rem;
	padding: .3rem;
	margin-bottom: .3rem;
}

.single-more-rank ul li .icon{
	width: 1rem;
	height: 1rem;
	border-radius: .24rem;
	overflow: hidden;
}

.single-more-rank ul li .title{
	font-weight: bold;
	font-size: .32rem;
	color: #1A1A1A;
}

.single-more-rank ul li .time{
	font-size: .24rem;
	color: #999999;
	display: block;
}

iframe {
  width: 100%;
	margin-left: -2em;
}

/*手游tab*/
.game-tab {
	height: 0.6rem;
	line-height: 0.6rem;
	display: flex;
	text-align: center;
	margin-left: 0.3rem;
	overflow-x: scroll;
	flex-wrap: nowrap;
	margin-top: 0.49rem;
}

.game-tab-item {
	width: 1.6rem;
	flex-shrink: 0;
	font-family: MicrosoftYaHei;
	font-size: 0.24rem;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0.01rem;
	color: #666666;
}

/*上下页按钮*/
.page-btn {
	height: 0.56rem;
	margin: 0.65rem auto 0.72rem;
	display: flex;
	justify-content: center;
}

.prev,
.next {
	width: 1.4rem;
	height: 0.56rem;
	line-height: 0.56rem;
	text-align: center;
	background-color: #f8f8f8;
	font-family: MicrosoftYaHei;
	font-size: 0.24rem;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
	color: #888888;
}

.prev {
	margin-right: 0.29rem;
}

.next {
	margin-left: 0.29rem;
}

.page-active {
	background: #FFF0ED;
	color: #ff684f;
}

/* 关于我们 */
.page-nav {
	padding: .32rem .24rem .1rem;
}
.page-nav li{
	width: 1.6rem;
	height: .6rem;
	line-height: .6rem;
	border-radius: .1rem;
	overflow: hidden;
	text-align: center;
	margin-bottom: .2rem;
}
.page-nav li.current{
	background: var(--pm-c);
}
.page-nav li a{
	font-size: .24rem;
	color: #666666;
	display: block;
}
.page-nav li.current a{
	font-weight: bold;
	color: #FFFFFF;
}

.about-content p {
	margin-bottom: .56rem;
	font-size: 0.28rem;
	line-height: 0.58rem;
	letter-spacing: 0.01rem;
	color: #666666;
}

.about-content p:last-child {
	margin-bottom: 0;
}
/* 网站地图 */
.map-content {
	padding-bottom: .5rem;
}

.map-content h3{
	font-weight: bold;
	font-size: .28rem;
	color: #1A1A1A;
	position: relative;
	padding-left: .28rem;
	margin-bottom: .3rem;
	margin-top: .3rem;
}
.map-content h3::before{
	content:'';
	display: block;
	width: .12rem;
	height: .12rem;
	background: var(--pm-c);
	border-radius: .03rem;
	position: absolute;
	left: 0;
	top: 40%;
}

.map-content a {
	box-sizing: border-box;
	display: inline-block;
	width: 1.55rem;
	height: 0.6rem;
	line-height: 0.6rem;
	background-color: #ffffff;
	border-radius: 0.1rem;
	border: solid 0.01rem #E6E6E6;
	margin: 0 .18rem .2rem 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
	font-size: 0.24rem;
	color: #4D4D4D;
}

.map-content a:nth-child(4n) {
	margin-right: 0;
}

/* 404 */
.page-error{
	height: 450px;
	padding-top: .8rem;
}

.page-error .error-icon{
	display: block;
	width: 3rem;
	height: 2.4rem;
	margin: 0 auto .16rem;
	overflow: hidden;
}

.page-error .error-tips{
	font-size: .28rem;
	color: #999999;
	text-align: center;
}

.page-error .error-btn{
	width: 2.40rem;
	height: .8rem;
	line-height: .8rem;
	margin: 0.6rem auto;
	border-radius: .1rem;
	border: .01rem solid var(--pm-c);
	text-align: center;
	font-size: .32rem;
	color: var(--pm-c);
}

/*搜索结果*/
.search-content{
	background: linear-gradient( 180deg, #F0F0F0 0%, #fff 2%);
}
.search-notice {
	font-size: .32rem;
	color: #4D4D4D;
	padding-top: .4rem;
	margin-bottom: .3rem;
	padding: .2rem 0 0.1rem;
}

/* 开服表 */
.kaifu .kaifu-title{
	padding: .24rem;
}
.kaifu .kaifu-title .name{
	font-weight: bold;
	font-size: .36rem;
	color: #1A1A1A;
	padding-left: .6rem;
	background: url('../images/kaifu_date.png') no-repeat left/contain;
}
.kaifu .kaifu-title .num{
	font-size: .24rem;
	color: #666666;
}
.kaifu .kaifu-title .num i{
	font-weight: 600;
	color: var(--pm-c);
}

.kaifu-warp>ul .item {
	color: #999999;
	font-size: 0.28rem;
	display: flex;
	align-items: center;
	padding-bottom: 0.3rem;
	margin-bottom: 0.3rem;
	border-bottom: solid .01rem #F2F2F2;
}
.kaifu-warp>ul .item:last-child{
	border-bottom: 0;
}
.kaifu-warp ul .item .icon {
	width: 1.24rem;
	height: 1.24rem;
	border-radius: 0.3rem;
	overflow: hidden;
}

.kaifu-warp ul .item .info {
	margin-left: 0.3rem;
}

.kaifu-warp ul .item .title {
	font-size: 0.28rem;
	color: #1A1A1A;
	display: block;
	max-width: 4rem;
	position: relative;
	padding-right: 0.15rem;
	box-sizing: border-box;
}

.kaifu-warp ul .item .type-size {
	display: block;
	margin-top: 0.12rem;
	color: #999999;
	font-size: 0.24rem;
}

.kaifu-warp ul .item .type-size i {
	color: #666666;
	font-size: 0.24rem;
	font-style: normal;
}

.kaifu-warp ul .item .more {
	display: block;
	width: 1.36rem;
	height: 0.64rem;
	line-height: 0.64rem;
	text-align: center;
	border-radius: 0.1rem;
	color: var(--pm-c);
	border: 0.01rem solid var(--pm-c);
	font-size: 0.28rem;
	margin-left: 0.2rem;
}
.kaifu .kaifu-menu{
	padding: .32rem .24rem;
}
.kaifu-menu>ul {
	justify-content: space-between;
}

.kaifu-menu>ul li {
	position: relative;
	display: block;
	width: 2.2rem;
	text-align: center;
}
.kaifu-menu>ul li:first-child{
	text-align: left;
}

.kaifu-menu>ul li .title {
	color: #999999;
	font-size: 0.28rem;
}

.kaifu-menu>ul li .title::after {
	margin-left: 0.2rem;
	width: 0.4rem;
	height: 0.4rem;
	background: url('../images/select.png') no-repeat center/contain;
}

.kaifu-menu>ul li .dropdown {
	width: 100%;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
	width: 2.2rem;
}

.kaifu-menu>ul li .dropdown a,
.kaifu-menu>ul li .dropdown span {
	display: inline-block;
	min-width: 1.55rem;
	height: 0.6rem;
	background: #D9D9D9;
	border-radius: 0.05rem;
	margin-right: 0.2rem;
	margin-bottom: 0.2rem;
	font-size: 0.24rem;
	color: #FFFFFF;
	line-height: 0.58rem;
	text-align: center;
	padding: 0 0.1rem;
	box-sizing: border-box;
}

.kaifu-menu>ul li .dropdown .active {
	background: var(--pm-c);
}

.kaifu-warp .item .info .label {
	display: inline-block;
	width: 0.32rem;
	height: 0.32rem;
	padding-left: .2rem;
}

.kaifu-warp .item .info .az {
	color: transparent;
	background: url('../images/az_.png') no-repeat center/contain;
}

.kaifu-warp .item .info .ios {
	color: transparent;
	background: url('../images/ios_.png') no-repeat center/contain;
}

/*tab*/
.tab-wrap {
	width: 100%;
	height: 0.6rem;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: scroll;
}

.tab-wrap::-webkit-scrollbar {
	display: none;
}
