:root {
	--pm-c: #67D67C;
}

/*隐藏类*/
.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 {
	color: #999 !important;
	width: 50% !important;
}
#app_info li span,
#app_info li b {
	color: var(--pm-c) !important;
	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: #FFFFFF;
	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%;
	height: 100%;
}

/* 默认缩略图尺寸 */
.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 {
	font-size: .24rem;
	color: #999;
}

/* 评分 */
.score {
	font-weight: bold;
	font-size: .28rem;
	color: #5C93FF;
}

/* 平台 安卓 苹果 图标显示 */
.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.06rem 0 .84rem;
	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: #E3E1E1;
	border-radius: 50%;
	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 {
	font-size: .24rem;
	color: var(--pm-c);
	margin-right: .2rem;
}

/* 序号 */
.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: .4rem;
	text-align: center;
	font-weight: bold;
	font-size: .28rem;
	color: #D3D3D3;
	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;
	font-size: .32rem;
	color: #333333;
}

.module-title .more {
	display: inline-block;
	font-size: .24rem;
	color: #999999;
	margin-left: .2rem;
}

.module-title .more i {
	display: inline-block;
	width: .28rem;
	height: .28rem;
	line-height: .24rem;
	text-align: center;
	background: linear-gradient( 180deg, #28C565 0%, #A1E791 100%);
	border-radius: 1.4rem;
	font-size: .24rem;
	color: #FFFFFF;
	margin-left: .2rem;
	vertical-align: text-bottom;
	font-style: normal;
}

/* 列表页公共样式 */
/* 菜单栏 */
.menu_nav {
	margin-left: -0.14rem;
	display: flex;
	flex-wrap: wrap;
	margin-top: -0.32rem;
}

.menu_nav li {
	width: 1.56rem;
	height: .6rem;
	background: #F9F9F9;
	border-radius: .6rem;
	line-height: .6rem;
	text-align: center;
	margin-left: .2rem;
	box-sizing: border-box;
	margin-top: .32rem;
	padding: 0 .16rem;
}

.menu_nav li:hover,
.menu_nav li.active {}

.menu_nav li a {
	display: inline-block;
	width: 100%;
	font-size: .28rem;
	color: #666666;
}

.menu_nav li:hover a,
.menu_nav li.active a {
	color: var(--pm-c);
}

.menu_nav_rank li {
	margin: 0;
	width: 48%;
	text-align: left;
	margin-top: .24rem;
	padding: 0 .3rem;
}

.menu_nav_rank li:nth-of-type(odd) {
	margin-right: 3%;
}

/* .menu_nav_rank li:nth-of-type(-n + 2){
	margin-top: 0;
} */


/* 头尾 */
.header {
	width: 100%;
	background: url('../images/header_bg.png') no-repeat center/contain;
	background-size: 100% 100%;
	padding: .18rem .3rem .3rem;
	box-sizing: border-box;
}

.header .logo {
	width: auto;
	height: .7rem;
	/* margin-left: .3rem; */
}

.search {
	width: 3.62rem;
	height: .6rem;
	border-radius: .6rem;
	overflow: hidden;
	display: flex;
	box-sizing: border-box;
	position: relative;
}

.search .search_input {
	width: 100%;
	height: 100%;
	background: rgba(248, 251, 255, 0.6);
	font-size: .24rem;
	color: #888E9C;
	box-sizing: border-box;
	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%);
	right: .26rem;
}

input::-webkit-input-placeholder {
	font-size: .24rem;
	color: #888E9C;
}

input::-moz-placeholder {
	font-size: .24rem;
	color: #888E9C;
}

.header .nav {
	width: 100%;
	overflow: auto hidden;
	height: .6rem;
	width: 100%;
	margin-top: .48rem;
}

.header .nav li {
	flex-shrink: 0;
	min-width: 1.6rem;
	height: .6rem;
	line-height: .6rem;
	text-align: center;
	border-radius: 1.4rem;
	padding: 0 .1rem;
	box-sizing: border-box;
	margin-right: .2rem;
	border: .02rem solid transparent;
}

.header .nav li.active {
	border: .02rem solid #fff;
	background: linear-gradient( 180deg, #28C565 0%, #A1E791 100%);
}

.header .nav li a {
	width: 100%;
	font-size: .28rem;
	color: #FFFFFF;
	display: inline-block;
}

.header .nav li.active a {
	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: .28rem;
	color: #888888;
	letter-spacing: .02rem;
}

.index_link ul li:hover a {
	color: var(--pm-c) !important;
}

.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 {
	height: .64rem;
	line-height: .64rem;
	background: linear-gradient( 90deg, #E0FFE5 0%, #FFFFFF 100%);
	font-weight: bold;
	font-size: .32rem;
	color: var(--pm-c);
	margin-bottom: .16rem;
	margin-top: .3rem;
	padding-left: .34rem;
	border-left: .08rem solid var(--pm-c);
}

.single_content p {
	text-indent: 2em;
	font-size: .28rem;
	line-height: .6rem;
	letter-spacing: .01rem;
	color: #666666;
}

.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: .88rem;
	line-height: .88rem;
	border-radius: 1.4rem;
	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: linear-gradient(270deg, #8673FF 0%, #36AEFF 100%);
}

.single .down-btn .az,
.single .down-btn .lb {
	background: linear-gradient( 180deg, #FF6767 0%, #FF959A 100%);
}

/* .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.14rem;
	display: flex;
	flex-wrap: wrap;
}

.page_nav li {
	width: 1.56rem;
	height: .6rem;
	background: #F9F9F9;
	border-radius: .6rem;
	line-height: .6rem;
	text-align: center;
	margin-left: .2rem;
	box-sizing: border-box;
	margin-top: .22rem;
	padding: 0 .16rem;
}

.page_nav li:hover,
.page_nav li.active {}

.page_nav li a {
	display: inline-block;
	width: 100%;
	font-size: .28rem;
	color: #666666;
}

.page_nav li:hover a,
.page_nav li.active a {
	color: var(--pm-c);
}

.page .page_title {
	height: .64rem;
	line-height: .64rem;
	background: linear-gradient(90deg, #F2F6FF 0%, #FFFFFF 100%);
	font-weight: bold;
	font-size: .32rem;
	color: var(--pm-c);
	margin-bottom: .16rem;
	margin-top: .5rem;
	padding-left: .34rem;
	border-left: .08rem solid var(--pm-c);
}

.page .page_title:first-of-type {
	margin-top: .4rem;
}

.page_content p {
	font-size: .28rem;
	color: #666666;
	/* letter-spacing: .02rem; */
	text-indent: 2em;
	margin: .1rem 0;
	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: .28rem;
	color: #666666;
	display: inline-block;
	width: 100%;
}

.page_content ul li:hover,
.page_content ul li.active {
	/* border-color: var(--pm-c); */
}

.page_content ul li:hover a,
.page_content ul li.active a {
	color: var(--pm-c);
}

.page_content .page_rank li {
	width: auto;
	margin-left: 0;
}

/* 搜索页 */
.search_total {
	display: block;
	font-size: .24rem;
	color: #999999;
	line-height: .6rem;
	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.84rem;
	height: 2.12rem;
	margin: 0 auto;
	background: url(../images/404.png) no-repeat center/contain;
}

.page-error .page-500 {
	width: 3.84rem;
	height: 2.12rem;
	margin: 0 auto;
	background: url(../images/500.png) no-repeat center/contain;
}

.page-error p {
	font-size: .24rem;
	color: #999999;
	/* letter-spacing: .02rem; */
	margin: .36rem auto .6rem;
}

.page-error a.go-home {
	width: 1.94rem;
	height: .64rem;
	background: #F9F9F9;
	border-radius: .12rem;
	line-height: .64rem;
	text-align: center;
	font-size: .24rem;
	color: #666666;
	display: inline-block;
}


/* 首页 */
/* 模块 */
.module {
	padding: .3rem;
	box-sizing: border-box;
	background: #FFFFFF;
}

.w50 {
	width: 48%;
}

.w50:first-of-type {
	margin-right: 3%;
}

.index_slider {
	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 .thum {
	display: inline-block;
	width: 100%;
	height: 4.2rem;
	position: relative;
	border-radius: .2rem;
	overflow: hidden;
}

.index_slider .slider_item .thum .title {
	width: 100%;
	height: .64rem;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 0rem 0rem .2rem .2rem;
	line-height: .64rem;
	padding: 0 .4rem;
	font-size: .28rem;
	text-align: center;
	color: #fff;
	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_top_news .item .thumb{
	width: 2.24rem;
	height: 1.52rem;
	border-radius: .12rem;
}

.index_top_news .item .title{
	font-weight: bold;
	font-size: .28rem;
	color: #333333;
	margin-bottom: .2rem;
}

.index_top_news .item .desc{
	font-size: .24rem;
	color: #666666;
	margin-bottom: .2rem;
}
.index_top_news .item .box span{
	font-size: .24rem;
	color: #999;
}

/* 高分游戏 */
.index_game_evaluation .item {
	border-radius: .08rem;
	border: .02rem solid #E4F5E7;
	padding: .3rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	margin-top: .18rem;
}

.index_game_evaluation .item .icon {
	width: 1.2rem;
	height: 1.2rem;
	border-radius: .2rem;
	margin-right: .2rem;
}

.index_game_evaluation .item .score {
	margin-left: .2rem;
	width: 1.2rem;
	height: .52rem;
	background: #EBFCEF;
	border-radius: 1.2rem;
	line-height: .52rem;
	text-align: center;
	color: var(--pm-c);
}

.index_game_evaluation .item .score span {
	display: inline-block;
	margin-left: .08rem;
	font-weight: 400;
	font-size: .24rem;
	color: var(--pm-c);
}

.index_game_evaluation .item .type {
	margin-top: .12rem;
}

.index_game_evaluation .item .type span:first-of-type {
	margin-right: .2rem;
}

/* 最新资讯 */
.index_game_gl .item {
	background: #F6FAF7;
	padding: .52rem .32rem .42rem .5rem;
	box-sizing: border-box;
	position: relative;
	text-align: center;
	margin-bottom: .48rem;
	margin-top: .26rem;
}

.index_game_gl .item::before {
	content: '';
	display: inline-block;
	width: 1.06rem;
	height: 1.16rem;
	position: absolute;
	top: 0rem;
	left: 0rem;
	background: url(../images/index_new_icon.png) no-repeat center / contain;
	background-size: 100%;
}

.index_game_gl .item .title {
	font-weight: bold;
	font-size: .3rem;
	margin-bottom: .36rem;
}

.index_game_gl li {
	padding-left: .38rem;
	margin: 0;
	padding-bottom: .4rem;
	position: relative;
}

.index_game_gl li::before {
	content: '';
	display: inline-block;
	width: .16rem;
	height: .16rem;
	border: .02rem solid var(--pm-c);
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: .14rem;
	left: 0rem;
	box-sizing: border-box;
	z-index: 1;
}

.index_game_gl li::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: .24rem;
	left: .06rem;
	width: .02rem;
	height: 100%;
	background-color: #EDEDED;
}

.index_game_gl li:last-of-type::after {
	display: none;
}

.index_game_gl li:last-of-type {
	padding-bottom: 0;
}

/* 游戏推荐 */
.index_player_recommend .item .icon {
	width: 1.48rem;
	height: 1.48rem;
	border-radius: .24rem;
}

.index_player_recommend .item .title {
	margin-bottom: .1rem;
}

.index_player_recommend .item .down {
	display: inline-block;
	width: 1.04rem;
	height: .48rem;
	line-height: .48rem;
	text-align: center;
	border: .02rem solid var(--pm-c);
	border-radius: .08rem;
	font-size: .24rem;
	color: var(--pm-c);
	margin-top: .12rem;
}

/* 游戏资讯 */
/* 小编推荐 */
.index_game_news .item:first-of-type {
	margin-top: .42rem;
}

.index_game_news .item .thumb {
	width: 2.3rem;
	height: 1.7rem;
	border-radius: .12rem;
	margin-right: .26rem;
}

.index_game_news .item .desc {
	line-height: .48rem;
}

.index_game_news .item .label {
	height: .44rem;
	background: #F9F9F9;
	border-radius: .04rem;
	line-height: .44rem;
	padding: 0 .16rem;
	box-sizing: border-box;
	font-size: .24rem;
	color: #999999;
	margin-right: .12rem;
}








.index_edit_recommend .item {
	height: 1.22rem;
	margin-top: .4rem;
	padding-left: 1.58rem;
	background: url(../images/index_recommend_bg.png) no-repeat left / contain;
	background-size: 1.36rem 1.22rem;
}

.index_edit_recommend .item .title {
	letter-spacing: .02rem;
}

.index_edit_recommend .item .desc {
	line-height: .6rem;
	letter-spacing: .02rem;
	margin-top: .1rem;
}

/* 手游专辑 */
.index_game_album .item {
	background: #FFFBF6;
	height: 1.16rem;
	margin-top: .22rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .28rem;
	box-sizing: border-box;
}

.index_game_album .item:nth-of-type(3n - 1){
    background: #F5F8FF;
}

.index_game_album .item:nth-of-type(3n){
    background: #FFF8F8;
}


.index_game_album .item .game_box {
	display: flex;
	align-items: center;
	position: relative;
	width: 1.4rem;
}

.index_game_album .item .icon {
	width: .56rem;
	height: .56rem;
	border-radius: 50%;
	border: .04rem solid #FFFFFF;
	position: absolute;
}

.index_game_album .item .icon:nth-of-type(1) {
	left: 0rem;
}

.index_game_album .item .icon:nth-of-type(2) {
	left: .42rem;
}

.index_game_album .item .icon:nth-of-type(3) {
	left: .84rem;
}

.index_game_album .item .title {
	margin-left: .2rem;
	font-weight: bold;
	font-size: .3rem;
}

.index_game_album .item:nth-of-type(3n - 2) .title {
	color: #FFAB44 ;
}

.index_game_album .item:nth-of-type(3n - 1) .title {
	color: #5C93FF;
}

.index_game_album .item:nth-of-type(3n) .title {
	color: #FB7C7C;
}

.index_game_album ul li{

}
.index_game_album ul li .label{
	margin-right: .2rem;
	font-size: .24rem;
	color: #999999;
}
.index_game_album ul li .down{
	display: inline-block;
	width: .48rem;
	height: .2rem;
	line-height: .2rem;
	margin-left: .2rem;
	background: url(../images/module_more.png) no-repeat center / contain;
	background-size: 100%;
}

/* 更多游戏 */
.index_game .module-title {
	margin-bottom: 1.06rem;
}

.index_game .uk-grid-small>.uk-grid-margin {
	margin-top: 1.2rem;
}

.index_game .item {
	background: linear-gradient( 0deg, #F2FFF5 0%, #FFFFFF 100%);
	border: .02rem solid #F7FCF7;
	padding: 1.2rem .3rem .46rem;
	box-sizing: border-box;
	position: relative;
	text-align: center;
}

.index_game .item .icon {
	width: 1.6rem;
	height: 1.6rem;
	border-radius: .4rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -0.6rem;
}

.index_game .item .title {
	font-size: .28rem;
	color: #000000;
	line-height: .72rem;
	margin-top: .18rem;
}

.index_game .item .type {
	line-height: .48rem;
	margin-bottom: .16rem;
}

.index_game .item .down {
	display: inline-block;
	width: 1.8rem;
	height: .56rem;
	background: var(--pm-c);
	border-radius: 1rem;
	line-height: .56rem;
	text-align: center;
	font-size: .24rem;
	color: #fff;
	margin-top: .4rem;
}

/* 手游排行 */
.index_game_rank .rank_top {
	margin-top: .42rem;
	height: 2.3rem;
	padding: .32rem .4rem .38rem .44rem;
	box-sizing: border-box;
	position: relative;
	background: url(../images/bg_rank_1.png) no-repeat center / contain;
}

.index_game_rank .rank_top::before {
	content: '';
	display: inline-block;
	width: 1.84rem;
	height: 1.82rem;
	position: absolute;
	right: .4rem;
	bottom: 0;
	background: url(../images/trophy.png) no-repeat center / contain;
}

.index_game_rank .rank_top .rank_title {
	font-weight: bold;
	font-size: .32rem;
	color: #FFFFFF;
	line-height: .72rem;
	margin-bottom: .2rem;
}

.index_game_rank .rank_top .btn {
	display: inline-block;
	width: 1.8rem;
	height: .6rem;
	border-radius: .52rem;
	line-height: .6rem;
	text-align: center;
	font-size: .24rem;
	color: #4ED1EB;
	background: #FFFFFF;
}

.index_game_rank li {
	margin-top: .54rem;
	position: relative;
}

.index_game_rank li .wrap {
	display: none;
}

.index_game_rank li:nth-child(-n+3) .wrap {
	display: block;
}

.index_game_rank li:nth-child(-n+3)  .item {
	display: none;
}

.index_game_rank li .order {
	display: inline-block;
	text-align: center;
	font-weight: bold;
	font-size: .28rem;
	color: #D3D3D3;
	margin-right: .2rem;
	background: transparent;
}

.index_game_rank li:nth-of-type(-n+3) .order {
	width: .88rem;
	height: .48rem;
	background: #4ED1EB;
	font-size: .24rem;
	color: #FFFFFF;
	border-radius: .3rem 0px .2rem 0px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 111;
}

.index_game_rank li:nth-of-type(-n + 3) .order::before {
	content: "NO.";
	font-size: .24rem;
	color: #FFFFFF;
}

.index_game_rank li .down {
	width: 1.2rem;
	height: .52rem;
	line-height: .52rem;
	font-size: .24rem;
	color: #fff;
	background: url(../images/rank_down1.png) no-repeat right / contain;
	margin-left: .2rem;
	text-align: center;
}

.index_game_rank li .type {
	margin-left: .2rem;
}

.index_game_rank li .label {
	display: inline-block;
	font-size: .24rem;
	color: #888888;
	box-sizing: border-box;
}

.index_game_rank li .label:not(:first-of-type) {
	margin-left: .08rem;
}

.index_game_rank .wrap .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .2rem;
	margin-right: .2rem;
}

.index_game_rank .wrap .desc {
	line-height: .48rem;
	margin-top: .2rem;
}

.index_game_rank li .item {
	display: flex;
	align-items: center;
}

.index_game_rank li:last-of-type .info {
	padding-bottom: 0;
	border-bottom: none;
}

/* 首页 end*/





/* 手游专辑 */
.list_album .game_banner {
	margin-top: 0;
}

.zj_menu_nav {
	display: flex;
	align-items: center;
	justify-content: center;
}

.zj_menu_nav li {
	width: 2rem;
	height: .6rem;
	background: #F9F9F9;
	border-radius: .6rem;
	line-height: .6rem;
	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 a {
	color: var(--pm-c);
}

.list_album_wrap .wrap {
	background: linear-gradient(0deg, #F2FFF5 0%, #FFFFFF 100%);
	border: .02rem solid #F7F9FC;
	padding: .4rem .24rem .46rem;
	box-sizing: border-box;
	margin-top: .3rem;
}

.list_album_wrap .wrap .wrap_title {
	font-weight: bold;
	font-size: .28rem;
	line-height: .72rem;
}

.list_album_wrap .wrap .text {
	font-size: .24rem;
	color: #888888;
	line-height: .6rem;
}

.list_album_wrap .wrap .btn {
	display: inline-block;
	width: 1.24rem;
	height: .56rem;
	background: linear-gradient(180deg, #28C565 0%, #A1E791 100%);
	border-radius: 1.4rem;
	line-height: .56rem;
	text-align: center;
	font-size: .24rem;
	color: #FFFFFF;
	margin-left: .2rem;
}

.list_album_wrap .wrap .tag {
	display: inline-block;
	width: .56rem;
	height: 1.66rem;
	background: url(../images/album_tag.png) no-repeat center / contain;
	background-size: 100%;
	margin-right: .3rem;
}

.list_album_wrap .item {
	width: 1.22rem;
	text-align: center;
}

.list_album_wrap .item:not(:first-of-type) {
	margin-left: .2rem;
}

.list_album_wrap .item .icon {
	width: 1rem;
	height: 1rem;
	border-radius: .24rem;
	margin: 0 auto .16rem;
}

.list_album_wrap .item .title_ {
	font-size: .24rem;
}

/* 手游专辑 end*/

/* 游戏礼包 */
.game_package_list .item {
	background: linear-gradient(0deg, #F2FFF5 0%, #FFFFFF 100%);
	border: .02rem solid #F7F9FC;
	padding: .4rem .3rem .34rem;
	box-sizing: border-box;
}

.game_package_list .item:not(:first-of-type) {
	margin-top: .2rem;
}

.game_package_list .item .wrap_title {
	font-weight: bold;
	font-size: .28rem;
	color: #222222;
	line-height: .6rem;
	margin-bottom: .3rem;
}

.game_package_list .item .btn {
	width: 1.4rem;
	height: .6rem;
	background: #E6FBEA;
	border-radius: 1.2rem;
	line-height: .6rem;
	display: inline-block;
	margin-left: .2rem;
	font-size: .24rem;
	color: var(--pm-c);
	text-align: center;
}

.game_package_list .item .icon {
	width: 1.2rem;
	height: 1.2rem;
	border-radius: .3rem;
	margin-right: .2rem;
}

.game_package_list .item .desc {
	line-height: .6rem;
	color: #888888;
}

/* 游戏礼包 end*/

/* 游戏列表 */
.list_game_wrap .item {
	background: linear-gradient(0deg, #F2FFF5 0%, #FFFFFF 100%);
	border: .02rem solid #F7F9FC;
	padding: .34rem .28rem;
	box-sizing: border-box;
	margin-top: .22rem;
	display: flex;
	align-items: center;
}

.list_game_wrap .item:first-of-type {
	margin-top: .4rem;
}

.list_game_wrap .item .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .3rem;
	margin-right: .22rem;
}

.list_game_wrap .item .title {
	font-size: .28rem;
	color: #222222;
	line-height: .6rem;
}


.list_game_wrap .item .type {
	line-height: .6rem;
}

.list_game_wrap .item .down {
	display: inline-block;
	width: 1.6rem;
	height: .6rem;
	background: #EBFCEF;
	border-radius: 1.2rem;
	line-height: .6rem;
	text-align: center;
	font-size: .24rem;
	color: var(--pm-c);
	margin-left: .2rem;
}

/* 游戏列表 end*/

/* 资讯列表 */
.list_news_wrap .item {
	border-radius: .08rem;
	border: .02rem solid #F2F7FF;
	padding: .34rem .2rem .44rem .26rem;
	box-sizing: border-box;
	margin-top: .2rem;
}

.list_news_wrap .item .title {
	font-weight: bold;
	font-size: .28rem;
}

.list_news_wrap .item .btn {
	display: inline-block;
	width: 1.28rem;
	height: .48rem;
	background: #E6FBEA;
	border-radius: 1rem;
	line-height: .48rem;
	text-align: center;
	font-size: .24rem;
	color: var(--pm-c);
	margin-left: .2rem;
}

.list_news_wrap .item .thumb {
	width: 2.2rem;
	height: 1.56rem;
	border-radius: .08rem;
	margin-right: .24rem;
}

.list_news_wrap .item .desc {
	line-height: .5rem;
	color: #888888;
	margin-bottom: .1rem;
}

/* 资讯列表 end*/

/* 排行榜大全 */
.rank_banner {
	width: 100%;
	height: 3.56rem;
}

.list_ranks_wrap .wrap {
	margin-top: .6rem;
}

.list_ranks_wrap .wrap .rank_top {
	padding: .3rem 1.4rem .38rem .28rem;
	box-sizing: border-box;
	position: relative;
	margin-bottom: .6rem;
}

.list_ranks_wrap .wrap .rank_top::before {
	content: '';
	display: inline-block;
	width: 1.2rem;
	height: 1.34rem;
	position: absolute;
	right: .2rem;
	top: .36rem;
}

.list_ranks_wrap .wrap .rank_top .rank_title {
	font-weight: bold;
	font-size: .32rem;
	line-height: .6rem;
	margin-bottom: .34rem;
}

.list_ranks_wrap .wrap .rank_top .time {
	display: inline-block;
	height: .48rem;
	border-radius: .52rem;
	line-height: .48rem;
	padding: 0 .18rem;
	text-align: center;
	font-size: .24rem;
	color: #FFFFFF;
	box-sizing: border-box;
}

.list_ranks_wrap .wrap:nth-of-type(4n - 3) .rank_top {
	background: linear-gradient(90deg, #FFF2E8 0%, #FFFFFF 100%);
}

.list_ranks_wrap .wrap:nth-of-type(4n - 3) .rank_top::before {
	background: url(../images/trophy1.png) no-repeat center / contain;
	background-size: 1.2rem 1.34rem;
}

.list_ranks_wrap .wrap:nth-of-type(4n - 3) .time {
	background: #FEA660;
}

.list_ranks_wrap .wrap:nth-of-type(4n - 2) .rank_top {
	background: linear-gradient(90deg, #F0F5FF 0%, #FFFFFF 100%);
}

.list_ranks_wrap .wrap:nth-of-type(4n - 2) .rank_top::before {
	background: url(../images/trophy2.png) no-repeat center / contain;
	background-size: 1.2rem 1.34rem;
}

.list_ranks_wrap .wrap:nth-of-type(4n - 2) .time {
	background: #5180FC;
}

.list_ranks_wrap .wrap:nth-of-type(4n - 1) .rank_top {
	background: linear-gradient(90deg, #FFF3F3 0%, #FFFFFF 100%);
}

.list_ranks_wrap .wrap:nth-of-type(4n - 1) .rank_top::before {
	background: url(../images/trophy3.png) no-repeat center / contain;
	background-size: 1.2rem 1.34rem;
}

.list_ranks_wrap .wrap:nth-of-type(4n - 1) .time {
	background: #FF777D;
}

.list_ranks_wrap .wrap:nth-of-type(4n) .rank_top {
	background: linear-gradient(90deg, #E3FFF5 0%, #FFFFFF 100%);
}

.list_ranks_wrap .wrap:nth-of-type(4n) .rank_top::before {
	background: url(../images/trophy4.png) no-repeat center / contain;
	background-size: 1.2rem 1.34rem;
}

.list_ranks_wrap .wrap:nth-of-type(4n) .time {
	background: #26E5AC;
}

.list_ranks_wrap .item {
	width: 1.4rem;
	text-align: center;
}

.list_ranks_wrap .item:not(:first-of-type) {
	margin-left: .4rem;
}

.list_ranks_wrap .item .icon {
	width: 1rem;
	height: 1rem;
	border-radius: .3rem;
	margin: 0 auto .4rem;
}

.list_ranks_wrap .item:last-of-type .icon {
	background: url(../images/ranks_wrap_icon.png) no-repeat center / contain;
	background-size: 1rem;
}

.list_ranks_wrap .item:last-of-type .icon img {
	width: .5rem !important;
	height: .5rem !important;
}

.list_ranks_wrap .item:last-of-type .title {
	color: #999999;
}

/* 排行榜大全 end*/

/* 排行榜列表 */
.list_rank {
	margin-bottom: .4rem;
}

.list_rank_wrap .item {
	background: linear-gradient(0deg, #F2FFF5 0%, #FFFFFF 100%);
	border: .02rem solid #F7F9FC;
	padding: .4rem .26rem .4rem .2rem;
	box-sizing: border-box;
	margin-top: .24rem;
	display: flex;
	align-items: center;
}

.list_rank_wrap .item .order {
	display: inline-block;
	width: .46rem;
	height: .46rem;
	line-height: .46rem;
	text-align: center;
	font-size: .24rem;
	color: #999999;
	margin-right: .2rem;
	background: url(../images/rank_wrap_order0.png) no-repeat center / contain;
	background-size: 100% 100%;
}

.list_rank_wrap .item:nth-of-type(-n + 3) .order {
	display: inline-block;
	width: .4rem;
	height: .52rem;
	line-height: .52rem;
	text-align: center;
	color: transparent;
}

.list_rank_wrap .item:nth-of-type(1) .order {
	background: url(../images/rank_wrap_order1.png) no-repeat left / contain;
	background-size: 100% 100%;
}

.list_rank_wrap .item:nth-of-type(2) .order {
	background: url(../images/rank_wrap_order2.png) no-repeat left / contain;
	background-size: 100% 100%;
}

.list_rank_wrap .item:nth-of-type(3) .order {
	background: url(../images/rank_wrap_order3.png) no-repeat left / contain;
	background-size: 100% 100%;
}

.list_rank_wrap .item .icon {
	width: 1.32rem;
	height: 1.32rem;
	border-radius: .3rem;
	margin-right: .2rem;
}

.list_rank_wrap .item .title {
	font-weight: bold;
	font-size: .28rem;
	line-height: .48rem;
}

.list_rank_wrap .item .type {
	font-size: .24rem;
	color: #888888;
	line-height: .48rem;
}

.list_rank_wrap .item .down {
	display: inline-block;
	width: 1.2rem;
	height: .56rem;
	background: linear-gradient(180deg, #28C565 0%, #A1E791 100%);
	border-radius: 1.4rem;
	line-height: .56rem;
	text-align: center;
	font-size: .24rem;
	color: #FFFFFF;
	margin-left: .2rem;
}

/* 排行榜列表 end*/

/* 搜索结果 */
.single_game_wrap .item:nth-of-type(2),
.single_news_wrap .item:nth-of-type(2) {
	margin-top: .4rem;
}

/* 搜索结果 end*/

/* 专辑详情 */
.single_album .single_header {
	border-radius: .08rem;
	border: .02rem solid #ACE09E;
	padding: .46rem .2rem 0;
	box-sizing: border-box;
	text-align: center;
}

.single_album .single_header .single_header_title {
	font-weight: bold;
	font-size: .32rem;
	margin-bottom: .44rem;
}

.single_album .single_header .label {
	display: inline-block;
	height: .48rem;
	line-height: .48rem;
	background: #F9F9F9;
	border-radius: 1rem;
	padding: 0 .2rem;
	box-sizing: border-box;
	font-size: .24rem;
	color: #999999;
}

.single_album .single_header .label:not(:first-of-type) {
	margin-left: .2rem;
}

.more_box {
	margin-top: .5rem;
	display: flex;
}

.more_box span {
	font-size: .24rem;
	color: #999999;
}

.more_box .title {
	font-size: .24rem;
	width: 49%;
	margin-bottom: .4rem;
}

.more_box .title:nth-of-type(odd) {
	margin-right: 2%;
}

.more_box .title:nth-of-type(4n - 3) {
	color: #FF7676;
}

.more_box .title:nth-of-type(4n - 2) {
	color: #3ECBDB;
}

.more_box .title:nth-of-type(4n - 1) {
	color: #76AFFF;
}

.more_box .title:nth-of-type(4n) {
	color: #FFB45F;
}

.show_tj {
	background: url('../images/show_tj_bg.png') no-repeat top/contain;
	width: 100%;
	padding: 1.38rem .54rem .56rem;
	box-sizing: border-box;
	margin-top: .44rem;
}

.show_tj .icon {
	width: 1.32rem;
	height: 1.32rem;
	border-radius: 50%;
	margin-right: .22rem;
}

.show_tj .type {
	margin: .08rem 0;
}

.show_tj .type span:first-of-type {
	margin-right: .3rem;
}

.show_tj .down {
	display: inline-block;
	width: 100%;
	height: .6rem;
	line-height: .6rem;
	text-align: center;
	background: linear-gradient(180deg, #28C565 0%, #A1E791 100%);
	border-radius: 1.4rem;
	font-size: .28rem;
	color: #FFFFFF;
	margin-top: .3rem;
}




.album_list .item {
	background: linear-gradient(0deg, #F2FFF5 0%, #FFFFFF 100%);
	border: .02rem solid #F7F9FC;
	padding: .4rem .3rem .4rem;
	box-sizing: border-box;
	position: relative;
	margin-top: .8rem;
}

.album_list .item .order {
	display: inline-block;
	width: 1.24rem;
	height: .48rem;
	background: #CBD3E4;
	border-radius: 0rem 0rem 0rem .4rem;
	line-height: .48rem;
	text-align: center;
	font-weight: bold;
	font-size: .24rem;
	color: #FFFFFF;
	position: absolute;
	right: 0rem;
	top: 0rem;
}

.album_list .item:nth-of-type(2) .order {
	background: #FF6363;
}

.album_list .item:nth-of-type(3) .order {
	background: #FF9763;
}

.album_list .item:nth-of-type(4) .order {
	background: #FFD063;
}

.album_list .item .icon {
	width: 1.32rem;
	height: 1.32rem;
	border-radius: .3rem;
	position: absolute;
	top: -0.38rem;
	left: .3rem;
}

.album_list .item .title {
	padding-left: 1.6rem;
	max-width: 4.2rem;
	font-size: .28rem;
	color: #111111;
}

.album_list .item .type {
	height: .6rem;
	font-size: .24rem;
	color: #888888;
	margin-bottom: .14rem;
	line-height: .6rem;
}

.album_list .item .down {
	display: inline-block;
	width: 1.4rem;
	height: .6rem;
	background: #EBFCEF;
	border-radius: 1.2rem;
	line-height: .6rem;
	text-align: center;
	font-size: .24rem;
	color: var(--pm-c);
	margin-left: .2rem;
}


.single_game_album .item:nth-of-type(2) .title {
	color: #FB7C7C;
}

.single_game_album .item:nth-of-type(3) .title {
	color: #5C93FF;
}

.single_game_album .item:nth-of-type(4) .title {
	color: #FFAB44;
}

.single_game_album .item:nth-of-type(5) .title {
	color: #38D691;
}

.single_game_album .item:nth-of-type(6) .title {
	color: #FF739D;
}

/* 专辑详情 end*/

/* 礼包详情 */
.single_gift .single_header {
	padding: 1.4rem .4rem .46rem;
	border-radius: .08rem;
	border: .02rem solid #ACE09E;
	text-align: center;
	margin-bottom: .4rem;
	box-sizing: border-box;
	margin-top: 1.1rem;
	position: relative;
}

.single_gift .single_header .single_header_title {
	font-weight: bold;
	font-size: .32rem;
	color: #333333;
	margin-bottom: .5rem;
}

.single_gift .single_header .icon {
	width: 1.76rem;
	height: 1.76rem;
	border-radius: .3rem;
	position: absolute;
	top: -0.68rem;
	left: 50%;
	transform: translate(-50%);
}

.single_gift .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_gift .single_header .label:not(:first-of-type) {
	margin-left: .2rem;
}


.single_gift .down-btn {
	margin: .4rem 0;
}


.single_package_list .item:nth-of-type(2) {
	margin-top: .4rem;
}


.package_list .thumb {
	width: 100%;
	height: 4.48rem;
	margin: .34rem 0;
}

.package_list .item {
	border-bottom: .02rem dashed #E5E5E5;
	padding-bottom: .4rem;
}

.package_list .item .icon {
	width: 1.92rem;
	height: 1.36rem;
	margin-right: .2rem;
}

.package_list .item .title {
	display: inline-block;
	padding-left: .62rem;
	background: url(../images/like.png) no-repeat left / contain;
	background-size: .42rem .48rem;
	height: .48rem;
	line-height: .48rem;
	box-sizing: border-box;
}

.package_list .btn {
	display: inline-block;
	width: .52rem;
	height: .52rem;
	background: #5C93FF;
	border-radius: .08rem;
	line-height: .52rem;
	text-align: center;
	font-size: .24rem;
	color: #FFFFFF;
	margin-left: .2rem;
}

.package_list .desc {
	margin-bottom: .3rem;
}

/* 礼包详情 end*/

/* 手游详情 */
.single_game .single_header {
	padding: 1.4rem .4rem .1rem;
	border-radius: .08rem;
	border: .02rem solid #ACE09E;
	text-align: center;
	margin-bottom: .4rem;
	box-sizing: border-box;
	margin-top: 1.1rem;
	position: relative;
}

.single_game .single_header .single_header_title {
	font-weight: bold;
	font-size: .32rem;
	color: #333333;
	margin-bottom: .5rem;
}

.single_game .single_header .icon {
	width: 1.76rem;
	height: 1.76rem;
	border-radius: .3rem;
	position: absolute;
	top: -0.68rem;
	left: 50%;
	transform: translate(-50%);
}

.single_game .single_header .label {
	display: block;
	height: .48rem;
	background: #F9F9F9;
	border-radius: 1rem;
	line-height: .48rem;
	font-size: .24rem;
	color: #999999;
	padding: 0 .1rem;
	box-sizing: border-box;
	text-align: left;
	margin-bottom: .3rem;
}

.single_game .single_header .label:nth-of-type(odd) {
	margin-right: 3%;
}

.single_game .down-btn {
	margin: .4rem 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.64rem;
	height: 4.72rem;
	margin-right: .12rem;
}

.single_game .sliderBox .slide li a {
	width: 100%;
	display: inline-block;
	overflow: hidden;
	position: relative;
	height: auto;
	border-radius: .12rem;
}

.single_game_title {
	height: .64rem;
	line-height: .64rem;
	background: linear-gradient( 90deg, #E0FFE5 0%, #FFFFFF 100%);
	font-weight: bold;
	font-size: .32rem;
	color: var(--pm-c);
	margin-bottom: .16rem;
	margin-top: .3rem;
	padding-left: .34rem;
	border-left: .08rem solid var(--pm-c);
}

.game_info {
	margin-top: .1rem;
}

.game_info p {
	height: .64rem;
	line-height: .64rem;
	font-size: .28rem;
	color: #999;
	box-sizing: border-box;
}

.game_info p .title {
	display: inline-block;
	font-size: .28rem;
	color: #5C93FF;
}

.game_info .uk-width-auto {
	min-width: 50%;
}

/* 手游详情 end*/

/* 资讯详情 */
.single_news .single_header {
	border-radius: .08rem;
	border: .02rem solid #ACE09E;
	margin-bottom: .2rem;
	padding: 28px 5px 30px;
	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;
}

/* 资讯详情 end*/

/* 排行榜详情 */
.single_rank .module {
	padding-top: 0;
}

.single_rank .single_header {
	height: 3.56rem;
	background: url(../images/single_rank_header_bg.png) no-repeat center / contain;
	background-size: 100% 100%;
	text-align: right;
	padding: .6rem 1rem 1.54rem 0;
	box-sizing: border-box;
}

.single_rank .single_header .single_header_title {
	font-weight: bold;
	font-size: .36rem;
	line-height: .72rem;
	text-align: right;
	margin-bottom: .3rem;
	background: linear-gradient(270deg, #58A1F7 0%, #4960DF 100%);
	-webkit-background-clip: text;
	color: transparent;
}

.single_rank .single_header .time {
	display: inline-block;
	width: 3.58rem;
	height: .48rem;
	line-height: .48rem;
	background: url(../images/single_rank_time_bg.png) no-repeat center / contain;
	background-size: 100%;
	font-size: .24rem;
	color: #333333;
	text-align: center;
}

.more_ranks li .title {
	color: #000000;
	padding-left: .46rem;
	background: url(../images/rank_icon.png) no-repeat left / contain;
	background-size: .26rem .28rem;
}

.more_ranks .item_list {
	background: #F9F9F9;
	border-radius: .08rem;
	padding: .32rem .4rem .3rem;
	margin-left: .48rem;
	box-sizing: border-box;
	margin-top: .4rem;
	display: flex;
	align-items: center;
}

.more_ranks .item {
	width: 1.18rem;
	text-align: center;
}

.more_ranks .item:not(:first-of-type) {
	margin-left: .3rem;
}

.more_ranks .item .icon {
	width: .98rem;
	height: .98rem;
	border-radius: 50%;
	margin: 0 auto .2rem;
}

/* 资讯详情 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.12rem;
	height: .6rem;
	line-height: .6rem;
	font-size: .28rem;
	color: #666666;
	padding: 0 .2rem;
	box-sizing: border-box;
	border: none;
	background: url('../images/index_tab_bg.png') no-repeat center/contain;
}

.kaifu_menu button span {
	display: inline-block;
	width: 100%;
	background: url('../images/kaifu_drop.png') no-repeat right/contain;
	background-size: .2rem;
	padding-right: .24rem;
	text-align: left;
}

.kaifu_menu button:hover span {
	background: url('../images/kaifu_drop_active.png') no-repeat right/contain;
	background-size: .2rem;
	color: #5C93FF;
}

.kaifu_menu .uk-dropdown {
	padding: .2rem;
}

.kaifu .desc {
	font-size: .24rem;
	color: #999999;
	line-height: .6rem;
	margin-top: .26rem;
}

.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 {
	background: linear-gradient(0deg, #FFFFFF 0%, #F8FAFF 100%);
	border: .02rem solid #F7F9FC;
	padding: .36rem .28rem .34rem;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	margin-top: .2rem;
}

.kaifu_wrap .item .icon {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .3rem;
	margin-right: .2rem;
}

.kaifu_wrap .item .title {
	max-width: calc(100% - .7rem);
	padding-right: .1rem;
	box-sizing: border-box;
	font-size: .28rem;
	color: #222222;
}

.kaifu_wrap .item .down {
	display: inline-block;
	width: 1.6rem;
	height: .6rem;
	background: #EDF3FF;
	border-radius: 1.2rem;
	line-height: .6rem;
	text-align: center;
	font-size: .28rem;
	color: #5C93FF;
	margin-left: .1rem;
}

.kaifu_wrap .item .type {
	margin: .1rem 0;
}

.kaifu_wrap .item .score {
	font-weight: 400;
	font-size: .24rem;
}

/* 开服 end*/