:root {
	--pm-c: #FF7129;
}

/*隐藏类*/
.hide {
	display: none !important;
}

/*隐藏遮罩*/
#aq-model {
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 999;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #fff url(/themes/default/404.png) no-repeat center;
}

/*应用信息样式*/
#app_info {
	margin: 20px 0
}

#app_info li {
	display: inline-block;
    width: 32.9%;
    color: #666666;
    font-size: 13px;
    margin: 10px 0;
}

#app_info li b {
	cursor: pointer;
    color: #666666;
    font-size: 13px;
    font-weight: normal;
}
#app_info li .quanxian{
	color: var(--pm-c);
}

#app_info_cover {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	text-align: center;
	z-index: 9999
}

#app_info_cover .app_info_main {
	background: #fff;
	width: 520px;
	margin: auto;
	margin-top: 100px;
	border-radius: 8px;
	overflow: hidden;
}

#app_info_cover .app_info_title {
	background: #5CA8F6;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 50px;
}

#app_info_cover .app_info_body {
	padding: 20px;
	height: 320px;
	overflow-y: scroll;
	text-align: left;
}

#app_info_cover .app_info_close {
	margin: 20px;
	font-size: 17px;
	color: #fff;
	background: #5CA8F6;
	line-height: 48px;
	border-radius: 20px;
	cursor: pointer;
	display: block;
	font-weight: bold;
	margin-top: 30px;
}

@media (max-width: 760px) {
	#app_info li {
		width: 100%;
		margin-top: 10px;
	}

	#app_info_cover .app_info_main {
		width: 98%;
	}

	#app_info_cover .app_info_close {
		font-size: 16px;
		line-height: 42px;
	}
}

/* 禁用iPhone中Safari的字号自动调整 */
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	/* 解决IOS默认滑动很卡的情况 */
	-webkit-overflow-scrolling: touch;
}

/*修改UIKIT框架自带样式*/
body,
html {
	padding: 0;
	margin: 0;
	font-family: 'Microsoft YaHei';
}

body {
	background-color: #FFFAF8;
}

.uk-container {
	box-sizing: border-box;
	padding: 0px;
}

a,
a:hover {
	text-decoration: none;
}

ol,
ul,
p {
	padding: 0;
	margin: 0;
	list-style: none;
}

/*图片高清*/
img {
	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;
}

/*边框样式*/
.b-a {
	border: 1px solid #F4F4F4 !important;
}

.b-b {
	border-bottom: 1px solid #F4F4F4 !important;
}

.b-t {
	border-top: 1px solid #F4F4F4 !important;
}

.b-l {
	border-left: 1px solid #F4F4F4 !important;
}

.b-r {
	border-right: 1px solid #F4F4F4 !important;
}

/* 虚线上边框 */
.b-t-dashed {
	border-top: 1px dashed #F4F4F4 !important;
}

/* 虚线下边框 */
.b-b-dashed {
	border-bottom: 1px dashed #F4F4F4 !important;
}

/* 内边距  */
.p-a-0 {
	padding: 0px;
}

.p-a-5 {
	padding: 5px;
}

.p-a-10 {
	padding: 10px;
}

.p-a-15 {
	padding: 15px;
}

.p-a-20 {
	padding: 20px;
}

.p-a-25 {
	padding: 25px;
}

.p-a-30 {
	padding: 30px;
}

/* 内上边距 */
.p-t-0 {
	padding-top: 0px !important;
}

.p-t-5 {
	padding-top: 5px;
}

.p-t-10 {
	padding-top: 10px;
}

.p-t-15 {
	padding-top: 15px;
}

.p-t-20 {
	padding-top: 20px;
}

.p-t-30 {
	padding-top: 30px;
}

/* 内下边距 */
.p-b-0 {
	padding-bottom: 0px !important;
}

.p-b-5 {
	padding-bottom: 5px;
}

.p-b-10 {
	padding-bottom: 10px;
}

.p-b-15 {
	padding-bottom: 15px;
}

.p-b-20 {
	padding-bottom: 20px;
}

.p-b-30 {
	padding-bottom: 30px !important;
}

/* 内右边距 */
.p-r-0 {
	padding-right: 0px;
}

.p-r-5 {
	padding-right: 5px;
}

.p-r-10 {
	padding-right: 10px;
}

.p-r-15 {
	padding-right: 15px;
}

.p-r-20 {
	padding-right: 20px;
}

.p-r-30 {
	padding-right: 30px;
}

/* 内左边距 */
.p-l-0 {
	padding-left: 0px;
}

.p-l-5 {
	padding-left: 5px;
}

.p-l-10 {
	padding-left: 10px;
}

.p-l-15 {
	padding-left: 15px;
}

.p-l-20 {
	padding-left: 20px;
}

.p-l-30 {
	padding-left: 30px;
}

/*圆角样式*/
.b-r-4 {
	border-radius: 4px !important;
}

.b-r-6 {
	border-radius: 6px !important;
}

.b-r-8 {
	border-radius: 8px !important;
}

.b-r-10 {
	border-radius: 10px !important;
}

.b-r-12 {
	border-radius: 12px !important;
}

.b-r-24 {
	border-radius: 24px !important;
}

/* 上外边距 */
.m-t-0 {
	margin-top: 0px !important;
}

.m-t-5 {
	margin-top: 5px !important;
}

.m-t-10 {
	margin-top: 10px !important;
}

.m-t-15 {
	margin-top: 15px !important;
}

.m-t-20 {
	margin-top: 20px !important;
}

.m-t-25 {
	margin-top: 25px !important;
}

.m-t-30 {
	margin-top: 30px !important;
}

.m-t-35 {
	margin-top: 35px !important;
}
.m-t-40 {
	margin-top: 40px !important;
}
.m-t-50 {
	margin-top: 50px !important;
}

/* 下外边距 */
.m-b-0 {
	margin-bottom: 0px !important;
}

.m-b-5 {
	margin-bottom: 5px !important;
}

.m-b-10 {
	margin-bottom: 10px !important;
}

.m-b-15 {
	margin-bottom: 15px !important;
}

.m-b-20 {
	margin-bottom: 20px !important;
}

.m-b-25 {
	margin-bottom: 25px !important;
}

.m-b-30 {
	margin-bottom: 30px !important;
}
.m-b-40 {
	margin-bottom: 40px !important;
}

/* 左外边距 */
.m-l-0 {
	margin-left: 0px !important;
}

.m-l-5 {
	margin-left: 5px !important;
}

.m-l-10 {
	margin-left: 10px !important;
}

.m-l-15 {
	margin-left: 15px !important;
}

.m-l-20 {
	margin-left: 20px !important;
}

.m-l-25 {
	margin-left: 25px !important;
}

.m-l-30 {
	margin-left: 30px !important;
}

.m-l-40 {
	margin-left: 40px !important;
}


/* 右外边距 */
.m-r-0 {
	margin-right: 0px !important;
}

.m-r-5 {
	margin-right: 5px !important;
}

.m-r-10 {
	margin-right: 10px !important;
}

.m-r-15 {
	margin-right: 15px !important;
}

.m-r-20 {
	margin-right: 20px !important;
}

.m-r-30 {
	margin-right: 30px !important;
}
.m-r-40 {
	margin-right: 40px !important;
}

/* 溢出2行省略号 */
.line-2 {
	display: -webkit-box !important;
	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%);
}

.before-center {
	position: relative;
}

.before-center::before {
	content: "";
	position: absolute;
}

.after-center {
	position: relative;
}

.after-center::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
}

/* 分页 */
.pagination {
	margin: 92px 0 70px !important;
	text-align: center;
}

.pagination .page-item {
	display: inline-block;
	margin: 0 5px;
	font-size: 14px;
	border: 1px solid #F4F4F4;
	color: #666;
	background: #fff;
}

.pagination .active span {
	background: var(--pm-c);
	color: #fff;
}

.pagination .page-item:hover {
	background: var(--pm-c);
	color: #fff;
}

.pagination .page-item .page-link {
	display: block;
	padding: 3px 10px;
	border: 1px solid transparent;
}

.pagination li a {
	display: inline-block;
	color: #666;
}

.pagination li a:hover {
	background: var(--pm-c);
	color: #fff;
	border: 1px solid var(--pm-c) !important;
}
.score{
	font-weight: bold;
	font-size: 14px;
	color: var(--pm-c);
	/* background: url(../images/score.png) no-repeat left / contain; */
	/* padding-left: 18px; */
}
/* 评分 */
.star {
	height: 10px;
	width: 50px;
	display: inline-block;
	background: url(../images/star.png) repeat-x left / contain;
	vertical-align: text-top;
	background-size: 10px;
}

.star:before {
	content: "";
	display: block;
	background: url(../images/star_.png) repeat-x left / contain;
	height: 10px;
	background-size: 10px;
}

.star-1:before {
	width: 10px;
}

.star-2:before {
	width: 20px;
}

.star-3:before {
	width: 30px;
}

.star-4:before {
	width: 40px;
}

.star-5:before {
	width: 50px;
}

/* .star1 {
	height: 22px;
	width: 110px;
	display: inline-block;
	background: url(../images/icon-star-bg1.png) repeat-x 22px / contain;
	vertical-align: sub;
}

.star1:before {
	content: "";
	display: block;
	background: url(../images/icon-star1.png) repeat-x 22px / contain;
	height: 22px;
}

.star1-1:before {
	width: 22px;
}

.star1-2:before {
	width: 44px;
}

.star1-3:before {
	width: 66px;
}

.star1-4:before {
	width: 88px;
}

.star1-5:before {
	width: 110px;
} */

/*面包屑导航*/
.crumbs {
	font-size: 12px;
	color: #999999;
	height: 30px;
	line-height: 30px;
	box-sizing: border-box;
	/* position: relative; */
	/* margin: 20px 0; */
	/* height: 40px; */
	/* line-height: 40px; */
	/* padding-left: 18px; */
}
/* .crumbs::before{
	position: absolute;
	content: "";
	width: 14px;
	height: 14px;
	left: 0px;
	background: url(../images/location.png) no-repeat left/contain;
} */
.crumbs a {
	display: inline-block;
	/* position: relative; */
	font-size: 12px;
	color: #999999;
}

.crumbs a::after {
	content: ">";
}

.crumbs a:last-child:after {
	content: "";
}
.crumbs .toMyself{
	color: #4D4D4D ;
}

/* 平台 安卓 苹果 图标显示 */
.platform i{
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 3px;
	padding: 2px;
	box-sizing: border-box;
	margin: 0;
}
.platform .az{
	/* background: #1DC86A url(../images/az.png) no-repeat center / contain; */
	background-size: 12px;
}
.platform .az_{
	/* background: #BFBFBF url(../images/az.png) no-repeat center / contain; */
	background-size: 12px;
}
.platform .ios{
	/* background: var(--pm-c) url(../images/ios.png) no-repeat center / contain; */
	background-size: 12px;
}
.platform .ios_{
	/* background: #BFBFBF url(../images/ios.png) no-repeat center / contain; */
	background-size: 12px;
}

/* 公共标题 */
.module-title {
	height: 32px;
	line-height: 32px;
	border-bottom: 1px solid #F3F3F3;
	box-sizing: border-box;
}

.module-title .title {
	width: 108px;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 14px;
	color: #FFFFFF;
	/* letter-spacing: 2px; */
	/* line-height: 24px; */
	padding-left: 18px;
	background: url('../images/module_title_bg.png') no-repeat left/contain;
	background-size: 108px 32px;
}

.module-title .more {
	display: block;
	font-size: 12px;
	color: #999999;
	margin-left: 5px;
}

/* .module-title .title::before {
	display: inline-block;
	width: 22px;
	height: 22px;
	background: url('../images/module_title_icon.png') no-repeat left/contain;
	left: 0;
} */

/*默认图标尺寸*/
.item .icon {
	margin: 0 auto;
	overflow: hidden;
}

.item .icon img {
	width: 100%;
	height: 100%;
}

/* 默认缩略图尺寸 */
.item .thumb img,
.video img {
	width: 100%;
	height: 100%;
}

.item .thumb a,
.item .icon a,
.video 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: 14px;
	color: #333;
	display: block;
}

.info .title:hover,
.title_:hover {
	color: var(--pm-c);
}

.info .text,
.info .time {
	font-size: 12px;
	color: #999;
}

.title {
	display: block;
	font-size: 14px;
	color: #333333;
}
.title_{
	color: #666;
	display: block;
	font-size: 14px;
}

.text,
.time,
.type,
.desc,
.size,
.num {
	font-size: 12px;
	color: #999;
}

/* list 样式 */
.list-container li {
	margin-top: 16px;
}

.list-container li .title {
	font-size: 14px;
	color: #333333;
}

/* .list-container li .title::before {
	display: inline-block;
	left: 0;
	width: 6px;
	height: 6px;
	background-color: var(--pm-c);
	border-radius: 50%;
} */

.list-container li .time {
	font-size: 12px;
	color: #999;
	margin-left: 5px;
}

/* 图标 */
.list-container li .dot {
	display: block;
	width: 14px;
	height: 16px;
	margin-right: 10px;
	background: url('../images/home_zj_icon.png') no-repeat center/contain;
}
.list-container li:hover .dot{
	background: url('../images/home_zj_icon_.png') no-repeat center/contain;
}

/* 圆点 */
.list-container li .dot_ {
	display: block;
	width: 5px;
	height: 5px;
	background: #D9D9D9;
	/* border-radius: 50%; */
	margin-right: 12px;
}
.list-container li .dot1{
	display: block;
	width: 6px;
	height: 6px;
	background: #FF9158;
	border-radius: 10px;
	margin-right: 14px;
}

/* 类别 */
.list-container li .tag {
	width: 42px;
	height: 22px;
	line-height: 20px;
	border-radius: 4px;
	border: 1px solid var(--pm-c);
	text-align: center;
	font-size: 12px;
	color: var(--pm-c);
	margin-right: 10px;
	box-sizing: border-box;
}
.list-container li .tag_{
	font-size: 12px;
	color: #999999;
}
.list-container li .tag_::after{
	content: '|';
	display: inline-block;
	color: #999999;
	margin: 0 8px;
}
/* .list-container li .tag::after{
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	background: var(--pm-c);
	border-radius: 50%;
	margin-left: 5px;
    margin-right: 8px;
	transform: translateY(-50%);
} */
/* 序号 */
.list-container li .order{
	width: 24px;
	text-align: center;
	/* height: 22px; */
	font-weight: bold;
	font-size: 14px;
	color: #DEDEDE;
	margin-right: 14px;
}

/* 公共头部样式 */
/* 首页页面 */
.header{
	background: #FFFFFF;
}
.header .header_top{	
	height: 119px;
	padding: 31px 0 41px;
	/* background: url('../images/header_bg.png') no-repeat center/contain; */
	/* padding: 25px 0; */
	box-sizing: border-box;
}
.header .logo {
	display: block;
	width: 158px;
	height: 100%;
	overflow: hidden;
}

.header .search {
	width: 226px;
	height: 30px;
	border-radius: 4px;
	border: 1px solid #EEEEEE;
	overflow: hidden;
	position: relative;
	/* display: flex;
	align-items: center;
	justify-content: space-between; */
	/* background-color: #ffffff; */
	/* border-radius: 8px; */
	/* margin-left: 25px; */
	box-sizing: border-box;
}

.header .search .search_input {
	border: none;
	outline: medium;
	vertical-align: top;
	width: calc(100% - 40px);
	height: 30px;
    line-height: 30px;
	color: #999999;
	font-size: 12px;
	background-color: #ffffff;
	text-indent: 10px;
	padding: 0 10px;
	box-sizing: border-box;
}

.search-input:-webkit-input-placeholder {
	color: #999999;
}

.search-input:-moz-input-placeholder {
	color: #999999;
}

.search-input:-ms-input-placeholder {
	color: #999999;
}

.header .search .search-btn {
	width: 40px;
	height: 24px;
	border-radius: 4px;
	padding: 0;
	cursor: pointer;
	background: #FF8F56 url(../images/search.png) no-repeat center/contain;
	background-size: 13px;
	position: absolute;
	right: 3px;
	top: 2px;
	border: none;
}

.header .nav{
	position: relative;
	height: 40px;
	line-height: 40px;
	background: linear-gradient( 180deg, #FF935D 0%, #FF7027 100%);
	box-sizing: border-box;
}
.header .nav::before{
	content: "";
	display: inline-block;
	width: 100%;
	height: 9px;
	position: absolute;
	left: 0px;
	bottom: 0px;
	background: url(../images/nav.png) no-repeat center/contain;
}
.header .nav li {
	margin-left: 20px;
	position: relative;
}
.header .nav li:first-of-type{
	margin-left: 0;
}
.header .nav li a{
	display: inline-block;
	font-size: 14px;
	color: #FFFFFF;
	width: 110px;
	text-align: center;	
	text-indent: -10px;
}
.header .nav li.active a,
.header .nav li:hover a {
	/* background: url(../images/nav_bg.png) no-repeat center/contain;
	background-size: 110px 46px; */
	color: #FF7E3D;
	font-weight: bold;
    position: relative;
}
.header .nav li.active::before,
.header .nav li:hover::before{
	content: "";
	display: inline-block;
	background: url(../images/nav_bg.png) no-repeat center/contain;
	width: 109px;
	height: 46px;
	position: absolute;
	bottom: 2px;
	left: 0px;
}

.header .nav li:first-of-type a{
	/* margin-left: 0; */
}

/* 公共尾部样式 */
.footer {
	background-color: #333;
	padding: 33px 0 41px;
	font-size: 12px;
	color: #999;
	text-align: center;
}

.footer span,
.footer a,
.footer p {
	font-size: 14px;
	color: #999;
}
.footer p {
	margin-top: 24px;
}
.footer span:last-child,
.footer a:last-child {
	margin-right: 0;
}

.footer .name {
	color: #ccc;
	margin-bottom: 24px;
	margin-top: 0;
}

.footer .aBox span,
.footer .aBox a {
	margin-right: 6px;
}

.footer .aBox a::after {
	content: '|';
	display: inline-block;
	color: #666;
	margin-left: 15px;
}

.footer .aBox a:last-child::after {
	content: "";
}

.footer .footer_p {
	line-height: 34px;
}

/* 友情链接 */
.index-link{
	margin-bottom: 20px !important;
}
.index-link ul {
	margin-left: -12px;
	margin-top: 10px;
}

.index-link ul li {
	display: inline-block;
	margin-top: 10px;
	margin-left: 12px;
}

.index-link ul li a {
	font-size: 14px;
	color: #999999;
	letter-spacing: 1px;
}

.index-link ul li:hover a {
	color: var(--pm-c) !important;
}

.index-link ul li::after {
	content: '|';
	display: inline-block;
	color: #999999;
	margin-left: 10px;
}
.index-link ul li:last-child::after {
	display: none;
}
/* 侧边栏 */
.sidebar {
	margin-left: 20px;
	width: 360px;
}

/* 详情页公共样式 */
.single .single_title {
	height: 32px;
	background: #F8F8F8;
	line-height: 32px;
	padding-left: 16px;
	font-weight: bold;
	font-size: 14px;
	color: #333333;
	margin-bottom: 18px;
	position: relative;
}
.single .single_title::before{
	content: "";
	display: inline-block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 3px;
	height: 100%;
	background: #FF7129;
}

.single .single_content iframe {
	display: block;
	margin: 0 auto;
	width: 520px;
	height: 320px;
}

.single .single_content p {
	font-size: 14px;
	color: #666666;
	text-indent: 2em;
	line-height: 2.5;
}

.single .single_content p img {
	max-width: 68% !important;
	margin: 20px auto;
	display: block;
}
.single .single_content h2,
.single .single_content h3 {
	height: 32px;
	background: #F8F8F8;
	line-height: 32px;
	padding-left: 16px;
	font-weight: bold;
	font-size: 14px;
	color: #333333;
	margin: 15px 0;
	position: relative;
}
.single .single_content h2::before,
.single .single_content h3::before{
	content: "";
	display: inline-block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 3px;
	height: 100%;
	background: #FF7129;
}

/* 详情下载按钮 */
.single .down-btn .btn {
	position: relative;
	display: block;
	width: 120px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	background: #FFFFFF;
	border-radius: 6px;
	font-weight: bold;
	font-size: 14px;
	cursor: pointer;
}
.single .down-btn .btn a,
.single .down-btn .btn span {
	/* position: relative; */
	font-weight: bold;
	font-size: 14px;
	/* padding-left: 27px; */
	box-sizing: border-box;
}
.single .down-btn .lb{
	margin-bottom: 20px;
}
.single .down-btn .lb span{
	color: #FFA10B;
}
.single .down-btn .xz span{
	color: #FF8336;
}

.single .down-btn .pc {
	background: var(--pm-c);
}

.single .down-btn .sy,
.single .down-btn .mob,
.single .down-btn .xz {
	/* background: url('../images/xz_bg.png') no-repeat center/cover; */
}

.single .down-btn .lb {
	/* background: url('../images/lb_bg.png') no-repeat center/cover; */
}
.single .down-btn .az{
	margin-bottom: 21px;
	/* background: url('../images/az_xz_bg.png') no-repeat center/cover; */
}
.single .down-btn .az span{
	font-weight: bold;
	font-size: 14px;
	color: #FFA10B;
}
.single .down-btn .ios span{
	font-weight: bold;
	font-size: 14px;
	color: #FF8336;
}
.single .down-btn .ios{
	/* background: url('../images/ios_xz_bg.png') no-repeat center/cover; */
}

.single .down-btn .btn:hover .qrcode {
	display: block;
}

.single .down-btn .btn:hover a {
	color: #fff !important;
}

.single .down-btn .btn .qrcode {
	display: none;
	background-color: #fff;
	z-index: 999;
	position: absolute;
	right: 5%;
	top: 120%;
	border-radius: 10px;
	padding: 5px;
	font-size: 12px;
	text-align: center;
	border: 1px solid var(--pm-c);
}

.single .down-btn .btn .qrcode img {
	width: 120px;
	height: 120px;
}

/* .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-image: url('../images/lb_icon.png');
	background-size: 16px;
}

.single .down-btn .xz a,
.single .down-btn .xz span {
	background-image: url('../images/xz_icon.png');
	background-size: 16px;
} */

.single .down-btn .none {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
	-webkit-filter: grayscale(1);
	opacity: .4;
	border: none;
}

/* 404 500 错误页面 */
.page-error {
	background: #FFFFFF;
	border-radius: 5px;
	min-height: 520px;
	margin-bottom: 14px !important;
	/* margin-top: 18px; */
	padding-top: 264px;
}

.page-error .page-404 {
	width: 331px;
	height: 189px;
	margin: 0 auto;
	background: url(../images/404.png) no-repeat center/contain;
}

.page-error .page-500 {
	width: 331px;
	height: 189px;
	margin: 0 auto;
	background: url(../images/500.png) no-repeat center/contain;
}

.page-error p {
	font-size: 14px;
	color: #999999;
	margin: 30px 0;
}

.page-error .go-home {
	display: inline-block;
	width: 102px;
	height: 32px;
	border-radius: 6px;
	border: 1px solid #EEEEEE;
	line-height: 32px;
	font-size: 14px;
	color: #999999;
	text-align: center;
	box-sizing: border-box;
}

/* 单页面样式 */
.page{
	background: #FFFFFF;
	padding: 100px 20px 20px 15px;
	box-sizing: border-box;
	min-height: 720px;
	margin-top: 7px;
	margin-bottom: 13px !important;
}
.page .page-nav{
	border-right: 1px solid #F1F1F1;
	padding-right: 20px;
	width: 232px;
	box-sizing: border-box;
	/* overflow: hidden; */
	margin-right: 40px;
}
.page .page-nav li{
	position: relative;
	margin-top: 12px;
}
.page .page-nav li:first-of-type{
	margin-top: 0;
}
.page .page-nav li::after{
	width: 5px;
	height: 5px;
	background: #D9D9D9;
	border-radius: 50%;
	right: -23px;
}
.page-nav li a{
	display: inline-block;
	width: 100%;
	height: 44px;
	line-height: 44px;
	text-align: center;
	background: #F8F8F8;
	border-radius: 6px;
	font-size: 14px;
	color: #666666;
	text-align: left;
	background: #F8F8F8 url(../images/get_icon.png) no-repeat 180px/contain;
	background-size: 12px 8px;
	padding: 0 18px;
	box-sizing: border-box;
}
.page-nav li:hover::after,
.page-nav li.active::after{
	background: var(--pm-c);
}
.page-nav li:hover a,
.page-nav li.active a{
	background: rgba(255, 233, 221, .8) url(../images/get_icon.png) no-repeat 180px/contain;
	background-size: 12px 8px;
	color: var(--pm-c);
}

.page-content{
	background-color: #fff;
	border-radius: 5px;
	/* padding: 30px; */
	box-sizing: border-box;
	margin-bottom: 30px;
}
.page-content p {
	font-size: 14px;
	color: #666666;
	letter-spacing: 1px;
	text-indent: 2em;
	margin: 15px 0;
	line-height: 36px;
}
.page .page-title {
	height: 32px;
	line-height: 32px;
	background: #F8F8F8;
	font-weight: bold;
	font-size: 14px;
	color: #333333;
	padding-left: 16px;
	position: relative;
	text-align: left;
	text-indent: 0em;
}
.page .page-title::before{
	content: "";
	display: inline-block;
	height: 100%;
	width: 3px;
	background: var(--pm-c);
	position: absolute;
	left: 0px;
	top: 0px;
}
.page .page-title:first-of-type{
	margin-top: 30px;
}
.page-content ul {
	flex-wrap: wrap;
	margin-left: -36px;
}

.page-content ul li {	
	margin-left: 37px;
	margin-bottom: 15px;
}

.page-content ul li a {
	font-size: 14px;
	color: #666666;
	/* letter-spacing: 1px; */
	/* display: inline-block;
	width: 100%; */
}
.page-content ul li:hover,
.page-content ul li:hover a {
	color: var(--pm-c);
	/* border-color: var(--pm-c); */
}

/* 搜索页样式 */
.search_total {
	font-size: 14px;
	color: #999999;
	margin-bottom: 25px;
}
/* 列表页公共样式 */
/* 菜单栏 */
.menu_nav{
	padding-top: 8px;
	/* background: #FFFFFF; */
	/* border-radius: 5px; */
	/* padding: 0px 15px 10px; */
	box-sizing: border-box;
	margin-bottom: 20px;
	margin-left: -10px;
}
.menu_nav li{
	margin-left: 10px;
	margin-top: 12px;
}
.menu_nav li a{
	width: 100px;
	height: 34px;
	text-align: center;
	background: #F8F8F8;
	border-radius: 6px;
	line-height: 34px;
	padding: 0 10px;
	box-sizing: border-box;
	font-size: 14px;
	color: #666666;
	display: inline-block;
}
.menu_nav li.active a,
.menu_nav li:hover a{
	background: #FFE9DD;
	color: var(--pm-c);
}

/* 首页 */
.w380{
	width: 380px;
}
.w345{
	width: 345px;
}
.w354px{
	width: 354px;
}
.module{
	padding: 15px;
	box-sizing: border-box;
	margin-bottom: 20px;
	background: #FFFFFF;
	box-shadow: 0px 4px 4px 0px rgba(213,213,213,0.25);
	margin-bottom: 17px;
}

.home_top_game{
	margin-top: 52px;
	margin-bottom: 16px;
	display: flex;
}
.home_top_game .item{
	width: 108px;
	background: #FFFFFF;
	box-shadow: 0px 4px 4px 0px rgba(213,213,213,0.25);
	padding: 60px 18px 12px;
	box-sizing: border-box;
	text-align: center;
	position: relative;
	margin-left: 13px;
}
.home_top_game .item:first-of-type{
	margin-left: 0;
}
.home_top_game .item .icon{
	width: 68px;
	height: 68px;
	border-radius: 10px;
	position: absolute;
	top: -18px;
}
.home_top_game .item .star{
	margin: 9px 0 8px;
}
.home_top_game .item .down{
	display: block;
	width: 70px;
	height: 28px;
	line-height: 28px;
	text-align: center;
	border-radius: 6px;
	border: 1px solid #F1F1F1;
	font-size: 14px;
	color: #888888;
	box-sizing: border-box;
}

/* 轮播图 */
.home_slide {
	width: 345px;
	margin-bottom: 20px;
}

.home_slide .slider {
	width: 100%;
	/* height: 320px; */
}

.home_slide .slider .slide {
	width: 100%;
	/* height: 270px; */
	margin-left: 0;
	margin-bottom: 24px;
}

.home_slide .slider li.uk-width-1-1 {
	padding-left: 0;
	/* height: 270px;	 */
}

.home_slide .slider li .img {
	width: 100%;
	height: 230px;
	display: block;
	overflow: hidden;
	/* position: relative; */
	margin-bottom: 17px;
}
.home_slide .slider li .img img{
	width: 100% !important;
    height: 230px !important;
    top: 43%;	
}

.home_slide .slider li .title {
	/* position: absolute;
    left: 0px;
    bottom: -10px; */
	font-weight: bold;
	font-size: 14px;
	/* color: #333333; */
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;	
}

.home_slide .slider .slideNav {
	margin-left: 0;
	height: 16px;
	transform: translateY(6px);
	/* position: absolute;
	bottom: 14px;
	right: 16px; */
}

.home_slide .slider .slideNav li {
	margin-right: 5px;
	padding-left: 0;
	height: 100%;
}

.home_slide .slider .slideNav li:last-child {
	margin-right: 0;
}

.home_slide .slider .slideNav li a {
	width: 5px;
	height: 5px;
	background: #D9D9D9;
	display: block;
	border-radius: 50%;
	border: none;
}

.home_slide .slider .slideNav li.uk-active a {
	background-color: var(--pm-c);
}

.home_slide .slider_btn{
	position: relative;
	height: 16px;
	line-height: 16px;
}
.home_slide .slider_btn .btn{
	width: 15px;
	height: 15px;	
	position: absolute;	
	border-radius: 50%;
}
.home_slide .slider_btn .left{
	top: 0px;
	left: 110px;
	background: #F8F8F8 url(../images/slide_btn.png) no-repeat center / contain;
	background-size: 8px;
}
.home_slide .slider_btn .left:hover{
	background: #FFF4EF url(../images/slide_btn_.png) no-repeat center / contain;
	background-size: 8px;
	transform: rotateY(180deg);
}
.home_slide .slider_btn .right{
	top: 0px;
    right: 110px;
	background: #F8F8F8 url(../images/slide_btn.png) no-repeat center / contain;
	background-size: 8px;
	transform: rotateY(180deg);
}
.home_slide .slider_btn .right:hover{
	background: #FFF4EF url(../images/slide_btn_.png) no-repeat center / contain;
	background-size: 8px;
	transform: rotateY(0deg);
}
/* 轮播图 end*/

.home_news .item{
	margin-top: 15px;
}
.home_news .item .thumb{
	width: 115px;
	height: 75px;
	margin-right: 12px;
}
.home_news .item .title{
	font-size: 16px;
}
.home_news .item .desc{
	line-height: 24px;
	margin-top: 5px;
}
.home_news li{
	margin-top: 14px;
}
.home_news li:first-of-type{
	margin-top: 19px;
}


.home_game_news .tab_trigger {
	display: flex;
	justify-content: space-between;
	padding-bottom: 10px;
	border-bottom: 1px solid #F1F1F1;
	box-sizing: border-box;
}
.home_game_news .tab_trigger li{
	width: 93px;
	height: 30px;
	text-align: center;
	background: #F8F8F8;
	border-radius: 6px;
	font-size: 14px;
	color: #666666;
	line-height: 30px;
	position: relative;
	cursor: pointer;
}
.home_game_news .tab_trigger li.active{
	background-color: rgba(255, 233, 221, .5);
	color: var(--pm-c);
}
.home_game_news .tab_trigger li::before{
	position: absolute;
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	background: #D9D9D9;
	border-radius: 50%;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	margin: 2px;
}
.home_game_news .tab_trigger li.active::before{
	background: var(--pm-c);
}
.home_game_news .list-container{
	display: none;
}
.home_game_news .list-container.active{
	display: block;
}
.home_game_news .list-container li{
	margin-top: 22px;
}
.home_game_news .list-container li .icon{
	width: 22px;
	height: 22px;
	border-radius: 6px;
	margin-right: 7px;
}
.home_game_news .list-container li:nth-of-type(6){
	border-bottom: 1px dashed #E5E5E5;
	padding-bottom: 28px;
	margin-bottom: 28px;
}

.home_tj{
	margin-left: 20px;
	background: #FFFFFF;
	box-shadow: 0px 4px 4px 0px rgba(213,213,213,0.25);
	border-radius: 6px;
	padding-right: 20px;
	height: 100%;
    padding-bottom: 20px;
	box-sizing: border-box;
}

.home_tj .module_title {
	height: 32px;
	line-height: 32px;
	box-sizing: border-box;
}

.home_tj .module_title .title {
	width: 108px;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 14px;
	color: #FFFFFF;
	/* letter-spacing: 2px; */
	/* line-height: 24px; */
	padding-left: 18px;
	background: url('../images/home_tj_icon.png') no-repeat left/contain;
	background-size: 108px 32px;
}
.home_tj .module_title .more {
	display: block;
	font-size: 12px;
	color: #999999;
	margin-left: 5px;
}
.home_tj .tj_warp{
	padding-top: 20px;
	padding-left: 20px;
	box-sizing: border-box;
}
.home_tj .uk-grid-small>.uk-grid-margin{
	margin-top: 25px;
}
.home_tj .item .icon{
	width: 46px;
	height: 46px;
	border-radius: 6px;
	margin-right: 10px;
	position: relative;
}
.home_tj .item .icon:hover .btn{
	display: block;
}
.home_tj .item .btn{
	display: none;
	width: 46px;
	height: 46px;
	background: rgba(0,0,0,0.5);
	border-radius: 6px;
	position: absolute;
	left: 0px;
	top: 0px;
}
.home_tj .item .btn .down{
	width: 40px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	background: var(--pm-c);
	border-radius: 4px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
	color: #FFFFFF;
}
.home_tj .item .type{
	margin-top: 5px;
}

.home_tj .tj_title{
	font-size: 14px;
	color: #999999;
	position: relative;
	line-height: 36px;
	margin: 17px 0;
	text-align: center;
}
.home_tj .tj_title::before,
.home_tj .tj_title::after{
	width: 77px;
	height: 1px;
	background-color: #F2F2F2;
}
.home_tj .tj_title::before{	
	left: 40px;
}
.home_tj .tj_title::after{
	right: 40px;
}
.home_tj .thumb{
	width: 164px;
	height: 90px;
}
.home_tj .thumb:first-of-type{
	margin-right: 12px;
}
.home_tj li{
	width: 48%;
}
.home_tj li:nth-of-type(odd){
	width: 47%;
	margin-right: 5%;
}
.home_jx_game{
	padding-bottom: 30px;
}
.home_jx_game .thumb{
	width: 224px;
	height: 329px;
	margin-right: 17px;
}
.home_jx_game .item{
	border: 1px solid #F2F2F2;
	padding: 11px 15px;
	box-sizing: border-box;
}
.home_jx_game .item .title{
	font-size: 16px;
}
.home_jx_game .item .text{
	margin: 15px 0;
}
.home_jx_game .item .label{
	display: inline-block;
	width: 68px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	background: #F8F8F8;
	font-size: 12px;
	color: #999999;
	margin-right: 9px;
}
.home_jx_game .item .icon{
	width: 70px;
	height: 70px;
	border-radius: 10px;
	margin-left: 10px;
}
.home_jx_game .item .down{
	width: 70px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	background: linear-gradient( 180deg, #FF925B 0%, #FF6B20 100%);
	border-radius: 6px;
	font-size: 14px;
	color: #FFFFFF;
}

.home_game .item .icon{
	width: 80px;
	height: 80px;
	border-radius: 10px;
	margin-right: 10px;
}
.home_game .item .title{
	font-weight: bold;
}
.home_game .item .type{
	margin: 7px 0;
	display: inline-block;
}
.home_game .item .down{
	display: block;
	width: 59px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	border-radius: 4px;
	border: 1px solid var(--pm-c);
	font-size: 12px;
	color: var(--pm-c);
	box-sizing: border-box;
}

.home_gift .thumb{
	width: 100%;
	height: 135px;
	margin-top: 12px;
}

.home_game_zj li{
	border-radius: 30px;
	border: 1px solid #F3F3F3;
	padding: 12px 15px 12px 20px;
	box-sizing: border-box;
	margin-top: 12px;
	height: 40px;
}
.home_game_zj li:hover{
	border-color: var(--pm-c);
}
.home_game_zj li .num{
	margin-left: 10px;
}

.w360{
	width: 360px;
}
.home_zx_list .item{
	background: url(../images/home_zxgl_bg.png) no-repeat left / contain;
	background-size: 100%;
	width: 100%;
	position: relative;
	padding-top: 25px;
	padding-right: 9px;
	box-sizing: border-box;
	margin-top: 20px;
}
.home_zx_list .item .tag{
	display: inline-block;
	width: 42px;
	height: 18px;
	line-height: 18px;
	font-weight: bold;
	font-size: 18px;
	color: var(--pm-c);
	position: absolute;
	left: 20px;
    top: 13px;
}
.home_zx_list .item:nth-of-type(1) .tag{
	background: url(../images/home_zxgl_no1.png) no-repeat left / contain;
}
.home_zx_list .item:nth-of-type(2) .tag{
	background: url(../images/home_zxgl_no2.png) no-repeat left / contain;
}
.home_zx_list .item:nth-of-type(3) .tag{
	background: url(../images/home_zxgl_no3.png) no-repeat left / contain;
}
.home_zx_list .item:nth-of-type(4) .tag{
	background: url(../images/home_zxgl_no4.png) no-repeat left / contain;
}
.home_zx_list .item:nth-of-type(-n + 4) .tag{
	color: transparent;
}
/* .home_zx_list .item::before{
	content: "";
	display: inline-block;
	width: 42px;
	height: 18px;
	
	position: absolute;
	left: 20px;
    top: 13px;
}
.home_zx_list .item:nth-of-type(2)::before{
	
}
.home_zx_list .item:nth-of-type(3)::before{
	
}
.home_zx_list .item:nth-of-type(4)::before{
	
} */
.home_zx_list .item .title{
	font-size: 16px;
	padding-left: 98px;
	box-sizing: border-box;
}
.home_zx_list .item .desc{
	line-height: 36px;
	padding-left: 26px;
	box-sizing: border-box;
}


.home_new_list{
	margin-left: 30px;
}
.home_new_list ul{
	margin-top: 20px;
}
.home_new_list ul li{
	margin-top: 17px;
}
.home_new_list .thumb{
	width: 191px;
	height: 98px;
	margin-top: 15px;
}
.home_new_list .thumb:first-of-type{
	margin-right: 12px;
}



.home_h_review .item{
	margin-top: 28px;
	background: #F8F8F8;
	padding: 12px 10px 12px 120px;
	box-sizing: border-box;
	height: 120px;
	position: relative;
}
.home_h_review .item .tj{
	background: url(../images/home_tj_bg.png) no-repeat center / contain;
	width: 108px;
	height: 140px;
	padding: 11px 11px 7px;
	box-sizing: border-box;
	text-align: center;
	position: absolute;
	left: -2px;
	top: -16px;
}
.home_h_review .item .tj .icon{
	width: 87px;
	height: 60px;
	margin-bottom: 3px;
}
.home_h_review .item .tj .tj_title{
	font-size: 12px;
	color: #D89679;
	line-height: 30px;
}
.home_h_review .item .tj .tj_title::before,
.home_h_review .item .tj .tj_title::after{
	width: 22px;
	height: 1px;
	background-color: #F1D0C0;
}
.home_h_review .item .tj .tj_title::before{
	left: 0px;
}
.home_h_review .item .tj .tj_title::after{
	right: 0px;
}
.home_h_review .item .tj .score{
	font-weight: bold;
	font-size: 20px;
}
.home_h_review .item .info .title{
	font-weight: bold;
	margin-bottom: 10px;
}
.home_h_review .item .info .desc{
	line-height: 30px;
}

.home_h_review li .label{
	font-size: 12px;
	color: #EDB094;
	margin-right: 10px;
}
.home_h_review li .score{
	font-weight: bold;
	font-size: 16px;
	color: var(--pm-c);
	margin-right: 15px;
}

.home_jx_app{
	padding-bottom: 30px;
}
.home_jx_app .thumb{
	width: 224px;
	height: 329px;
	margin-right: 17px;
}
.home_jx_app .item{
	border: 1px solid #F2F2F2;
	padding: 11px 15px;
	box-sizing: border-box;
}
.home_jx_app .item .title{
	font-size: 16px;
}
.home_jx_app .item .text{
	margin: 15px 0;
}
.home_jx_app .item .label{
	display: inline-block;
	width: 68px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	background: #F8F8F8;
	font-size: 12px;
	color: #999999;
	margin-right: 9px;
}
.home_jx_app .item .icon{
	width: 70px;
	height: 70px;
	border-radius: 10px;
	margin-left: 10px;
}
.home_jx_app .item .down{
	width: 70px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	background: linear-gradient( 180deg, #FF925B 0%, #FF6B20 100%);
	border-radius: 6px;
	font-size: 14px;
	color: #FFFFFF;
}


.home_app .item .icon{
	width: 80px;
	height: 80px;
	border-radius: 10px;
	margin-right: 10px;
}
.home_app .item .title{
	font-weight: bold;
}
.home_app .item .type{
	margin: 7px 0;
	display: inline-block;
}
.home_app .item .down{
	display: block;
	width: 59px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	border-radius: 4px;
	border: 1px solid var(--pm-c);
	font-size: 12px;
	color: var(--pm-c);
	box-sizing: border-box;
}


.home_game_video .video{
	width: 100%;
	height: 185px;
	margin-top: 12px;
	position: relative;
}
.home_game_video .play_btn{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	position: absolute;
	left: 0px;
	top: 0px;
}
.home_game_video .play_btn .play{
	background: url(../images/home_video_icon.png) no-repeat center / contain;
	width: 46px;
	height: 46px;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.home_app_zj li{
	border-radius: 30px;
	border: 1px solid #F3F3F3;
	padding: 12px 15px 12px 20px;
	box-sizing: border-box;
	margin-top: 12px;
	height: 40px;
}
.home_app_zj li:hover{
	border-color: var(--pm-c);
}
.home_app_zj li .num{
	margin-left: 10px;
}

.home_mt .thumb{
	width: 100%;
	height: 100%;
}
.home_mt .thumb1{
	width: 509px;
	height: 270px;
	margin-right: 15px;
}

.w390{
	width: 390px;
}
.home_rank:not(:first-of-type){
	margin-left: 15px;
}
.home_rank li{
	margin-top: 10px;	
}
.home_rank li:first-of-type{
	margin-top: 16px;
}
.home_rank li:last-of-type .top_warp{
	border-bottom-color: transparent;
}
.home_rank li .top_warp{
	padding: 0 17px 10px 4px;
	border-bottom: 1px dashed #E5E5E5;
	box-sizing: border-box;	
}
.home_rank li .warp{
	display: none;
	padding: 20px 17px 20px 4px;
	box-sizing: border-box;
	width: 100%;
	height: 105px;
}
.home_rank li .warp .order{
	font-weight: bold;
	font-size: 18px;
	color: #FFFFFF;
}
.home_rank li .warp .icon{
	width: 66px;
	height: 66px;
	border-radius: 15px;
	margin-right: 9px;
}
.home_rank li .warp .title{
	color: #fff;
}
.home_rank li .warp .text{
	display: inline-block;
	margin: 4px 0;
}
.home_rank li .warp .text,
.home_rank li .warp .desc{
	color: #fff;
}
.home_rank li .warp .down{
	width: 68px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #FFFFFF;
	border-radius: 6px;
	font-size: 14px;
}
.home_rank li.active .warp{
	display: flex;
}
.home_rank li.active .top_warp{
	display: none;
}
.home_rank:nth-of-type(3n - 2) li .warp{
	background: url(../images/home_rank_bg1.png) no-repeat center / contain;
	background-size: 100%;
}
.home_rank:nth-of-type(3n - 1) li .warp{
	background: url(../images/home_rank_bg2.png) no-repeat center / contain;
	background-size: 100%;
}
.home_rank:nth-of-type(3n) li .warp{
	background: url(../images/home_rank_bg3.png) no-repeat center / contain;
	background-size: 100%;
}
.home_rank:nth-of-type(3n - 2) li .down,
.home_rank:nth-of-type(3n) li .down{
	color: #FF9C36;
}
.home_rank:nth-of-type(3n - 1) li .down{
	color: #4973FF;
}
/* 首页 end*/

/* 游戏列表 */
.list_game,
.list_zj{
	margin-bottom: 14px;
}
.list_game_warp{
	padding-bottom: 30px;
}
.list_game_warp .thumb{
	width: 224px;
	height: 329px;
	margin-right: 17px;
}
.list_game_warp .item{
	border: 1px solid #F2F2F2;
	padding: 11px 22px 11px 15px;
	box-sizing: border-box;
}
.list_game_warp .item .title{
	font-size: 16px;
	margin-bottom: 5px;
}
.list_game_warp .item .icon{
	width: 70px;
	height: 70px;
	border-radius: 10px;
}
.list_game_warp .item .type{
	margin-bottom: 18px;
}
.list_game_warp .item .info{
	height: 70px;
	padding: 10px 0;
	box-sizing: border-box;
}
.list_game_warp .item .label{
	width: 68px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	background: #F8F8F8;
	font-size: 12px;
	color: #999999;
}
.list_game_warp .item .label:first-of-type{
	margin-right: 10px;
}
.list_game_warp .item .down{
	width: 70px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	background: linear-gradient( 180deg, #FF925B 0%, #FF6B20 100%);
	border-radius: 6px;
	margin-left: 26px;
	font-size: 14px;
	color: #FFFFFF;
}
/* 游戏列表 end*/

/* 手游专辑 */
.zj_menu_nav{
	margin-bottom: 50px;
	margin-top: 20px;
}
.zj_menu_nav li:first-of-type{
	margin-right: 20px;
}
.zj_menu_nav li a{
	display: inline-block;
	width: 100px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	font-size: 14px;
	color: #666666;
	background: #F8F8F8;
	border-radius: 6px;
}
.zj_menu_nav li.active a,
.zj_menu_nav li:hover a{
	background: rgba(255, 233, 221, .8);
	color: var(--pm-c);
}
.list_zj .uk-grid-small>.uk-grid-margin{
	margin-top: 50px;
}
.list_zj .uk-grid-small>*{
	padding-left: 18px;
}
.zj_warp{
	background: #F8F8F8;
	padding: 15px 20px 12px 131px;
	box-sizing: border-box;
	position: relative;
}
.zj_warp .zj{
	text-align: center;
	background: url(../images/zj_tag_bj.png) no-repeat left / contain;
	background-size: 100% 100%;
	width: 108px;
	height: 169px;
	position: absolute;
	bottom: -2px;
	left: -2px;
	padding: 11px;
	box-sizing: border-box;
}
.zj_warp .zj .icon{
	width: 85px;
	height: 85px;
	border-radius: 15px;
	margin-bottom: 10px;
}
.zj_warp .zj p{
	font-size: 12px;
	color: #D89679;
	line-height: 30px;
	position: relative;
}
.zj_warp .zj p::before,
.zj_warp .zj p::after{
	width: 12px;
	height: 1px;
	background-color: #F1D0C0;
}
.zj_warp .zj p::after{
	right: 0;
}
.zj_warp .zj p::before{
	left: 0px;
}
.zj_warp .zj span{
	font-size: 12px;
	color: #D89679;
	line-height: 30px;
	display: inline-block;
}
.zj_warp .info .title{
	font-weight: bold;
	font-size: 16px;
	margin-right: 10px;
}
.zj_warp .item{
	width: 52px;
	margin-top: 18px;
	text-align: center;
}
.zj_warp .item:not(:first-of-type){
	margin-left: 23px;
}
.zj_warp .item .icon{
	width: 50px;
	height: 50px;
	border-radius: 10px;
	margin: 0 auto;
}
.zj_warp .item .title{
	font-size: 12px;
	color: #999999;
	line-height: 24px;
	margin-top: 10px;
}
.zj_warp .item .title:hover{
	color: var(--pm-c);
}
/* 手游专辑 end*/


/* 手游专辑 */
.game_package_warp .item{
	border: 1px solid #F2F2F2;
	padding: 11px 15px;
	box-sizing: border-box;
	margin-top: 13px;
}
.game_package_warp .item:nth-of-type(2){
	margin-top: 18px;
}
.game_package_warp .item .title{
	font-size: 16px;
}
.game_package_warp .item .desc{
	margin: 15px 0;
}
.game_package_warp .item .time{
	background: #F8F8F8;
	padding: 5px 10px;
}
.game_package_warp .item .icon{
	width: 70px;
	height: 70px;
	border-radius: 10px;
	margin-left: 10px;
}
.game_package_warp .item .get{
	display: inline-block;
	width: 70px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	background: linear-gradient( 180deg, #FF925B 0%, #FF6B20 100%);
	border-radius: 6px;
	font-size: 14px;
	color: #FFFFFF;
}

/* 游戏礼包 */
.game_gift .thumb{
	width: 100%;
	height: 135px;
	margin-top: 12px;
}

.list_hot_game .hot_game{
	border: 1px solid #F2F2F2;
	padding: 11px 15px;
	box-sizing: border-box;
	margin: 20px 0;
}
.list_hot_game .hot_game .title{
	font-size: 16px;
}
.list_hot_game .hot_game .text{
	margin: 15px 0;
}
.list_hot_game .hot_game .label{
	display: inline-block;
	width: 68px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	background: #F8F8F8;
	font-size: 12px;
	color: #999999;
	margin-right: 9px;
}
.list_hot_game .hot_game .icon{
	width: 70px;
	height: 70px;
	border-radius: 10px;
	margin-left: 10px;
}
.list_hot_game .hot_game .down{
	width: 70px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	background: linear-gradient( 180deg, #FF925B 0%, #FF6B20 100%);
	border-radius: 6px;
	font-size: 14px;
	color: #FFFFFF;
}
.list_hot_game .uk-grid-small>.uk-grid-margin{
	margin-top: 25px;
}
.list_hot_game .uk-grid .item .icon{
	width: 46px;
	height: 46px;
	border-radius: 6px;
	margin-right: 10px;
	position: relative;
}
.list_hot_game .uk-grid .item .icon:hover .btn{
	display: block;
}
.list_hot_game .uk-grid .item .btn{
	display: none;
	width: 46px;
	height: 46px;
	background: rgba(0,0,0,0.5);
	border-radius: 6px;
	position: absolute;
	left: 0px;
	top: 0px;
}
.list_hot_game .uk-grid .item .btn .down{
	width: 40px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	background: var(--pm-c);
	border-radius: 4px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
	color: #FFFFFF;
}
.list_hot_game .uk-grid .item .type{
	margin-top: 5px;
}
/* 游戏礼包 end*/

/* 手游专辑 end*/

/* 资讯列表 */
.module_title_box{
	position: relative;
}
.module_title_box .menu_nav_{
	position: absolute;
	top: 0px;
	right: 0px;
}
.module_title_box .menu_nav_ li{
	margin-left: 5px;
}
.module_title_box .menu_nav_ li a{
	display: inline-block;
	padding: 0 10px;
	height: 26px;
	line-height: 26px;
	text-align: center;
	border-radius: 4px;
	border: 1px solid transparent;
	font-size: 12px;
	color: #666666;
	box-sizing: border-box;
}
.module_title_box .menu_nav_ li.active a,
.module_title_box .menu_nav_ li:hover a{
	border-color: var(--pm-c);
	color: var(--pm-c);
}

.list_news_warp .item:nth-of-type(2){
	margin-top: 24px;
}
.list_news_warp .item{
	margin-top: 22px;
}
.list_news_warp .item .thumb{
	width: 195px;
	height: 120px;
	margin-right: 20px;
	margin-bottom: 24px;
}
.list_news_warp .item .info{
	padding-top: 5px;
    padding-bottom: 22px;
	border-bottom: 1px dashed #E5E5E5;
}
.list_news_warp .item .title{
	font-weight: bold;
	font-size: 16px;
	line-height: 35px;
}
.list_news_warp .item .time{
	background: url(../images/time.png) no-repeat left / contain;
	background-size: 12px;
	padding-left: 21px;
}
.list_news_warp .item .desc{
	line-height: 30px;
	margin-top: 20px;
}
/* 资讯列表 end*/

/* 排行榜大全 */
.list_rank_news,
.list_rank{
	position: relative;
}
.rank_banner{
	width: 100%;
	height: 344px;
	margin-bottom: 16px;
	background: url(../images/rank_banner.png) no-repeat center / contain;
	margin-top: 6px;
}
.rank_card{
	width: 100%;
	height: 40px;
	position: absolute;
	left: 0px;
	top: 340px;
}
.rank_card .rank_tab{
	width: 155px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 14px;
	color: #FFFFFF;
}
.rank_card .rank_tab:not(:first-of-type){
	margin-left: 5px;
}
.rank_card .rank_tab.active,
.rank_card .rank_tab:hover{
	background: var(--pm-c);	
}
.list_rank_news .home_rank{
	margin-left: 0;
}
.rank_news_warp{
	background: #FFFFFF;
	box-shadow: 0px 4px 4px 0px rgba(213,213,213,0.25);
	padding: 21px 20px 14px 16px;
	box-sizing: border-box;
}
.rank_news_warp .top_title{
	border-bottom: 1px solid #F3F3F3;
	padding-bottom: 14px;
	box-sizing: border-box;
	align-items: center;
	justify-content: space-between;
}
.rank_news_warp .top_title .rank_title{
	font-weight: bold;
	font-size: 14px;
	position: relative;
	padding-left: 17px;
}
.rank_news_warp .top_title .rank_title:hover{
	color: var(--pm-c);
}
.rank_news_warp .top_title .rank_title::before{
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	background: var(--pm-c);
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
}
.rank_news_warp .top_title .time{
	margin-left: 10px;
}
.rank_news_warp .btn{
	display: inline-block;
	width: 100%;
	text-align: center;
	font-size: 12px;
	color: #999999;
	margin-top: 14px;
}
/* 排行榜大全 end*/

/* 排行榜列表 */
.list_rank .rank_banner{
	margin-bottom: 0;
}
.rank_warp{
	background: #FFFFFF;
	box-shadow: 0px 4px 4px 0px rgba(213,213,213,0.25);
	padding: 20px 20px 26px 17px;
	box-sizing: border-box;
	margin-bottom: 17px !important;
}
.rank_warp .item{
	background: url(../images/rank_warp_item_bg.png) no-repeat left / contain;
	background-size: 100%;
	padding: 32px 23px 20px 37px;
	box-sizing: border-box;
	position: relative;
	margin-top: 20px;
}
.rank_warp .item:first-of-type{
	margin-top: 0px;
}
.rank_warp .item .order{
	width: 42px;
	height: 18px;
	text-align: center;
	line-height: 18px;
	font-weight: bold;
	font-size: 18px;
	color: var(--pm-c);
	position: absolute;
	left: 20px;
	top: 13px;
}
.rank_warp .item:nth-of-type(1) .order{
	background: url(../images/home_zxgl_no1.png) no-repeat center / contain;
}
.rank_warp .item:nth-of-type(2) .order{
	background: url(../images/home_zxgl_no2.png) no-repeat center / contain;
}
.rank_warp .item:nth-of-type(3) .order{
	background: url(../images/home_zxgl_no3.png) no-repeat center / contain;
}
.rank_warp .item:nth-of-type(-n + 3) .order,
.rank_warp .item:nth-of-type(-n + 3) .num{
	color: transparent;
}
.rank_warp .item .num{
	width: 37px;
	height: 43px;
	line-height: 52px;
	text-align: center;
	background: url(../images/rank_warp_icon4.png) no-repeat center / contain;
	background-size: 37px 43px;
	font-weight: bold;
	font-size: 14px;
	color: #333333;
	margin-right: 25px;
}
.rank_warp .item:nth-of-type(1) .num{
	background: url(../images/rank_warp_icon1.png) no-repeat center / contain;
}
.rank_warp .item:nth-of-type(2) .num{
	background: url(../images/rank_warp_icon2.png) no-repeat center / contain;
}
.rank_warp .item:nth-of-type(3) .num{
	background: url(../images/rank_warp_icon3.png) no-repeat center / contain;
}
.rank_warp .item .icon{
	width: 92px;
	height: 92px;
	border-radius: 15px;
	margin-right: 14px;
}
.rank_warp .item .down{
	width: 74px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #FF8F56;
	border-radius: 6px;
	font-size: 14px;
	color: #FFFFFF;
	margin-left: 10px;
}
.rank_warp .item .title{
	font-size: 16px;
}
.rank_warp .item .type{
	line-height: 38px;
	margin-right: 30px;
}
/* 排行榜列表 end*/

/* 搜索结果 */
.search_warp{
	margin-top: 7px;
	background: #FFFFFF;
	padding: 18px 19px 31px 16px;
	box-sizing: border-box;
	margin-bottom: 22px !important;
}
/* 搜索结果 end*/

/* 专辑详情 */
.single_album{
	background: #FFFFFF;
	box-shadow: 0px 4px 4px 0px rgba(213,213,213,0.25);
	padding: 15px 19px 24px 17px;
	box-sizing: border-box;
	margin-top: 8px;
	margin-bottom: 20px !important;
}
.single_album .single_header{
	background: url(../images/single_album_header_bg.png) no-repeat left / contain;
	width: 100%;
	height: 183px;
	padding: 10px 10px 10px 31px;
	box-sizing: border-box;
	margin-bottom: 20px;
}
.single_album .single_header .single_header_warp{
	padding: 22px 22px 0 0;
	box-sizing: border-box;
}
.single_album .single_header h1{
	font-weight: bold;
	font-size: 20px;
	color: #FFFFFF;
	letter-spacing: 1px;
	margin-bottom: 20px;
}
.single_album .single_header .label{
	font-size: 14px;
	color: #FFFFFF;
	margin-bottom: 15px;
}
.single_album .single_header .more_box{
	font-size: 14px;
	color: #FFFFFF;
}
.single_album .single_header .more_box .title{
	max-width: 180px;
	height: 28px;
	line-height: 28px;
	display: inline-block;
	border-radius: 6px;
	border: 1px solid #FFFFFF;
	margin-right: 11px;
	font-weight: 400;
	font-size: 14px;
	padding: 0 5px;
	box-sizing: border-box;
	margin-bottom: 0;
	color: #FFFFFF;
}
.single_album .show_tj{
	background: url(../images/show_tj_bg.png) no-repeat left / contain;
	width: 390px;
	height: 165px;
	padding: 22px 23px 24px 23px;
	box-sizing: border-box;
}
.single_album .show_tj .icon{
	width: 86px;
	height: 86px;
	border-radius: 20px;
	margin-right: 11px;
}
.single_album .show_tj .title{
	color: #333333;
	font-weight: bold;
	margin-bottom: 0px;
	max-width: 120px;
}
.single_album .show_tj .title:hover{
	color: var(--pm-c);
}
.single_album .show_tj .label{
	display: inline-block;
	width: 66px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border: 1px solid var(--pm-c);
	font-size: 12px;
	color: var(--pm-c);
	margin-left: 6px;
}
.single_album .show_tj .label{
	margin-bottom: 0;
}
.single_album .show_tj .type:first-of-type{
	margin: 10px 0;
}
.single_album .show_tj .down{
	width: 65px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	background: #FF8548;
	border-radius: 4px;
	font-size: 14px;
	color: #FFFFFF;
}
.single_album .show_tj .desc{
	font-size: 12px;
	color: #888888;
	margin-top: 15px;
}

.single_album .home_jx_game{
	margin-top: 20px;
}
.single_album .home_jx_game .item{
	position: relative;
}
.single_album .home_jx_game .uk-width-1-4:nth-of-type(-n + 3) .order{
	color: transparent;
}
.single_album .home_jx_game .item .order{
	width: 37px;
	height: 43px;
	line-height: 52px;
	text-align: center;
	background: url(../images/rank_warp_icon4.png) no-repeat center / contain;
	background-size: 37px 43px;
	font-weight: bold;
	font-size: 14px;
	color: #333333;
	position: absolute;
	top: 0px;
	right: 32px;
	z-index: 1;
}
.single_album .home_jx_game .uk-width-1-4:nth-of-type(1) .order{
	background: url(../images/rank_warp_icon1.png) no-repeat center / contain;
}
.single_album .home_jx_game .uk-width-1-4:nth-of-type(2) .order{
	background: url(../images/rank_warp_icon2.png) no-repeat center / contain;
}
.single_album .home_jx_game .uk-width-1-4:nth-of-type(3) .order{
	background: url(../images/rank_warp_icon3.png) no-repeat center / contain;
}
.w325{
	width: 325px;
}
.single_album .w325{
	margin-left: 55px;
}
.single_album .list_news_warp .item:last-of-type .info,
.single_gift .list_news_warp .item:last-of-type .info,
.single_game .list_news_warp .item:last-of-type .info,
.single_news .list_news_warp .item:last-of-type .info{
	border-bottom: none;
}
/* 专辑详情 end*/


/* 礼包详情 */
.single_gift .single_header{
	border-radius: 6px;
	background: url(../images/single_album_header_bg.png) no-repeat center / contain;
	background-size: 100% 183px;
	width: 100%;
	height: 183px;
	padding: 27px 20px 26px 29px;
	box-sizing: border-box;
	margin-bottom: 20px;
}
.single_gift .single_header .icon{
	width: 130px;
	height: 130px;
	border-radius: 25px;
	margin-right: 21px;
}
.single_gift .single_header h1{
	font-weight: bold;
	font-size: 20px;
	color: #FFFFFF;
}
.single_gift .single_header .text{
	font-size: 14px;
	color: #FFFFFF;
	font-weight: 400;
}
.single_gift .single_header .text:nth-of-type(2){
	margin: 25px 0 15px;
}

/* 礼包详情 end*/

/* 手游详情 */
.single_game {
	background: #FFFFFF;
	box-shadow: 0px 4px 4px 0px rgba(213,213,213,0.25);
	padding: 21px 22px 1px 16px;
	box-sizing: border-box;
	margin-bottom: 16px;
}
.single_game .single_header{
	border-radius: 6px;
	background: url(../images/single_album_header_bg.png) no-repeat center / contain;
	background-size: 100% 183px;
	width: 100%;
	height: 183px;
	padding: 27px 20px 26px 29px;
	box-sizing: border-box;
	margin-bottom: 20px;
}
.single_game .single_header .icon{
	width: 130px;
	height: 130px;
	border-radius: 25px;
	margin-right: 21px;
}
.single_game .single_header h1{
	font-weight: bold;
	font-size: 20px;
	color: #FFFFFF;
}
.single_game .single_header .label_box .label{
	display: inline-block;
	font-size: 14px;
	color: #FFFFFF;
}

.screenshots {
    position: relative;
    height: auto;
    margin: 22px auto;
    padding: 0 32px;
}

.screenshots .sliderBox {
    overflow: hidden;
}

.screenshots .sliderBox .dotnav {
    display: none;
}

.screenshots .sliderBox .dotnav li {}

.screenshots .sliderBox .dotnav li a {
    border: none;
    border-radius: 18px;
    width: 8px;
    height: 8px;
    background-color: #d9d9d9;
}

.screenshots .sliderBox .dotnav li.uk-active a {
    background-color: var(--pm-c);
}

.screenshots .sliderBox .slide {
    margin-left: -20px;
}

.screenshots .sliderBox .slide li {
    /* width: 499px;
	 padding-left: 13px; */
	width: 33.3%;
    padding-left: 20px;
}

.screenshots .sliderBox .slide li:last-child {
    margin-right: 0;
}

.screenshots .sliderBox .slide li span {
    display: inline-block;
    overflow: hidden;
    position: relative;
    height: auto;
    /* border-radius: 6px; */
}

.screenshots .btn {
    /* display: block; */
    width: 24px;
    height: 48px;
	background: #D9D9D9;
	line-height: 48px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.screenshots .btn svg {
    display: none;
}

.screenshots .left {
	border-radius: 0 50px 50px 0;
    left: 0;
}
.screenshots .left span{
    background: url(../images/slider_l.png) no-repeat left / contain;
	background-size: 17px;
    margin: 0px;
}
.screenshots .right span{
    background: url(../images/slider_r.png) no-repeat left / contain;
	background-size: 17px;
    margin: 0px;
	margin-left: 4px;
}
.screenshots .right {
	border-radius: 50px 0 0 50px;
    /* background-image: url(../images/slider_r.png) no-repeat left / contain; */
    right: 0;
}

/* 手游详情 end*/

/* 资讯详情 */
.single_news{
	background: #FFFFFF;
	box-shadow: 0px 4px 4px 0px rgba(213,213,213,0.25);
	padding: 40px 22px 1px 16px;
	box-sizing: border-box;
	margin-bottom: 16px;
}
.single_news .single_header{
	border-bottom: 2px solid #FFECE3;
	padding-bottom: 30px;
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 10px;
}
.single_news .single_header h1{
	font-weight: bold;
	font-size: 20px;
	color: #333333;
	margin-bottom: 30px;
}
.single_news .single_header span{
	font-size: 12px;
	color: #999999;
	margin-right: 20px;
}
/* 资讯详情 end*/

/* 排行榜详情 */
.single_rank_banner{
	width: 100%;
	height: 344px;
	margin-top: 10px;
	background: url(../images/single_rank_banner.png) no-repeat center / contain;
	padding: 78px 0 0 64px;
	box-sizing: border-box;
}
.single_rank_banner h1{
	font-weight: bold;
	font-size: 36px;
	color: #3CA8EB;
	letter-spacing: 1px;
	margin-bottom: 50px;
}
.single_rank_banner .time{
	font-size: 14px;
	color: #FFFFFF;
	width: 196px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	background: #FFBF68;
	border-radius: 30px 30px 30px 30px;
	box-shadow: 0px 5px 5px 0px #F28E44;
}
.single_rank{
	padding: 20px 19px 34px 17px;
	box-sizing: border-box;
	background: #FFFFFF;
	box-shadow: 0px 4px 4px 0px rgba(213,213,213,0.25);
	margin-bottom: 15px !important;
}
.single_rank .rank_warp{
	padding: 0px;
	box-shadow: none;
}
.single_rank .rank_warp .item{
	background: url(../images/single_rank_warp_bg.png) no-repeat left / contain;
}
/* 排行榜详情 end*/


/* 开服  */
.category_kaifu{
	margin-bottom: 13px !important;
	margin-top: 8px;
	padding-bottom: 27px;
}
.category_kaifu .module-title .time {
	font-weight: 400;
	font-size: 12px;
	color: #999999;
}
.kaifu_warp{
	margin-top: 20px;
}
.kaifu_warp tr {
	border: 1px solid #F1F1F1;
}

.kaifu_warp tr th {
	height: 56px;
	line-height: 56px;
	background: #F8F8F8;
	font-weight: bold;
	font-size: 14px;
	color: #333333;
	box-sizing: border-box;
	padding: 0 12px;
}

.uk-table-hover tbody tr:hover,
.uk-table-hover>tr:hover {
	background: none;
}
.kaifu_warp .th_game_name{
	text-align: left !important;
	padding-left: 40px;
}

.kaifu_warp tr td {
	font-size: 14px;
	letter-spacing: 1px;
	color: #666666;
	line-height: 28px;
}

.kaifu_warp tr .game-name {
	width: 170px;
    padding-left: 20px;
}

.kaifu_warp tr .icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	overflow: hidden;
}

.kaifu_warp tr .title {
	font-size: 14px;
	color: #333333;
	display: inline-block;
	line-height: 18px;
	margin-left: 10px;
}
.kaifu_warp tr .title:hover{
	color: var(--pm-c);
}

.kaifu_warp tr .type {
	font-size: 12px;
	color: #999999;
	display: block;
	line-height: 14px;
	
}

.kaifu_warp tr .time {
	font-size: 14px;
}

.kaifu_warp tr .az_ {
	width: 22px;
	height: 22px;
}

.kaifu_warp tr .ios_ {
	width: 22px;
	height: 22px;
}

.kaifu_warp .btn {
	display: block;
	width: 91px;
	height: 26px;
	line-height: 26px;
	border-radius: 20px;
	font-size: 12px;
	letter-spacing: 1px;
	box-sizing: border-box;
	margin: 0 auto;
	color: #fff;
}

.kaifu_warp .down {
	background: #FF8F56;
	padding-left: 20px;
}
.kaifu_warp .down:hover{
	background: #FF6C2D;
}

.kaifu_warp .gift {
	background: #FF6A6A;
	padding-left: 22px;
}
.kaifu_warp .gift:hover{
	background: #FF6A6A;
}

.kaifu_warp .btn::before {
	left: 12px;
	display: inline-block;
	z-index: 100;
}

.kaifu_warp .down::before {
	width: 12px;
	height: 12px;
	background: url(../images/kaifu_down_icon.png) no-repeat center/contain;
}
.kaifu_warp .down:hover::before{
	background: url(../images/kaifu_down_icon_.png) no-repeat center/contain;
}

.kaifu_warp .gift::before {
	width: 12px;
	height: 12px;
	background: url(../images/kaifu_gift_icon.png) no-repeat center/contain;
}
.kaifu_warp .gift:hover::before{
	background: url(../images/kaifu_gift_icon_.png) no-repeat center/contain;
}

.kaifu_warp .game-type {
	font-size: 14px;
	font-weight: bold;
	color: #333333;
	box-sizing: border-box;
}
.kaifu_warp .red{
	color: #FF4B0E;
}
.kaifu_warp .game-type::after {
	width: 14px;
	height: 14px;
	z-index: 99;
	background: url('../images/kaifu_drop.png') no-repeat center/contain;
	margin-left: 10px;
}

.kaifu_warp .uk-dropdown {
	border-radius: 6px;
	padding: 10px 0;
	min-width: 140px;
}

.kaifu_warp .uk-dropdown .uk-dropdown-nav::after {
	width: 0;
	height: 0;
	border: 18px solid;
	border-color: transparent transparent #ffffff transparent;
	top: -20px;
	left: 55px;
}

.kaifu_warp .uk-dropdown .uk-dropdown-nav li {
	font-size: 14px;
	letter-spacing: 1px;
	color: #999;
	cursor: pointer;
	height: 40px;
	line-height: 40px;
}
/* 开服 end */
