:root {
	--pm-c: #FEE108;
}

/*隐藏类*/
.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: .4rem 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: 10.4rem;
	margin: auto;
	margin-top: 2rem;
	border-radius: .16rem;
	overflow: hidden;
}

#app_info_cover .app_info_title {
	background: #5CA8F6;
	font-size: .4rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1rem;
}

#app_info_cover .app_info_body {
	padding: .4rem;
	height: 6.4rem;
	overflow-y: scroll;
	text-align: left;
}

#app_info_cover .app_info_close {
	margin: .4rem;
	font-size: .34rem;
	color: #fff;
	background: #5CA8F6;
	line-height: .96rem;
	border-radius: .4rem;
	cursor: pointer;
	display: block;
	font-weight: bold;
	margin-top: .6rem;
}

@media (max-width: 15.2rem) {
	#app_info li {
		width: 100%;
		margin-top: .2rem;
	}

	#app_info_cover .app_info_main {
		width: 98%;
	}

	#app_info_cover .app_info_close {
		font-size: .32rem;
		line-height: .84rem;
	}
}

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: inset.12remrgba(0, 0, 0, 0.3); */
	border-radius: .2rem;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
	border-radius: .2rem;
	background: rgba(0, 0, 0, 0.1);
	/* -webkit-box-shadow: inset.12remrgba(0, 0, 0, 0.5); */
}

::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255, 0, 0, 0.4);
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
	width: 6px;
}

.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: #F8F8F8;
	width: 7.5rem;
	min-width: 6.4rem;
	max-width: 15rem;
	margin: 0 auto;
	letter-spacing: .5px;
}

/*图片高清*/
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;
}

/*边框样式*/
.b-a {
	border: .02rem solid #E5E5E5 !important;
}

.b-b {
	border-bottom: .02rem solid #E5E5E5 !important;
}

.b-t {
	border-top: .02rem solid #E5E5E5 !important;
}

.b-l {
	border-left: .02rem solid #E5E5E5 !important;
}

.b-r {
	border-right: .02rem solid #E5E5E5 !important;
}

/* 虚线上边框 */
.b-t-dashed {
	border-top: .02rem dashed #E5E5E5 !important;
}

/* 虚线下边框 */
.b-b-dashed {
	border-bottom: .02rem dashed #E5E5E5 !important;
}

/* 内边距  */
.p-a-0 {
	padding: 0rem;
}

.p-a-5 {
	padding: .1rem;
}

.p-a-10 {
	padding: .2rem;
}

.p-a-15 {
	padding: .3rem;
}

.p-a-20 {
	padding: .4rem;
}

.p-a-25 {
	padding: .5rem;
}

.p-a-30 {
	padding: .6rem;
}

/* 内上边距 */
.p-t-0 {
	padding-top: 0rem !important;
}

.p-t-5 {
	padding-top: .1rem;
}

.p-t-10 {
	padding-top: .2rem;
}

.p-t-15 {
	padding-top: .3rem;
}

.p-t-20 {
	padding-top: .4rem;
}

.p-t-30 {
	padding-top: .6rem;
}

/* 内下边距 */
.p-b-0 {
	padding-bottom: 0rem !important;
}

.p-b-5 {
	padding-bottom: .1rem;
}

.p-b-10 {
	padding-bottom: .2rem;
}

.p-b-15 {
	padding-bottom: .3rem;
}

.p-b-20 {
	padding-bottom: .4rem;
}

.p-b-30 {
	padding-bottom: .6rem !important;
}

.p-b-40 {
	padding-bottom: .8rem !important;
}

/* 内右边距 */
.p-r-0 {
	padding-right: 0rem;
}

.p-r-5 {
	padding-right: .1rem;
}

.p-r-10 {
	padding-right: .2rem;
}

.p-r-15 {
	padding-right: .3rem;
}

.p-r-20 {
	padding-right: .4rem;
}

.p-r-30 {
	padding-right: .6rem;
}

/* 内左边距 */
.p-l-0 {
	padding-left: 0rem;
}

.p-l-5 {
	padding-left: .1rem;
}

.p-l-10 {
	padding-left: .2rem;
}

.p-l-15 {
	padding-left: .3rem;
}

.p-l-20 {
	padding-left: .4rem;
}

.p-l-30 {
	padding-left: .6rem;
}

/*圆角样式*/
.b-r-4 {
	border-radius: .08rem !important;
}

.b-r-6 {
	border-radius: .12rem !important;
}

.b-r-8 {
	border-radius: .16rem !important;
}

.b-r-10 {
	border-radius: .2rem !important;
}

.b-r-12 {
	border-radius: .24rem !important;
}

.b-r-24 {
	border-radius: .48rem !important;
}

/* 上外边距 */
.m-t-0 {
	margin-top: 0rem !important;
}

.m-t-5 {
	margin-top: .1rem !important;
}

.m-t-10 {
	margin-top: .2rem !important;
}

.m-t-15 {
	margin-top: .3rem !important;
}

.m-t-20 {
	margin-top: .4rem !important;
}

.m-t-25 {
	margin-top: .5rem !important;
}

.m-t-30 {
	margin-top: .6rem !important;
}

.m-t-35 {
	margin-top: .7rem !important;
}

.m-t-40 {
	margin-top: .8rem !important;
}

/* 下外边距 */
.m-b-0 {
	margin-bottom: 0rem !important;
}

.m-b-5 {
	margin-bottom: .1rem !important;
}

.m-b-10 {
	margin-bottom: .2rem !important;
}

.m-b-15 {
	margin-bottom: .3rem !important;
}

.m-b-20 {
	margin-bottom: .4rem !important;
}

.m-b-25 {
	margin-bottom: .5rem !important;
}

.m-b-30 {
	margin-bottom: .6rem !important;
}

.m-b-35 {
	margin-bottom: .7rem !important;
}

.m-b-40 {
	margin-bottom: .8rem !important;
}

/* 左外边距 */
.m-l-0 {
	margin-left: 0rem !important;
}

.m-l-5 {
	margin-left: .1rem !important;
}

.m-l-10 {
	margin-left: .2rem !important;
}

.m-l-15 {
	margin-left: .3rem !important;
}

.m-l-20 {
	margin-left: .4rem !important;
}

.m-l-25 {
	margin-left: .5rem !important;
}

.m-l-30 {
	margin-left: .6rem !important;
}

/* 右外边距 */
.m-r-0 {
	margin-right: 0rem !important;
}

.m-r-5 {
	margin-right: .1rem !important;
}

.m-r-10 {
	margin-right: .2rem !important;
}

.m-r-15 {
	margin-right: .3rem !important;
}

.m-r-20 {
	margin-right: .4rem !important;
}

.m-r-30 {
	margin-right: .6rem !important;
}

.m-r-40 {
	margin-right: .8rem !important;
}

/* 溢出2行省略号 */
.line-2 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}

/* 溢出3行省略号 */
.line-3 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}

/* 溢出4行省略号 */
.line-4 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
}

/*伪类居中*/
/* 增加伪类 前置 */
.before-middle {
	position: relative;
}

.before-middle::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

/* 增加伪类 后置 */
.after-middle {
	position: relative;
}

.after-middle::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.after-center {
	position: relative;
}

.after-center::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
}

/*默认图标尺寸*/
.item .icon {
	margin: 0 auto;
	overflow: hidden;
}

.item .icon img {
	width: 100% !important;
	height: 100% !important;
}

/* 默认缩略图尺寸 */
.item .thumb img {
	width: 100%;
	height: 100%;
}

.item .thumb a,
.item .icon a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

/* .item:hover .title, */
.list:hover .title,
ul li:hover .title {
	color: var(--pm-c);
}

.item .title:hover {
	color: var(--pm-c);
}

/* 默认的一些文字大小和颜色 */
.info {
	flex: 1;
	overflow: hidden;
}

.info .title {
	font-size: .28rem;
	color: #333333;
	display: block;
}

.info .text,
.info .time {
	font-size: .24rem;
	color: #999;
}

.title {
	display: block;
	font-size: .28rem;
	color: #333333;
}

.title_ {
	color: #666;
	display: block;
	font-size: .28rem;
}

.text,
.time,
.type,
.desc,
.size,
.num,
.tag,
.label {
	font-size: .24rem;
	color: #999;
}

/* 评分 */
.score {
	font-weight: bold;
	font-size: .32rem;
	color: #333333;
	background: url(../images/score.png) no-repeat left/contain;
	background-size: .34rem;
	padding-left: .54rem;
	/* font-size: .24rem;
	color: #FFFFFF; */
}

.score span {
	font-weight: bold;
	font-size: .32rem;
	color: #FFFFFF;
}

/* 平台 安卓 苹果 图标显示 */
.platform {
	display: inline-block;
	width: .28rem;
	height: .28rem;
	box-sizing: border-box;
}

.platform:first-of-type {
	margin-right: .08rem;
}

.platform.az {
	background: url(../images/az.png) no-repeat center/contain;
	background-size: 100%;
}

.platform.ios {
	background: url(../images/ios.png) no-repeat center/contain;
	background-size: 100%;
}

.platform.az.active {
	background: url(../images/az_active.png) no-repeat center/contain;
	background-size: 100%;
}

.platform.ios.active {
	background: url(../images/ios_active.png) no-repeat center/contain;
	background-size: 100%;
}

/*分页*/
.pagination {
	padding: 1.3rem 0 .8rem;
	text-align: center;
	color: #999;
}

.pagination .page-item {
	display: inline-block;
	margin: .05rem;
	font-size: .26rem;
	border: .02rem solid #E6E6E6;
	color: #999;
	background: #fff;
	border-radius: .04rem;
}

.pagination .active span {
	background: var(--pm-c);
	color: #fff;
}

.pagination .page-item .page-link {
	display: block;
	padding: .06rem .18rem;
	border: .02rem solid transparent;
}

.pagination li a {
	display: inline-block;
	color: #999;
}

.pagination li:last-child {
	display: inline-block;
}

/* 公共列表样式 */
.list-container {
	overflow: hidden;
}

.list-container li {
	margin-top: .32rem;
}

.list-container li .title {
	font-size: .28rem;
	color: #333333;
}

.list-container li .time {
	font-size: .24rem;
	color: #999;
	margin-left: .1rem;
}

/* 圆点 */
.list-container li .dot {
	display: block;
	width: .1rem;
	height: .1rem;
	background: #E5E5E5;
	margin-right: .2rem;
}

.list-container li .dot_ {
	display: block;
	width: .3rem;
	height: .3rem;
	background: url(../images/dot_.png) no-repeat center/contain;
	background-size: 100%;
	margin-right: .2rem;
}

/* 类别 */
.list-container li .tag {
	display: inline-block;
	width: .8rem;
	height: .44rem;
	border-radius: .06rem;
	border: .02rem solid #ECECEC;
	line-height: .44rem;
	font-size: .24rem;
	color: #999999;
	margin-left: .2rem;
	text-align: center;
}

/* 序号 */
.list-container li .order {
	width: .42rem;
	height: .48rem;
	line-height: .48rem;
	text-align: center;
	font-weight: bold;
	font-size: .28rem;
	color: #FFFFFF;
	margin-right: .2rem;
	background: url(../images/index_order_bg0.png) no-repeat center/contain;
	background-size: 100%;
}

/* 数字 */
.list-container li .num {
	display: inline-block;
	width: .36rem;
	font-weight: bold;
	font-size: .28rem;
	color: #999999;
	text-align: center;
	margin-right: .2rem;
}

/* 评分 */
.star {
	height: .24rem;
	width: 1.2rem;
	display: inline-block;
	background: url(../images/star.png) repeat-x left / contain;
	background-size: .24rem;
	/* vertical-align: sub; */
}

.star:before {
	content: "";
	display: block;
	background: url(../images/star_active.png) repeat-x left / contain;
	background-size: .24rem;
	height: .24rem;
}

.star-1:before {
	width: .24rem;
}

.star-2:before {
	width: .48rem;
}

.star-3:before {
	width: .72rem;
}

.star-4:before {
	width: .96rem;
}

.star-5:before {
	width: 1.2rem;
}

/* 公共标题 */
.module-title {
	/* padding-bottom: .4rem;
	border-bottom: .02rem solid #F2F2F2; */
}

.module-title .title {
	font-weight: bold !important;
	font-size: .32rem !important;
	color: #333333 !important;
	padding-left: .48rem;
	background: url(../images/module_title_icon.png) no-repeat left/contain;
	background-size: .28rem .16rem;
}

.module-title .more {
	display: inline-block;
	width: 1.2rem;
	height: .4rem;
	border-radius: .08rem;
	border: .02rem solid #EFEFEF;
	line-height: .36rem;
	text-align: center;
	padding: 0 .1rem;
	font-size: .24rem;
	color: #999999;
	margin-left: .2rem;
	box-sizing: border-box;
}

/* 列表页公共样式 */
/* 菜单栏 */
.menu_nav {
	margin-left: -0.2rem;
	display: flex;
	flex-wrap: wrap;
}

.menu_nav li {
	width: 1.6rem;
	height: .6rem;
	background: #F9F9F9;
	border-radius: .08rem;
	line-height: .6rem;
	text-align: center;
	margin-left: .16rem;
	box-sizing: border-box;
	margin-top: .28rem;
	padding: 0 .16rem;
}

.menu_nav li:nth-of-type(-n + 4) {
	margin-top: 0;
}

.menu_nav li:hover,
.menu_nav li.active {
	background: var(--pm-c);
}

.menu_nav li a {
	display: inline-block;
	width: 100%;
	font-size: .24rem;
	color: #666666;
}

.menu_nav li:hover a,
.menu_nav li.active a {
	color: #333333;
}

.menu_nav_rank {
	margin-left: 0;
}

.menu_nav_rank li {
	width: 48%;
	margin: 0;
	margin-top: .2rem;
}

.menu_nav_rank li a {
	text-align: left;
}

.menu_nav_rank li:nth-of-type(odd) {
	margin-right: 2%;
}

.menu_nav_rank li:nth-of-type(3),
.menu_nav_rank li:nth-of-type(4) {
	margin-top: .2rem;
}



/* 头尾 */
.header {
	width: 100%;
	background: url('../images/header_bg.png') no-repeat center/contain;
	background-size: 100% 100%;
}

.header .header_top {
	padding: .18rem .3rem 0;
	box-sizing: border-box;
}

.header .logo {
	width: auto;
	height: .7rem;
	/* margin-left: .3rem; */
}

.search {
	width: 3.1rem;
	height: .6rem;
	background: #FFFFFF;
	border-radius: .6rem;
	overflow: hidden;
	display: flex;
	box-sizing: border-box;
	position: relative;
	padding-left: .76rem;
}

.search .search_input {
	width: 100%;
	height: 100%;
	font-size: .24rem;
	color: #888E9C;
	box-sizing: border-box;
	padding-right: .1rem;
	/* border-radius: .6rem; */
	/* padding-left: .3rem; */
	/* padding-right: .56rem; */
}

.search .search_btn {
	display: inline-block;
	width: .24rem;
	height: .24rem;
	cursor: pointer;
	border: 0;
	background: url('../images/search.png') no-repeat center/contain;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: .3rem;
}

input::-webkit-input-placeholder {
	font-size: .24rem;
	color: #888E9C;
}

input::-moz-placeholder {
	font-size: .24rem;
	color: #888E9C;
}

.header .nav {
	width: 100%;
	background: rgba(255, 255, 255, 0.8);
	overflow: auto hidden;
	height: .9rem;
	margin-top: .48rem;
}

.header .nav li {
	flex-shrink: 0;
	min-width: 1.72rem;
	height: .9rem;
	line-height: .9rem;
	text-align: center;
	box-sizing: border-box;
	margin-right: .2rem;
}

.header .nav li.active {
	background: #313131;
}

.header .nav li a {
	width: 100%;
	font-size: .28rem;
	color: #333333;
	display: inline-block;
}

.header .nav li.active a {
	font-weight: bold;
	font-size: .28rem;
	color: #FFFFFF;
}

.footer {
	background: #333333;
	padding: .44rem .66rem;
	font-size: .24rem;
	color: #999;
	box-sizing: border-box;
	text-align: center;
}

.footer span,
.footer a {
	font-size: .24rem;
	color: #999;
}

.footer p {
	/* margin-top: .2rem; */
	line-height: .6rem;
	width: 80%;
	margin: 0 auto;
}

.company {
	font-weight: 400;
	font-size: .24rem;
	color: #CCCCCC;
}

.footer span:last-child,
.footer a:last-child {
	margin-right: 0;
}

.footer .name {
	color: #ccc;
}

.footer .aBox span,
.footer .aBox a {
	margin-right: .1rem;
	margin-bottom: .2rem;
	display: inline-block;
}

.footer .aBox a::after {
	content: '|';
	display: inline-block;
	color: #999;
	margin-left: .1rem;
}

.footer .aBox a:last-child::after {
	content: "";
}

.footer .footer_p {
	line-height: .68rem;
}

/* 友情链接 */
.index_link {
	/* margin-bottom: .6rem !important; */
}

.index_link ul {
	margin-left: -0.1rem;
	margin-top: .2rem;
}

.index_link ul li {
	display: inline-block;
	margin-top: .2rem;
	margin-left: .1rem;
}

.index_link ul li a {
	font-size: .24rem;
	color: #888888;
	letter-spacing: .02rem;
}



.index_link ul li::after {
	content: '|';
	display: inline-block;
	color: #888888;
	margin-left: .12rem;
}

.index_link ul li:last-child::after {
	display: none;
}

.index_link ul li:last-child::after {
	display: none;
}


/* 公共菜单栏 */
.menu-nav {
	flex-wrap: wrap;
	margin-left: -0.18rem;
}

.menu-nav li {
	width: 3.36rem;
	height: .64rem;
	background: #F8F8F8;
	text-align: left;
	line-height: .64rem;
	border-radius: .6rem;
	margin-bottom: .2rem;
	padding: 0 .28rem;
	box-sizing: border-box;
	margin-left: .18rem;
}

.menu-nav li.active {
	background: #F0FBFF;
}

.menu-nav .dot {
	width: .36rem;
	height: .36rem;
	background: var(--pm-c);
	border-radius: 50%;
	margin-right: .16rem;
}

.menu-nav .dot::before {
	width: .18rem;
	height: .18rem;
	display: inline-block;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url(../images/rank_icon.png) no-repeat left / contain;
}

/* 公共详情样式 */
.single_content {
	overflow: hidden;
}

.single .single_content h2,
.single .single_content h3 {
	width: 1.6rem;
	height: .56rem;
	background: var(--pm-c);
	border-radius: 0rem .6rem .6rem 0rem;
	font-weight: bold;
	font-size: .24rem;
	color: #333333;
	text-align: center;
	line-height: .56rem;
	margin-top: .4rem;
}

.single_content p {
	text-indent: 2em;
	font-size: .28rem;
	color: #555555;
	line-height: .6rem;
	letter-spacing: .01rem;
	margin-top: .2rem;
}

.single_content img {
	display: block;
	max-width: 100% !important;
	margin: .2rem auto;
}

.single_content_title {
	width: 3.56rem;
	height: .76rem;
	line-height: .76rem;
	/* background: url('../images/show_gift_h2bg.png') no-repeat center/contain; */
	font-weight: bold;
	font-size: .36rem;
	color: #333333;
	margin: .36rem auto 0;
	text-align: center;
}

/* .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: .24rem;
	line-height: .6rem;
	color: #999999;
	margin-right: .1rem;
}

.single-news .info span:nth-child(2) {
	margin-left: .1rem;
	margin-right: .1rem;
} */
/* 详情下载按钮 */
.single .down-btn .btn {
	position: relative;
	display: block;
	width: 100%;
	height: 1rem;
	line-height: 1rem;
	text-align: center;
}

.single .down-btn .btn a {
	font-weight: bold;
	font-size: .32rem;
	color: #FFFFFF;
	display: inline-block;
}

.single .down-btn .sy,
.single .down-btn .ios,
.single .down-btn .mob,
.single .down-btn .xz {
	background: url('../images/ios_bg.png') no-repeat left/contain;
}

.single .down-btn .az,
.single .down-btn .lb {
	background: url('../images/az_bg.png') no-repeat left/contain;
}

/* .single .down-btn .az a,
.single .down-btn .az span {
	background-image: url('../images/az.png');
}

.single .down-btn .ios a,
.single .down-btn .ios span {
	background-image: url('../images/ios.png');
}

.single .down-btn .pc a,
.single .down-btn .pc span {
	background-image: url('../images/pc.png');
}

.single .down-btn .mob a,
.single .down-btn .mob span {
	background-image: url('../images/play.png');
}

.single .down-btn .sy a,
.single .down-btn .sy span {
	background-image: url('../images/album_btn.png');
} */

/* .single .down-btn .lb a,
.single .down-btn .lb span{
	background: url('../images/single_lb.png') no-repeat left/contain;
	background-size: .44rem;
	padding-left: .62rem;
}

.single .down-btn .xz a,
.single .down-btn .xz span {
	background: url('../images/single_xz.png') no-repeat left/contain;
	background-size: .44rem;
	padding-left: .62rem;
} */

/* 单页  关于我们 */
.page {
	background-color: #fff;
}

.page_content {
	margin-bottom: .4rem;
}

.page_nav {
	margin-left: -0.2rem;
	display: flex;
	flex-wrap: wrap;
}

.page_nav li {
	width: 1.6rem;
	height: .6rem;
	background: #F9F9F9;
	border-radius: .08rem;
	line-height: .6rem;
	text-align: center;
	margin-left: .16rem;
	box-sizing: border-box;
	margin-top: .28rem;
	padding: 0 .16rem;
}

.page_nav li:nth-of-type(-n + 4) {
	margin-top: 0;
}


.page_nav li.active {
	background: var(--pm-c);
}

.page_nav li a {
	display: inline-block;
	width: 100%;
	font-size: .24rem;
	color: #666666;
}


.page_nav li.active a {
	color: #333333;
}

.page .page_title {
	width: 1.6rem;
	height: .56rem;
	background: var(--pm-c);
	border-radius: 0rem .6rem .6rem 0rem;
	font-weight: bold;
	font-size: .24rem;
	color: #333333;
	text-align: center;
	line-height: .56rem;
	margin-top: .3rem;
}

.page .page_title:first-of-type {
	margin-top: .4rem;
}

.page_content p {
	font-size: .28rem;
	color: #555555;
	/* letter-spacing: .02rem; */
	text-indent: 2em;
	margin-top: .2rem;
	line-height: .72rem;
}

.page_content ul {
	flex-wrap: wrap;
	margin-left: -0.2rem;
}

.page_content ul li {
	width: 1.56rem;
	height: .5rem;
	line-height: .5rem;
	text-align: center;
	margin-top: .2rem;
	margin-left: .2rem;
	padding: 0 .1rem;
	box-sizing: border-box;
}

.page_content ul li a {
	font-size: .24rem;
	color: #666666;
	display: inline-block;
	width: 100%;
}


.page_content ul li.active {
	/* border-color: var(--pm-c); */
}


.page_content ul li.active a {
	color: var(--pm-c);
}

.page_content .page_rank {
	margin-left: -0.14rem;
}

.page_content .page_rank li {
	width: auto;
	margin-left: .12rem;
}

/* 搜索页 */
.search_total {
	display: block;
	font-size: .24rem;
	color: #999999;
	line-height: .48rem;
	margin-bottom: .4rem;
}

/* 404 500 错误页面 */
.page-error {
	min-height: 10rem;
	padding: 4rem 0;
	box-sizing: border-box;
}

.page-error img {
	width: 50%;
	margin: 2.45rem auto 1rem;
}

.page-error .page-404 {
	width: 3.56rem;
	height: 2.94rem;
	margin: 0 auto;
	background: url(../images/404.png) no-repeat center/contain;
}

.page-error .page-500 {
	width: 3.56rem;
	height: 2.94rem;
	margin: 0 auto;
	background: url(../images/500.png) no-repeat center/contain;
}

.page-error p {
	font-size: .28rem;
	color: #999999;
	line-height: .72rem;
	/* letter-spacing: .02rem; */
	margin: .6rem auto;
}

.page-error a.go-home {
	width: 1.84rem;
	height: .64rem;
	background: #F9F9F9;
	border-radius: .08rem;
	line-height: .64rem;
	text-align: center;
	font-size: .24rem;
	color: #555;
	display: inline-block;
}


/* 首页 */
/* 模块 */
.module {
	padding: .6rem .3rem;
	margin-top: .1rem;
	box-sizing: border-box;
	background: #FFFFFF;
}

.module:first-of-type {
	margin-top: 0;
	border-top: none;
}

.w50 {
	width: 48%;
}

.w50:first-of-type {
	margin-right: 3%;
}

.index_slider {
	background-color: #fff;
	padding: .3rem .3rem 0;
	box-sizing: border-box;
	height: auto;
	position: relative;
	overflow: hidden;
}

.index_slider .sliderBox {
	position: relative;
}

.index_slider .sliderBox .slider_item {
	width: 100%;
	margin-left: 0;
}

.index_slider .sliderBox .slider_item li {
	width: 100%;
	padding-left: 0;
	border-radius: .2rem;
}

.index_slider .sliderBox .slider_item li .thumb {
	display: inline-block;
	width: 100%;
	height: 4.36rem;
	position: relative;
	overflow: hidden;
}

.index_slider .slider_item .thumb .title {
	width: 100%;
	height: .92rem;
	background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
	line-height: .92rem;
	padding: 0 .2rem;
	font-size: .28rem;
	color: #FFFFFF;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
}

/* .index_slider .sliderBox .dotnav {
	width: 100%;
	margin-left: 0;
	overflow: hidden;
	flex-wrap: nowrap;
	padding: .22rem 0;
	margin-top: 0;
}

.index_slider .sliderBox .dotnav li {
	padding-left: 0;
	width: 31%;
	border-radius: .08rem;
}

.index_slider .sliderBox .dotnav li a {
	border: .02rem solid transparent;
	width: 100%;
	height: 1.5rem;
	position: relative;
	border-radius: 0;
	border-radius: .08rem;
}

.index_slider .sliderBox .dotnav li:last-child {
	margin-right: 0;
}

.index_slider .sliderBox .dotnav li.uk-active a {
	border-color: var(--pm-c);
} */


.index_news_item {
	background-color: #fff;
	padding: 0rem .3rem .4rem;
	box-sizing: border-box;
	margin-top: .32rem;
}

.index_news_item .thumb {
	height: 2.12rem;
	border-radius: .08rem;
}

.index_news_item ul {
	display: flex;
	flex-wrap: wrap;
}

.index_news_item ul li {
	width: 48%;
}

.index_news_item ul li:nth-of-type(odd) {
	margin-right: 4%;
}


.index_game_item .uk-grid-small>.uk-grid-margin {
	margin-top: .7rem;
}

.index_game_item .item {
	position: relative;
	width: 100%;
	text-align: center;
}

.index_game_item .item::before {
	content: '';
	display: inline-block;
	width: .5rem;
	height: .5rem;
	background: url(../images/save.png) no-repeat center / contain;
	background-size: 100%;
	position: absolute;
	top: 0rem;
	right: 0rem;
	z-index: 1;
}

.index_game_item .item .icon {
	width: 1.24rem;
	height: 1.24rem;
	border-radius: 50%;
	margin: 0 auto;
}

.index_game_item .item .title {
	margin: .3rem 0 .1rem;
}



.index_title_item .title {
	font-size: .28rem;
	color: #666666;
}

.index_title_item li:nth-of-type(1) {
	margin-top: 0;
}

.index_title_item li:nth-of-type(1) .title_ {
	color: #333333;
}

.index_title_item li:nth-of-type(1) .time {
	display: none;
}

.index_title_item li .tag {
	margin-left: 0;
	margin-right: .2rem;
}

.index_title_item li:nth-of-type(1) .tag {
	display: block;
	width: .88rem;
	height: .44rem;
	line-height: .44rem;
	font-size: .24rem;
	color: #333333;
	border: none;
	text-indent: -0.06rem;
}

.index_title_item li:nth-of-type(1) .tag {
	background: url(../images/index_hot.png) no-repeat center / contain;
	background-size: 100%;
}

/* .index_title_item li .title_{
	text-align: left;
} */
.index_title_item li {
	margin-top: .38rem;
}


.index_new_game .item:nth-of-type(2) {
	margin-top: .4rem;
}

.index_new_game .item {
	height: 1.68rem;
	background: #F9F9F9;
	border-radius: .2rem;
	margin-left: .56rem;
	position: relative;
	margin-top: .3rem;
	padding: .24rem 0rem .24rem .84rem;
	box-sizing: border-box;
}

.index_new_game .item .icon {
	width: 1.2rem;
	height: 1.2rem;
	border-radius: .2rem;
	position: absolute;
	top: .24rem;
	left: -0.56rem;
}

.index_new_game .item .title {
	margin-bottom: .3rem;
	padding-right: 1.2rem;
}

.index_new_game .item .score {
	width: 1.36rem;
	height: .7rem;
	position: absolute;
	top: 0rem;
	right: 0;
	background: url(../images/score_bg.png) no-repeat left / contain;
	background-size: 100% 100%;
	padding: 0;
	text-align: center;
	font-weight: 400;
	font-size: .24rem;
	color: #FFFFFF;
	line-height: .44rem;
}

.index_new_game .item .score span {
	vertical-align: bottom;
	font-weight: bold;
	font-size: .32rem;
	color: #FFFFFF;
}

.index_new_game .item .text:not(:first-of-type) {
	margin-left: .2rem;
}


.index_edit_suggest .item {
	margin-top: .4rem;
	border-bottom: .02rem dashed #E5E5E5;
	padding-bottom: .4rem;
}

.index_edit_suggest .item:last-of-type {
	padding-bottom: 0;
	border-bottom: none;
}

.index_edit_suggest .item .icon {
	width: 1.76rem;
	height: .44rem;
	margin: 0;
}

.index_edit_suggest .item .title {
	margin: .4rem 0 .2rem;
}


.index_blockbuster_game .wrap {
	margin-top: .4rem;
	background: #F9F9F9;
	padding: .52rem .3rem;
	box-sizing: border-box;
}

.index_blockbuster_game .item {
	display: flex;
	align-items: center;
	width: 100%;
}

.index_blockbuster_game .item:not(:first-of-type) {
	margin-top: .6rem;
}

.index_blockbuster_game .item .icon {
	width: 1.52rem;
	height: 1.52rem;
	border-radius: .3rem;
	margin-right: .24rem;
}

.index_blockbuster_game .item .tag {
	display: inline-block;
	height: .44rem;
	border-radius: .08rem;
	border: .02rem solid #E0E0E0;
	line-height: .4rem;
	font-size: .24rem;
	color: #999999;
	margin: .12rem .2rem .12rem 0;
	padding: 0 .1rem;
	box-sizing: border-box;
}

.index_blockbuster_game .item .score {
	margin-left: .2rem;
}



.index_game_dynamic .thumb {
	width: 100%;
	height: 3.8rem;
	margin-top: .4rem;
}

.index_game_dynamic .item {
	margin-top: .4rem;
	border-bottom: .02rem dashed #E5E5E5;
	padding-bottom: .36rem;
}

.index_game_dynamic .item .info {
	margin-top: .4rem;
	padding-left: 1.44rem;
	background: url(../images/dynamic.png) no-repeat left / contain;
	background-size: 1.2rem;
	display: flex;
	align-items: center;
}

.index_game_dynamic .item .desc {
	line-height: .6rem;
}

.index_game_dynamic .item .info .btn {
	display: inline-block;
	width: 1.14rem;
	height: .56rem;
	border-radius: .08rem;
	border: .02rem solid #E5E5E5;
	line-height: .56rem;
	text-align: center;
	font-size: .24rem;
	color: #999999;
	margin-left: .2rem;
}


.index_grade_game .item {
	width: 100%;
	padding-bottom: .3rem;
	border-bottom: .02rem solid #F6F6F6;
	margin-top: .4rem;
}

.index_grade_game .item .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .3rem;
	margin-right: .24rem;
}

.index_grade_game .item .title {
	margin-bottom: .3rem;
}

.index_grade_game .item .down {
	width: 1.2rem;
	height: .6rem;
	background: var(--pm-c);
	border-radius: .04rem;
	line-height: .6rem;
	text-align: center;
	font-size: .28rem;
	color: #333333;
	margin-left: .2rem;
}

.index_grade_game .item .size {
	margin-left: .3rem;
}


.index_jx_gl .uk-grid-small>.uk-grid-margin {
	margin-top: .5rem;
}

.index_jx_gl .item {
	width: 100%;
	position: relative;
}

.index_jx_gl .item .tags {
	position: absolute;
	top: .2rem;
	left: .2rem;
	z-index: 1;
}

.index_jx_gl .item .tag {
	display: inline-block;
	height: .48rem;
	min-width: 1rem;
	text-align: center;
	background: #FFD83C;
	border-radius: .08rem;
	line-height: .48rem;
	font-size: .28rem;
	color: #FFFFFF;
	padding: 0 .1rem;
	box-sizing: border-box;
	margin-right: .18rem;
}

.index_jx_gl .item .tag:nth-of-type(1) {
	background: #38D99E;
}

.index_jx_gl .item .thumb {
	width: 100%;
	height: 2.36rem;
	border-radius: .08rem;
	margin-bottom: .4rem;
}

.index_jx_gl .item .btn {
	display: inline-block;
	width: 1rem;
	height: .48rem;
	background: #F9F9F9;
	border-radius: .08rem;
	border: .02rem solid #F5F5F5;
	line-height: .48rem;
	font-size: .24rem;
	color: #999999;
	text-align: center;
}

.index_jx_gl .item .desc {
	font-size: .24rem;
	color: #888888;
	line-height: .6rem;
	margin: .2rem 0;
}



.index_rank .rank_title_box {
	text-align: center;
	margin-top: .6rem;
}

.index_rank .rank_title {
	text-align: center;
	display: inline-block;
	max-width: 80%;
}

.index_rank .rank_title .title {
	font-weight: bold;
	font-size: .36rem;
}

.index_rank .rank_title .time {
	margin-top: .1rem;
}

.index_rank .rank_title::before,
.index_rank .rank_title::after {
	width: .46rem;
	height: .7rem;
	position: absolute;
}

.index_rank .rank_title::before {
	background: url(../images/rank_title_l.png) no-repeat left / contain;
	left: -1rem;
}

.index_rank .rank_title::after {
	background: url(../images/rank_title_r.png) no-repeat left / contain;
	right: -1rem;
}

.index_rank .items {
	margin-top: 1.08rem;
}

.index_rank .item {
	width: 2.2rem;
	padding: .28rem .15rem 0;
	box-sizing: border-box;
	border-radius: .08rem;
	text-align: center;
}

.index_rank .item:not(:first-of-type) {
	margin-left: .2rem;
}

.index_rank .item .icon {
	width: 1.2rem;
	height: 1.2rem;
	border-radius: .2rem;
	margin-bottom: .2rem;
	margin-top: .2rem;
}

.index_rank .item .title {
	margin-bottom: .1rem;
}

.index_rank .item .down {
	display: inline-block;
	width: 1.34rem;
	height: .56rem;
	background: #F0F4FD;
	border-radius: .08rem;
	font-size: .28rem;
	line-height: .56rem;
	text-align: center;
	margin-top: .28rem;
}

.index_rank .uk-width-1-3:nth-of-type(1) .item {
	background: linear-gradient(180deg, #EFF4FD 0%, #FFFFFF 100%);
}

.index_rank .uk-width-1-3:nth-of-type(1) .item .num {
	background: url(../images/rank_order3.png) no-repeat left / contain;
	background-size: 100%;
	width: .4rem;
	height: .48rem;
	margin: 0 auto;
}

.index_rank .uk-width-1-3:nth-of-type(1) .item .down {
	background: #F0F4FD;
	color: #79ACFE;
}

.index_rank .uk-width-1-3:nth-of-type(2) .item {
	background: linear-gradient(180deg, #FDF4D5 0%, #FFFFFF 100%);
	transform: translateY(-0.44rem);
}

.index_rank .uk-width-1-3:nth-of-type(2) .item .num {
	background: url(../images/rank_order1.png) no-repeat left / contain;
	background-size: 100%;
	width: .34rem;
	height: .62rem;
	margin: 0 auto;
}

.index_rank .uk-width-1-3:nth-of-type(2) .item .down {
	background: #FFF9E6;
	color: #FFC910;
}

.index_rank .uk-width-1-3:nth-of-type(3) .item {
	background: linear-gradient(180deg, #FCEFE8 0%, #FFFFFF 100%);
}

.index_rank .uk-width-1-3:nth-of-type(3) .item .num {
	background: url(../images/rank_order2.png) no-repeat left / contain;
	background-size: 100%;
	width: .4rem;
	height: .48rem;
	margin: 0 auto;
}

.index_rank .uk-width-1-3:nth-of-type(3) .item .down {
	background: #FFF4EF;
	color: #FFA376;
}

.index_rank li {
	margin-top: .6rem;
}

.index_rank li .icon {
	width: 1.04rem;
	height: 1.04rem;
	border-radius: 50%;
	margin: 0 .26rem 0 .2rem;
}

.index_rank li .type {
	margin: .1rem 0;
}

.index_rank li .down {
	display: inline-block;
	width: 1.34rem;
	height: .56rem;
	background: #F9F9F9;
	border-radius: .08rem;
	line-height: .56rem;
	text-align: center;
	font-size: .28rem;
	color: #999999;
	margin-left: .2rem;
}

/* 首页 end*/


/* 手游专辑 */

.zj_menu_nav {
	display: flex;
	align-items: center;
	justify-content: center;
}

.zj_menu_nav li {
	width: 2rem;
	height: .64rem;
	background: #F9F9F9;
	border-radius: .08rem;
	line-height: .64rem;
	text-align: center;
	margin-left: .2rem;
}

.zj_menu_nav li:first-of-type {
	margin-left: 0;
}

.zj_menu_nav li a {
	font-size: .28rem;
	color: #666666;
}

.zj_menu_nav li.active {
	background: var(--pm-c);
}

.zj_menu_nav li.active a {
	color: #333333;
}


.list_album_wrap .wrap {
	background: #F9F9F9;
	padding: .4rem .32rem .4rem .2rem;
	box-sizing: border-box;
	margin-top: .2rem;
}

.list_album_wrap .wrap:first-of-type {
	margin-top: 0;
}

.list_album_wrap .wrap .wrap_title {
	font-weight: bold;
	font-size: .32rem;
	margin-bottom: .4rem;
}

.list_album_wrap .wrap .btn {
	display: inline-block;
	width: 1.2rem;
	height: .6rem;
	border-radius: .12rem;
	border: .02rem solid #E9E9E9;
	line-height: .6rem;
	text-align: center;
	margin-left: .2rem;
	font-size: .28rem;
	color: #666666;
}

.list_album_wrap .wrap .icon_item {
	position: relative;
	height: 1.76rem;
	width: 70%;
}

.list_album_wrap .wrap .icon {
	position: absolute;
	bottom: 0rem;
	background-color: #fff;
}

.list_album_wrap .wrap .icon:nth-of-type(1) {
	width: 1.76rem;
	height: 1.76rem;
	border-radius: .3rem;
	z-index: 4;
}

.list_album_wrap .wrap .icon:nth-of-type(2) {
	width: 1.44rem;
	height: 1.44rem;
	border-radius: .3rem;
	left: 1.2rem;
	z-index: 3;
}

.list_album_wrap .wrap .icon:nth-of-type(2) a {
	opacity: .8;
}

.list_album_wrap .wrap .icon:nth-of-type(3) {
	width: 1.28rem;
	height: 1.28rem;
	border-radius: .3rem;
	left: 2.18rem;
	z-index: 2;
}

.list_album_wrap .wrap .icon:nth-of-type(3) a {
	opacity: .6;
}

.list_album_wrap .wrap .icon:nth-of-type(4) {
	width: 1.08rem;
	height: 1.08rem;
	border-radius: .3rem;
	left: 2.88rem;
	z-index: 1;
}

.list_album_wrap .wrap .icon:nth-of-type(4) a {
	opacity: .4;
}

.list_album_wrap li .text {
	margin-right: .2rem;
}

.list_album_wrap li:first-of-type {
	margin-top: 0;
}

.list_album_wrap li .title {
	font-size: .28rem;
	color: #666666;
}

/* 手游专辑 end*/

/* 游戏礼包 */
.list_game_package,
.list_game {
	padding-top: .44rem;
}

.game_package_list .item {
	margin-top: .3rem;
	display: flex;
}

.game_package_list .item:nth-of-type(1) {
	margin-top: 0;
}

.game_package_list .item .get {
	display: inline-block;
	width: 1.52rem;
	height: .66rem;
	background: url(../images/package_bg.png) no-repeat center / contain;
	background-size: 100%;
	margin-left: .2rem;
}

.game_package_list .item .icon {
	width: 1.32rem;
	height: 1.32rem;
	border-radius: .3rem;
	margin-right: .2rem;
	margin-bottom: .3rem;
}

.game_package_list .item .info {
	border-bottom: .02rem dashed #E5E5E5;
	padding-bottom: .3rem;
	display: flex;
	align-items: center;
}

.game_package_list .item .desc {
	color: #888888;
	margin-top: .2rem;
}

/* 游戏礼包 end*/

/* 游戏列表 */
.list_game_wrap .item {
	padding-bottom: .36rem;
	margin-top: .4rem;
	border-bottom: .02rem solid #F6F6F6;
}

.list_game_wrap .item .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .3rem;
	margin-right: .24rem;
}

.list_game_wrap .item .title {
	margin-bottom: .3rem;
}

.list_game_wrap .item .down {
	width: 1.2rem;
	height: .6rem;
	background: var(--pm-c);
	border-radius: .04rem;
	line-height: .6rem;
	text-align: center;
	font-size: .28rem;
	color: #333333;
	margin-left: .2rem;
}

.list_game_wrap .item .size {
	margin-left: .3rem;
}

/* 游戏列表 end*/

/* 资讯列表 */
.list_news_wrap .item {
	margin-top: .4rem;
	display: flex;
	align-items: center;
}

.list_news_wrap .item .thumb {
	width: 2.28rem;
	height: 1.6rem;
	border-radius: .12rem;
	margin-right: .22rem;
	margin-bottom: .44rem;
}

.list_news_wrap .item .info {
	padding-bottom: .44rem;
	border-bottom: .02rem dashed #E5E5E5;
}

.list_news_wrap .item .title {
	margin-bottom: .16rem;
}

.list_news_wrap .item .desc {
	font-size: .24rem;
	color: #888888;
	margin-top: .16rem;
}

.list_news_wrap .item .tag {
	display: inline-block;
	height: .4rem;
	background: #FFD83C;
	line-height: .4rem;
	border-radius: .08rem;
	min-width: 1rem;
	font-size: .24rem;
	color: #FFFFFF;
	text-align: center;
	margin-right: .1rem;
	box-sizing: border-box;
}

.list_news_wrap .item .tag:first-of-type {
	background: #38D99E;
}

/* 资讯列表 end*/

/* 排行榜大全 */
.rank_banner {
	width: 100%;
	height: 3.56rem;
}

.list_rank_news .module:nth-of-type(2),
.list_rank .module:nth-of-type(2) {
	padding-top: .22rem;
	margin-top: 0;
}

.list_rank_news .index_rank .rank_title_box {
	margin-top: 0;
}

/* 排行榜大全 end*/

/* 排行榜列表 */
.list_rank_wrap .item {
	margin-top: .2rem;
	border-radius: .08rem;
	border: .02rem solid #F1F1F1;
	display: flex;
	align-items: center;
	padding: .36rem .3rem .28rem .2rem;
	box-sizing: border-box;
}

.list_rank_wrap .item:nth-of-type(1) {
	margin-top: 0;
}

.list_rank_wrap .item:nth-of-type(1) {
	background: linear-gradient(90deg, #FDF4D5 0%, #FFFFFF 100%);
}

.list_rank_wrap .item:nth-of-type(2) {
	background: linear-gradient(90deg, #FCEFE8 0%, #FFFFFF 100%);
}

.list_rank_wrap .item:nth-of-type(3) {
	background: linear-gradient(90deg, #EFF4FD 0%, #FFFFFF 100%);
}

.list_rank_wrap .item:nth-of-type(-n + 3) .order {
	color: transparent;
	width: .18rem;
	height: .32rem;
}

.list_rank_wrap .item:nth-of-type(1) .order {
	background: url(../images/rank_wrap_bg1.png) no-repeat left / contain;
	background-size: 100%;
}

.list_rank_wrap .item:nth-of-type(2) .order {
	background: url(../images/rank_wrap_bg2.png) no-repeat left / contain;
	background-size: 100%;
}

.list_rank_wrap .item:nth-of-type(3) .order {
	background: url(../images/rank_wrap_bg3.png) no-repeat left / contain;
	background-size: 100%;
}

.list_rank_wrap .item .order {
	width: .42rem;
	font-weight: bold;
	font-size: .32rem;
	color: #D9D9D9;
	margin-right: .16rem;
	text-align: center;
}

.list_rank_wrap .item .icon {
	width: 1.2rem;
	height: 1.2rem;
	border-radius: .3rem;
	margin: 0;
	margin-right: .18rem;
}

.list_rank_wrap .item .star {
	margin: 0;
	margin-right: .22rem;
}

.list_rank_wrap .item span {
	font-size: .24rem;
	color: #999999;
	line-height: .6rem;
	margin-top: .1rem;
}

.list_rank_wrap .item span:not(:first-of-type) {
	margin-left: .1rem;
}

.list_rank_wrap .item .down {
	display: inline-block;
	width: 1.2rem;
	height: .56rem;
	background: var(--pm-c);
	border-radius: .12rem;
	line-height: .56rem;
	text-align: center;
	font-size: .28rem;
	color: #333333;
	margin-left: .2rem;
}

/* 排行榜列表 end*/

/* 搜索结果 */
.search_wrap {
	padding-top: .2rem;
}

/* 搜索结果 end*/

/* 专辑详情 */
.single_album .single_header {
	background: #F9F9F9;
	border-radius: .4rem .4rem 0rem 0rem;
	text-align: center;
	position: relative;
	padding: .56rem .2rem .2rem;
	box-sizing: border-box;
}

.single_album .single_header .tag {
	width: 1.62rem;
	height: .74rem;
	font-weight: bold;
	font-size: .24rem;
	color: #FFFFFF;
	line-height: .52rem;
	position: absolute;
	top: 0rem;
	right: 0rem;
	background: url(../images/single_album_icon.png) no-repeat left / contain;
	background-size: 100%;
}

.single_album .single_header .single_header_title {
	font-weight: bold;
	font-size: .32rem;
	color: #333333;
}

.single_album .single_header .label {
	display: inline-block;
	height: .56rem;
	border-radius: .08rem;
	border: .02rem solid #E5E5E5;
	line-height: .56rem;
	font-size: .24rem;
	color: #999999;
	margin-top: .4rem;
	padding: 0 .2rem;
	box-sizing: border-box;
	max-width: 50%;
}

.single_album .single_header .label:nth-of-type(odd) {
	margin-right: .16rem;
}

.more_box {
	margin-top: .26rem;
	display: flex;
}

.more_box span {
	font-size: .24rem;
	color: #999999;
}

.more_box .title {
	font-size: .24rem;
	width: 49%;
	margin-bottom: .2rem;
	font-size: .24rem;
	color: #999999;
}

.more_box .title:nth-of-type(odd) {
	margin-right: 2%;
}

.show_tj {
	background: url('../images/show_tj.png') no-repeat top/cover;
	width: 100%;
	height: 4.74rem;
	padding: .72rem .52rem .48rem .66rem;
	box-sizing: border-box;
	margin-top: .1rem;
}

.show_tj .icon {
	width: 1.52rem;
	height: 1.52rem;
	border-radius: .3rem;
	margin-right: .22rem;
}

.show_tj .title {
	font-weight: bold;
	font-size: .32rem;
	color: #333333;
	margin-bottom: .2rem;
}

.show_tj .type {
	font-size: .24rem;
	color: #666666;
}

.show_tj .desc {
	margin-top: .3rem;
}

/* .show_tj .type span:first-of-type {
	margin-right: .3rem;
} */

.show_tj .down {
	display: inline-block;
	width: 100%;
	height: .94rem;
	line-height: .94rem;
	text-align: center;
	background: var(--pm-c);
	border-radius: .16rem;
	font-weight: bold;
	font-size: .28rem;
	color: #333333;
	margin-top: .3rem;
}


.album_list .item {
	width: 100%;
	border: .02rem solid #F1F1F1;
	border-radius: .12rem;
	padding: .3rem .26rem;
	box-sizing: border-box;
	margin-top: .3rem;
}

.album_list .item:nth-of-type(1) {
	margin-top: .4rem;
}

.album_list .item .order {
	width: 1rem;
	height: .36rem;
	background: url(../images/order_bg.png) no-repeat center / contain;
	background-size: 100%;
	font-size: .24rem;
	color: #FFFFFF;
	text-indent: .2rem;
}

.album_list .item:nth-of-type(-n + 4) .order {
	background: url(../images/order_active.png) no-repeat center / contain;
	background-size: 100%;
}

.album_list .item .icon {
	width: 1.32rem;
	height: 1.32rem;
	border-radius: .3rem;
	margin-right: .2rem;
}

.album_list .item .title {
	max-width: calc(100% - 1.04rem);
}

.album_list .item .down {
	width: 1.2rem;
	height: .6rem;
	background: var(--pm-c);
	border-radius: .04rem;
	line-height: .6rem;
	text-align: center;
	font-size: .28rem;
	color: #333333;
	margin-left: .2rem;
}

.album_list .item .size {
	margin-left: .3rem;
}


.index_game_album li {
	margin-top: .22rem;
}

.index_game_album li.active .wrap {
	display: flex;
}

.index_game_album li.active .item {
	display: none;
}

.index_game_album .wrap {
	display: none;
}

.index_game_album .wrap .icon {
	width: 2rem;
	height: 2rem;
	border-radius: .3rem;
	margin-right: .22rem;
}

.index_game_album .wrap .title {
	font-weight: bold;
	margin-bottom: .2rem;
}

.index_game_album .wrap .see {
	display: inline-block;
	width: 1.5rem;
	height: .6rem;
	background: var(--pm-c);
	border-radius: .08rem;
	line-height: .6rem;
	font-size: .24rem;
	color: #333333;
	margin-top: .2rem;
	text-align: center;
}

.index_game_album .item {
	height: 1.1rem;
	line-height: 1.1rem;
	background: #F9F9F9;
	border-radius: .12rem;
	padding: 0 .24rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}

.index_game_album .item .text {
	font-size: .28rem;
	color: #999999;
	margin-right: .2rem;
}

.index_game_album .item .btn {
	font-size: .24rem;
	color: #999999;
	margin-left: .2rem;
}


.score_most .item {
	display: flex;
	align-items: center;
	width: 100%;
	margin-top: .6rem;
}

.score_most .item .icon {
	width: 1.52rem;
	height: 1.52rem;
	border-radius: .3rem;
	margin-right: .2rem;
}

.score_most .item .tag {
	display: inline-block;
	height: .44rem;
	border-radius: .08rem;
	border: .02rem solid #E0E0E0;
	line-height: .4rem;
	font-size: .24rem;
	color: #999999;
	margin: .12rem .2rem .12rem 0;
	padding: 0 .1rem;
	box-sizing: border-box;
}

.score_most .item .score {
	margin-left: .2rem;
}


.single_game_item .item::before {
	right: .3rem;
}

/* 专辑详情 end*/

/* 礼包详情 */
.single_gift .single_header {
	background: #F9F9F9;
	border-radius: .4rem .4rem 0rem 0rem;
	margin-top: .8rem;
	box-sizing: border-box;
	padding: 1rem .4rem .4rem;
	position: relative;
	margin-bottom: .36rem;
	text-align: center;
}

.single_gift .single_header .single_header_title {
	font-weight: bold;
	font-size: .32rem;
	color: #333333;
}

.single_gift .single_header .icon {
	width: 1.6rem;
	height: 1.6rem;
	border-radius: .4rem;
	position: absolute;
	top: -0.8rem;
	left: 50%;
	transform: translate(-50%);
}

.single_gift .single_header .label {
	display: inline-block;
	height: .56rem;
	border-radius: .08rem;
	border: .02rem solid #E5E5E5;
	line-height: .56rem;
	font-size: .24rem;
	color: #999999;
	margin-top: .4rem;
	padding: 0 .2rem;
	box-sizing: border-box;
	/* max-width: 50%; */
}

.single_gift .single_header .label:nth-of-type(odd) {
	margin-right: .16rem;
}


.single_gift .list_news_wrap .item:last-of-type .info {
	padding-bottom: 0;
	border-bottom: none;
}

.single_gift .list_news_wrap .item:last-of-type .thumb {
	margin-bottom: 0;
}


.index_get_more .item {
	margin-top: .6rem;
	display: flex;
	align-items: center;
}

.index_get_more .item .icon {
	width: 1.52rem;
	height: 1.52rem;
	border-radius: .3rem;
	margin-right: .2rem;
}

.index_get_more .item .tag {
	height: .44rem;
	border-radius: .08rem;
	border: .02rem solid #E0E0E0;
	line-height: .4rem;
	font-size: .24rem;
	color: #999999;
	display: inline-block;
	padding: 0 .1rem;
	box-sizing: border-box;
	margin: .1rem 0;
}

.index_get_more .item .get {
	font-weight: bold;
	font-size: .28rem;
	color: #333333;
	padding-left: .52rem;
	margin-left: .2rem;
	background: url(../images/package.png) no-repeat left / contain;
	background-size: .32rem;
}



.package_new_news .item {
	margin-top: .4rem;
	border-bottom: .02rem dashed #E5E5E5;
	padding-bottom: .4rem;
	display: flex;
	align-items: center;
}

.package_new_news .item:last-of-type {
	padding-bottom: 0;
	border-bottom: none;
}

.package_new_news .item .thumb {
	width: 2.16rem;
	height: 1.44rem;
	border-radius: .08rem;
	margin-right: .2rem;
}

.package_new_news .item .tag {
	height: .4rem;
	background: #F9F9F9;
	border-radius: .08rem;
	line-height: .36rem;
	font-size: .24rem;
	color: #999999;
	display: inline-block;
	margin-right: .12rem;
	padding: 0 .1rem;
	box-sizing: border-box;
}

.package_new_news .item .title {
	margin: .16rem 0;
}

/* 礼包详情 end*/

/* 手游详情 */
.single_game .single_header {
	background: #F9F9F9;
	border-radius: .4rem .4rem 0rem 0rem;
	margin-top: .8rem;
	box-sizing: border-box;
	padding: 1rem .3rem .3rem;
	margin-bottom: .36rem;
	text-align: center;
	position: relative;
}

.single_game .single_header .score {
	width: 1.48rem;
	height: .68rem;
	font-weight: bold;
	font-size: .24rem;
	color: #FFFFFF;
	position: absolute;
	right: 0rem;
	top: 0rem;
	background: url(../images/single_album_icon.png) no-repeat left/contain;
	background-size: 100%;
	line-height: .46rem;
	padding-left: 0;
	text-align: center;
}

.single_game .single_header .score span {
	font-weight: bold;
	font-size: .32rem;
	color: #FFFFFF;
}

.single_game .single_header .single_header_title {
	font-weight: bold;
	font-size: .32rem;
	color: #333333;
}

.single_game .single_header .icon {
	width: 1.6rem;
	height: 1.6rem;
	border-radius: .4rem;
	position: absolute;
	top: -0.8rem;
	left: 50%;
	transform: translate(-50%);
}

.single_game .single_header .label {
	text-align: left;
	display: block;
	border-radius: .08rem;
	border: .02rem solid #E5E5E5;
	line-height: .56rem;
	font-size: .24rem;
	color: #999999;
	padding: 0 .2rem;
	box-sizing: border-box;
	margin: 0 .05rem;
	margin-top: .1rem;
}



.single_game .down-btn {
	margin: .3rem 0;
}


.single_game .sliderBox {
	height: auto;
	margin: 0;
	overflow: hidden;
	margin-top: .4rem;
}

.single_game .sliderBox .slide {
	height: auto;
}

.single_game .sliderBox .slide li:first-child {
	margin-left: 0;
}

.single_game .sliderBox .slide li {
	width: 2.54rem;
	margin-right: .16rem;
}

.single_game .sliderBox .slide li a {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	position: relative;
	height: auto;
}

.single_game .sliderBox .slide li a img {
	border-radius: .12rem;
}

.single_game_title {
	width: 1.6rem;
	height: .56rem;
	background: var(--pm-c);
	border-radius: 0rem .6rem .6rem 0rem;
	font-weight: bold;
	font-size: .24rem;
	color: #333333;
	text-align: center;
	line-height: .56rem;
	margin-top: .4rem;
}

.game_info {
	margin-top: .4rem;
	background: #F9F9F9;
	padding: .2rem .3rem;
	box-sizing: border-box;
}
.game_info ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 !important;
	padding: 0 !important;
}
.game_info ul li {
	width: 50% !important;
	color: #999999 !important;
	font-size: .26rem;
	box-sizing: border-box;
}

.game_info li b,.game_info li span {
	display: inline-block;
	font-size: .28rem;
	color: #F7DA00 !important;
}

.game_info .uk-width-auto {
	min-width: 50%;
}


.single_game .index_game_dynamic .item:last-of-type,
.single_news .index_game_dynamic .item:last-of-type {
	padding-bottom: 0rem;
	border-bottom: none;
}

/* 手游详情 end*/

/* 资讯详情 */
.single_news .single_header {
	background: #F9F9F9;
	padding: .6rem .3rem;
	box-sizing: border-box;
}

.single_news .single_header .single_header_title {
	font-weight: bold;
	font-size: .32rem;
	color: #333333;
	margin-bottom: .48rem;
	text-align: center;
}

.single_news .single_header .label {
	display: inline-block;
	height: .48rem;
	background: #F9F9F9;
	border-radius: 1rem;
	line-height: .48rem;
	font-size: .24rem;
	color: #999999;
	padding: 0 .2rem;
	box-sizing: border-box;
	text-align: left;
}

.single_news .single_header span:not(:first-of-type) {
	margin-left: .2rem;
}

.single_news .single_content {
	background: #FFFFFF;
	padding: .1rem .3rem .3rem;
	box-sizing: border-box;
}

/* 资讯详情 end*/

/* 排行榜详情 */
.single_rank .module:nth-of-type(2) {
	padding-top: .4rem;
	margin-top: 0;
}

.single_rank .single_header {
	height: 2rem;
	background: url(../images/single_rank_header_bg.png) no-repeat center / contain;
	background-size: 100% 100%;
	box-sizing: border-box;
	text-align: center;
	padding: .5rem;
}

.single_rank .single_header .single_header_title {
	font-weight: bold;
	font-size: .32rem;
	color: #000000;
	margin-bottom: .2rem;
}

.single_rank .single_header .time {
	font-size: .24rem;
	color: #666666;
}




/* 资讯详情 end */

/* 开服 */
.kaifu {}

.kaifu_menu {
	/* height: 1.2rem;
	background: #F2F6FF;
	padding: .3rem .2rem .2rem;
	border-radius: .12rem;
	border: .02rem solid var(--pm-c);
	box-sizing: border-box; */
}

.kaifu_menu button {
	width: 2.2rem;
	height: .64rem;
	background: #F9F9F9;
	border-radius: .08rem;
	font-size: .28rem;
	color: #666666;
	padding: 0 .2rem;
	box-sizing: border-box;
	border: none;
	line-height: .64rem;
}

.kaifu_menu button span {
	display: inline-block;
	width: 100%;
	background: url('../images/kaifu_drop.png') no-repeat right/contain;
	background-size: .2rem;
	padding-right: .6rem;
	text-align: left;
}

.kaifu_menu button:hover {
	background: var(--pm-c);
}

.kaifu_menu button:hover span {
	background: url('../images/kaifu_drop_active.png') no-repeat right/contain;
	background-size: .2rem;
	color: #333333;
}

.kaifu_menu .uk-dropdown {
	padding: .2rem;
}

.kaifu .desc {
	font-size: .24rem;
	color: #999999;
	line-height: .6rem;
	margin-top: .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_wrap .item {
	padding-bottom: .4rem;
	border-bottom: .02rem solid #F6F6F6;
	margin-top: .4rem;
	display: flex;
	align-items: center;
}

.kaifu_wrap .item .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .3rem;
	margin-right: .2rem;
}

.kaifu_wrap .item .title {
	max-width: calc(100% - .6rem);
	padding-right: .1rem;
	box-sizing: border-box;
}

.kaifu_wrap .item .time {
	margin: .1rem 0;
}

.kaifu_wrap .item .down {
	display: inline-block;
	width: 1.2rem;
	height: .6rem;
	background: var(--pm-c);
	border-radius: .04rem;
	line-height: .6rem;
	text-align: center;
	font-size: .28rem;
	color: #333333;
	margin-left: .1rem;
}

.kaifu_wrap .item .type {}

.kaifu_wrap .item .score {
	font-size: .24rem;
	color: #FED508;
	font-weight: 400;
	background: none;
	padding: 0;
	margin: .1rem 0;
}

/* 开服 end*/