:root {
	--pm-c: #ff8521;
	--br-c: #eeeeee;
}

/*隐藏类*/
.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-color: #fff;
	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;
}

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

/* 溢出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 {
	margin: .3rem;
}

.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 .video {
	display: block;
	width: .35rem;
	height: .35rem;
	background: url('../images/dot_video.png') no-repeat center/contain;
}
.list-container li .dot_ {
	display: block;
	width: .25rem;
	height: .25rem;
	background: url('../images/dot_.png') no-repeat center/contain;
}
.list-container li .dot{
	display: block;
	width: .11rem;
	height: .11rem;
	background-color: #cecece;
	border-radius: .06rem;
}
.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: #222222;
	font-size: .28rem;
}

.list-container li .time {
	font-size: .24rem;
	color: #888888;
}

/* 评分图标 */
.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;
}

/* 公共标题 */
.module-title {
	position: relative;
}

.module-title .title {
	display: block;
	line-height: 0.3rem;
	font-size: 0.3rem;
	font-weight: bold;
	letter-spacing: .03rem;
	color: #222222;
}

.module-title .more {
	display: block;
	line-height: 0.3rem;
	background: url('../images/more_.png') no-repeat right/contain;
	background-size: .3rem;
	padding-right: .4rem;
}
/* 
.module-title .title::before {
	display: inline-block;
	width: 0.08rem;
	height: 0.36rem;
	border-radius: .03rem;
	background: var(--pm-c);
	left: 0rem;
} */

/* 头尾 */
.header {
	width: 100%;
	box-sizing: border-box;
}
.head-top{
	padding-top: .42rem;
	height: 2.25rem;
	box-sizing: border-box;
	background: url('../images/header_bg.png') no-repeat center/contain;
}
.header .logo {
	width: auto;
	height: .62rem;
	margin: 0 auto 0.33rem;
}

.search {
	height: .6rem;
	border-radius: .3rem;
	overflow: hidden;
	display: flex;
	margin: .22rem .3rem;
	box-sizing: border-box;
	background-color: #f6f6f6;
}

.search .search-input {
	width: calc(100% - .5rem);
	height: 100%;
	padding: 0 .3rem;
	font-size: .24rem;
	color: #999999;
	background-color: #f6f6f6;
}

.search .search-btn {
	width: .25rem;
	height: 100%;
	cursor: pointer;
	background: url('../images/search.png') no-repeat center/contain;
	border: none;
}

input::-webkit-input-placeholder {
	font-size: .24rem;
	color: #999999;
}

input::-moz-placeholder {
	font-size: .24rem;
	color: #999999;
}

.header .nav {
	width: 100%;
	overflow: auto hidden;
	margin-top: .2rem;
}

.header .nav .nav-item {
	flex-shrink: 0;
	height: .88rem;
	line-height: .88rem;
	padding: 0 0.46rem;
	box-sizing: border-box;
	text-align: center;
}

.header .nav .nav-item.active {
	background-color: var(--pm-c);
}

.header .nav .nav-item a {
	display: block;
	font-size: .3rem;
	letter-spacing: .02rem;
	color: #333333;
	font-weight: bold;
}

.header .nav .nav-item.active a {
	color: #ffffff;
}

.footer {
	background-color: #333333;
	padding: .3rem;
	color: #999999;
	font-size: .24rem;
	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: .48rem;
	margin-top: .1rem;
}

/* 友情链接 */
.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;
	height: 3.8rem;
	border-radius: .2rem;
	overflow: hidden;
}

.index-slider li {
	width: 100%;
	height: 100%;
}

.index-slider li .thum {
	display: block;
	width: 100%;
	height: 3.8rem;
}

.index-slider li .thum img {
	border-radius: .1rem;
	overflow: hidden;
}

.index-news-recom {
	position: relative;
}
.index-news-recom .news-type .news-type-item{
	width: 2.17rem;
	height: 1.4rem;
	background: #f8f8f8 url('../images/jx_icon.png') no-repeat center .25rem/contain;
	background-size: .4rem .36rem;
	border-radius: .08rem;
	text-align: center;
	padding-top: .83rem;
	font-size: .28rem;
	letter-spacing: .01rem;
	color: #666666;
	margin-top: .35rem;
	box-sizing: border-box;
}
.index-news-recom .news-type .news-type-item:nth-child(2){
	background: #f8f8f8 url('../images/xy_icon.png') no-repeat center .24rem/contain;
  background-size: .37rem;
}
.index-news-recom .news-type .news-type-item:nth-child(3){
	background: #f8f8f8 url('../images/dj_icon.png') no-repeat center .28rem/contain;
  background-size: .37rem .32rem;
}
.index-news-recom .item{
	width: 3.30rem;
	height: 2.22rem;
	position: relative;
}
.index-news-recom .item .thumb{
	width: 3.3rem;
	height: 2.22rem;
}
.index-news-recom .item .title{
	width: 3.3rem;
	height: .5rem;
	line-height: .5rem;
	background: rgba(0,0,0,.5);
	padding: 0 .2rem;
	text-align: center;
	font-size: .24rem;
	letter-spacing: .01rem;
	color: #ffffff;
	position: absolute;
	bottom: 0;
	left: 0;
	box-sizing: border-box;
}
.index-news-recom .item span{
	display: inline-block;
	position: absolute;
	top: .13rem;
	left: .15rem;
	height: .41rem;
	line-height: .41rem;
	border-radius: .06rem;
	background: rgba(0,0,0,.5) url('../images/hot_icon.png') no-repeat .14rem/contain;
	background-size: .19rem .26rem;
	padding-left: .44rem;
	padding-right: .16rem;
	font-size: .24rem;
	color: #ffffff;
}
.index-news-recom .list-container{
	position: relative;
}
.index-news-recom .list-container::before{
	content: '';
	display: block;
	width: .01rem;
	height: 3.62rem;
	background-color: #eeeeee;
	position: absolute;
	left: 0.05rem;
	top: 0.5rem;
	z-index: 0;
}

.index-news-recom .list-container li{
	position: relative;
	z-index: 1;
	margin-top: .3rem;
}
/* 安卓游戏 */
.index-az-game .az-game-list .icon{
	width: 1.21rem;
	height: 1.21rem;
	border-radius: .15rem;
	overflow: hidden;
	margin: 0 auto;
}
.index-az-game .az-game-list .title{
	font-size: .28rem;
	letter-spacing: .01rem;
	color: #555555;
	margin: .15rem auto .15rem;
	text-align: center;
}

.index-az-game .az-game-list .down{
	width: 1.41rem;
	height: .61rem;
	line-height: .61rem;
	border-radius: .08rem;
	border: solid .01rem #eeeeee;
	font-size: .26rem;
	color: #666666;
	margin: 0 auto;
	padding-left: .42rem;
	box-sizing: border-box;
	background: url('../images/down.png') no-repeat .25rem/contain;
	background-size: .23rem;
}

/* 头条要闻 */
.index-news{
	
}
.index-news .name{
	width: 4.50rem;
	height: 1.08rem;
	background: url('../images/news_title.png') no-repeat center/contain;
  margin: 0.4rem auto;
}
.index-news .item{ 
	border-bottom: dashed .01rem #e5e5e5;
	padding-bottom: .3rem;
}
.index-news .item .tag{
	display: block;
	width: .81rem;
	height: .37rem;
	line-height: .34rem;
	background-color: #fc6868;
	border-radius: .04rem;
	text-align: center;
	font-size: .26rem;
	font-weight: bold;
	letter-spacing: .01rem;
	color: #ffffff;
	margin-right: .1rem;
}
.index-news .item .title{
	font-size: .3rem;
	font-weight: bold;
	letter-spacing: .02rem;
	color: #333333;
}

.index-news .item .time{
	font-size: .24rem;
	letter-spacing: .01rem;
	color: #888888;
}

.index-news .item .text{
	font-size: .26rem;
	line-height: .48rem;
	letter-spacing: .01rem;
	color: #999999;
}
.index-news .list-container .title{
	color: #666666;
}
.index-news .thumb{
	width: 3.31rem;
	height: 1.89rem;
}
/* 手游合集 */
.index-album {}

.index-album .album-item {
}

.index-album .album-item .item {
	height: 1.57rem;
	background-color: #FFF9F4;
	border-radius: .06rem;
	padding: .2rem;
	position: relative;
	margin-bottom: .3rem;
	box-sizing: border-box;
}
.index-album .album-item .item .icon-list{
	position: relative;
	width: 2rem;
	height: 1.08rem;
}
.index-album .album-item .item .icon-list::before{
	content: '';
	display: block;
	position: absolute;
	left: -.12rem;
	top: -.12rem;
	width: .31rem;
	height: .28rem;
	background: url('../images/album_icon.png') no-repeat center/contain;
	z-index: 6;
}
.index-album .album-item .item .icon:nth-child(1){
	width: 1.08rem;
	height: 1.08rem;
	border-radius: .2rem;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
}
.index-album .album-item .item .icon:nth-child(2){
	width: 0.85rem;
	height: 0.85rem;
	border-radius: .2rem;
	overflow: hidden;
	position: absolute;
	left: 0.68rem;
	bottom: 0;
	z-index: 2;
}
.index-album .album-item .item .icon:nth-child(3){
	width: .62rem;
	height: .62rem;
	border-radius: .2rem;
	overflow: hidden;
	position: absolute;
	left: 1.18rem;
	bottom: 0;
	z-index: 1;
}

.index-album .album-item .item .title {
	font-size: .28rem;
	font-weight: bold;
	color: #333333;
}
.index-album .album-item .item .down {
	display: block;
	width: 1.55rem;
	height: .51rem;
	line-height: .48rem;
	border-radius: .06rem;
	border: solid .01rem var(--pm-c);
	color: var(--pm-c);
	font-size: .24rem;
	text-align: center;
	margin-top: .15rem;
}
.index-album .album-list li{
	border-bottom: dashed .01rem #e5e5e5;
	padding-bottom: .3rem;
	margin-bottom: .3rem;
}
.index-album .album-list li .title{
	font-size: .28rem;
	font-weight: bold;
	letter-spacing: .01rem;
	color: #333333;
}
.index-album .album-list li .down{
	display: block;
	width: .27rem;
	height: .19rem;
	background: url('../images/more.png') no-repeat center/contain
}
.index-album .album-list li .more-game span{
	color: var(--pm-c);
	font-size: .26rem;
	display: block;
	width: 1.3rem;
}
.index-album .album-list li .more-game a{
	display: inline-block;
	height: .57rem;
	line-height: .57rem;
	background-color: #f8f8f8;
	border-radius: .08rem;
	padding: 0 .18rem;
	color: #888888;
	font-size: .26rem;
	margin-left: .15rem;
	max-width: 2rem;
}

/* 高分推荐 */
.index-game-recom {
	min-height: 7.58rem;
	padding-top: 1.7rem;
	overflow: hidden;
	box-sizing: border-box;
	margin-top: .4rem;
	background: url('../images/gf_game_bg.png') no-repeat top/contain;
}
.index-game-recom .game-recom-list {
	padding: .3rem .22rem;
	overflow: auto hidden;
	display: flex;
}

.index-game-recom .game-recom-list .item {
	width: 3.1rem;
	height: 5rem;
	background: url('../images/game_bg1.png') no-repeat top/cover;
	margin-right: .1rem;
	position: relative;
	padding: 0 .3rem;
	box-sizing: border-box;
}
.index-game-recom .game-recom-list .item:nth-child(2){
	background: url('../images/game_bg2.png') no-repeat top/cover;
}
.index-game-recom .game-recom-list .item:nth-child(3){
	background: url('../images/game_bg3.png') no-repeat top/cover;
}
.index-game-recom .game-recom-list .item:nth-child(4){
	background: url('../images/game_bg4.png') no-repeat top/cover;
}
.index-game-recom .game-recom-list .item:nth-child(5){
	background: url('../images/game_bg5.png') no-repeat top/cover;
}
.index-game-recom .game-recom-list .item .icon {
	width: 1.26rem;
	height: 1.26rem;
	border-radius: .2rem;
	overflow: hidden;
	margin: .5rem auto .3rem;
}

.index-game-recom .game-recom-list .item .title {
	font-size: .26rem;
	color: #ffffff;
	margin-top: .08rem;
}

.index-game-recom .game-recom-list .item .type span{
	display: block;
	border-bottom: dashed .01rem #e5e5e5;
	padding-bottom: .1rem;
	margin-bottom: .1rem;
	font-size: .2rem;
	color: #888888;
}
.index-game-recom .game-recom-list .item .type span:last-child{
	border: none;
}
.index-game-recom .game-recom-list .item .score{
	font-size: .24rem;
	color: #ffffff;
	display: block;
	margin: 0 auto;
	text-align: center;
	margin-top: -.1rem;
}
.index-game-recom .game-recom-list .item .score span {
	color: #ffffff;
	font-size: .54rem;
	font-weight: bold;
	margin-right: .1rem;
}

/* 攻略推荐 */
.index-cp .item{
	margin-top: .4rem;
}
.index-cp .item .thumb{
	width: 1.90rem;
	height: 1.37rem;
	border-radius: .2rem;
}
.index-cp .item .title{
	font-size: .28rem;
	letter-spacing: .01rem;
	color: #222222;
}

.index-cp .item .text{
	font-size: .24rem;
	letter-spacing: .01rem;
	color: #888888;
}
.index-cp .item .pingce_score{
	display: block;
	width: .94rem;
	height: .44rem;
	line-height: .44rem;
	color: #ffffff;
	font-size: .28rem;
	background: url('../images/socre_bg.png') no-repeat right/cover;
	padding-right: .1rem;
	box-sizing: border-box;
	text-align: center;
}

/* 手游分类 */
.index-game .menu{
	height: .66rem;
	background-color: #f8f8f8;
	padding: .08rem .1rem;
}
.index-game .menu li{
	height: .5rem;
	line-height: .5rem;
	border-radius: 4px;
	padding: 0 .3rem;
	margin-right: .2rem;
}
.index-game .menu li.active{
	background-color: var(--pm-c);
}
.index-game .menu li a{
	color: #666666;
	font-size: .26rem;
}
.index-game .menu li.active a{
	color: #fff;
}

.index-game .game-item{
	margin-top: .42rem;
}

.index-game .game-item .item {
	margin-bottom: .55rem;
}

.index-game .game-item .item .icon {
	width: 1.22rem;
	height: 1.22rem;
	border-radius: .2rem;
	overflow: hidden;
}

.index-game .game-item .item .title {
	letter-spacing: .03rem;
	color: #333333;
	font-size: .3rem;
}
.index-game .game-item .item .type{
	letter-spacing: .02rem;
	color: #888888;
	font-size: .24rem;
}
.index-game .game-item .item .down {
	width: 1.36rem;
	height: .6rem;
	line-height: .6rem;
	border-radius: .1rem;
	border: solid .01rem var(--br-c);
	text-align: center;
	font-size: .28rem;
	letter-spacing: .03rem;
	color: #666666;
}

/* 游戏视频 */
.index-video{
	
}
.index-video .item{
	width: 100%;
	height: 4rem;
	position: relative;
}

.index-video .item .thumb{
	width: 100%;
	height: 3.3rem;
}
.index-video .item .title{
	font-size: .28rem;
	letter-spacing: .03rem;
	color: #222222;
	margin: .3rem 0;
	text-align: center;
}
.index-video .item2 .title{
	font-size: .28rem;
	letter-spacing: .03rem;
	color: #222222;
	margin: .3rem 0;
	text-align: center;
}
.index-video .item2{
	width: 3.27rem;
	height: 2.8rem;
	position: relative;
}
.index-video .item2 .thumb{
	width: 3.27rem;
	height: 2.13rem;
}


/* 热门礼包 */
.index-gift .item .icon{
	width: .9rem;
	height: .9rem;
	border-radius: .1rem;
	overflow: hidden;
}
.index-gift .item .title{
	font-size: .24rem;
	line-height: .42rem;
	letter-spacing: .02rem;
	color: #222222;
	margin: 0 .15rem;
}
.index-gift .item .down{
	display: block;
	width: .56rem;
	height: .51rem;
	line-height: .5rem;
	text-align: center;
	border-radius: .06rem;
	border: solid .01rem var(--pm-c);
	color: var(--pm-c);
	font-size: .24rem;
}
.index-gift .progress {
	font-size: .24rem;
	color: #999999;
	position: relative;
}

.index-gift .progress::before {
	display: inline-block;
	content: '';
	width: .24rem;
	height: .24rem;
	background: url('../images/gift_icon.png') no-repeat center/contain;
	background-size: .24rem;
	position: absolute;
	left: 1.52rem;
	z-index: 11;
}

.index-gift .uk-progress {
	margin-bottom: 0 !important;
	background-color: #f7f7f7;
	height: .07rem;
	width: 1.71rem;
	margin-right: .2rem;
}

.progress .uk-progress::-webkit-progress-value {
	border-radius: .03rem;
	background: var(--pm-c);
}
/* 公共菜单栏 */
.menu-nav {
	background-color: #f6f6f6;
	border-radius: .06rem;
	flex-wrap: wrap;
	padding: .2rem .2rem 0;
}

.menu-nav li {
	height: .6rem;
	line-height: .54rem;
	text-align: center;
	margin-right: .15rem;
	padding: 0 .2rem;
	margin-bottom: .2rem;
	border-radius: .06rem;
}
.menu-nav li:nth-child(4n){
	margin-right: 0;
}
.menu-nav li a {
	display: block;
	font-size: .26rem;
	letter-spacing: .01rem;
	color: #333333;
}

.menu-nav li.active {
	background: var(--pm-c);
}
.menu-nav li.active a {
	color: #ffffff;
}

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

.single-content h3 {
	display: block;
	width: 100%;
	height: .6rem;
	line-height: .56rem;
	font-size: 0.26rem;
	color: #f4aa57;
	background: #FEF6EE;
	padding-left: .26rem;
	margin: .2rem 0;
	border-left: .05rem solid #f4aa57;
}

.single-content p {
	text-indent: 2em;
	font-size: 0.26rem;
	line-height: 0.6rem;
	letter-spacing: 0.01rem;
	color: #666666;
}
.single-content p iframe{
	width: 88%;
}

.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-header .title {
	font-weight: bold;
	font-size: .36rem;
	line-height: .48rem;
	color: #222222;
	letter-spacing: 0.04rem;
	overflow: visible;
	text-overflow: inherit;
	white-space: wrap;
	margin-top: .6rem;
	text-align: center;
}

.single-news .single-header .info {
	display: flex;
	justify-content: space-between;
	border-bottom: .01rem dashed #e5e5e5;
	padding-bottom: .56rem;
	margin-bottom: .56rem;
	margin-top: .6rem;
}

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

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

/* 资讯列表 */
.hot-news {
	overflow: auto hidden;
}
.hot-news .item{
	width: 4.43rem;
	height: 2.5rem;
	position: relative;
	margin-right: .2rem;
}

.hot-news .item .thumb{
	width: 4.43rem;
	height: 2.5rem;
	border-radius: .1rem;
	overflow: hidden;
}

.hot-news .item .title{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 0 .3rem 0 .6rem;
	text-align: center;
	background: rgba(0,0,0,.5) url('../images/hot_icon.png') no-repeat .3rem/contain;
  background-size: .2rem .26rem;
	height: .51rem;
	line-height: .51rem;
	letter-spacing: .01rem;
	color: #ffffff;
	font-size: .24rem;
}

.news-list .item {
	margin-top: .35rem;
	border-bottom: dashed .01rem #e5e5e5;
	padding-bottom: .3rem;
}

.news-list .item .thumb {
	width: 2.46rem;
	height: 1.71rem;
	border-radius: .1rem;
	overflow: hidden;
}

.news-list .item .title {
	font-weight: 600;
	color: #333333;
	font-size: .28rem;
}

.news-list .item .text {
	line-height: .42rem;
	font-size: .24rem;
	color: #666666;
	letter-spacing: .01rem;
}

.news-list .item .type span {
	display: block;
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #999999;
	border-radius: .06rem;
	border: solid 1px #eeeeee;
	padding: 0 .1rem;
	text-align: center;
	height: .42rem;
	line-height: .38rem;
	max-width: 1.84rem;
	box-sizing: border-box;
}

/* 资讯详情 */

/* 游戏列表 */
.game-warp .item {
	margin-top: .3rem;
	padding: .2rem;
	border-radius: .1rem;
	border: solid .01rem var(--br-c);
}

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

.game-warp .item .down {
	display: inline-block;
	width: 1.2rem;
	height: .6rem;
	line-height: .6rem;
	background: #FFF4E5 url('../images/down.png') no-repeat .2rem/contain;
	background-size: .21rem;
	border-radius: .08rem;
	font-size: .24rem;
	letter-spacing: .01rem;
	color: var(--pm-c);
	padding-left: .3rem;
}

.game-warp .item .info {
	margin-left: .2rem;
}

.game-warp .item .title {
	letter-spacing: .01rem;
	color: #333333;
	font-size: .28rem;
	font-weight: bold;
}
.game-warp .item .text{
	color: #666666;
	font-size: .24rem;
}

.game-warp .item .type span {
	font-size: .24rem;
	color: #666666;
	padding: 0 .25rem;
	background-color: #f8f8f8;
	border-radius: .25rem;
	border: solid .01rem var(--br-c);
	height: .5rem;
	line-height: .5rem;
	margin-right: .1rem;
}

.game-warp .item .time {
	font-size: .24rem;
	color: #888888;
	display: block;
	padding-left: .3rem;
	background: url('../images/date.png') no-repeat left/contain;
	background-size: .24rem;
}

.category-game .hot-game {
	overflow: auto hidden;
}

.category-game .hot-game .item {
	width: 2.65rem;
	min-width: 2.65rem;
	position: relative;
	border: solid .01rem #eeeeee;
	border-radius: .2rem;
	padding: .36rem .2rem .36rem .2rem;
	box-sizing: border-box;
	margin-right: .29rem;
	text-align: center;
}

.category-game .hot-game .item::before {
	display: block;
	content: '';
	width: .89rem;
	height: 1.06rem;
	position: absolute;
	left: 0rem;
	top: -.01rem;
	background: url('../images/hot_game_icon.png') no-repeat center/contain;
}

.category-game .hot-game .item .icon {
	width: 1.25rem;
	height: 1.25rem;
	border-radius: .2rem;
	overflow: hidden;
	margin: 0 auto;
}

.category-game .hot-game .item .title {
	font-size: .28rem;
	color: #666666;
	margin: .2rem auto .1rem;
}

.category-game .hot-game .item .type {
	font-size: .24rem;
	color: #888888;
	margin-top: .36rem;
}

.category-game .hot-game .item .down{
	display: block;
	width: 1.44rem;
	height: .55rem;
	line-height: .55rem;
	border-radius: .08rem;
	background: #FFF3E8;
	font-size: .26rem;
	color: var(--pm-c);
	margin: .2rem auto 0;
}

/* 游戏详情 */
.single-game .single-header .icon {
	margin: 1.2rem auto .3rem;
	position: relative;
	overflow: visible;
	width: 1.5rem;
	height: auto;
}
.single-game .single-header .icon img{
	width: 1.5rem;
	height: 1.5rem;
	border-radius: .2rem;
	overflow: hidden;
}
.single-game .single-header .icon .score{
	position: absolute;
	top: -.8rem;
	width: 1.5rem;
	height: 1.22rem;
	line-height: 1.22rem;
	text-align: center;
	letter-spacing: .03rem;
	color: #d37317;
	font-size: .3rem;
	font-weight: bold;
	background: url('../images/pf.png') no-repeat center/contain;
}
.single-game .single-header .single-info {
	text-align: center;
}

.single-game .single-header .title {
	font-size: .3rem;
	font-weight: 600;
	letter-spacing: .02rem;
	color: #333333;
	text-align: center;
	margin-bottom: .26rem;
}

.single-slide .item {
	width: 2.8rem;
	/*height: 4.55rem;*/
	object-fit: contain;
}
.single .single-header .down,
.single .single-header .down-href {
	display: block;
	width: 100%;
	font-size: .3rem;
	color: #fff;
	margin: 0.4rem 0;
}
.single .single-header .down a,
.single .single-header .down-href a {
	display: block;
	height: .88rem;
	line-height: .88rem;
	width: 100%;
	text-align: center;
	border-radius: .1rem;
	margin-bottom: .2rem;
	color: #fff;
	background: url('../images/btn_bg.png') no-repeat top/contain;
}
.single .single-header .down-href a:hover{
	color: #fff;
}
.single .single-header .down-href a.xz {
	background: url('../images/btn_bg2.png') no-repeat top/contain;
}

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

.single-game .single-header ul {
	margin-top: .38rem;
	flex-wrap: wrap;
	margin-right: .1rem;
}

.single-game .single-header ul li {
	font-size: .24rem;
	letter-spacing: .01rem;
	color: #666666;
	text-align: center;
	height: .54rem;
	line-height: .52rem;
	background-color: #f8f8f8;
	border-radius: .27rem;
	border: solid .01rem var(--br-c);
	padding: 0 .25rem;
	margin-bottom: .2rem;
}

/* 专辑列表 */
.album-warp .item {
	border-radius: .1rem;
	border: solid .01rem var(--br-c);
	padding: .28rem .3rem .26rem;
	margin-bottom: .3rem;
}
.album-warp .item .album-info{
	margin-bottom: .6rem;
}
.album-warp .item .title {
	font-weight: bold;
	color: #333333;
	font-size: .28rem;
	padding-top: .1rem;
}
.album-warp .item .album-info .icon-list{
	position: relative;
}
.album-warp .item .album-info .icon {
	position: absolute;
	width: 1.31rem;
	height: 1.31rem;
	border-radius: .2rem;
	overflow: hidden;
	top: -.5rem;
	left: .33rem;
	z-index: 1;
}
.album-warp .item .album-info .icon:nth-child(2){
	left: 0;
	top: -.3rem;
	z-index: 0;
	width: 1.01rem;
	height: 1.01rem;
	opacity: .4;
}
.album-warp .item .album-info .icon:nth-child(3){
	left: .96rem;
	top: -.3rem;
	z-index: 0;
	width: 1.01rem;
	height: 1.01rem;
	opacity: .4;
}
.album-warp .item .info{
	margin-left: 2.2rem;
}
.album-warp .item .album-info .type span{
	font-size: .24rem;
	color: #666666;
	letter-spacing: .01rem;
	display: block;
	background-color: #f8f8f8;
	border-radius: .25rem;
	border: solid .01rem var(--br-c);
	padding: 0 .24rem;
	height: .5rem;
	line-height: .48rem;
	margin-right: .12rem;
}

.album-warp .item .more {
	width: 1.9rem;
	height: .6rem;
	line-height: .56rem;
	background: #FFF4E5 url('../images/album_icon_.png') no-repeat .2rem/contain;
	background-size: .25rem;
	border-radius: .1rem;
	font-size: .22rem;
	color: var(--pm-c);
	padding-left: .6rem;
}
.album-warp .item .game-item .icon{
	width: .42rem;
	height: .42rem;
	border-radius: .1rem;
	overflow: hidden;
}
.album-warp .item .tj{
	display: block;
	width: .75rem;
	margin-left: .1rem;
	color: #999999;
	font-size: .24rem;
}
.album-warp .item .name {
	padding-left: .1rem;
	font-size: .24rem;
	color: #666666;
	letter-spacing: .01rem;
	display: block;
	width: 1.2rem;
}

/* 专辑详情 */
.single-album .single-header .title{
	text-align: left;
}
.single-album .single-header .icon {
	margin: .0rem;
	width: 1.3rem;
	height: 1.3rem;
	border-radius: .2rem;
	overflow: hidden;
}

.single-album .single-header .single-info .date {
	margin-top: .2rem;
}

.single-album .single-header .single-info .type {
	flex-wrap: wrap;
}

.single-album .single-header .single-info .type span {
	font-size: .24rem;
	color: #666666;
	letter-spacing: .01rem;
	display: block;
	background-color: #f8f8f8;
	border-radius: .25rem;
	border: solid .01rem var(--br-c);
	padding: 0 .24rem;
	height: .5rem;
	line-height: .48rem;
	margin-right: .12rem;
}

.single-album .single-header .more-album {
	padding-bottom: .2rem;
	margin-top: .4rem;
}

.single-album .single-header .more-album .name {
	display: inline-block;
	width: 1.16rem;
	font-size: .24rem;
	color: #666666;
}

.single-album .single-header .more-album .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-left: .3rem;
	flex: 1;
}

.single-album .single-header .more-album a {
	display: block;
	margin-bottom: .2rem;
	font-size: .24rem;
	color: #ff3f3f;
}
.single-album .single-header .more-album a:nth-child(2){
	color: #36ccb5;
}
.single-album .single-header .more-album a:nth-child(3){
	color: #5997e4;
}
.single-album .single-header .more-album a:nth-child(4){
	color: #ff903f;
}

.single-album .album-recom {
	width: 100%;
	height: 3.75rem;
	background: url('../images/album_bg.png') no-repeat top/contain;
	padding: 1.5rem .26rem .31rem;
	box-sizing: border-box;
}
.single-album .album-recom .icon{
	width: 1rem;
	height: 1rem;
	border-radius: .2rem;
	overflow: hidden;
}

.single-album .album-recom .text {
	letter-spacing: .02rem;
	font-size: .24rem;
	color: #666666;
	margin-top: .25rem;
}

.single-album .album-recom .score {
	font-size: .24rem;
	color: #666666;
	display: block;
	margin-left: .2rem;
}

.single-album .album-recom .down {
	width: 100%;
	height: .66rem;
	line-height: .6rem;
	border-radius: .1rem;
	text-align: center;
	color: #fff;
	font-size: .3rem;
	background-color: #f4aa57;
	margin-top: .25rem;
}

/* 间隔线 */
.line{
	width: 7.5rem;
	height: .1rem;
	background-color: #f8f8f8;
	margin-top: .4rem;
	margin-left: -.3rem;
}

.single-album .game-warp .item{
	position: relative;
	border: none;
	padding: 0;
	margin-top: 0rem;
	margin-bottom: .5rem;
}
.single-album .game-warp .item:nth-child(-n+3)::before {
	display: block;
	content: '';
	font-size: .18rem;
	letter-spacing: .01rem;
	color: #ffffff;
	position: absolute;
	left: -.08rem;
	top: -.1rem;
	z-index: 11;
	width: .79rem;
	height: .78rem;
	line-height: .35rem;
	padding-left: .12rem;
}

.single-album .game-warp .item:nth-child(1)::before {
	content: '';
	background: url('../images/album_rank_1.png') no-repeat center/contain;
  background-size: .79rem .78rem;
}

.single-album .game-warp .item:nth-child(2)::before {
	content: '';
	background: url('../images/album_rank_2.png') no-repeat center/contain;
  background-size: .79rem .78rem;
}

.single-album .game-warp .item:nth-child(3)::before {
	content: '';
	background: url('../images/album_rank_3.png') no-repeat center/contain;
  background-size: .79rem .78rem;
}
.single-album .game-warp .item .text{
	color: #888888;
}
.single-album .game-warp .item .down{
	width: 1.21rem;
	height: .59rem;
	border-radius: .06rem;
	border: solid .01rem #eeeeee;
	background: none;
	text-align: center;
	padding: 0;
	color: #666666;
}

/* 礼包列表 */
.gift-warp {
	margin-top: .4rem;
}
.gift-warp .item {
	margin: .3rem 0;
	padding: .2rem;
	border-radius: .1rem;
	border: solid .01rem var(--br-c);
}

.gift-warp .item .icon {
	width: 1.2rem;
	height: 1.2rem;
	border-radius: .2rem;
	overflow: hidden;
}

.gift-warp .item .type span {
	font-size: .24rem;
	color: #666666;
	letter-spacing: .01rem;
	display: block;
	background-color: #f8f8f8;
	border-radius: .25rem;
	border: solid .01rem var(--br-c);
	padding: 0 .2rem;
	height: .5rem;
	line-height: .48rem;
	margin-right: .12rem;
}

.gift-warp .item .title {
	letter-spacing: .02rem;
	display: block;
	font-weight:bold;
}

.gift-warp .item .text {
	font-size: .24rem;
	letter-spacing: .01rem;
	color: #666666;
	display: block;
	text-indent: 0 !important;
}

.gift-warp .item .down {
	width: 1.2rem;
	height: .6rem;
	line-height: .6rem;
	border-radius: .08rem;
	font-size: .24rem;
	letter-spacing: .02rem;
	color: var(--pm-c);
	background: #FFF4E5 url('../images/gift_down.png') no-repeat .2rem/contain;
  background-size: .2rem .23rem;
	padding-left: .36rem;
	box-sizing: border-box;
}  

/* 礼包详情 */
.single-gift .single-header .icon{
	margin-top: .5rem;
}
.single-gift .single-header ul {
	padding: 0;
	justify-content: space-around;
}
.xggift{
	flex-wrap: wrap;
}
.xggift .item{
	width: 3.12rem;
  text-align: center;
	margin-top: .5rem;
	padding-bottom: .4rem;
	background: url('../images/gift_bg.png') no-repeat center/contain;
}
.xggift .item .icon{
	width: 1.21rem;
	height: 1.21rem;
	border-radius: .15rem;
	overflow: hidden;
	margin: 1.1rem auto 0;
}
.xggift .item .title{
	margin: .25rem auto .15rem;
	color: #333333;
	font-size: .28rem;
}
.xggift .item .num{
	color: #888888;
	font-size: .24rem;
}
.xggift .item .num i{
	color: var(--pm-c);
}
.xggift .item .down{
	display: block;
	margin: 0 auto;
	width: 1.61rem;
	height: .61rem;
	line-height: .61rem;
	border-radius: .08rem;
	text-align: center;
	background: #FFF7F1;
	color: var(--pm-c);
	font-size: .24rem;
	margin-top: .25rem;
}

/* 排行榜 */
.category-rank .rank-banner {
	margin: .3rem auto;
	height: 2.76rem;
	background: url('../images/rank_list.png') no-repeat center/contain;
}

.category-rank .menu-nav li{
	margin-right: .1rem;
	padding: 0 .16rem;
}
.category-rank .menu-nav li:nth-child(3n){
	margin-right: 0;
}
.category-rank .rank-warp .item .title{
  max-width: 3.6rem;
}

.category-rank .rank-warp .item .order {
	display: block;
	width: 1.26rem;
	height: .32rem;
	line-height: .3rem;
	background: url(../images/rank_order.png) no-repeat .12rem .06rem / contain #fcba04;
	background-size: .22rem;
	border-radius: .16rem;
	font-size: .24rem;
	color: #FFFFFF;
	font-weight: bold;
	padding-left: .4rem;
	margin-left: .2rem;
	box-sizing: border-box;
	letter-spacing: .01rem;
	text-shadow: 0px .03rem .03rem 0px rgba(238, 182, 0, 0.75);
}

/* 排行榜大全 */
.category-rank-list .rank-banner {
	background: url('../images/rank_list_.png') no-repeat center/contain;
}
.category-rank .rank-banner .single-rank-top{
	padding: .44rem .34rem;
}
.category-rank .rank-banner .single-rank-title{
	font-size: .36rem;
	font-weight: 600;
	letter-spacing: .03rem;
	color: #fff7d5;
}
.category-rank .rank-banner .single-rank-time{
	display: block;
	width: 3.13rem;
	height: .6rem;
	line-height: .56rem;
	border: solid 1px #faf8df;
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #faf8df;
	text-align: center;
	margin-top: .3rem;
}
/* 排行榜详情 */

/* 详情单个板块 */
/* 热门下载 */
.single-hot-game .item {
	text-align: center;
}

.single-hot-game .item .icon {
	width: 1.31rem;
	height: 1.31rem;
	border-radius: .2rem;
	overflow: hidden;
	margin: 0 auto;
}

.single-hot-game .item .title {
	color: #666666;
	font-size: .3rem;
	letter-spacing: .03rem;
	margin: .2rem 0 .1rem;
	text-align: center;
}

.single-hot-game .item .down {
	display: block;
	width: 1.31rem;
	height: .61rem;
	line-height: .61rem;
	text-align: center;
	color: #666666;
	font-size: .28rem;
	margin: 0.2rem auto 0;
	letter-spacing: .03rem;
	border-radius: .06rem;
	border: solid .01rem #eeeeee;
}

/* 新游动态 */
.single-hot-gl .item {
	margin-top: .3rem;
}

.single-hot-gl .item .thumb {
	width: 3.23rem;
	height: 2.22rem;
	border-radius: .1rem 0px 0px .1rem;
	overflow: hidden;
}

.single-hot-gl .item .info {
	padding: .2rem;
	margin-left: 0 !important;
	background-color: #f7f7f7;
	border-radius: 0px .1rem .1rem 0px;
	height: 2.22rem;
	width: 3.67rem;
}
.single-hot-gl .item .title{
	font-size: .28rem;
	color: #333333;
	font-weight: bold;
	letter-spacing: .01rem;
	background: url('../images/dot_ht.png') no-repeat left/contain;
	background-size: .28rem;
	padding-left: .45rem;
}
.single-hot-gl .item .text {
	font-size: .24rem;
	color: #666666;
	margin: .1rem 0;
	letter-spacing: .01rem;
	line-height: .4rem;
}

.single-hot-gl .item .time {
	display: block;
	font-size: .24rem;
	color: #888888;
	padding-left: .36rem;
	letter-spacing: .01rem;
	text-align: right;
}

/* 热门推荐 */
.hot-news-list .item{
  position: relative;
}
.hot-news-list .item .thumb{
	width: 3.31rem;
	height: 1.95rem;
}
.hot-news-list .item .title {
	display: -webkit-box !important;
	font-size: .3rem;
	line-height: .55rem;
	letter-spacing: .02rem;
	color: #ffffff;
	padding: .45rem .45rem .45rem .85rem;
	position: absolute;
	top: 0;
	bottom: 0;
	left: .3rem;
	right: 0;
	z-index: 11;
	background: rgba(0,0,0,0.5) url('../images/hot_icon.png') no-repeat .3rem .5rem/contain;
	background-size: .31rem .43rem;
}

/* 精彩视频 */
.single-jc-video .item {
	padding-top: .1rem;
}

.single-jc-video .item .thumb {
	width: 3.41rem;
	height: 2.15rem;
	border-radius: .04rem;
	overflow: hidden;
}

.single-jc-video .item .thumb::before {
	content: '视频';
	display: block;
	width: .73rem;
	height: .41rem;
	line-height: .38rem;
	background: rgba(0, 0, 0, .6);
	border-radius: .06rem;
	position: absolute;
	top: .15rem;
	left: .15rem;
	z-index: 11;
	color: #ffffff;
	font-size: .24rem;
	text-align: center;
}

.single-jc-video .item .time {
	display: block;
}

/* 专辑推荐 */
.single-album-recom .list-container li .tag {
	width: 1.24rem;
	height: .44rem;
	line-height: .4rem;
	border-radius: .06rem;
	border: solid .01rem #eeeeee;
	text-align: center;
}

/* 热门礼包 */
.bottom-hot-gift .item{
	margin-top: .4rem;
}
.bottom-hot-gift .item .item-icon{
	width: 1.2rem;
	height: 1.2rem;
	line-height: 1.2rem;
	background-color: #FFF3E8;
	border-radius: .2rem;
	color: var(--pm-c);
	text-align: center;
	font-size: .28rem;
}
.bottom-hot-gift .item .info{
	border-bottom: .01rem dashed  #e5e5e5;
	padding-bottom: .28rem;
}
.bottom-hot-gift .item .title{
	font-size: .3rem;
	letter-spacing: .03rem;
	color: #333333;
}
.bottom-hot-gift .item .text{
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #888888;
	margin-top: .12rem;
}
/* 抢礼包 */
.bottom-gift .list-container li .down{
	font-size: .28rem;
	letter-spacing: .01rem;
	color: var(--pm-c);
}
/* 单页 */
.page-nav{
	flex-wrap: wrap;
}
.page-nav li{
	width: 2.17rem;
	height: .6rem;
	line-height: .6rem;
	background: #f7f7f7;
	border-radius: .3rem;
	padding-left: .78rem;
	box-sizing: border-box;
	position: relative;
}
.page-nav li::before{
	content: '';
	width: .38rem;
	height: .38rem;
	display: block;
	position: absolute;
	left: .24rem;
	top: .11rem;
	background: url('../images/page_1.png') no-repeat center/contain 
}
.page-nav li:nth-child(2)::before{
	background: url('../images/page_2.png') no-repeat center/contain 
}
.page-nav li:nth-child(3)::before{
	background: url('../images/page_3.png') no-repeat center/contain 
}
.page-nav li:nth-child(4)::before{
	background: url('../images/page_4.png') no-repeat center/contain 
}
.page-nav li:nth-child(5)::before{
	background: url('../images/page_5.png') no-repeat center/contain 
}
.page-nav li:nth-child(6)::before{
	background: url('../images/page_6.png') no-repeat center/contain 
}
.page-nav li.active{
	background-image: linear-gradient(90deg, #ff9000 0%, #ffc259 100%); 
  box-shadow: 0px 3px 6px 0px rgba(207, 120, 67, 0.35);
}
.page-nav li.active::before{
	background: url('../images/page_1_.png') no-repeat center/contain 
}
.page-nav li:nth-child(2).active::before{
	background: url('../images/page_2_.png') no-repeat center/contain 
}
.page-nav li:nth-child(3).active::before{
	background: url('../images/page_3_.png') no-repeat center/contain 
}
.page-nav li:nth-child(4).active::before{
	background: url('../images/page_4_.png') no-repeat center/contain 
}
.page-nav li:nth-child(5).active::before{
	background: url('../images/page_5_.png') no-repeat center/contain 
}
.page-nav li:nth-child(6).active::before{
	background: url('../images/page_6_.png') no-repeat center/contain 
}
.page-nav li a{
	color: #333333;
	font-size: .26rem;
}
.page-nav li.active a{
	color: #ffffff;
}
.page-content{
	margin: 0 0 .38rem;
	min-height: 7.8rem;
}
.page-content .title{
	display: block;
	height: .6rem;
	line-height: .6rem;
	background: #FFF3E8;
	font-size: .26rem;
	font-weight: bold;
	letter-spacing: .01rem;
	color: var(--pm-c);
	padding-left: .2rem;
	margin-bottom: .2rem;
}
.page-content p{
	font-size: .26rem;
	line-height: .6rem;
	letter-spacing: .01rem;
	color: #666666;
	text-indent: 2em;
}
.page-content .page-content-title{
	display: inline-block;
	min-width: 1.71rem;
	height: .59rem;
	line-height: .59rem;
	padding-left: .25rem;
	box-sizing: border-box;
	font-size: .26rem;
	letter-spacing: .01rem;
	color: var(--pm-c);
	background: url('../images/page_title.png') no-repeat right/contain;
}
.page-content ul li a{
	display: block;
	font-size: .26rem;
	letter-spacing: .01rem;
	color: #666666;
}

/* 搜索页 */
.search-total{
	display: block;
	margin: .3rem 0 .5rem;
	font-size: .28rem;
	letter-spacing: .02rem;
	color: var(--pm-c);
}

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

.page-error img {
	width: 50%;
	margin: 1.58rem auto .5rem;
}

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

.page-error a.go-home {
	width: 1.7rem;
	height: .62rem;
	line-height: .58rem;
	text-align: center;
	border-radius: .1rem;
	border: .01rem solid var(--br-c);
	font-size: .24rem;
	color: #888888;
	display: block;
	margin: .6rem auto 1.2rem;
}

/* 开服表 */
.category-kaifu{
	padding: 0 .1rem;
}
.kaifu-menu{
	margin: .4rem 0;
}
.kaifu-menu button{
	font-size: .26rem;
	letter-spacing: .01rem;
	color: #333333;
	border-radius: .1rem;
	border: solid .01rem #eeeeee;
	background: url('../images/kaifu_icon.png') no-repeat 1.7rem/contain;
	background-size: .25rem;
	padding-right: .3rem;
	text-align: left;
	padding-left: .2rem;
	width: 2.16rem;
}
.kaifu-menu button:hover{
	background: url('../images/kaifu_icon_.png') no-repeat 1.7rem/contain;
  background-size: .25rem;
}
.kaifu-menu .uk-dropdown{
	padding: .2rem;
}
.kaifu-menu ul li{
	padding-left: .2rem;
}
.kaifu-menu ul li a{
	font-size: .26rem;
	color: #333333;
}
.kaifu-menu ul li.uk-active{
	background: var(--pm-c);
}
.kaifu-menu ul li.uk-active a{
	color: #fff;
}
.kaifu-warp .item{
	margin-bottom: .3rem;
}
.kaifu-warp .item .title{
	position: relative;
	display: inline-block;
	max-width: 4rem;
	min-width: auto;
	padding-right: 0.79rem;
}
.kaifu-warp .item .label{
	display: inline-block;
	width: .74rem;
	height: .32rem;
	line-height: .28rem;
	font-size: .24rem;
	letter-spacing: .01rem;
	color: #ffffff;
	padding-left: .08rem;
	box-sizing: border-box;
	position: absolute;
	right: 0;
	top: 0.06rem;
}
.kaifu-warp .item .az{
	background: url('../images/kaifu_az.png') no-repeat center/contain;
}
.kaifu-warp .item .ios{
	background: url('../images/kaifu_ios.png') no-repeat center/contain;
}
.kaifu-warp .item .info{
	border-bottom: dashed .01rem #dcdcdc;
	padding-bottom: .3rem;
	margin-left: .3rem;
}
.kaifu-warp .item .name{
	margin: 0rem 0 .04rem;
}
.kaifu-warp .item .type i{
  color: var(--pm-c);
}
.kaifu-warp .item .more{
	display: block;
	width: 1.2rem;
	height: .61rem;
	line-height: .61rem;
	background-color: var(--pm-c);
	border-radius: .1rem;
	text-align: center;
	font-size: .28rem;
	color: #ffffff;
}