:root {
	--pm-c: #e96362;
	--br-c: #e5e5e5;
}

/*隐藏类*/
.hide {
	display: none !important;
}

/*隐藏遮罩*/
#aq-model {
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 999;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #fff url(/themes/default/404.png) no-repeat center;
}

/*应用信息样式*/
#app_info {
	margin: 20px 0
}

#app_info li {
	display: inline-block;
	width: 33.33%;

}

#app_info li b {
	cursor: pointer;
}

#app_info_cover {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	text-align: center;
	z-index: 9999
}

#app_info_cover .app_info_main {
	background: #fff;
	width: 520px;
	margin: auto;
	margin-top: 100px;
	border-radius: 8px;
	overflow: hidden;
}

#app_info_cover .app_info_title {
	background: #5CA8F6;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 50px;
}

#app_info_cover .app_info_body {
	padding: 20px;
	height: 320px;
	overflow-y: scroll;
	text-align: left;
}

#app_info_cover .app_info_close {
	margin: 20px;
	font-size: 17px;
	color: #fff;
	background: #5CA8F6;
	line-height: 48px;
	border-radius: 20px;
	cursor: pointer;
	display: block;
	font-weight: bold;
	margin-top: 30px;
}

@media (max-width: 760px) {
	#app_info li {
		width: 100%;
		margin-top: 10px;
	}

	#app_info_cover .app_info_main {
		width: 98%;
	}

	#app_info_cover .app_info_close {
		font-size: 16px;
		line-height: 42px;
	}
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
button,
textarea,
p,
th,
td,
span,
a,
b,
i,
strong,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

em,
i {
	font-style: normal;
}

table {
	border-collapse: collapse;
}

input {
	border: none;
	/*在移动端浏览器默认的外观在iOS上加上这个属性才能给按钮和输入框自定义样式*/
	-webkit-appearance: none;
}

a {
	text-decoration: none;
	background: none;
	font-size: inherit;
	color: inherit;
	transition: all .2s ease-out;
}

a:hover {
	color: var(--pm-c);
	text-decoration: none;
}

ul,
li,
ol {
	list-style: none;
}

:focus {
	outline: none;
}

/*点击高亮我们需要清除  设置为transparent 完成透明*/
* {
	-webkit-tap-highlight-color: transparent;
}

/*禁用长按页面时的弹出菜单*/
img,
a {
	-webkit-touch-callout: none;
}

/* 去掉滑动条 */
::-webkit-scrollbar {
	display: none
}

/* 滚动槽 */
::-webkit-scrollbar-track {
	/* -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3); */
	border-radius: 10px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.1);
	/* -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5); */
}

::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255, 0, 0, 0.4);
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
	width: .12rem;
}

.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: linear;
	-moz-transition-timing-function: linear;
	-ms-transition-timing-function: linear;
	-o-transition-timing-function: linear;
	transition-timing-function: linear;
}

body {
	font-size: .24rem;
	line-height: 1.5;
	color: #333;
	background-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: .2rem;
	background: #fff;
}

.title {
	font-size: .28rem;
	color: #333333;
	letter-spacing: .02rem;
	display: block;
}

.info {
	margin-left: .2rem;
	overflow: hidden;
	flex: 1;
}

.icon {
	width: 1.21rem;
	height: 1.21rem;
	border-radius: .15rem;
	overflow: hidden;
}

.desc {
	font-size: .24rem;
	color: #888888;
}

.type {
	font-size: .24rem;
	color: #888888;
}

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

.score {
	font-size: .28rem;
	color: #FF6969;
}

.down {
	display: block;
	text-align: center;
	letter-spacing: .02rem;
}

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

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

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

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

.pagination .page-item .page-link {
	display: block;
	padding: 0rem .4rem;
	border: .01rem solid transparent
}

.pagination li span {}

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

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

/* 公共列表样式 */
.list-container {
	overflow: hidden;
}

.list-container li {
	margin-top: .35rem;
}

.list-container li .dot {
	display: block;
	width: .25rem;
	height: .25rem;
	background: url('../images/dot.png') no-repeat center/contain;
}

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

.list-container li .order {
	width: .45rem;
	height: .45rem;
	line-height: .45rem;
	background-color: #e0e0e0;
	border-radius: .06rem;
	text-align: center;
	color: #ffffff;
	font-size: .24rem;
}

.list-container li .title {
	display: block;
	margin-left: .2rem;
	margin-right: .3rem;
	color: #333333;
	font-size: .28rem;
}

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

/* 评分图标 */
.star {
	height: 0.24rem;
	width: 1.2rem;
	background: url('../images/star_bg.png') repeat-x center/0.24rem;
	display: inline-block;
}

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

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

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

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

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

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

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

.module-title .title {
	display: block;
	line-height: 0.36rem;
	font-size: 0.32rem;
	font-weight: bold;
	color: var(--pm-c);
	padding-left: 0.3rem;
	letter-spacing: .02rem;
}

.module-title .more {
	display: block;
	width: 0.27rem;
	height: 0.27rem;
	background: url('../images/more.png') no-repeat center/contain;
}

.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%;
	height: 1.99rem;
	background: url('../images/header_bg.png') no-repeat center/contain;
	padding: .4rem .2rem .18rem;
	box-sizing: border-box;
}

.header .logo {
	width: auto;
	height: .58rem;
}

.search {
	width: 3.9rem;
	height: .55rem;
	border-radius: .04rem;
	overflow: hidden;
	display: flex;
	margin-left: .2rem;
	background: #fff;
	padding: .05rem;
	box-sizing: border-box;
}

.search .search-input {
	width: calc(100% - .82rem);
	height: 100%;
	background: #fff;
	padding: 0 .2rem;
	font-size: .24rem;
	color: #888888;
}

.search .search-btn {
	width: .82rem;
	height: 100%;
	cursor: pointer;
	margin-left: -.01rem;
	background: #c04a49;
	color: #fff;
	font-size: .24rem;
	border: none;
	border-radius: .04rem;
}

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

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

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

.header .nav .nav-item {
	flex-shrink: 0;
	min-width: 1.58rem;
	height: .62rem;
	line-height: .62rem;
	border-radius: .06rem;
	padding: 0 0.22rem;
	box-sizing: border-box;
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	margin-right: .16rem;
}

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

.header .nav .nav-item a {
	display: block;
	font-size: .28rem;
	color: #ffffff;
}

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

.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: .1rem;
	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 {
	background-color: #f9f9f9;
	position: relative;
	border-top: .01rem solid var(--pm-c);
	padding: .3rem;
}

.index-news-recom .down {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: .77rem;
	height: .66rem;
	background: url('../images/news_recom_icon.png') no-repeat center/contain;
}

.index-news-recom .item {}

.index-news-recom .item .title {
	font-size: .3rem;
	color: #333333;
	letter-spacing: .02rem;
	margin-bottom: .22rem;
	font-weight: 600;
}

.index-news-recom .item .text {
	font-size: .24rem;
	line-height: .35rem;
	letter-spacing: .02rem;
	color: #666666;
}

.index-news-recom .item .type {
	font-size: .24rem;
	color: #999999;
	margin-top: .3rem;
	border-bottom: .01rem dashed var(--br-c);
	padding-bottom: .34rem;
}

.index-news-recom .item .type span {
	display: block;
	padding-left: .46rem;
}

.index-news-recom .item .time {
	background: url('../images/time.png') no-repeat left/contain;
}

.index-news-recom .item .come_from {
	background: url('../images/come_form.png') no-repeat left/contain;
}

/* 手游分类 */
.index-game .game-item .name {
	display: block;
	position: relative;
	font-size: .28rem;
	letter-spacing: .02rem;
	color: #333333;
	font-weight: 600;
	padding: .2rem .3rem;
	background: #fff;
	text-align: center;
	top: .3rem;
	width: 100%;
}

.index-game .game-item .name::before {
	position: absolute;
	border-bottom: dashed 1px var(--br-c);
	width: 35%;
	left: 0;
	z-index: 1;
}

.index-game .game-item .name::after {
	position: absolute;
	border-bottom: dashed 1px var(--br-c);
	width: 35%;
	right: 0;
	z-index: 1;
}

.index-game .game-item .game-list {
	width: 100%;
	background-color: #f9f9f9;
	border-radius: .1rem;
	margin-top: .98rem;
	padding: .3rem;
	box-sizing: border-box;
}

.index-game .game-item .game-list .item {
	width: 25%;
	margin-top: -.8rem;
	text-align: center;
	padding-right: .15rem;
	box-sizing: border-box;
	margin-bottom: .3rem;
}

.index-game .game-item .game-list .item:last-child {
	padding: 0;
}

.index-game .game-item .game-list .item .icon {
	width: 1.21rem;
	height: 1.21rem;
	border-radius: .15rem;
	overflow: hidden;
	margin: 0 auto;
}

.index-game .game-item .game-list .item .title {
	margin: .28rem 0;
}

.index-game .game-item .game-list .item .down {
	width: 1.21rem;
	height: .61rem;
	line-height: .61rem;
	border-radius: .08rem;
	border: solid .01rem var(--pm-c);
	text-align: center;
	font-size: .26rem;
	letter-spacing: .02rem;
	color: var(--pm-c);
	margin: 0 auto;
}

/* 攻略排行 */
.index-gl-rank .list-container li .order {
	width: .45rem;
	height: .45rem;
	line-height: .45rem;
	background-color: #e0e0e0;
	border-radius: .06rem;
}

.index-gl-rank .list-container li:nth-child(-n+3) .order {
	background-color: var(--pm-c);
}

.index-gl-rank .list-container li {
	margin-top: 0rem;
	padding-bottom: .23rem;
	margin-bottom: .23rem;
	border-bottom: .01rem dashed var(--br-c);
}

.index-gl-rank .list-container li:last-child {
	border: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* 高分推荐 */
.index-game-recom .game-recom-list {
	height: 3.4rem;
	background: url('../images/game_bg.png') no-repeat center/contain;
	padding: .3rem .2rem;
	overflow: auto hidden;
	display: flex;
}

.index-game-recom .game-recom-list .item {
	max-width: 5.01rem;
	background-color: #ffffff;
	box-shadow: 0px .03rem .1rem 0px rgba(239, 222, 222, 0.42);
	border-radius: .06rem;
	margin-right: .25rem;
	padding: .34rem .2rem .3rem .32rem;
	position: relative;
	box-sizing: border-box;
}

.index-game-recom .game-recom-list .item .icon {
	width: 1.15rem;
	height: 1.15rem;
	border-radius: 50%;
	overflow: hidden;
}

.index-game-recom .game-recom-list .item .title {
	font-size: .28rem;
}

.index-game-recom .game-recom-list .item .text {
	font-size: .24rem;
	color: #888888;
	margin: .18rem 0 .24rem;
}

.index-game-recom .game-recom-list .item .c_name {
	display: block;
	width: 1.3rem;
	height: .4rem;
	line-height: .34rem;
	font-size: .24rem;
	letter-spacing: .01rem;
	color: var(--pm-c);
	padding: 0 .12rem;
	border-radius: .06rem;
	border: solid .01rem var(--pm-c);
	box-sizing: border-box;
}

.index-game-recom .game-recom-list .item .type {
	font-size: .24rem;
	color: #888888;
	margin-top: .2rem;
	align-items: center;
}

.index-game-recom .game-recom-list .item .score span {
	font-size: .28rem;
	color: var(--pm-c);
	font-weight: 600;
}

.index-game-recom .game-recom-list .item .language {
	display: block;
	padding-left: .3rem;
	background: url('../images/language_icon.png') no-repeat left/contain;
	background-size: .24rem;
}

.index-game-recom .game-recom-list .item .plate {
	position: absolute;
	left: -.06rem;
	top: -.04rem;
	width: .8rem;
	height: .8rem;
	font-size: .18rem;
	letter-spacing: .01rem;
	color: #ffffff;
	background: url(../images/plate_icon.png) no-repeat left / contain;
}

.index-game-recom .game-recom-list .item .plate span {
	transform: rotate(-45deg);
	display: block;
	margin-top: .04rem;
}

/* 推进专辑 */
.index-album {}

.index-album .album-item {
	background-color: #FDF7F3;
	padding: .3rem .2rem .05rem;
}

.index-album .album-item .item {
	height: 3.07rem;
	background-color: #ffffff;
	box-shadow: 0px .03rem .01rem 0px rgba(239, 222, 222, 0.42);
	border-radius: .06rem;
	padding: .45rem .3rem .35rem;
	position: relative;
	margin-bottom: .33rem;
}

.index-album .album-item .item .icon {
	width: 1.51rem;
	height: 1.51rem;
	border-radius: 50%;
	overflow: hidden;
}

.index-album .album-item .item .title {
	font-size: .28rem;
	font-weight: 600;
}

.index-album .album-item .item ul li {
	float: left;
	width: 48%;
	margin-top: .3rem;
	padding-left: .25rem;
	line-height: .3rem;
}

.index-album .album-item .item ul li::before {
	width: .11rem;
	height: .11rem;
	background: var(--pm-c);
	left: 0;
	border-radius: .11rem;
}

.index-album .album-item .item ul li a {
	display: block;
	font-size: .24rem;
	color: #888888;
	padding-right: .15rem;
}

.index-album .album-item .item .more-album {
	margin-top: .4rem;
}

.index-album .album-item .item .more-album a {
	display: block;
	width: 50%;
	margin-right: .2rem;
	font-size: .24rem;
	color: #888888;
	padding-left: .35rem;
	background: url('../images/album_icon1.png') no-repeat left/contain;
	background-size: .25rem;
}

.index-album .album-item .item .type {
	position: absolute;
	width: .96rem;
	height: .96rem;
	background: url('../images/album_icon.png') center/contain;
	left: -.01rem;
	top: -.01rem;
}

/* 新游资讯 */
.index-xy-zx .item .thumb {
	width: 100%;
	height: 2.15rem;
	position: relative;
}

.index-xy-zx .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;
}

.index-xy-zx .item .title {
	margin-top: .2rem;
}

.index-xy-zx .item .text {
	font-size: .24rem;
	color: #888888;
	line-height: .40rem;
	margin-top: .2rem;
}

.index-xy-zx .item .type {
	font-size: .24rem;
	color: #888888;
	border-top: dashed .01rem var(--br-c);
	padding-top: .28rem;
	margin-top: .25rem;
}

/* 新游期待榜 */
.index-game-rank {
	margin-top: .5rem;
	min-height: 5.38rem;
	padding: 1.5rem .3rem 0 .22rem;
	box-sizing: border-box;
	background: url('../images/game_rank.png') no-repeat top/contain;
}
.index-app-rank {
	background: url('../images/app_rank.png') no-repeat top/contain;
}
.index-game-rank .item {
	margin-bottom: .4rem;
}

.index-game-rank .item .order {
	margin-right: .2rem;
	width: .52rem;
	height: .72rem;
	font-size: .24rem;
	font-weight: 600;
	line-height: .92rem;
	color: #a2a2a2;
	text-align: center;
	background: url('../images/game_rank_n.png') no-repeat center/contain;
}

.index-game-rank .item:nth-child(-n+3) .order {
	color: transparent;
}

.index-game-rank .item:nth-child(1) .order {
	background: url('../images/game_rank_1.png') no-repeat center/contain;
}

.index-game-rank .item:nth-child(2) .order {
	background: url('../images/game_rank_2.png') no-repeat center/contain;
}

.index-game-rank .item:nth-child(3) .order {
	background: url('../images/game_rank_3.png') no-repeat center/contain;
}

.index-game-rank .item .hits {
	font-size: .24rem;
	color: #888888;
	display: block;
	margin: 0.08rem 0;
}

.index-game-rank .item .hits i {
	font-weight: 600;
	color: var(--pm-c);
}

.index-game-rank .item .down {
	width: 1.21rem;
	height: .6rem;
	line-height: .58rem;
	background-color: var(--pm-c);
	border-radius: .06rem;
	color: #fff;
	font-size: .26rem;
	margin-left: .2rem;
}

.index-game-rank .item .text {
	font-size: .24rem;
	color: #888888;
}

.index-game-rank .item .score {
	font-size: .24rem;
	color: #888888;
}

.index-game-rank .item .score span {
	color: var(--pm-c);
	font-weight: 600;
}

/* 公共菜单栏 */
.menu-nav {}

.menu-nav li {
	height: .6rem;
	line-height: .54rem;
	text-align: center;
}

.menu-nav li a {
	display: block;
	font-size: .26rem;
	letter-spacing: .02rem;
	color: #666666;
	border: solid .01rem #eeeeee;
	border-radius: .1rem;
	padding: 0 .1rem;
}

.menu-nav li.active a {
	color: var(--pm-c);
	border: solid .01rem var(--pm-c);
}

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

.single-content h3 {
	display: block;
	width: 100%;
	height: .6rem;
	line-height: .56rem;
	font-size: 0.26rem;
	color: #ffffff;
	background: url('../images/single_content_h3.png') no-repeat left/contain;
	padding-left: .26rem;
	margin: .2rem 0;
}

.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: .32rem;
	line-height: .4rem;
	color: #333333;
	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: .02rem solid #eeeeee;
	padding-bottom: .36rem;
	margin-bottom: .36rem;
	margin-top: .5rem;
}

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

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

.news-list .item {
	margin-top: .35rem;
}

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

.news-list .item .title {
	font-weight: 600;
}

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

.news-list .item .more {
	display: inline-block;
	padding: 0 .15rem;
	height: .41rem;
	line-height: .34rem;
	border-radius: .04rem;
	border: solid .01rem var(--br-c);
	font-size: .24rem;
	color: #999999;
}

.news-list .item .right {
	text-align: center;
	padding-left: .35rem;
	margin-left: .35rem;
	width: 2.26rem;
}

.news-list .item .right::before {
	width: .02rem;
	height: 1.15rem;
	background-color: #eeeeee;
	position: absolute;
	left: 0;
}

.news-list .item .day {
	font-size: .3rem;
	font-weight: 600;
	letter-spacing: .02rem;
	color: #333333;
	display: block;
}

.news-list .item .date {
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #666666;
	display: block;
	margin: .06rem 0 .2rem;
}

.news-list .item .tag {
	display: block;
	padding: 0 .15rem;
	height: .36rem;
	line-height: .32rem;
	background-color: var(--pm-c);
	border-radius: .18rem;
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #ffffff;
	text-align: center;
}

/* 资讯详情 */

/* 游戏列表 */
.game-warp .item {
	margin-top: .3rem;
}

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

.game-warp .item .down {
	display: inline-block;
	width: 1.2rem;
	height: .62rem;
	line-height: .62rem;
	border: solid 1px var(--pm-c);
	background-color: #ffffff;
	border-radius: .1rem;
	font-size: .26rem;
	letter-spacing: .01rem;
	color: var(--pm-c);
	text-align: center;
}

.game-warp .item .info {
	margin-left: .2rem;
	border-bottom: .01rem dashed #e5e5e5;
	padding-bottom: .3rem;
}

.game-warp .item .title {
	letter-spacing: .02rem;
	margin-bottom: .1rem;
}

.game-warp .item .type {
	margin-bottom: .12rem;
}

.game-warp .item .type span {
	font-size: .24rem;
	color: #888888;
	letter-spacing: .01rem;
}

.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;
	margin-bottom: .26rem;
}

.category-game .hot-game .item {
	max-width: 5.01rem;
	min-width: 5.01rem;
	position: relative;
	background-color: #fef7f7;
	border-radius: .06rem;
	padding: .34rem .22rem .32rem .32rem;
	box-sizing: border-box;
	margin-right: .22rem;
}

.category-game .hot-game .item::before {
	width: .71rem;
	height: .73rem;
	left: -.02rem;
	top: 0.41rem;
	background: url('../images/recom_icon.png') no-repeat center/contain;
}

.category-game .hot-game .item .icon {
	width: 1.15rem;
	height: 1.15rem;
	border-radius: 50%;
	overflow: hidden;
}

.category-game .hot-game .item .title {
	font-weight: 600;
}

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

.category-game .hot-game .item .score {
	font-size: .24rem;
	color: #888888;
}

.category-game .hot-game .item .type i {
	font-size: .28rem;
	font-weight: 600;
	color: var(--pm-c);
}

.category-game .hot-game .item .type .language {
	display: block;
	padding-left: .35rem;
	background: url('../images/language_icon.png') no-repeat left/contain;
	background-size: .24rem;
}

/* 游戏详情 */
.single-game .single-header .icon {
	margin: .35rem auto .25rem;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: .2rem;
	overflow: hidden;
}

.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-game .single-header .date {
	display: inline-block;
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #888888;
	background: url('../images/date.png') no-repeat left/contain;
	background-size: .3rem;
	padding-left: .4rem;
	margin: 0 auto;
	text-align: center;
}

.single-slide .item {
	width: 2.5rem;
	height: 4.2rem;
	object-fit: contain;
}

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

.single .single-header .down-href a {
	display: block;
	height: .88rem;
	line-height: .88rem;
	width: 100%;
	text-align: center;
	background: var(--pm-c);
	border-radius: .1rem;
	margin-bottom: .2rem;
}

.single .single-header .down-href a:hover{
    color: #fff;
}

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

.single-game .single-header ul {
	background-color: #f8f8f8;
	padding: .3rem .2rem;
	margin-top: .38rem;
}

.single-game .single-header ul li {
	font-size: .24rem;
	letter-spacing: .01rem;
	color: #888888;
	text-align: center;
}

.single-game .single-header ul li span {
	display: block;
	margin-top: .2rem;
}

/* 专辑列表 */
.album-warp .item {
	box-shadow: 0px .03rem .1rem 0px rgba(239, 222, 222, 0.42);
	border-radius: .06rem;
	border: solid .01rem #eeeeee;
	padding: .2rem .3rem .3rem;
	margin-bottom: .2rem;
}

.album-warp .item .title {
	font-weight: 600;
}

.album-warp .item .more {
	width: 1.2rem;
	height: .6rem;
	line-height: .56rem;
	background-color: var(--pm-c);
	border-radius: .1rem;
	text-align: center;
	font-size: .26rem;
	color: #ffffff;
	letter-spacing: .02rem;
}

.album-warp .item .icon {
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	overflow: hidden;
}

.album-warp .item .more-game ul li a {
	padding-left: .24rem;
	font-size: .24rem;
	color: #888888;
	letter-spacing: .01rem;
	display: block;
}

.album-warp .item .more-game ul li a img {
	width: .41rem;
	height: .41rem;
	border-radius: .08rem;
	overflow: hidden;
	margin-right: .2rem;
	display: inline-block;
}

.album-warp .item .more-game ul li a::before {
	width: .11rem;
	height: .11rem;
	background-color: #dedede;
	border-radius: .11rem;
	left: 0;
}

.album-warp .item .album-info {
	border-top: dashed 1px var(--br-c);
	padding-top: .28rem;
	margin-top: .3rem;
}

.album-warp .item .album-info span {
	font-size: .22rem;
	color: #888888;
	letter-spacing: .01rem;
	padding-left: .4rem;
	background: url('../images/language_icon2.png') no-repeat left/contain;
	background-size: .28rem;
}

/* 专辑详情 */
.single-album .single-header .icon {
	margin-top: .15rem;
}

.single-album .single-header .single-info {
	text-align: left;
}

.single-album .single-header .single-info .title {
	text-align: left;
	margin-bottom: .15rem;
}

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

.single-album .single-header .single-info .type {
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #888888;
}

.single-album .single-header .single-info .type span {
	margin-right: .2rem;
}

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

.single-album .single-header ul .name {
	display: inline-block;
	width: .6rem;
	font-size: .24rem;
	letter-spacing: .02rem;
	line-height: .48rem;
	color: #888888;
	margin-top: -.2rem;
}

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

.single-album .single-header ul li a {
	display: block;
	width: 48%;
	height: .56rem;
	line-height: .52rem;
	border-radius: .06rem;
	border: solid .01rem #e5e5e5;
	margin-bottom: .12rem;
	font-size: .24rem;
	color: #888888;
}

.single-album .single-header ul li a:nth-child(odd) {
	margin-right: 2%;
}

.single-album .album-recom {
	min-height: 3.9rem;
	background: url('../images/album_recom.png') no-repeat top/contain;
	padding: 1.23rem .2rem .3rem;
	margin-top: .3rem;
}

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

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

.single-album .album-recom .score span {
	color: var(--pm-c);
	font-weight: 600;
}

.single-album .album-recom .down {
	width: 100%;
	height: .8rem;
	line-height: .76rem;
	border-radius: .1rem;
	text-align: center;
	color: #fff;
	font-size: .3rem;
	background-color: var(--pm-c);
	margin-top: .3rem;
}

.single-album .game-warp .item{
	position: relative;
}
.single-album .game-warp .item:nth-child(-n+3)::before {
	display: block;
	content: 'TOP';
	font-size: .18rem;
	letter-spacing: .01rem;
	color: #ffffff;
	position: absolute;
	left: -.08rem;
	top: .15rem;
	z-index: 11;
	width: .73rem;
	height: .44rem;
	line-height: .35rem;
	padding-left: .12rem;
}

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

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

.single-album .game-warp .item:nth-child(3)::before {
	content: 'TOP3';
	background: url('../images/album_rank_03.png') no-repeat center/contain;
}

/* 礼包列表 */
.gift-warp .item {
	margin: .4rem .1rem;
}

.gift-warp .item .icon {
	width: 1rem;
	height: 1rem;
	border-radius: 50%;
	overflow: hidden;
}

.gift-warp .item .icon_ {
	width: 1rem;
	height: 1rem;
	background: url('../images/gift_icon.png') no-repeat center/contain;
}

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

.gift-warp .item .text {
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #888888;
	margin-top: .15rem;
	display: block;
	text-indent: 0 !important;
}

.gift-warp .item .down {
	width: 1.2rem;
	height: .6rem;
	line-height: .56rem;
	border-radius: .06rem;
	border: solid .01rem var(--pm-c);
	font-size: .26rem;
	letter-spacing: .02rem;
	color: var(--pm-c);
	text-align: center;
}

/* 礼包详情 */
.single-gift .single-header ul {
	padding: .3rem .8rem;
}

/* 排行榜 */
.category-rank .rank-banner {
	height: 3.35rem;
	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;
}
.category-rank .rank-warp .item {
	position: relative;
	background-color: #fdfdfd;
	border: solid .01rem #eeeeee;
	padding: .3rem;
}

.category-rank .rank-warp .item .itembox {
	border-bottom: solid .01rem var(--br-c);
	padding-bottom: 0.3rem;
}

.category-rank .rank-warp .item:nth-child(-n+3) {
	background-color: #fff9f9;
	border: solid .01rem #f8e8e8;
}

.category-rank .rank-warp .item .info {
	padding-bottom: 0;
	border: none;
}

.category-rank .rank-warp .item .order {
	position: absolute;
	left: 0;
	top: 0;
	font-size: .28rem;
	font-weight: 600;
	color: #ffffff;
	width: .66rem;
	height: .84rem;
	line-height: .5rem;
	padding-left: .1rem;
	box-sizing: border-box;
	background: url('../images/rank_n.png') no-repeat center/contain;
}

.category-rank .rank-warp .item:nth-child(-n+3) .order {
	color: transparent;
}

.category-rank .rank-warp .item:nth-child(1) .order {
	background: url('../images/rank_1.png') no-repeat center/contain;
}
.category-rank .rank-warp .item:nth-child(2) .order {
	background: url('../images/rank_2.png') no-repeat center/contain;
}

.category-rank .rank-warp .item:nth-child(3) .order {
	background: url('../images/rank_3.png') no-repeat center/contain;
}

.category-rank .rank-warp .item .text {
	padding-top: .2rem;
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #888888;
}

/* 排行榜大全 */
.category-rank-list .rank-banner {
	background: url('../images/rank_list_.png') no-repeat center/contain;
}

/* 排行榜详情 */

/* 详情单个板块 */
/* 游戏录入 */
.single-game-lr .item {
	margin-bottom: .3rem;
}

.single-game-lr .item .icon {
	width: 1.11rem;
	height: 1.11rem;
	border-radius: .1rem;
	overflow: hidden;
}

.single-game-lr .item .info {
	padding-bottom: .3rem;
	border-bottom: dashed .01rem var(--br-c);
}

.single-game-lr .item .type {
	color: #888888;
	font-size: .24rem;
	margin: .02rem 0 .1rem;
}

.single-game-lr .item .date {
	color: #888888;
	font-size: .24rem;
	padding-left: .32rem;
	background: url('../images/date.png') no-repeat left/contain;
	background-size: .24rem;
}

/* 热门攻略 */
.single-hot-gl .item {
	margin-top: .3rem;
}

.single-hot-gl .item .thumb {
	width: 2.01rem;
	height: 1.31rem;
	border-radius: .04rem;
	overflow: hidden;
}

.single-hot-gl .item .info {
	margin-left: .2rem;
}

.single-hot-gl .item .text {
	font-size: .24rem;
	color: #888888;
	margin: .1rem 0;
	letter-spacing: .02rem;
}

.single-hot-gl .item .time {
	display: block;
	font-size: .24rem;
	color: #888888;
	padding-left: .36rem;
	letter-spacing: .02rem;
	background: url('../images/time_.png') no-repeat left/contain;
	background-size: .27rem;
}

/* 热门推荐 */
.hot-news-list .list .title {
	font-size: .3rem;
	font-weight: 600;
	line-height: .4rem;
	letter-spacing: .01rem;
	color: #333333;
	margin: .35rem 0;
}

.hot-news-list .list .text {
	height: 1.32rem;
	padding: .28rem .24rem;
	background-color: #FEF7F7;
	border: dashed .01rem var(--pm-c);
	font-size: .24rem;
	color: var(--pm-c);
	line-height: .36rem;
	box-sizing: border-box;
}

/* 精彩视频 */
.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;
}

/* 单页 */
.page-content{
	margin: .38rem 0;
}

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

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

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

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

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

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

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

/* 开服表 */
.category-kaifu{
	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;
}