:root {
	--pm-c: #23B788;
	--br-c: #e6e6e6;
}

/*隐藏类*/
.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: #333;
    font-size: 13px;
    margin: 10px 0;
}

#app_info li b {
	cursor: pointer;
    color: #333;
    font-size: 13px;
    font-weight: normal;
}
#app_info li:nth-of-type(-n + 2) b{
	border-bottom: 1px solid #4D4D4D;
	height: 16px;
    display: inline-block;
}

#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';
	background-color: #F7F7F7;
}

.bg-f {
	background-color: #ffffff;
}

.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 var(--br-c) !important;
}

.b-b {
	border-bottom: 1px solid var(--br-c) !important;
}

.b-t {
	border-top: 1px solid var(--br-c) !important;
}

.b-l {
	border-left: 1px solid var(--br-c) !important;
}

.b-r {
	border-right: 1px solid var(--br-c) !important;
}

/* 虚线上边框 */
.b-t-dashed {
	border-top: 1px dashed var(--br-c) !important;
}

/* 虚线下边框 */
.b-b-dashed {
	border-bottom: 1px dashed var(--br-c) !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-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-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;
	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: 80px 0 30px 0 !important;
	text-align: center;
}

.pagination .page-item {
	display: inline-block;
	margin: 0 5px;
	font-size: 14px;
	border: 1px solid var(--br-c);
	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: 6px 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;
}

/* 评分 */
.star {
	height: 15px;
	width: 80px;
	display: inline-block;
	background: url(../images/icon-star-bg.png) repeat-x 15px / contain;
	vertical-align: text-top;
}

.star:before {
	content: "";
	display: block;
	background: url(../images/icon-star.png) repeat-x 15px / contain;
	height: 15px;
}

.star-1:before {
	width: 16px;
}

.star-2:before {
	width: 30px;
}

.star-3:before {
	width: 48px;
}

.star-4:before {
	width: 64px;
}

.star-5:before {
	width: 80px;
}

.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: #888888;
	box-sizing: border-box;
	padding-left: 18px;
	position: relative;
}
.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: #888888;
}

.crumbs a::after {
	content: ">";
}

.crumbs a:last-child:after {
	content: "";
}
.crumbs .toMyself{
	color: #4D4D4D ;
}

/* 平台 安卓 苹果 图标显示 */
.platform i {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
}

.platform .az_ {
	background-image: url(../images/az_.png);
	margin-right: 5px;
}

.platform .az {
	background-image: url(../images/az.png);
	margin-right: 5px;
}

.platform .ios_ {
	background-image: url(../images/ios_.png);
}

.platform .ios {
	background-image: url(../images/ios.png);
}

/* 公共标题 */
.module-title > div{
	max-width: 90%;
}
.module-title .title {
	font-weight: bold;
	font-size: 18px;
	color: #1A1A1A;
	letter-spacing: 2px;
}

.module-title .more {
	line-height: 25px;
	letter-spacing: 1px;
	color: #999999;
	font-size: 12px;
	background: url(../images/home_more.png) no-repeat left/contain;
	width: 14px;
	height: 14px;
	margin-left: 10px;
}
.module-title .icon_box{
	height: 6px;
	line-height: 0px;
	flex-shrink: 0;
}
.module-title .icon_box i {
	display: inline-block;
	width: 6px;
	height: 6px;
}

.module-title .icon_box i:nth-child(1) {
	margin-left: 12px;
	background: var(--pm-c);
}

.module-title .icon_box i:nth-child(2) {
	background: rgba(35, 183, 136, 0.5);
	margin: 0 5px;
}

.module-title .icon_box i:nth-child(3) {
	background: rgba(35, 183, 136, 0.15);
}

/*默认图标尺寸*/
.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: 14px;
	color: #333;
	display: block;
}

.info .title:hover {
	color: var(--pm-c);
}

.info .text {
	font-size: 12px;
	color: #999;
}

.info .time {
	font-size: 12px;
	color: #999;
}

.title {
	display: block;
	font-size: 14px;
	color: #333333;
}

.text,
.time,
.type {
	font-size: 12px;
	color: #999;
}

/* list 样式 */
.list-container li {
	margin-bottom: 18px;
}

.list-container li .title {
	padding-left: 15px;
	font-size: 14px;
	color: #333333;
}

.list-container li .title::before {
	display: inline-block;
	left: 0;
	width: 5px;
	height: 5px;
	background-color: var(--pm-c);
}

.list-container li .time {
	font-size: 12px;
	color: #999;
	margin-left: 5px;
}

.list-container li .dot {
	display: block;
	width: 14px;
	height: 14px;
	background: url('../images/dot.png') no-repeat center/contain;
}

.list-container li .dot_ {
	display: block;
	width: 14px;
	height: 14px;
	background: url('../images/dot_.png') no-repeat center/contain;
}

.list-container li .tag {
	font-size: 14px;
	letter-spacing: 1px;
	color: #999999;
}

/* 公共头部样式 */
/* 首页页面 */
.header {
	background: url(../images/home_header_bg.png) no-repeat left/cover;
	height: 150px;
	padding-top: 25px;
	box-sizing: border-box;
}

.header .header-top {
	margin-bottom: 25px;
}

.header .logo {
	display: block;
	width: auto;
	height: 100%;
	overflow: hidden;
}

.header .search {
	width: 290px;
	height: 36px;
	background: #FFFFFF;
	border-radius: 99px;
	overflow: hidden;
	position: relative;
	color: #999999;
	font-size: 14px;
	padding-left: 27px;
	padding-right: 14px;
	box-sizing: border-box;
}

.header .search .search_btn {
	position: absolute;
	width: 18px;
	height: 18px;
	background: url("../images/search.png") no-repeat center/contain;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
}

.header .search .search_input {
	width: 100%;
	height: 100%;
	border: none;
	outline: medium;
	vertical-align: top;
	line-height: 46px;
	color: #ccc;
	font-size: 12px;
	background-color: #ffffff;
	text-indent: 10px;
}

.search-input:-webkit-input-placeholder {
	color: #ccc;
	font-size: 12px;
}

.search-input:-moz-input-placeholder {
	color: #ccc;
	font-size: 12px;
}

.search-input:-ms-input-placeholder {
	color: #ccc;
	font-size: 12px;
}

.header .nav {
	height: 50px;
	line-height: 50px;
	background-color: rgba(255, 255, 255, .9);
	padding: 0 60px;
	box-sizing: border-box;
}

.header .nav li {
	display: block;
	width: auto;
	font-size: 18px;
	color: #333333;
	text-align: center;
	margin-left: 70px;
}

.header .nav li:first-child {
	margin-left: 0px;
}

.header .nav li.active a,
.header .nav li:hover a {
	color: var(--pm-c);
}

.header .nav .active::before,
.header .nav li:hover:before {
	width: 20px;
	height: 4px;
	background: var(--pm-c);
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
}

.header .nav li a {
	font-size: 18px;
	color: #333333;
}

/* 公共尾部样式 */
.footer {
	background-color: #333;
	padding: 55px 0;
	font-size: 14px;
	color: #999;
	text-align: center;
}

.footer span,
.footer a {
	font-size: 14px;
	color: #999;
}

.footer ul {
	margin-bottom: 20px;
	justify-content: center;
	align-items: center;
}

.footer ul li {
	line-height: 1;
	padding: 0 10px;
	border-left: 1px solid #999;
	letter-spacing: 1px;
}

.footer ul li a {
	font-size: 14px;
	color: #999999;
}

.footer ul li:first-child {
	border-left: 0;
}

.footer p {
	margin-top: 10px;
}

.footer a {
	font-size: 14px;
	color: #999999;
}

.footer span:last-child,
.footer a:last-child {
	margin-right: 0;
}

.footer .name {
	color: #ccc;
}

.footer .aBox {
	margin-bottom: 24px;
}

.footer .aBox span,
.footer .aBox a {
	margin-right: 6px;
}

.footer .aBox a::after {
	content: '|';
	display: inline-block;
	color: #666;
	margin-left: 10px;
}

.footer .aBox a:last-child::after {
	content: "";
}

.footer .footer_p {
	line-height: 34px;
}

/* 友情链接 */
.index-link ul {
	margin-left: -15px;
	margin-top: 20px;
}

.index-link ul li {
	display: inline-block;
	margin-top: 10px;
	margin-left: 15px;
}

.index-link ul li a {
	font-size: 14px;
	color: #888888;
	letter-spacing: 1px;
}

.index-link ul li:hover a {
	color: var(--pm-c) !important;
}

/* .index-link ul li::after {
	content: '|';
	display: inline-block;
	color: #888888;
	margin-left: 10px;
}

.index-link ul li:last-child::after {
	display: none;
} */
/* 侧边栏 */
.sidebar {
	margin-left: 40px;
	width: 320px;
}

.sidebar .game-rank {
	width: 100%;
}

/* 内容区域 */
.main {}

.w-400 {
	width: 400px;
}

.w-320 {
	width: 320px;
}

.w-390 {
	width: 390px;
}

/* 首页 */
.module {
	background: #FFFFFF;
	padding: 20px;
	box-sizing: border-box;
	margin-top: 20px;
}

.module:first-child {
	margin-top: 0px;
}

.home_score {
	color: #F8B524;
	font-size: 12px;
	width: auto;
	padding-left: 18px;
	background: url(../images/home_score.png) no-repeat left/contain;
	background-size: 14px;
}

.home_game_list .item {
	text-align: center;
	margin-left: 39px;
	max-width: 85px;
	text-align: center;
}

.home_game_list .item:first-child {
	margin-left: 0;
}

.home_game_list .item .icon {
	width: 80px;
	height: 80px;
	border-radius: 20px;
	margin-bottom: 8px;
}

.home_type {
	margin: 25px 0;
}

.home_type .item {
	width: 152px;
	height: 68px;
	background: rgba(35, 183, 136, 0.1);
	border-radius: 8px;
	padding: 12px 14px;
	padding-right: 44px;
	box-sizing: border-box;
	border: 1px solid transparent;
	margin-left: 16px;
}

.home_type .item:first-child {
	margin-left: 0;
}

.home_type .item:hover {
	border-color: var(--pm-c);
}

.home_type .item:hover .desc {
	background-color: var(--pm-c);
	color: #FFFFFF;
}

.home_type .item:hover .title {
	color: var(--pm-c);
}

.home_type .after-middle::after {
	width: 28px;
	height: 28px;
	right: 14px;
}

.home_type .desc {
	font-size: 12px;
	color: var(--pm-c);
	background: rgba(35, 183, 136, 0.12);
	border-radius: 99px 99px 99px 99px;
	padding: 2px 8px;
	margin-top: 3px;
}

.home_type .item:nth-child(1)::after{
	background: url(../images/home_role.png) no-repeat left/contain;
}
.home_type .item:nth-child(1):hover:after{
	background: url(../images/home_role_active.png) no-repeat left/contain;
}
.home_type .item:nth-child(2)::after{
	background: url(../images/home_adventure.png) no-repeat left/contain;
}
.home_type .item:nth-child(2):hover:after{
	background: url(../images/home_adventure_active.png) no-repeat left/contain;
}
.home_type .item:nth-child(3)::after{
	background: url(../images/home_puzzle.png) no-repeat left/contain;
}
.home_type .item:nth-child(3):hover:after{
	background: url(../images/home_puzzle_active.png) no-repeat left/contain;
}
.home_type .item:nth-child(4)::after{
	background: url(../images/home_shoot.png) no-repeat left/contain;
}
.home_type .item:nth-child(4):hover:after{
	background: url(../images/home_shoot_active.png) no-repeat left/contain;
}
.home_type .item:nth-child(5):after{
	background: url(../images/home_music.png) no-repeat left/contain;
}
.home_type .item:nth-child(5):hover:after{
	background: url(../images/home_music_active.png) no-repeat left/contain;
}
.home_type .item:nth-child(6):after{
	background: url(../images/home_strategy.png) no-repeat left/contain;
}
.home_type .item:nth-child(6):hover:after{
	background: url(../images/home_strategy_active.png) no-repeat left/contain;
}
.home_type .item:nth-child(7)::after{
	background: url(../images/home_simulate.png) no-repeat left/contain;
}
.home_type .item:nth-child(7):hover:after{
	background: url(../images/home_simulate_active.png) no-repeat left/contain;
}

.home_catList ul {
	list-style: none;
	margin-top: 16px;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
}

.home_catList ul:first-child {
	margin-top: 0;
}

.home_catList ul li {
	margin-right: 12px;
	padding-right: 12px;
}

.home_catList ul li:first-child {
	background: var(--pm-c);
	border-radius: 6px;
	width: 64px;
	height: 28px;
	text-align: center;
	line-height: 28px;
	margin-right: 18px;
}

.home_catList ul li:first-child span {
	font-size: 14px;
	color: #FFFFFF;
}

.home_catList ul li:after {
	content: '';
	position: absolute;
	right: 0;
	top: 5px;
	width: 1px;
	height: 12px;
	background: #E6E6E6;
}

.home_catList ul li:first-child {
	padding-right: 0;
}

.home_catList ul li:last-child {
	margin-right: 0;
	padding-right: 0;
}

.home_catList ul li:last-child:after,
.home_catList ul li:first-child:after {
	display: none;
}

.home_catList ul li span {
	font-size: 18px;
	color: #333;
}

.home_catList ul li i {
	line-height: 0;
	margin: 0 20px;
}

/* 资讯轮播图 */
.home-slide {
	/* width: 390px; */
	margin-bottom: 20px;
}

.home-slide .slider {
	width: 100%;
	height: 230px;
}

.home-slide .slider .slide {
	width: 100%;
	height: 100%;
	margin-left: 0;
}

.home-slide .slider li {
	padding-left: 0;
}

.home-slide .slider li .img {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	overflow: hidden;
}

.home-slide .slider li .img span {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 42px;
	background: rgba(0, 0, 0, .6);
	color: #fff;
	padding: 0 70px 0 15px;
	display: block;
	width: 100%;
	line-height: 42px;
	text-align: left;
	box-sizing: border-box;
}

.home-slide .slider .slideNav {
	position: absolute;
	bottom: 14px;
	right: 16px;
}

.home-slide .slider .slideNav li {
	margin-right: 5px;
	padding-left: 0;
}

.home-slide .slider .slideNav li:last-child {
	margin-right: 0;
}

.home-slide .slider .slideNav li a {
	width: 8px;
	height: 8px;
	background: #999;
	display: block;
	border-radius: 50%;
	border: none;
}

.home-slide .slider .slideNav li.uk-active a {
	background-color: var(--pm-c);
}

/* 话题探讨 */
.home_ht_tt {
	margin-top: 30px;
}

.home_ht_tt .list_ht_tt {
	margin-top: 20px;
}

.home_ht_tt .list_ht_tt li {
	background: #F7F7F7;
	padding: 15px;
	box-sizing: border-box;
	margin-bottom: 12px;
}

.home_ht_tt .list_ht_tt .thumb {
	width: 120px;
	height: 80px;
	margin-left: 15px;
}

.home_ht_tt .list_ht_tt .title {
	margin-bottom: 14px;
}

.home_ht_tt .list_ht_tt .desc {
	font-size: 12px;
	color: #999999;
	line-height: 24px;
}

.home_ht_tt .list_ht_tt li{
	position: relative;
}
.home_ht_tt .list_ht_tt li::before {
	position: absolute;
	content: "";
	display: inline-block;
	background: url(../images/home_topic.png) no-repeat left/contain;
	width: 44px;
	height: 44px;
	left: 15px;
	top: 6px;
}

.home_ht_tt .ht_tt .title::before {
	display: inline-block;
	left: 0;
	width: 4px;
	height: 4px;
	background: #E6E6E6;
}

.home_ht_tt .ht_tt li{
	position: relative;
	padding-left: 14px;
	margin-top: 16px;
}
.home_ht_tt .ht_tt li::before{
	position: absolute;
	content: "";
	width: 4px;
	height: 4px;
	background: #E6E6E6;
	margin-right: 10px;
	left: 0px;
}

.titl_box {
	padding-bottom: 20px;
	box-sizing: border-box;
	border-bottom: 1px dashed #E3E3E3;
	margin-bottom: 18px;
	text-align: center;
}

.titl_box a {
	font-size: 12px;
	color: #999999;
}
.titl_box a:hover{
	color: var(--pm-c);
}

.titl_box .uk-flex a {
	width: 50%;
}

.titl_box .title_ {
	font-weight: bold;
	font-size: 18px;
	color: var(--pm-c);
	margin-top: 14px;
	margin-bottom: 20px;
}

.titl_box .title_:first-child {
	margin-top: 0;
}

.home_list_news li:nth-child(1) .title,
.home_list_news li:nth-child(7) .title,
.home_list_news li:nth-child(13) .title {
	font-size: 16px;
	font-weight: bold;
}

.home_list_news li:nth-child(1) .time,
.home_list_news li:nth-child(7) .time,
.home_list_news li:nth-child(13) .time {
	display: none;
}

.home_list_news li:nth-child(1),
.home_list_news li:nth-child(7),
.home_list_news li:nth-child(13) {
	padding-left: 55px;
	box-sizing: border-box;
}

.home_list_news li:nth-child(1)::before,
.home_list_news li:nth-child(7)::before,
.home_list_news li:nth-child(13)::before {
	font-size: 14px;
	color: #FFFFFF;
	background-color: transparent;
	width: 52px;
	height: 22px;
	left: 0px;
	line-height: 22px;
	text-indent: 7px;
}

.home_list_news li:nth-child(1)::before {
	content: "最新";
	background: url(../images/home_new_bg.png) no-repeat left/contain;
}

.home_list_news li:nth-child(7)::before {
	content: "热门";
	background: url(../images/home_popular_bg.png) no-repeat left/contain;
}

.home_list_news li:nth-child(13)::before {
	content: "推荐";
	background: url(../images/home_recommend_bg.png) no-repeat left/contain;
}

.home_list_news .title::before {
	display: inline-block;
	left: 0;
	width: 4px;
	height: 4px;
	background: #E6E6E6;
}

.home_list_news li {
	padding-left: 14px;
	margin-top: 14px;
}

.home_list_news li::before {
	width: 4px;
	height: 4px;
	background: #E6E6E6;
	margin-right: 10px;
	left: 0px;
}

.home_list_news li .time {
	margin-left: 10px;
}


.home_game_jx {
	height: 290px;
	background: rgba(35, 183, 136, 0.04);
	box-shadow: inset 0px -7px 0px 0px var(--pm-c);
	border-radius: 12px;
	text-align: center;
	margin: 0 auto;
	padding: 30px;
	box-sizing: border-box;
	position: relative;
}

.home_game_jx::before {
	position: absolute;
	content: "";
	background: url(../images/hame_top_bg.png) no-repeat left/contain;
	width: 100%;
	height: 53px;
	top: -15px;
	left: 0px;
	transform: translate(0, 0%);
}

.home_game_jx .thumb {
	width: 90px;
	height: 90px;
	border-radius: 10px;
	display: inline-block;
}

.home_game_jx .title {
	margin: 10px 0;
}

.home_game_jx .title:hover {
	color: var(--pm-c);
}

.home_game_jx .info span {
	margin-left: 3px;
}

.home_game_jx .down_btn {
	width: 260px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: linear-gradient(90deg, var(--pm-c) 0%, #86DA5F 100%);
	border-radius: 99px;
	font-size: 16px;
	color: #FFFFFF;
	margin: 12px 0;
	display: inline-block;
}

.home_game_jx .down_btn.after-middle::after {
	width: 38px;
	height: 20px;
	top: 10px;
	right: 60px;
	background: url(../images/home_hot.png) no-repeat left/contain;
}

.home_zx_news {
	margin-top: 30px;
}

.home_zx_news .list-container {
	margin-top: 20px;
}
.home_zx_news .list-container li:first-child {
	margin-top: 0;
}

.home_zx_news .list-container li .dot{
	background: rgba(35, 183, 136, 0.12);
	border-radius: 0px 6px 0px 6px;
	width: 34px;
	height: 20px;
	font-size: 12px;
	color: var(--pm-c);
	text-align: center;
	margin-right: 8px;
}

.home_zx_news .top_warp .title {
	padding-left: 0;
}

.home_zx_news .bottom_warp {
	display: none;
}

.home_zx_news li:nth-child(-n+2) {
	padding-bottom: 16px;
	box-sizing: border-box;
	border-bottom: 1px solid #F2F2F2;
}

.home_zx_news li:nth-child(-n+2) .bottom_warp {
	display: flex;
}
.home_zx_news li:nth-child(-n+2) .top_warp .time{
	display: none;
}
.home_zx_news .bottom_warp {
	margin-top: 13px;
}

.home_zx_news .bottom_warp .title {
	margin-bottom: 18px;
}

.home_zx_news .thumb {
	width: 100px;
	height: 60px;
	margin-right: 15px;
}

.home_zx_news .bottom_warp .info {
	padding: 5px 0;
}

.home_zx_news .bottom_warp .time {
	padding-left: 17px;
	box-sizing: border-box;
	margin-left: 0;
	margin-top: 15px;
	background: url(../images/home_time.png) no-repeat left/contain;
	background-size: 12px;
}


.home_game_xz {
	position: relative;
}
.home_game_xz .module-title>div{
	max-width: 30%;
}
.home_game_xz .module-title .title{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.home_game_xz .home_game_type {
	position: absolute;
	top: 7px;
	right: 34px;
}

.home_game_xz .home_game_type li {
	margin-left: 36px;
}

.home_game_xz .home_game_type li:first-child {
	margin-left: 10px;
}

.home_game_xz .home_game_type li:hover,
.home_game_xz .home_game_type li.active {
	border-bottom: 4px solid var(--pm-c);
}

.home_game_xz .home_game_type .title {
	font-size: 14px;
	color: #8C8C8C;
	line-height: 14px;
}

.home_game_xz_list {
	margin-left: -32px;
}

.home_game_xz .item {
	width: 86px;
	/* height: 86px; */
	margin-left: 32px;
	text-align: center;
	margin-top: 24px;
}

.home_game_xz .item .icon {
	width: 86px;
	height: 86px;
	border-radius: 20px;
}

.home_game_xz .details_btn {
	width: 70px;
	height: 28px;
	border-radius: 6px;
	border: 1px solid #EBEBEB;
	display: inline-block;
}

.home_game_xz .details_btn:hover {
	background: var(--pm-c);
	color: #FFFFFF;
}

.home_game_xz .details_btn span:first-child {
	display: inline-block;
}

.home_game_xz .details_btn span:last-child {
	display: none;
}

.home_game_xz .details_btn:hover span:first-child {
	display: none;
}

.home_game_xz .details_btn:hover span:last-child {
	display: inline-block;
}

.home_game_xz .item span {
	font-size: 12px;
	color: #999999;
}

.home_game_xz .item span:last-child {
	color: #FFFFFF;
}

.home_game_xz .home_game_xz_list .title {
	margin: 8px 0;
}


.home_game_rank .item:nth-child(2) {
	margin-top: 26px;
}

.home_game_rank .item {
	position: relative;
	margin-top: 10px;
	padding-bottom: 10px;
	box-sizing: border-box;
	border-bottom: 1px solid #F2F2F2;
}

.home_game_rank .item:last-child {
	border-bottom: none;
	padding-bottom: 0px;
}

.home_game_rank .icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	margin-right: 10px;
}

.home_game_rank .oder {
	position: absolute;
	width: 24px;
	height: 24px;
	font-size: 12px;
	color: #000000;
	top: -6px;
	left: 0px;
	background: url(../images/home_gamerank_n.png) no-repeat left/contain;
	text-align: center;
	line-height: 24px;
	z-index: 1;
}

.home_game_rank .item:nth-child(2) .oder {
	background: url(../images/home_gamerank_one.png) no-repeat left/contain;
}

.home_game_rank .item:nth-child(3) .oder {
	background: url(../images/home_gamerank_two.png) no-repeat left/contain;
}

.home_game_rank .item:nth-child(4) .oder {
	background: url(../images/home_gamerank_three.png) no-repeat left/contain;
}

.home_game_rank .type {
	font-size: 12px;
	color: #999999;
	margin-left: 10px;
}


/* 首页热门资讯 */
.home_hot_zx .home-slide .slider {
	height: 180px;
}

.home_hot_zx .zx_list .item {
	margin-top: 21px;
}

.home_hot_zx .zx_list .thumb {
	width: 100px;
	height: 60px;
	margin-right: 15px;
}

.home_hot_zx .zx_list .info {
	padding: 5px 0;
}

.home_hot_zx .zx_list .icon {
	width: 24px;
	height: 24px;
	border: 1px solid #f5f5f5;
	border-radius: 6px;
	text-align: center;
	line-height: 26px;
	box-sizing: border-box;
}

.home_hot_zx .zx_list .icon a {
	background: url(../images/home_popular_btn.png) no-repeat left/contain;
	width: 16px;
	height: 16px;
}

.home_hot_zx .zx_list .icon:hover {
	background-color: var(--pm-c);
}

.home_hot_zx .zx_list .icon:hover a {
	background: url(../images/home_popular_active.png) no-repeat left/contain;
	width: 16px;
	height: 16px;
}

.home_hot_zx .zx_warp {
	margin-left: 15px;
}

.home_hot_zx .zx_warp .thumb {
	width: 180px;
	height: 96px;
}

.home_hot_zx .zx_warp .title {
	margin: 10px 0 12px;
}

.home_hot_zx .zx_warp .title:hover {
	color: var(--pm-c);
}

.home_hot_zx .zx_warp .text {
	width: 34px;
	height: 20px;
	border-radius: 0px 6px 0px 6px;
	border: 1px solid #E6E6E6;
	text-align: center;
}


.home_hot_gl .item:first-child {
	margin-top: 20px;
}

.home_hot_gl .item {
	border-bottom: 1px solid #f5f5f5;
	padding-bottom: 14px;
	box-sizing: border-box;
	margin-top: 16px;
}
.home_hot_gl .item:last-child{
	border-bottom: none;
}

.home_hot_gl .item .text::before {
	position: absolute;
	content: "热门攻略";
	width: 44px;
	height: 44px;
	background: rgba(35, 183, 136, 0.12);
	border-radius: 0px 8px 0px 8px;
	font-size: 12px;
	color: var(--pm-c);
	left: 0px;
	top: 0px;
	text-align: center;
	margin-right: 10px;
	transform: translate(0, 0%);
	padding: 6px 10px;
	box-sizing: border-box;
	line-height: 16px;
}

.home_hot_gl .item .text {
	position: relative;
	padding-left: 54px;
	margin-top: 10px;
	height: 44px;
	line-height: 22px;
}


.home_game_zj .item {
	background: url(../images/home_game_zj_bg.png) no-repeat left/contain;
	min-width: 266px;
	height: 220px;
}

.home_game_zj .icon {
	width: 64px;
	height: 64px;
	border-radius: 10px;
	position: absolute;
	bottom: 0px;
	left: 0px;
}

.home_game_zj .zj_header {
	height: 96px;
	border-radius: 12px 12px 0px 0px;
}

.home_game_zj .uk-width-1-4:nth-child(1) .zj_header {
	background: url(../images/home_gamealbum_one.png) no-repeat left/cover;
}

.home_game_zj .uk-width-1-4:nth-child(2) .zj_header {
	background: url(../images/home_gamealbum_two.png) no-repeat left/cover;
}

.home_game_zj .uk-width-1-4:nth-child(3) .zj_header {
	background: url(../images/home_gamealbum_three.png) no-repeat left/cover;
}

.home_game_zj .uk-width-1-4:nth-child(4) .zj_header {
	background: url(../images/home_gamealbum_four.png) no-repeat left/cover;
}

.home_game_zj .zj_header::before {
	content: "手游专辑";
	position: absolute;
	font-size: 12px;
	color: #FFFFFF;
	background: url(../images/home_game_album.png) no-repeat left/contain;
	top: 19px;
	left: -7px;
	width: 68px;
	height: 22px;
	text-align: center;
	line-height: 22px;
	z-index: 1;
}

.home_game_zj .zj_header .icon {
	position: absolute;
	left: 18px;
	bottom: -18px;
	z-index: 1;
}

.home_game_zj .zj_list {
	margin: 12px 0;
}

.home_game_zj .zj_list a {
	font-size: 12px;
	color: #999999;
	margin-left: 10px;
}

.home_game_zj .zj_list a:first-child {
	margin-left: 0;
}

.home_game_zj .zj_list a::after {
	content: "，";
	right: -4px;
	bottom: -10px;
	display: inline-block;
	width: 5px;
}

.home_game_zj .zj_bottom {
	padding: 0 18px;
	box-sizing: border-box;
}

.home_game_zj .zj_bottom>.title {
	font-weight: bold;
}


.home_gl_rank li {
	margin-top: 10px;
}

.home_gl_rank li:nth-child(-n+2) {
	border-bottom: 1px solid #F2F2F2;
	padding-bottom: 16px;
	box-sizing: border-box;
	margin-bottom: 16px;
}

.home_gl_rank li:nth-child(-n+2) .oder {
	background: rgba(35, 183, 136, 0.8);
}

.home_gl_rank li:nth-child(-n+2) .info_warp .time {
	display: none;
}

.home_gl_rank li .thumb,
.home_gl_rank li .info_num,
.home_gl_rank li .desc {
	display: none;
}

.home_gl_rank li:nth-child(-n+2) .thumb,
.home_gl_rank li:nth-child(-n+2) .desc {
	display: block;
}

.home_gl_rank li:nth-child(-n+2) .info_num {
	display: flex;
}

.home_gl_rank li .thumb {
	width: 110px;
	height: 60px;
	margin-right: 15px;
}

.home_gl_rank .info {
	padding: 5px 0;
}

.home_gl_rank .oder {
	width: 18px;
	height: 22px;
	background: #F0F0F0;
	border-radius: 4px;
	text-align: center;
	line-height: 22px;
	margin-right: 10px;
	font-size: 12px;
	color: #333333;
	font-weight: bold;
}

.home_gl_rank .desc,
.home_gl_rank .num {
	font-size: 12px;
	color: #999;
}

.home_gl_rank .num {
	background: url(../images/home_watch.png) no-repeat left/contain;
	background-size: 14px;
}

.home_gl_rank .info_num {
	margin-top: 10px;
}

.home_gl_rank .num {
	padding-left: 17px;
	box-sizing: border-box;
}


.home_game_gl {
	margin: 0 28px;
}

.home_game_gl .item {
	border-bottom: 1px dashed #f5f5f5;
	padding-bottom: 14px;
	box-sizing: border-box;
	margin-top: 20px;
}

.home_game_gl .item:last-of-type {
	border-bottom: none;
}

.home_game_gl .item .title,
.home_game_gl .item .text {
	padding-left: 44px;
	box-sizing: border-box;
}
.home_game_gl .item .title{
	position: relative;
}
.home_game_gl .item .title::before {
	position: absolute;
	content: "攻略";
	width: 34px;
	height: 20px;
	background: rgba(35, 183, 136, 0.12);
	border-radius: 0px 8px 0px 8px;
	font-size: 12px;
	color: var(--pm-c);
	left: 0px;
	top: 0px;
	text-align: center;
	margin-right: 10px;
	box-sizing: border-box;
	line-height: 20px;
}


.home_game_score .item:nth-child(2) {
	margin-top: 20px;
}

.home_game_score .item {
	border-radius: 8px;
	border: 1px solid #F5F5F5;
	padding: 13px 15px;
	box-sizing: border-box;
	margin-top: 12px;
}

.home_game_score .item:hover {
	background: #F7F7F7;
}

.home_game_score .info {
	padding: 5px 0;
	box-sizing: border-box;
}

.home_game_score .icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	margin: 0 15px;
}

.home_game_score .down_btn {
	width: 20px;
	height: 20px;
	display: inline-block;
	background: url(../images/home_down.png) no-repeat left/contain;
}

.home_game_score .item .title {
	margin-right: 5px;
	max-width: 352px;
}


.home_app {
	position: relative;
}
.home_app .module-title>div{
	max-width: 30%;
}
.home_app .module-title .title{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.home_app .home_app_type {
	position: absolute;
	top: 7px;
	right: 34px;
}

.home_app .home_app_type li {
	margin-left: 36px;
}

.home_app .home_app_type li:first-child {
	margin-left: 10px;
}

.home_app .home_app_type li:hover,
.home_app .home_app_type li.active {
	border-bottom: 4px solid var(--pm-c);
}

.home_app .home_app_type .title {
	font-size: 14px;
	color: #8C8C8C;
	line-height: 14px;
}

.home_app_list {
	margin-left: -32px;
}

.home_app .item {
	width: 86px;
	/* height: 86px; */
	margin-left: 32px;
	text-align: center;
	margin-top: 24px;
}

.home_app .item .icon {
	width: 86px;
	height: 86px;
	border-radius: 20px;
}

.home_app .details_btn {
	width: 70px;
	height: 28px;
	border-radius: 6px;
	border: 1px solid #EBEBEB;
	display: inline-block;
}

.home_app .details_btn:hover {
	background: var(--pm-c);
	color: #FFFFFF;
}

.home_app .details_btn span:first-child {
	display: inline-block;
}

.home_app .details_btn span:last-child {
	display: none;
}

.home_app .details_btn:hover span:first-child {
	display: none;
}

.home_app .details_btn:hover span:last-child {
	display: inline-block;
}

.home_app .item span {
	font-size: 12px;
	color: #999999;
}

.home_app .item span:last-child {
	color: #FFFFFF;
}

.home_app .home_app_list .title {
	margin: 8px 0;
}


.home_app_rank .item:nth-child(2) {
	margin-top: 26px;
}

.home_app_rank .item {
	position: relative;
	margin-top: 10px;
	padding-bottom: 10px;
	box-sizing: border-box;
	border-bottom: 1px solid #F2F2F2;
}

.home_app_rank .item:last-child {
	border-bottom: none;
	padding-bottom: 0px;
}

.home_app_rank .icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	margin-right: 10px;
}

.home_app_rank .oder {
	position: absolute;
	width: 24px;
	height: 24px;
	font-size: 12px;
	color: #000000;
	top: -6px;
	left: 0px;
	background: url(../images/home_gamerank_n.png) no-repeat left/contain;
	text-align: center;
	line-height: 24px;
	z-index: 1;
}

.home_app_rank .item:nth-child(2) .oder {
	background: url(../images/home_gamerank_one.png) no-repeat left/contain;
}

.home_app_rank .item:nth-child(3) .oder {
	background: url(../images/home_gamerank_two.png) no-repeat left/contain;
}

.home_app_rank .item:nth-child(4) .oder {
	background: url(../images/home_gamerank_three.png) no-repeat left/contain;
}

.home_app_rank .type {
	font-size: 12px;
	color: #999999;
	margin-left: 10px;
}


.home_score_tj .item:nth-child(2) {
	margin-top: 20px;
}

.home_score_tj .item {
	margin-top: 16px;
}

.home_score_tj .item .thumb::before {
	width: 20px;
	height: 22px;
	left: 4px;
	top: 4px;
	background: url(../images/home_highScore_two.png) no-repeat left/contain;
	z-index: 1;
	transform: translate(0, 0);
}

.home_score_tj .item:nth-child(-n + 4) .thumb::before {
	background: url(../images/home_highScore_one.png) no-repeat left/contain;
}

.home_score_tj .thumb {
	width: 120px;
	height: 70px;
	margin-right: 15px;
}

.home_score_tj .info {
	padding: 5px 0;
	box-sizing: border-box;
}

.home_score_tj .info .text {
	margin: 3px 0;
}

.home_cy_news {
	margin: 0 28px;
}


.home_cy_news .item:nth-child(2) {
	margin-top: 20px;
}

.home_cy_news .item {
	margin-top: 25px;
}

.home_cy_news .item .thumb {
	width: 140px;
	height: 90px;
	margin-right: 15px;
}

.home_cy_news .item .desc {
	margin-top: 5px;
	font-size: 12px;
	color: #999999;
	line-height: 24px;
	height: 68px;
	background: url(../images/home_industry_bg.png) no-repeat top/contain;
	padding: 15px;
	box-sizing: border-box;
	word-break: break-all;
}

.home_news_list .title::before {
	display: inline-block;
	left: 0;
	width: 4px;
	height: 4px;
	background: #E6E6E6;
}

.home_news_list li {
	position: relative;
	margin-top: 16px;
	padding-left: 42px;
	box-sizing: border-box;
}

.home_news_list li::before {
	position: absolute;
	content: "产业";
	background: rgba(35, 183, 136, 0.12);
	border-radius: 0px 6px 0px 6px;
	width: 34px;
	height: 20px;
	font-size: 12px;
	color: var(--pm-c);
	left: 0px;
	text-align: center;
}


.home_game_gift .item:nth-child(2) {
	margin-top: 20px;
}

.home_game_gift .item {
	padding-bottom: 15px;
	margin-top: 15px;
	border-bottom: 1px solid #F2F2F2;
}

.home_game_gift .item:last-child {
	border: none;
	padding-bottom: 0px;
}

.home_game_gift .info {
	margin-left: 15px;
	padding: 5px 0;
	box-sizing: border-box;
}

.home_game_gift .info .text {
	margin: 6px 0;
}

.home_game_gift .info .progress {
	color: var(--pm-c);
	font-size: 12px;
}

.home_game_gift .info .uk-progress {
	margin: 0;
	height: 8px;
	margin-right: 5px;
	border: 1px solid var(--pm-c);
	width: 88px;
}

.home_game_gift .info .uk-progress::-webkit-progress-value {
	background: var(--pm-c);
	border-radius: 99px;
}

.home_game_gift .thumb {
	width: 76px;
	height: 76px;
	border-radius: 18px;
}

.home_game_gift .details_btn {
	background: #F7F7F7;
	width: 44px;
	height: 44px;
	margin-left: 5px;
}

.home_game_gift .details_btn,
.home_game_gift .details_btn::before {
	border-radius: 99px;
}

.home_game_gift .details_btn::before {
	background: url(../images/home_gift.png) no-repeat top/contain;
	width: 24px;
	height: 24px;
	left: 50%;
	transform: translate(-50%, -50%);
}

.home_game_gift .details_btn:hover::before {
	content: "领取";
	width: 44px;
	height: 44px;
	background: var(--pm-c);
	font-size: 14px;
	color: #FFFFFF;
	text-align: center;
	line-height: 44px;
}


.home_images .images_left .uk-flex .thumb:nth-child(1) {
	width: 260px;
	height: 150px;
	margin-right: 10px;
}

.home_images .images_left .uk-flex .thumb:nth-child(2) {
	width: 200px;
	height: 150px;
}

.home_images .thumb:nth-child(2) {
	width: 470px;
	height: 170px;
}

.home_images .images_center .thumb {
	width: 470px;
	height: 330px;
}

.home_images .images_right .thumb {
	width: 200px;
	height: 330px;
}


.home_game_down {
	background-color: #fff;
	width: 388px;
	padding: 20px;
	box-sizing: border-box;
	margin: 20px 0 0px 18px;
}

.home_game_down:first-child {
	margin-left: 0;
}

.rank-title {
	position: relative;
}

.rank-title .title {
	font-weight: bold;
	font-size: 20px;
	color: #333333;
	padding-right: 10px;
	border-bottom: 5px solid #23B788;
	line-height: 16px;
}

.rank-title .more {
	position: absolute;
	line-height: 25px;
	letter-spacing: 1px;
	color: #999999;
	font-size: 12px;
	background: url(../images/home_more.png) no-repeat left/contain;
	width: 14px;
	height: 14px;
	right: 0;
}

.rank-title .title::before {
	width: 28px;
	height: 32px;
	background: url(../images/home_rank.png) no-repeat top/contain;
	right: -28px;
}

.home_game_down .item:nth-child(-n+4)::before {
	color: #fff;
}

.home_game_down .item:nth-child(2) {
	margin-top: 20px;
	background: linear-gradient(90deg, #F7E9DC 0%, rgba(255, 255, 255, 0) 100%);
}

.home_game_down .item:nth-child(2)::before {
	background: url(../images/home_rank_one.png) no-repeat top/contain;
}

.home_game_down .item:nth-child(2) .icon::before {
	background: url(../images/home_gold.png) no-repeat top/contain;
}

.home_game_down .item:nth-child(3) {
	background: linear-gradient(90deg, #D3E1F5 0%, rgba(255, 255, 255, 0) 100%);
}

.home_game_down .item:nth-child(3)::before {
	background: url(../images/home_rank_two.png) no-repeat top/contain;
}

.home_game_down .item:nth-child(3) .icon::before {
	background: url(../images/home_silver.png) no-repeat top/contain;
}

.home_game_down .item:nth-child(4) {
	background: linear-gradient(90deg, #F9E2E1 0%, rgba(255, 255, 255, 0) 100%);
}

.home_game_down .item:nth-child(4) .icon::before {
	background: url(../images/home_copper.png) no-repeat top/contain;
}

.home_game_down .item {
	padding: 11px 0 11px 15px;
	margin-top: 8px;
}

.home_game_down .item .order {
	font-size: 14px;
	color: #999999;
	margin-right: 12px;
	width: 22px;
	height: 26px;
	text-align: center;
	line-height: 26px;
	font-style: italic;
	font-weight: bold;
}

.home_game_down .item:nth-child(-n+4) .order {
	color: transparent;
}

.home_game_down .item:nth-child(2) .order {
	background: url("../images/home_rank_one.png") no-repeat center/contain;
}

.home_game_down .item:nth-child(3) .order {
	background: url("../images/home_rank_two.png") no-repeat center/contain;
}

.home_game_down .item:nth-child(4) .order {
	background: url("../images/home_rank_three.png") no-repeat center/contain;
}

.home_game_down .info {
	margin-left: 12px;
	padding: 5px 0;
	box-sizing: border-box;
}

.home_game_down .info .text {
	margin-top: 10px;
}

.home_game_down .icon,
.home_game_down .item:nth-child(-n+4) .icon::before {
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.home_game_down .item:nth-child(-n+4) .icon::before {
	z-index: 1;
}

.home_game_down .details_btn {
	width: 68px;
	height: 32px;
	border-radius: 99px;
	border: 1px solid var(--pm-c);
	margin-left: 5px;
	font-size: 14px;
	color: var(--pm-c);
	text-align: center;
	line-height: 32px;
	box-sizing: border-box;
}

/* 首页  end */
/* 资讯列表 */
.list_new .crumbs{
	margin-bottom: 30px;
}
.news_list .item{
	border-bottom: 1px solid #F2F2F2;
	padding-bottom: 20px;
	margin-top: 20px;
}
.news_list .item:hover{
	border-bottom-color: var(--pm-c);
}
.news_list .item:hover .title{
	color: var(--pm-c);
}
.news_list .item:hover .more{
	background-color: var(--pm-c);
	color: #fff;
}
.news_list .item:last-child{
	padding-bottom: 0;
	border-bottom: none;
}
.news_list .thumb{
	width: 210px;
	height: 130px;
	margin-right: 25px;
}
.news_list .desc{
	font-size: 14px;
	color: #999999;
	margin: 20px 0 42px;
}
.news_list .more{
	font-size: 12px;
	color: #999999;
	width: 78px;
	height: 26px;
	background: #F2F2F2;
	border-radius: 99px;
	text-align: center;
	line-height: 26px;
}
.news_list .more:hover{
	background: var(--pm-c);
	color: #FFFFFF;
}
.news_list .text,
.news_list .time{
	padding-left: 18px;
	box-sizing: border-box;
}
.news_list .text{
	background: url(../images/news_website.png) no-repeat left / contain;
    background-size: 14px;
}
.news_list .time{
	margin-left: 40px;
	background: url(../images/home_time.png) no-repeat left / contain;
	background-size: 14px;
}
.list_news{
	margin-top: 0px;
}
.news_tj .item{
	margin-top: 20px;
}
/* 资讯列表 end */
/* 手游专辑  */
.list_collection{
	margin-bottom: 30px;
}
.list_collection .module:first-child{
	padding-bottom: 0;
}
.list_collection .menu_nav a{
	font-size: 17px;
	color: #333333;
}
.list_collection .menu_nav li{
	margin-left: 46px;
	padding-bottom: 9px;
	box-sizing: border-box;
}
.list_collection .menu_nav li:first-child{
	margin-left: 0;
}
.list_collection .menu_nav li.active,
.list_collection .menu_nav li:hover{
	background: url(../images/collection_nav.png) no-repeat bottom / contain;
}
.list_collection .menu_nav li.active a,
.list_collection .menu_nav li:hover a{
	color: var(--pm-c);
}
.list_collection .list_warp{
	margin-top: 32px;
}
.list_collection .list_warp:first-child{
	margin-top: 0;
}
.list_collection .list_warp .title{
	font-weight: bold;
	font-size: 20px;
	max-width: 760px;
}
.list_collection .list_warp .title:hover{
	color: var(--pm-c);
}
.list_collection .list_warp .dot{
	text-indent: 6px;
	font-size: 14px;
	color: #FFFFFF;
	width: 50px;
	height: 24px;
	line-height: 24px;
	display: inline-block;
	margin-left: 13px;
	background: url(../images/collection_game_album.png) no-repeat left / contain;
}
.list_collection .list_warp .text{
	font-size: 14px;
}
.list_collection .list_warp .text:first-child{
	margin-right: 50px;
}
.list_collection .list_warp .container_header{
	width: 48px;
	height: 164px;
	text-align: center;
	background: url(../images/collection_list_bg.png) no-repeat left / contain;
	font-size: 16px;
	color: var(--pm-c);
	line-height: 48px;
    writing-mode: tb;
    letter-spacing: 5px;
}
.list_collection .list_warp .item:nth-child(2){
	margin-left: 35px;
}
.list_collection .list_warp .item{
	margin-left: 46px;
	width: 90px;
}
.list_collection .list_warp .zj_container{
	height: 164px;
	border-radius: 12px 0 0 12px;
	background: linear-gradient( 90deg, rgba(35,183,136,0.08) 0%, rgba(35,183,136,0) 100%);
}
.list_collection .list_warp .icon{
	width: 90px;
	height: 90px;
	border-radius: 20px;
}
.list_collection .list_warp .item{
	padding: 24px 0;
	box-sizing: border-box;
}
.list_collection .list_warp .item .title{
	font-size: 14px;
	color: #666666;
	margin-top: 8px;
	text-align: center;
}
.list_collection .list_warp .item .title:hover{
	color: var(--pm-c);
}
/* 手游专辑 end */
/* 礼包列表  */
.list_games .uk-width-1-2{
	border-bottom: 1px solid #F2F2F2;
	padding-bottom: 20px;
}
.list_games .uk-width-1-2:nth-last-child(-n+2){
	border-bottom: none;
}
.list_games .uk-width-1-2:nth-child(odd) .item{
	padding-right: 20px;
	box-sizing: border-box;
}
.list_games .item{
	margin-top: 20px;
}
.list_games .item .thumb{
	width: 80px;
	height: 80px;
	border-radius: 18px;
	margin-right: 15px;
}
.list_games .item .info{
	margin-left: 0;
}
.list_games .get{
	width: 76px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	border-radius: 99px;
	border: 1px solid var(--pm-c);
	font-size: 14px;
	color: var(--pm-c);
	margin-left: 10px;
}
.list_games .dot{
	width: 34px;
	height: 20px;
	background: rgba(35,183,136,0.12);
	border-radius: 0px 6px 0px 6px;
	font-size: 12px;
	color: var(--pm-c);
	margin-right: 6px;
	text-align: center;
	line-height: 20px;
}
.list_games .package_game_gift .item{
	margin-top: 16px;
}
.list_games .package_game_gift .item:nth-child(2){
	margin-top: 20px;
}
.tj_gift{
	margin-top: 40px;
}
.tj_gift .item{
	margin-top: 20px;
}
.tj_gift .gift{
	font-size: 12px;
	color: var(--pm-c);
}
.tj_gift .desc{
	margin-top: 5px;
	background: url(../images/gift_bg.png) no-repeat top/contain;
	height: 40px;
	font-size: 12px;
	color: #999999;
	line-height: 46px;
    padding: 0 12px;
    box-sizing: border-box;
}
/* 礼包列表 end */
/* 游戏列表 */
.list_game_header{
	padding: 20px 20px 0px 20px;
	background-color: #fff;
}
.game-menu-nav {
	margin-top: 30px;
	flex-wrap: wrap;
}

.game-menu-nav li {
	margin-bottom: 24px;
	border-bottom: 5px solid transparent;
	margin-right: 26px;
    margin-left: 26px;
}

.game-menu-nav li.active a,
.game-menu-nav li:hover a {
	border-bottom: 5px solid var(--pm-c);
}

.game-menu-nav li a {
	font-size: 16px;
	color: #8C8C8C;
	letter-spacing: 1px;
	display: inline-block;
	line-height: 25px;
    height: 25px;
    box-sizing: border-box;
}

.game-menu-nav li.active a,
.game-menu-nav li:hover a {
	color: #333333;
}
.game_warp{
	padding-top: 28px;
}
.game_warp .uk-width-1-4:nth-child(-n+4){
	margin-top: 0px;
}
.game_warp .uk-width-1-4{
	margin-top: 56px;
}
.game_warp .item{
	position: relative;
	border-radius: 12px;
	border: 1px solid #EBEBEB;
	text-align: center;
	padding: 52px 20px 20px 20px;
	box-sizing: border-box;
}
.game_warp .item:hover{
	background: rgba(35,183,136,0.05);
	border: 1px solid var(--pm-c);
}
.game_warp .item:hover .down{
	background: var(--pm-c);
	color: #FFFFFF;
}
.game_warp .item .icon{
	width: 80px;
	height: 80px;
	border-radius: 18px;
	position: absolute;
	top: -28px;
    left: 50%;
    transform: translateX(-50%);
}
.game_warp .item .title{
	font-weight: bold;
	font-size: 16px;
	color: #333333;
	margin: 12px 0;
}
.game_warp .item .down{
	display: inline-block;
	width: 232px;
	height: 38px;
	background: rgba(35,183,136,0.1);
	border-radius: 99px;
	font-size: 14px;
	color: var(--pm-c);
	text-align: center;
	line-height: 38px;
	margin: 17px 0 12px 0;
}
.game_warp .item span{
	margin-left: 3px;
}
/* 游戏列表 end */
/* 排行榜大全  */
.rank_banner{
	height: 300px;
	background: url(../images/rank_banner.png) no-repeat top/contain;
}
.rank_menu_nav {
	height: 44px;
	line-height: 44px;
	background: rgba(35,183,136,0.2);
	padding: 0 20px;
	box-sizing: border-box;
}

.rank_menu_nav li {
	height: 50px;
	padding: 12px 40px;
	box-sizing: border-box;
	line-height: 24px;
}

.rank_menu_nav li.active,
.rank_menu_nav li:hover {
	background: var(--pm-c);
	box-shadow: 0px -4px 8px 0px var(--pm-c);
	border-radius: 99px;
}

.rank_menu_nav li a {
	display: block;
	font-size: 20px;
	color: #333333;
}

.rank_menu_nav li.active a,
.rank_menu_nav li:hover a {
	color: #ffffff;
}
.rank_warp{
	margin-top: 45px;
}
.rank_warp .item{
	padding: 20px;
	box-sizing: border-box;
	margin-top: 10px;
}
.rank_warp .item:nth-child(1){
	background: linear-gradient( 90deg, #F7E9DC 0%, rgba(255,255,255,0) 100%);
}
.rank_warp .item:nth-child(2){
	background: linear-gradient( 90deg, #D3E1F5 0%, rgba(255,255,255,0) 100%);
}
.rank_warp .item:nth-child(3){
	background: linear-gradient( 90deg, #F9E2E1 0%, rgba(255,255,255,0) 100%);
}
.rank_warp .item .order {
	font-size: 22px;
	color: #999999;
	margin-right: 20px;
	width: 40px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	font-style: italic;
	font-weight: bold;
}

.rank_warp .item:nth-child(-n+3) .order {
	color: transparent;
}
.rank_warp .item:nth-child(1) .order {
	background: url("../images/home_rank_one.png") no-repeat center/contain;
}

.rank_warp .item:nth-child(2) .order {
	background: url("../images/home_rank_two.png") no-repeat center/contain;
}

.rank_warp .item:nth-child(3) .order {
	background: url("../images/home_rank_three.png") no-repeat center/contain;
}
.rank_warp .icon{
	margin-right: 15px;
}
.rank_warp .icon,
.rank_warp .item:nth-child(-n+3) .icon::before {
	width: 110px;
	height: 110px;
	border-radius: 50%;
}
.rank_warp .item:nth-child(-n+3) .icon::before {
	z-index: 1;
}
.rank_warp .item:nth-child(1) .icon::before {
	background: url(../images/home_gold.png) no-repeat top/contain;
}
.rank_warp .item:nth-child(2) .icon::before {
	background: url(../images/home_silver.png) no-repeat top/contain;
}
.rank_warp .item:nth-child(3) .icon::before {
	background: url(../images/home_copper.png) no-repeat top/contain;
}
.rank_warp .item .title{
	font-weight: bold;
	font-size: 20px;
}
.rank_warp .item .type{
	margin: 15px 0;
	font-size: 14px;
	color: #999999;
}
.rank_warp .item .type div{
	margin-left: 50px;
	font-size: 14px;
	color: #999999;
}
.rank_warp .item .type div:first-child{
	margin-left: 0;
}
.rank_warp .item .text{
	font-size: 14px;
}
.rank_warp .item .down{
	width: 130px;
	height: 48px;
	border-radius: 99px 99px 99px 99px;
	border: 1px solid var(--pm-c);
	text-align: center;
	line-height: 48px;
	font-size: 16px;
	color: var(--pm-c);
}
.rank_warp .item .down:hover{
	background-color: var(--pm-c);
	color: #fff;
}
.rank_warp .item .type .platform{
	width: 18px;
	height: 18px;
	display: inline-block;
	background-color: var(--pm-c);
	border-radius: 3px;
	text-align: center;
	line-height: 21px;
	vertical-align: bottom;
}
.rank_warp .item .type .platform:nth-child(2){
	background: #FE7E48;
}
.rank_warp .item .type .platform:first-child i{
	background: url(../images/az.png) no-repeat left/contain;
	width: 14px;
	height: 14px;
	display: inline-block;
}
.rank_warp .item .type .platform:nth-child(2) i{
	background: url(../images/ios.png) no-repeat left/contain;
	width: 14px;
	height: 14px;
	display: inline-block;
}
/* 排行榜大全 end */
/* 排行榜列表  */
.rank_list_warp{
	margin-top: 0;
}
.rank_list_warp .item{
	border-radius: 12px;
	border: 1px solid #EBEBEB;
	padding: 25px;
	box-sizing: border-box;
}
.rank_list_warp .item:hover{
	background: rgba(35,183,136,0.05);
	border: 1px solid var(--pm-c);
}
.rank_list_warp .item .icon_box{
	width: 152px;
	height: 110px;
	position: relative;
}
.rank_list_warp .item .icon_box::before{
	content: "";
	display: inline-block;
	width: 152px;
	height: 110px;
	background: url(../images/list_rank_bg.png) no-repeat center/contain;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
}
.rank_list_warp .item .icon {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	border: 2px solid #EBBC75;
}
.rank_list_warp .item:hover .btn{
	background-color: var(--pm-c);
	color: #fff;
}
.rank_list_warp .title{
	font-weight: bold;
	font-size: 20px;
	color: #333333;
}
.rank_list_warp .text{
	font-size: 14px;
	margin: 20px 0;
}
.rank_list_warp .btn{
	display: inline-block;
	width: 100px;
	height: 36px;
	border-radius: 99px;
	border: 1px solid var(--pm-c);
	font-size: 14px;
	color: var(--pm-c);
	text-align: center;
	line-height: 36px;
}
/* 排行榜列表 end */
/* 网站地图  */
.page_map .item {
	margin-bottom: 20px;
}

.page_map .item p {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: bold;
	font-size: 16px;
	color: #333333;
}
.page_map .item ul li {
	width: 110px;
	height: 42px;
	line-height: 42px;
	background: #F7F7F7;
	border-radius: 4px;
	margin-right: 20px;
	margin-bottom: 25px;
	text-align: center;
	border: 1px solid transparent;
}

.page_map .item ul li a {
	display: block;
	font-size: 14px;
	color: #666666;
	text-align: center;
}

.page_map .item ul li:nth-child(7n) {
	margin-right: 0;
}
.page_map .item ul li:hover {
	border: 1px solid var(--pm-c);
	background-color: #fff;
}
.page_map .item ul li a:hover {
	color: var(--pm-c) !important;
}
/* 网站地图 end */
/* 搜索结果 */
.search_warp .game_warp{
	margin-top: 20px;
	margin-bottom: 50px;
}
.single_news_list .item .title{
	font-weight: bold;
	font-size: 18px;
}
/* 搜索结果 end */
/* 专辑详情 */
.details_zj{
	margin-bottom: 30px;
}
.details_zj_header{
	padding: 30px;
	box-sizing: border-box;
	/* height: 234px; */
	margin-bottom: 20px;
	margin-top: 30px;
	background: linear-gradient( 180deg, rgba(35,183,136,0.1) 0%, rgba(35,183,136,0) 100%);
	position: relative;
}
.details_zj_header .icon{
	width: 110px;
	height: 100px;
	border-radius: 20px;
	margin-right: 25px;
}
.details_zj_header .info{
	padding: 5px 0;
	box-sizing: border-box;
}
.details_zj_header .dot{
	position: absolute;
	content: "";
	display: inline-block;
	width: 50px;
	height: 25px;
	background: url(../images/collection_game_album.png) no-repeat left / contain;
	top: 38px;
	left: 22px;
	font-size: 14px;
	color: #FFFFFF;
	text-align: center;
    line-height: 25px;
	z-index: 1;
}
.details_zj_header .single_warp .title{
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 19px;
}
.details_zj_header .single_warp .info .title:hover{
	color: #333;
}
.details_zj_header .single_warp .tag{
	width: 72px;
	height: 26px;
	background: rgba(35,183,136,0.08);
	border-radius: 0px 6px 0px 6px;
	font-size: 14px;
	color: var(--pm-c);
	text-align: center;
	line-height: 26px;
	margin-right: 10px;
}
.details_zj_header .single_warp .text{
	font-size: 14px;
	color: #666666;
}
.details_zj_header .single_warp .text{
	margin-right: 50px;
}
.details_zj_related{
	margin-top: 28px;
}
.details_zj_related  li{
	border-radius: 6px;
	border: 1px solid #EBEBEB;
	padding: 9px 12px;
	box-sizing: border-box;
	margin-left: 7px;
}
.details_zj_related  li:first-child{
	margin-left: 0;
}
.details_zj_related  li a{
	font-weight: 400 !important;
	font-size: 14px !important;
	color: #999;
	margin: 0 !important;
}
.details_zj_header .single_warp .details_zj_related .text{
	font-size: 16px;
	color: #4D4D4D;
	margin-right: 8px !important;
}
.details_zj_related span{
	font-weight: bold;
	font-size: 14px;
	color: #23B788;
	margin-right: 6px;
}
.details_zj_card{
	width: 370px;
	margin-left: 10px;
}
.details_zj_card .name{
	padding: 3px;
	box-sizing:  border-box;
	width: 40px;
	height: 186px;
	background: linear-gradient( 180deg, rgba(35,183,136,0.6) 0%, rgba(35,183,136,0) 100%);
}
.details_zj_card .name p{
	width: 34px;
	height: 179px;
	background: linear-gradient( 180deg, rgba(35,183,136,0.8) 0%, rgba(35,183,136,0) 100%);
	writing-mode: tb;
    letter-spacing: 6px;
	line-height: 36px;
    padding-top: 8px;
    box-sizing: border-box;
	font-weight: bold;
	font-size: 16px;
	color: #FFFFFF;
}
.details_zj_card .item{
	padding: 20px;
	box-sizing: border-box;
	background-color: #fff;
}
.details_zj_card .item .icon{
	width: 60px;
	height: 60px;
	border-radius: 12px;
	margin-right: 15px;
}
.details_zj_card .item .info{
	padding: 5px 0;
	box-sizing: border-box;
}
.details_zj_card .item .title{
	font-weight: bold;
	font-size: 16px;
	color: #404040;
}
.details_zj_card .item .title:hover{
	color: var(--pm-c);
}
.details_zj_card .item .text{
	margin-top: 8px;
}
.details_zj_card .item .zj_star{
	width: 44px;
	height: 44px;
	font-size: 18px;
	color: #FFFFFF;
	font-weight: 500;
	text-align: center;
	line-height: 44px;
	background: url(../images/zj_score.png) no-repeat left / contain;
	margin-left: 5px;
}
.details_zj_card .item .desc{
	margin: 14px 0 16px;
	font-weight: 400;
	font-size: 12px;
	color: #999999;
}
.details_zj_card .item .down{
	width: 290px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	background: linear-gradient( 90deg, #23B788 0%, #86DA5F 100%);
	border-radius: 99px;
	display: inline-block;
	color: #fff;
}
.list_zj{
	margin: 20px 0;
}
.list_zj .list_warp{
	/* margin-top: 0;
	width: 358px; */
}
.list_zj .list_warp:nth-child(2){
	/* margin: 0 40px; */
}
.list_zj .list_warp .title{
	max-width: 295px;
	font-weight: bold;
    font-size: 20px;
}
.list_zj .list_warp .dot{
	text-indent: 6px;
	font-size: 14px;
	color: #FFFFFF;
	width: 50px;
	height: 24px;
	line-height: 24px;
	display: inline-block;
	margin-left: 13px;
	background: url(../images/collection_game_album.png) no-repeat left / contain;
}
.list_zj .zj_container{
	height: 76px !important;
	background: linear-gradient( 90deg, rgba(35,183,136,0.08) 0%, rgba(35,183,136,0) 100%);
	border-radius: 12px 0 0 12px;
	margin-top: 13px;
}
.list_zj .zj_container .container_header{
	width: 38px;
	height: 76px;
	text-align: center;
	background: url(../images/show_collection_bg.png) no-repeat left / contain;
	font-size: 14px;
	color: var(--pm-c);
	line-height: 40px;
    writing-mode: tb;
    letter-spacing: 5px;
}
.list_zj .zj_container .item{
	padding: 13px 0;
	box-sizing: border-box;
	margin-left: 14px !important;
}
.list_zj .zj_container .icon{
	width: 50px;
	height: 50px;
	border-radius: 99px;
}
.list_zj .list_container{
	margin-top: 18px;
}
.list_zj .list_container  li {
	margin-bottom: 18px;
}

.list_zj .list_container  li .title {
	font-size: 14px;
	color: #333333;
	font-weight: normal;
	max-width: none;
}
.list_zj .list_container  li .title:hover,
.list_zj .list_warp .title:hover{
	color: var(--pm-c);
}

.list_zj .list_container  li .dot_ {
	display: block;
    width: 4px;
    height: 4px;
	background-color: #E6E6E6;
	margin-right: 10px;
}
.list_zj .list_container  li .num{
	font-size: 12px;
	color: #999999;
	margin-left: 5px;
}
.show_app_list{
	margin-bottom: 70px;
}
.show_app_list .uk-grid>*{
	margin-top: 22px;
}
.show_app_list .item{
	width: 372px;
	height: 155px;
	padding: 20px;
	box-sizing: border-box;
	border: 1px solid #EBEBEB;
	border-radius: 12px;
}
.show_app_list .item:hover{
	background: rgba(35,183,136,0.05);
	border: 1px solid #23B788;
}
.show_app_list .item:hover .down{
	background-color: var(--pm-c);
	color: #fff;
}
.show_app_list .icon{
	width: 80px;
	height: 80px;
	border-radius: 18px;
	margin-right: 15px;
}
.show_app_list .title{
	font-weight: bold;
	font-size: 16px;
	max-width: 256px;
}
.show_app_list .tag{
	width: 64px;
	height: 20px;
	margin-left: 10px;
	text-align: center;
	line-height: 20px;
	font-size: 12px;
	color: #FFFFFF;
	background: url(../images/show_collection_tag_bg.png) no-repeat left / contain;
}
.show_app_list .size,
.show_app_list .type{
	font-size: 12px;
	color: #999999;
}
.show_app_list .type{
	margin: 13px 0;
}
.show_app_list .desc{
	font-size: 12px;
	color: #999999;
}
.show_app_list .home_score{
	display: inline-block;
}
.show_app_list .down{
	width: 90px;
	height: 36px;
	border-radius: 99px;
	border: 1px solid #23B788;
	color: var(--pm-c);
	text-align: center;
	line-height: 36px;
}
/* 专辑详情 end */
/* 礼包详情 */
.show_game_package .single_header{
	width: 800px;
	/* height: 180px; */
	background: linear-gradient( 180deg, rgba(35,183,136,0.1) 0%, rgba(35,183,136,0) 100%);
	padding: 30px;
	box-sizing: border-box;
	margin-top: 30px;
}
.show_game_package .single_header .icon{
	width: 120px;
	height: 120px;
	border-radius: 25px;
	margin-right: 25px;
}
.show_game_package .single_header .title{
	font-weight: bold;
	font-size: 24px;
	margin-bottom: 20px;
}
.show_game_package .single_header .info .title:hover{
	color: #333;
}
.show_game_package .single_header .tag{
	display: inline-block;
	width: 72px;
	height: 26px;
	background: rgba(35,183,136,0.08);
	border-radius: 0px 6px 0px 6px;
	text-align: center;
	line-height: 26px;
	font-size: 14px;
	color: var(--pm-c);
	margin-right: 10px;
}
.show_game_package .single_header .info .time,
.show_game_package .single_header .info .num{
	font-size: 14px;
	color: #666666;
}
.title_introduction{
	width: 130px;
	height: 50px;
	text-align: center;
	line-height: 46px;
	font-weight: bold;
	font-size: 20px;
	color: #333333;
	background: url(../images/package_bg.png) no-repeat left / contain;
	margin: 20px auto;
}
.show_game_news .time_icon{
	width: 60px;
	height: 60px;
	background: #F5F5F5;
	border-radius: 0px 10px 0px 10px;
	text-align: center;
	margin-right: 15px;
	padding: 13px 0;
	box-sizing: border-box;
	position: relative;
}
.show_game_news .time_icon::before{
	display: inline-block;
	content: "";
	position: absolute;
	background: url(../images/home_time.png) no-repeat left / contain;
	width: 14px;
	height: 14px;
	top: 13px;
	left: 50%;
	transform: translateX(-50%);
}
.show_game_news .time_icon .time{
	margin-top: 17px;
}
.show_game_news .info{
	padding: 6px 0;
	box-sizing: border-box;
}
.show_game_news .info .title{
	margin-bottom: 10px;
}
/* 礼包详情 end */
/* 手游下载详情 */
.show_game_warp .single_header{
	width: 800px;
	/* height: 274px; */
	background: linear-gradient( 180deg, rgba(35,183,136,0.1) 0%, rgba(35,183,136,0) 100%);
	padding: 30px;
	box-sizing: border-box;
	margin-top: 30px;
	margin-bottom: 20px;
}
.show_game_warp .single_header .icon{
	width: 140px;
	height: 140px;
	border-radius: 35px;
	margin-right: 25px;
}
.show_game_warp .single_header .title{
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 20px;
}
.show_game_warp .single_header .info .title:hover{
	color: #333;
}
.show_game_warp .single_header .tag{
	display: inline-block;
	width: 72px;
	height: 26px;
	background: rgba(35,183,136,0.08);
	border-radius: 0px 6px 0px 6px;
	text-align: center;
	line-height: 26px;
	font-size: 14px;
	color: var(--pm-c);
	margin-right: 10px;
}
.show_game_warp .single_header .text{
	font-size: 14px;
	color: #666666;
}
.show_game_warp .single_header .down-btn{
	margin-top: 24px;
}
.show_game_warp .single_header .down-btn .btn span{
	padding-left: 35px;
    box-sizing: border-box;
}
.show_game_warp .sliderBox {
    width: 810px;
    height: auto;
    margin: 0;
    overflow: hidden;
}

.show_game_warp .sliderBox .slide {
    height: auto;
}

.show_game_warp .sliderBox .slide li {
    width: 33.33%;
}

.show_game_warp .sliderBox .slide li img {
    width: 240px;
    display: inline-block;
    overflow: hidden;
    position: relative;
    height: auto;
    margin-right: 40px;
	border-radius: 10px;
}

.show_game_warp .sliderBox .slide_toggle {
    height: 8px;
    margin-top: 10px !important;
    background-color: #F0F0F0;
    border-radius: 20px;
    overflow: hidden;
}

.show_game_warp .sliderBox .slide_toggle li {
    display: flex;
    width: 33.3%;
    padding-left: 0;
}

.show_game_warp .sliderBox .slide_toggle li a {
    display: inline-block;
    width: 100%;
    height: 8px;
    background-color: transparent;
    border-radius: 20px;
    border: none;
}
.show_game_warp .sliderBox .slide_toggle li.uk-active a {
    display: inline-block;
    width: 100%;
    height: 8px;
    background-color: #ccc;
    border-radius: 20px;
}
.show_game_warp .home_game_xz .item{
	width: 70px;
}
.show_game_warp .home_game_xz .icon{
	width: 70px;
	height: 70px;
	border-radius: 15px;
}
.show_game_gl{
	margin-bottom: 40px;
}
.show_game_gl .game_gl,
.show_game_gl .list_container{
	width: 380px;
}
.show_game_gl .game_gl li{
	margin-top: 20px;
}
.show_game_gl .thumb{
	width: 100px;
	height: 60px;
	margin-right: 15px;
}
.show_game_gl .game_gl .title{
	margin-bottom: 10px;
}
.show_game_gl .game_gl .btn{
	display: inline-block;
	width: 78px;
	height: 26px;
	background: #F2F2F2;
	border-radius: 99px;
	text-align: center;
	line-height: 26px;
	font-size: 12px;
	color: #999999;
}
.show_game_gl .game_gl .btn:hover{
	background-color: var(--pm-c);
	color: #fff;
}
.show_game_gl .game_gl .time{
	background: url(../images/home_time.png) no-repeat left / contain;
	background-size: 14px;
	padding-left: 18px;
}
.show_game_gl .list_container li{
	margin-top: 16px;
}
.show_game_gl .list_container .dot_{
	width: 4px;
	height: 4px;
	background: #E6E6E6;
	margin-right: 10px;
}
/* 手游下载详情 end */
/* 资讯详情 */
.show_news_warp{
	margin-top: 30px;
}
.show_news_warp .single_header{
	/* height: 152px; */
	background: linear-gradient( 180deg, rgba(35,183,136,0.1) 0%, rgba(35,183,136,0) 100%);
	padding: 34px 25px;
	box-sizing: border-box;
	text-align: center;
	margin-bottom: 20px;
}
.show_news_warp .single_header .title{
	font-weight: bold;
	font-size: 24px;
	color: #333333;
}
.show_news_warp .single_header .others {
	font-size: 14px;
	color: #999;
	text-align: center;
	margin-top: 30px;
}
.show_news_warp .single_header .others span {
	margin: 0 15px;
}
.show_news_warp .single-content p {
	color: #666666;
	text-indent: 2em;
}
.show_news_warp .show_game_gl{
	margin-top: 90px;
}
.news_game_list .item{
	width: 104px;
	height: 100px;
	background: #F7F7F7;
	border-radius: 14px 14px 8px 26px;
	padding: 38px 12px 12px;
	box-sizing: border-box;
	position: relative;
	margin-left: 12px;
	margin-bottom: 44px;
	text-align: center;
}
.news_game_list .item:first-child,
.news_game_list .item:nth-child(8){
	margin-left: 0px;
}
.news_game_list .item:nth-last-child(-n + 7){
	margin-bottom: 0;
}
.news_game_list .item::before{
	content: "";
	display: inline-block;
	width: 38px;
	height: 20px;
	position: absolute;
	top: -19px;
	right: 12px;
	background: url(../images/home_hot.png) no-repeat left / contain;
	z-index: 1;
}
.news_game_list .item .icon{
	width: 60px;
	height: 60px;
	border-radius: 15px;
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translateX(-50%);
}
.news_game_list .item .title{
	margin: 8px 0;
}
/* 资讯详情 end */
/* 排行榜详情 */
.details_rank{
	padding: 20px;
	box-sizing: border-box;
	background-color: #fff;
}
.details_rank_header{
	padding-bottom: 20px;
	box-sizing: border-box;
	border-bottom: 1px solid #EBEBEB;
	margin-bottom: 20px;
}
.details_rank_header p{
	font-weight: bold;
	font-size: 20px;
	color: #333333;
}
.details_rank_header .time{
	font-size: 14px;
}
.details_rank .home_game_down{
	margin: 0;
	width: 100%;
	padding: 0;
	margin-bottom: 70px;
}
.details_rank .home_game_down .item{
	padding: 20px 0 20px 20px;
	box-sizing: border-box;
	margin-top: 10px;
}
.details_rank .home_game_down .item .order{
	width: 40px;
	height: 40px;
	margin-right: 20px;
	font-size: 22px;
}
.details_rank .home_game_down .icon,
.details_rank .home_game_down .item:nth-child(-n+3) .icon::before {
	width: 110px;
	height: 110px;
}
.details_rank .home_game_down .details_btn{
	width: 130px;
	height: 48px;
	line-height: 48px;
	font-size: 16px;
}
.details_rank .home_game_down .details_btn:hover{
	background-color: var(--pm-c);
	color: #fff;
}
.details_rank  .home_game_down .info .text{
	margin: 0;
}
.details_rank  .home_game_down .info .type:first-child{
	margin-right: 50px;
}
.details_rank .home_game_down .item:nth-child(-n+3)::before {
	color: #fff;
}

.details_rank .home_game_down .item:nth-child(1) {
	/* margin-top: 20px; */
	background: linear-gradient(90deg, #F7E9DC 0%, rgba(255, 255, 255, 0) 100%);
}

.details_rank .home_game_down .item:nth-child(1)::before {
	background: url(../images/home_rank_one.png) no-repeat top/contain;
}

.details_rank .home_game_down .item:nth-child(1) .icon::before {
	background: url(../images/home_gold.png) no-repeat top/contain;
}

.details_rank .home_game_down .item:nth-child(2) {
	margin-top: 10px;
	background: linear-gradient(90deg, #D3E1F5 0%, rgba(255, 255, 255, 0) 100%);
}

.details_rank .home_game_down .item:nth-child(2)::before {
	background: url(../images/home_rank_two.png) no-repeat top/contain;
}

.details_rank .home_game_down .item:nth-child(2) .icon::before {
	background: url(../images/home_silver.png) no-repeat top/contain;
}

.details_rank .home_game_down .item:nth-child(3) {
	background: linear-gradient(90deg, #F9E2E1 0%, rgba(255, 255, 255, 0) 100%);
}

.details_rank .home_game_down .item:nth-child(3) .icon::before {
	background: url(../images/home_copper.png) no-repeat top/contain;
}
.details_rank .home_game_down .item:nth-child(-n+3) .order {
	color: transparent;
}

.details_rank .home_game_down .item:nth-child(1) .order {
	background: url("../images/home_rank_one.png") no-repeat center/contain;
}

.details_rank .home_game_down .item:nth-child(2) .order {
	background: url("../images/home_rank_two.png") no-repeat center/contain;
}

.details_rank .home_game_down .item:nth-child(3) .order {
	background: url("../images/home_rank_three.png") no-repeat center/contain;
}
.details_rank .home_game_down .item:nth-child(4) {
	background: #fff;
}

.details_rank .home_game_down .item:nth-child(4) .icon::before {
	background: none;
}

.details_rank .home_game_down .item:nth-child(4) .order {
	background: none;
	color: #999;
}
.details_rank .home_game_gl{
	margin: 0;
}
.details_rank .home_game_gl .item{
	border-bottom: 1px dashed #E6E6E6;
}
.details_rank .home_game_gl .uk-width-1-2:nth-last-child(-n + 2) .item{
	border-bottom: none;
}
.details_rank .home_ht_tt,
.details_rank .home_cy_news{
	margin: 0;
}
.details_rank .home_cy_news .thumb{
	width: 130px;
}
.details_rank .home_cy_news .item .desc{
	width: 175px;
	height: 68px;
	background: url(../images/show_rank_industry_bg.png) no-repeat top/contain;
	padding: 13px;
	margin-top: 1px;
}
.details_rank_list .list-container{
	margin-top: 20px;
}
.details_rank_list li{
	margin-bottom: 16px;
}
.details_rank_list li .title{
	padding: 0;
}
.details_rank_list li .dot_{
	width: 34px;
	height: 20px;
	text-align: center;
	line-height: 20px;
	background: rgba(35,183,136,0.12);
	border-radius: 0px 6px 0px 6px;
	font-size: 12px;
	color: #23B788;
	margin-right: 8px;
}
.details_rank_list .num{
	font-size: 12px;
	color: #999999;
	background: url(../images/like.png) no-repeat left/contain;
	background-size: 12px;
	padding-left: 17px;
	box-sizing: border-box;
	margin-left: 8px;
}
.details_rank_hot_game .item:nth-child(2){
	margin-top: 20px;
}
.details_rank_hot_game .item{
	padding-bottom: 16px;
	box-sizing: border-box;
	margin-top: 16px;
	border-bottom: 1px solid #F2F2F2;
}
.details_rank_hot_game .item:last-child{
	border-bottom: none;
}
.details_rank_hot_game .icon{
	width: 70px;
	height: 70px;
	border-radius: 12px;
	margin-right: 15px;
}
.details_rank_hot_game .item .btn_box{
	margin-left: 10px;
}
.details_rank_hot_game .item .btn_box .platform{
	width: 22px;
	height: 22px;
	display: inline-block;
	background-color: var(--pm-c);
	border-radius: 3px;
	text-align: center;
	line-height: 28px;
	vertical-align: bottom;
}
.details_rank_hot_game .item .btn_box .platform:nth-child(2){
	background: #FE7E48;
	margin-left: 8px;
}
.details_rank_hot_game .item .btn_box .platform:first-child i{
	background: url(../images/az.png) no-repeat left/contain;
	width: 18px;
	height: 18px;
	display: inline-block;
}
.details_rank_hot_game .item .btn_box .platform:nth-child(2) i{
	background: url(../images/ios.png) no-repeat left/contain;
	width: 18px;
	height: 18px;
	display: inline-block;
}
/* 排行榜详情 end */
/* 开服 */
.kaifu-warp .crumbs{
	margin-bottom: 30px;
}
.kaifu-warp .module-title .icon_box{
	left: 106px;
}
.kaifu-warp .module-title .time{
	font-size: 14px;
	color: #666666;
	background: url(../images/kaifu_time.png) no-repeat left/contain;
	background-size: 14px;
	padding-left: 18px;
	box-sizing: border-box;
}
.kaifu-warp tr {
	background: #FAFAFA;
	border-radius: 6px;
	border: 1px solid #FFFFFF;
	margin-top: 9px;
}

.kaifu-warp tr th {
	height: 40px;
	line-height: 40px;
	font-weight: bold;
	background: rgba(35,183,136,0.12);
	font-size: 14px;
	color: var(--pm-c);
	box-sizing: border-box;
	padding: 0 12px;
	box-sizing: border-box;
}

.uk-table-hover tbody tr:hover,
.uk-table-hover>tr:hover {
	background: #FAFAFA;
}

.kaifu-warp tr td {
	font-size: 14px;
	letter-spacing: 1px;
	color: #666666;
	box-sizing: border-box;
	padding: 13px;
}

.kaifu-warp tr .game-name {
	width: 170px;
}

.kaifu-warp tr .icon {
	width: 30px;
	height: 30px;
	border-radius: 6px;
	overflow: hidden;
}

.kaifu-warp tr .title {
	font-size: 14px;
	color: #333333;
	display: inline-block;
	line-height: 18px;
}

.kaifu-warp tr .type {
	font-size: 12px;
	color: #999999;
	display: block;
	line-height: 14px;
}

.kaifu-warp tr .time {
	font-size: 14px;
	color: #666666;
}

.kaifu-warp tr td span {
	font-size: 14px;
	letter-spacing: 1px;
	color: #c6c5c5;
}
.kaifu-warp .kf-system{
	width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 3px;
    text-align: center;
    line-height: 21px;
    vertical-align: bottom;
	padding: 0;
}
.kaifu-warp .kf-system i{
	width: 14px;
    height: 14px;
    display: inline-block;
}
.kaifu-warp .az_{
	background-color: var(--pm-c);
}
.kaifu-warp .az_ i{
	background: url(../images/az.png) no-repeat left / contain;
}
.kaifu-warp .ios_{
	background-color: #FE7E48;
}
.kaifu-warp .ios_ i{
	background: url(../images/ios.png) no-repeat left / contain;
}

.kaifu-warp .btn {
	display: block;
	width: 108px;
	height: 32px;
	line-height: 32px;
	border-radius: 5px;
	font-size: 14px;
	letter-spacing: 1px;
	box-sizing: border-box;
	margin: 0 auto;
}

.kaifu-warp .down {
	font-size: 14px;
	color: #23B788;
	padding-left: 18px;
}

.kaifu-warp .gift {
	font-size: 14px;
	color: #FE7E48;
	padding-left: 18px;
}

.kaifu-warp .btn::before {
	left: 12px;
	display: inline-block;
	z-index: 100;
}

.kaifu-warp .down::before {
	width: 14px;
	height: 14px;
	left: 0px;
	background: url(../images/kf_down_.png) no-repeat center/contain;
}


.kaifu-warp .gift::before {
	width: 15px;
	height: 15px;
	left: 0px;
	background: url(../images/kf_gift_.png) no-repeat center/contain;
}

.kaifu-warp .game-type{
	font-weight: bold;
	font-size: 14px;
	color: var(--pm-c);
}
.kaifu-warp .game-type::after {
	width: 14px;
	height: 14px;
	z-index: 99;
	background: url('../images/dropdown.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: 15px;
	letter-spacing: 1px;
	color: #666666;
	cursor: pointer;
}
.kaifu-warp .uk-table-divider>:first-child>tr:not(:first-child),
.kaifu-warp .uk-table-divider>:not(:first-child)>tr,
.kaifu-warp .uk-table-divider>tr:not(:first-child) {
    border-top: 9px solid #fff;
}
/* 开服 end */








/* 列表页公共样式 */
/* 菜单栏 */
.menu-nav{
	margin-bottom: 25px;
}
.menu-nav li:first-child{
	margin-left: 0px;
}
.menu-nav li {
	margin-left: 30px;
}

.menu-nav li a {
	display: block;
	font-size: 16px;
	color: #8C8C8C;
	line-height: 16px;
}

.menu-nav li.active a,
.menu-nav li:hover a {
	color: #333333;
	border-bottom: 5px solid var(--pm-c);
}

/* 详情页公共样式 */
.single .single-content {
	/* padding: 35px 25px; */
}

.single .single-content iframe {
	display: block;
	margin: 0 auto;
	width: 520px;
	height: 320px;
}

.single .single-content p {
	font-weight: 400;
	font-size: 16px;
	color: #4D4D4D;
	/* text-indent: 2em; */
	margin: 20px 0 40px;
	line-height: 2.5;
}

.single .single-content p img {
	max-width: 68%;
	margin: 10px auto;
	display: block;
}

.single .single-content h2,
.single .single-content h3 {
	width: 100%;
	height: 24px;
	line-height: 24px;
	background: url('../images/single_content_h3.png') no-repeat left/contain;
	background-size: 18px;
	font-weight: bold;
	font-size: 18px;
	color: var(--pm-c);
	letter-spacing: 1px;
	padding-left: 26px;
}

/* .single .single-content h3::after,
.single .single-content h3::after {
	content: '';
	width: 640px;
	height: 1px;
	background-color: #F2F2F2;
	display: inline-block;
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(50%);
	z-index: -1;
} */

/* 详情下载按钮 */
.single .down-btn .btn {
	position: relative;
	display: block;
	font-size: 14px;
	color: #fff;
	border-radius: 30px;
	padding: 10px 40px;
	cursor: pointer;
}

.single .down-btn .pc {
	background: var(--pm-c);
}

.single .down-btn .sy,
.single .down-btn .az,
.single .down-btn .mob,
.single .down-btn .xz {
	background: linear-gradient( 90deg, #23B788 0%, #86DA5F 100%);
}
.single .down-btn .ios,
.single .down-btn .lb {
	background: linear-gradient( 90deg, #FE7E48 0%, #F29831 100%);
}

.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: 16%;
	top: 100%;
	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 .btn a,
.single .down-btn .btn span {
	position: relative;
	font-size: 18px;
	color: #fff;
	background-repeat: no-repeat;
	background-position: center left;
}

.single .down-btn .az a,
.single .down-btn .az span {
	background-image: url('../images/show_az.png');
}

.single .down-btn .ios a,
.single .down-btn .ios span {
	background-image: url('../images/show_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/nav_gift.png'); */
}

.single .down-btn .xz a,
.single .down-btn .xz span {
	/* background-image: url('../images/nav_game.png'); */
}

.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 {
	min-height: 520px;
	margin-top: 160px;
}

.page-error .page-404 {
	width: 230px;
	height: 230px;
	margin: 0 auto;
	background: url(../images/404.png) no-repeat center/contain;
}

.page-error .page-500 {
	width: 230px;
	height: 230px;
	margin: 0 auto;
	background: url(../images/500.png) no-repeat center/contain;
}

.page-error p {
	color: #999;
	font-size: 14px;
}

.page-error .go-home {
	margin-top: 40px;
	display: inline-block;
	width: 110px;
	height: 40px;
	line-height: 40px;
	background: #FFFFFF;
	border-radius: 99px;
	border: 1px solid var(--pm-c);
	font-size: 14px;
	color: var(--pm-c);
	text-align: center;
}

/* 单页面样式 */
.page {
	min-height: 720px;
}

.page .crumb_box{
	margin-bottom: 30px;
}

.page-nav {
	overflow: hidden;
	margin-right: 30px;
}

.page-nav li {
	overflow: hidden;
	margin-bottom: 12px;
	border: 1px solid #EBEBEB;
	border-radius: 6px;
	height: 48px;
	line-height: 48px;
	padding:  0 12px;
	box-sizing: border-box;
}

.page-nav li a {
	display: inline-block;
	width: 184px;
	text-align: center;
	font-size: 18px;
	color: #B3B3B3;
	letter-spacing: 1px;
}

.page-nav li.active,
.page-nav li:hover{
	background: rgba(35,183,136,0.1);
	border-color: transparent;
	
}
.page-nav li.active a,
.page-nav li:hover a {
	color: var(--pm-c);
	background: url(../images/page_sitemap_active.png) no-repeat right/cover;
	background-size: 18px;
}

.page-content p {
	font-size: 16px;
	line-height: 40px;
	letter-spacing: 1px;
	color: #666666;
	text-indent: 0em;
}

.page-title {
	font-size: 16px;
	letter-spacing: 1px;
	color: #333333;
	font-weight: 600;
	margin: 10px 0 20px;
}

.page-content ul {
	flex-wrap: wrap;
}

.page-content ul li {
	width: 110px;
	height: 42px;
	line-height: 40px;
	border-radius: 6px;
	border: solid 1px var(--br-c);
	text-align: center;
	margin-right: 10px;
	margin-bottom: 12px;
	padding: 0 15px;
	box-sizing: border-box;
}

.page-content .page-rank li {
	width: 160px;
}

.page-content ul li a {
	font-size: 16px;
	color: #333333;
	letter-spacing: 1px;
	display: block;
}

.page-content ul li:hover {
	border: solid 1px var(--pm-c);
	background-color: var(--pm-c);
}

.page-content ul li:hover a {
	color: #ffffff;
}

/* 搜索页样式 */
.search-total {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #333;
	margin: 30px 0;
}