:root {
	--pm-c: #F9E58B;
	--br-c: #eee;
	/* 下边框颜色 */
	--b-b-c: #F3EEEE; 
	--hover-c: #0598FA;
}

/*隐藏类*/
.hide {
	display: none !important;
}

/*隐藏遮罩*/
#aq-model {
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 999;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #fff url(/themes/default/404.png) no-repeat center;
}

/*应用信息样式*/
#app_info {
	margin: .4rem 0
}

#app_info li {
	display: inline-block;
	width: 33.33%;

}

#app_info li b {
	cursor: pointer;
}

#app_info_cover {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	text-align: center;
	z-index: 9999
}

#app_info_cover .app_info_main {
	background: #fff;
	width: 10.4rem;
	margin: auto;
	margin-top: 2rem;
	border-radius: .16rem;
	overflow: hidden;
}

#app_info_cover .app_info_title {
	background: #5CA8F6;
	font-size: .4rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
	line-height: 1rem;
}

#app_info_cover .app_info_body {
	padding: .4rem;
	height: 6.4rem;
	overflow-y: scroll;
	text-align: left;
}

#app_info_cover .app_info_close {
	margin: .4rem;
	font-size: .34rem;
	color: #fff;
	background: #5CA8F6;
	line-height: .96rem;
	border-radius: .4rem;
	cursor: pointer;
	display: block;
	font-weight: bold;
	margin-top: .6rem;
}

@media (max-width: 15.2rem) {
	#app_info li {
		width: 100%;
		margin-top: .2rem;
	}

	#app_info_cover .app_info_main {
		width: 98%;
	}

	#app_info_cover .app_info_close {
		font-size: .32rem;
		line-height: .84rem;
	}
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
button,
textarea,
p,
th,
td,
span,
a,
b,
i,
strong,
::before,
::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

em,
i {
	font-style: normal;
}

table {
	border-collapse: collapse;
}

input {
	border: none;
	/*在移动端浏览器默认的外观在iOS上加上这个属性才能给按钮和输入框自定义样式*/
	-webkit-appearance: none;
}

a {
	text-decoration: none;
	background: none;
	font-size: inherit;
	color: inherit;
	transition: all .2s ease-out;
}

a:hover {
	color: var(--pm-c);
	text-decoration: none;
}

ul,
li,
ol {
	list-style: none;
}

:focus {
	outline: none;
}

/*点击高亮我们需要清除  设置为transparent 完成透明*/
* {
	-webkit-tap-highlight-color: transparent;
}

/*禁用长按页面时的弹出菜单*/
img,
a {
	-webkit-touch-callout: none;
}

/* 去掉滑动条 */
::-webkit-scrollbar {
	display: none
}

/* 滚动槽 */
::-webkit-scrollbar-track {
	/* -webkit-box-shadow: inset.12remrgba(0, 0, 0, 0.3); */
	border-radius: .2rem;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
	border-radius: .2rem;
	background: rgba(0, 0, 0, 0.1);
	/* -webkit-box-shadow: inset.12remrgba(0, 0, 0, 0.5); */
}

::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255, 0, 0, 0.4);
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
	width: 6px;
}

.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: linear;
	-moz-transition-timing-function: linear;
	-ms-transition-timing-function: linear;
	-o-transition-timing-function: linear;
	transition-timing-function: linear;
}

body {
	font-size: .24rem;
	line-height: 1.5;
	color: #333;
	background-color: #fff;
	width: 7.5rem;
	min-width: 320px;
	max-width: 750px;
	margin: 0 auto;
	letter-spacing: .01rem;
}

/*图片高清*/
img {
	border: 0;
	display: block;
	width: 100%;
	height: 100%;
	image-rendering: -moz-crisp-edges;
	image-rendering: -o-crisp-edges;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
	object-fit: cover;
	transition: all .3s ease-out;
}

a.title {
	display: block;
}

/*边框样式*/
.b-a {
	border: .02rem solid var(--br-c) !important;
}

.b-b {
	border-bottom: .02rem solid var(--br-c) !important;
}

.b-t {
	border-top: .02rem solid var(--br-c) !important;
}

.b-l {
	border-left: .02rem solid var(--br-c) !important;
}

.b-r {
	border-right: .02rem solid var(--br-c) !important;
}

/* 虚线上边框 */
.b-t-dashed {
	border-top: .02rem dashed var(--br-c) !important;
}

/* 虚线下边框 */
.b-b-dashed {
	border-bottom: .02rem dashed var(--br-c) !important;
}

/* 内边距  */
.p-a-0 {
	padding: 0rem;
}

.p-a-5 {
	padding: .1rem;
}

.p-a-10 {
	padding: .2rem;
}

.p-a-15 {
	padding: .3rem;
}

.p-a-20 {
	padding: .4rem;
}

.p-a-25 {
	padding: .5rem;
}

.p-a-30 {
	padding: .6rem;
}

/* 内上边距 */
.p-t-0 {
	padding-top: 0rem !important;
}

.p-t-5 {
	padding-top: .1rem;
}

.p-t-10 {
	padding-top: .2rem;
}

.p-t-15 {
	padding-top: .3rem;
}

.p-t-20 {
	padding-top: .4rem;
}

.p-t-30 {
	padding-top: .6rem;
}

/* 内下边距 */
.p-b-0 {
	padding-bottom: 0rem !important;
}

.p-b-5 {
	padding-bottom: .1rem;
}

.p-b-10 {
	padding-bottom: .2rem;
}

.p-b-15 {
	padding-bottom: .3rem;
}

.p-b-20 {
	padding-bottom: .4rem;
}

.p-b-30 {
	padding-bottom: .6rem !important;
}

/* 内右边距 */
.p-r-0 {
	padding-right: 0rem;
}

.p-r-5 {
	padding-right: .1rem;
}

.p-r-10 {
	padding-right: .2rem;
}

.p-r-15 {
	padding-right: .3rem;
}

.p-r-20 {
	padding-right: .4rem;
}

.p-r-30 {
	padding-right: .6rem;
}

/* 内左边距 */
.p-l-0 {
	padding-left: 0rem;
}

.p-l-5 {
	padding-left: .1rem;
}

.p-l-10 {
	padding-left: .2rem;
}

.p-l-15 {
	padding-left: .3rem;
}

.p-l-20 {
	padding-left: .4rem;
}

.p-l-30 {
	padding-left: .6rem;
}

/*圆角样式*/
.b-r-4 {
	border-radius: .08rem !important;
}

.b-r-6 {
	border-radius: .12rem !important;
}

.b-r-8 {
	border-radius: .16rem !important;
}

.b-r-10 {
	border-radius: .2rem !important;
}

.b-r-12 {
	border-radius: .24rem !important;
}

.b-r-24 {
	border-radius: .48rem !important;
}

/* 上外边距 */
.m-t-0 {
	margin-top: 0rem !important;
}

.m-t-5 {
	margin-top: .1rem !important;
}

.m-t-10 {
	margin-top: .2rem !important;
}

.m-t-15 {
	margin-top: .3rem !important;
}

.m-t-20 {
	margin-top: .4rem !important;
}

.m-t-25 {
	margin-top: .5rem !important;
}

.m-t-30 {
	margin-top: .6rem !important;
}
.m-t-35 {
	margin-top: .7rem !important;
}

/* 下外边距 */
.m-b-0 {
	margin-bottom: 0rem !important;
}

.m-b-5 {
	margin-bottom: .1rem !important;
}

.m-b-10 {
	margin-bottom: .2rem !important;
}

.m-b-15 {
	margin-bottom: .3rem !important;
}

.m-b-20 {
	margin-bottom: .4rem !important;
}

.m-b-25 {
	margin-bottom: .5rem !important;
}

.m-b-30 {
	margin-bottom: .6rem !important;
}

/* 左外边距 */
.m-l-0 {
	margin-left: 0rem !important;
}

.m-l-5 {
	margin-left: .1rem !important;
}

.m-l-10 {
	margin-left: .2rem !important;
}

.m-l-15 {
	margin-left: .3rem !important;
}

.m-l-20 {
	margin-left: .4rem !important;
}

.m-l-25 {
	margin-left: .5rem !important;
}

.m-l-30 {
	margin-left: .6rem !important;
}

/* 右外边距 */
.m-r-0 {
	margin-right: 0rem !important;
}

.m-r-5 {
	margin-right: .1rem !important;
}

.m-r-10 {
	margin-right: .2rem !important;
}

.m-r-15 {
	margin-right: .3rem !important;
}

.m-r-20 {
	margin-right: .4rem !important;
}

.m-r-30 {
	margin-right: .6rem !important;
}

/* 溢出2行省略号 */
.line-2 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}

/* 溢出3行省略号 */
.line-3 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
}

/* 溢出4行省略号 */
.line-4 {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
}

/*伪类居中*/
/* 增加伪类 前置 */
.before-middle {
	position: relative;
}

.before-middle::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

/* 增加伪类 后置 */
.after-middle {
	position: relative;
}

.after-middle::after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

.after-center {
	position: relative;
}

.after-center::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
}

.module {
	margin: .4rem .2rem;
	background: #fff;
}

.title {
	font-size: .28rem;
	color: #333333;
	letter-spacing: .02rem;
	display: block;
}

.info {
	margin-left: .2rem;
	overflow: hidden;
	flex: 1;
}

.icon {
	width: 1.21rem;
	height: 1.21rem;
	border-radius: .15rem;
	overflow: hidden;
}

.desc {
	font-size: .24rem;
	color: #888888;
}

.type {
	font-size: .24rem;
	color: #888888;
}

.time {
	font-size: .24rem;
	color: #999999;
}

.score {
	font-size: .28rem;
	color: #FF6969;
}

.down {
	display: block;
	text-align: center;
	letter-spacing: .02rem;
}
/*默认图标尺寸*/
.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);
}

/* 默认的一些文字大小和颜色 */
.info {
	flex: 1;
	overflow: hidden;
}

.info .title {
	font-size: .28rem;
	color: #333;
	display: block;
}

.info .title:hover {
	color: var(--pm-c);
}

.info .text {
	font-size: .28rem;
	color: #666;
}

.info .time {
	font-size: .24rem;
	color: #999;
}

.title {
	display: block;
	font-size: .32rem;
	color: #333333;
}

.text {
	font-size: .28rem;
	color: #888888;
}

/*分页*/
.pagination {
	margin: 1.4rem 0 1.2rem 0;
	text-align: center;
}

.pagination .page-item {
	display: inline-block;
	margin: .1rem;
	font-size: .26rem;
	border: .02rem solid var(--br-c);
	color: #999999;
	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: .12rem .20rem;
	border: .02rem solid transparent;
}

.pagination li a {
	display: inline-block;
	color: #999999;
}

.pagination li a:hover {
	background: var(--pm-c);
	color: #fff;
	border: .02rem solid var(--pm-c) !important;
}

/* 公共列表样式 */
.list-container {
	overflow: hidden;
}

.list-container li {
	margin-top: .35rem;
}

.list-container li .dot {
	display: block;
	width: .25rem;
	height: .25rem;
	background: url('../images/dot.png') no-repeat center/contain;
}

.list-container li .tag {
	color: #888888;
	font-size: .24rem;
}

.list-container li .order {
	width: .45rem;
	height: .45rem;
	line-height: .45rem;
	background-color: #e0e0e0;
	border-radius: .06rem;
	text-align: center;
	color: #ffffff;
	font-size: .24rem;
}

.list-container li .title {
	display: block;
	margin-left: .3rem;
	margin-right: .3rem;
	color: #333333;
	font-size: .28rem;
}

.list-container li .time {
	font-size: .24rem;
	color: #999999;
}

/* 评分图标 */
.star {
	height: .24rem;
	width: 1.2rem;
	background: url('../images/star_bg.png') repeat-x center/.24rem;
	display: inline-block;
}

.star:before {
	content: "";
	display: block;
	background: url('../images/star.png') repeat-x 0/.24rem;
	height: .24rem;
}

.star-1:before {
	width: .24rem;
}

.star-2:before {
	width: .48rem;
}

.star-3:before {
	width: .72rem;
}

.star-4:before {
	width: .96rem;
}

.star-5:before {
	width: 1.2rem;
}

/* 公共标题 */
.module-title {
	position: relative;
	/* height: .5rem;
	line-height: .5rem; */
	margin-left: .8rem;
	/* padding-bottom: .2rem; */
	border-bottom: .02rem solid var(--b-b-c);
	box-sizing: border-box;
	padding-top: .04rem;
}

.module-title .title {
	font-size: .3rem;
	color: #333333;
	margin-bottom: .1rem;
	font-weight: bold;
	letter-spacing: .04rem;
	/* line-height: .5rem; */
}

.module-title .more {
	display: block;
	line-height: .5rem;
	letter-spacing: .02rem;
	color: #999999;
	font-size: .24rem;
}

.module-title .title::before {
	display: inline-block;
	background: url(../images/title_dot.png) no-repeat left/contain;
	width: .5rem;
	height: .5rem;
	left: -0.8rem;
}

/* 头尾 */
/* .header {
	background-repeat: no-repeat;
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 30px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08);
}

.header .logo {
	display: block;
	width: auto;
	height: 100%;
	overflow: hidden;
}

.search {
	width: 195px;
	height: 27.5px;
	border-radius: 2px;
	overflow: hidden;
	display: flex;
	margin-left: 10px;
	background: #fff;
	padding: 2.5px;
	box-sizing: border-box;
}

.search .search-input {
	width: calc(100% - 41px);
	height: 100%;
	background: #fff;
	padding: 0 10px;
	font-size: 12px;
	color: #888888;
}

.search .search-btn {
	width: 41px;
	height: 100%;
	cursor: pointer;
	margin-left: -0.5px;
	background: #c04a49;
	color: #fff;
	font-size: 12px;
	border: none;
	border-radius: 2px;
}

input::-webkit-input-placeholder {
	font-size: 12px;
	color: #888888;
}

input::-moz-placeholder {
	font-size: 12px;
	color: #888888;
} */

 .header {
    background-repeat: no-repeat;
    background-size: cover;
	padding: .2rem 0;
    box-shadow: 0rem .08rem .08rem 0rem rgba(0, 0, 0, 0.08);
}
.header .logo {
	display: block;
	width: 1.8rem;
	height: 100%;
	overflow: hidden;
	margin-bottom: .2rem;
}
.header .nav {
	width: 100%;
	overflow: auto hidden;
	margin-top: .2rem;
}
.header .nav li {
	flex-shrink: 0;
	min-width: 1.58rem;
	height: .60rem;
	line-height: .60rem;
	border-radius: .6rem;
	padding: 0 0.22rem;
	box-sizing: border-box;
	text-align: center;
	margin-right: .16rem;
}

.header .nav .active {
	background-color: var(--pm-c);
}

.header .nav  a {
	display: block;
	font-size: .28rem;
	color: #333;
}

.header .nav .active a {
	color: #333;
}

.footer {
	background-color: #333333;
	padding: .3rem;
	color: #999999;
	font-size: .24rem;
	text-align: center;
}

.footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer ul li {
	margin: .2rem 0;
	padding: 0 .2rem;
	line-height: 1;
}

.footer ul li:last-child {
	border-right: 0;
}
.footer .aBox .after-middle{
	margin-right: .4rem;
	display: inline-block;
}
.footer .aBox .after-middle::after{
	width: .02rem;
    height: .20rem;
    background-color: #999;
    margin-left: .2rem;
	display: inline-block;
}

.footer p {
	margin-top: .1rem;
}

/* 友情链接 */
.link {
	padding-bottom: 0;
}

.flink {
	overflow: hidden;
}

.flink a {
	/* display: inline-block; */
	float: left;
	margin-right: .3rem;
	white-space: nowrap;
	margin-bottom: .28rem;
	line-height: .28rem;
	font-size: .24rem;
	color: #888888;
}

.flink a::after {
	content: '|';
	display: inline-block;
	margin-left: .3rem;
	font-size: .24rem;
	color: #888888;
}

.flink a:last-child::after {
	display: none;
}

/* 公共详情样式 */
.single-content {
	/* padding: .7rem .5rem; */
}
.single-content iframe {
	display: block;
	margin: 0 auto;
	width: 10.4rem;
	height: 6.4rem;
}

.single-content p {
	font-size: .28rem;
	color: #666666;
	text-indent: 2em;
	line-height: .72rem;
}

.single-content p img {
	max-width: 100%;
	margin: .2rem auto;
	display: block;
}
.single-content h2,
.single-content h3{
	position:relative;         
	display:inline-block;        
	padding: .06rem .24rem;       
	background: #F9E48B;         
	font-size: .28rem;
	color: #000;
	letter-spacing: .02rem;
	font-weight: 600;
	margin: .3rem 0rem;        
}
.single-content h2::after,
.single-content h3::after{
	content:'';
	position:absolute;
	left:100%;                   
	top:50%;
	transform:translateY(-50%);  
	width: 5.2rem;
    height: .02rem;         
	background-color: #F2F2F2;    
}

.single-content-title {
	height: .8rem;
	line-height: .8rem;
	background: #FDF1F1 url('../images/single_content_title.png') no-repeat .2rem/contain;
	border-radius: .16rem;
	padding-left: .56rem;
	font-size: .36rem;
	font-weight: bold;
	line-height: .8rem;
	letter-spacing: .01rem;
	color: #1A1A1A;
	margin-bottom: .3rem;
}

.single-news .single-header .title {
	font-weight: bold;
	font-size: .32rem;
	line-height: .4rem;
	color: #333333;
	overflow: visible;
	text-overflow: inherit;
	white-space: wrap;
	margin-top: .6rem;
	text-align: center;
}

.single-news .single-header .info {
	display: flex;
	justify-content: space-between;
	border-bottom: .02rem solid #eeeeee;
	padding-bottom: .36rem;
	margin-bottom: .36rem;
	margin-top: .5rem;
}

.single-news .info span {
	font-size: .24rem;
	line-height: .6rem;
	color: #999999;
	margin-right: .1rem;
}

.single-news .info span:nth-child(2) {
	margin-left: .1rem;
	margin-right: .1rem;
}

/* 公共菜单栏 */
/* .menu-nav {}

.menu-nav li {
	height: 30px;
	line-height: 27px;
	text-align: center;
}

.menu-nav li a {
	display: block;
	font-size: 13px;
	letter-spacing: 1px;
	color: #666666;
	border: solid .5px #eeeeee;
	border-radius: 5px;
	padding: 0 5px;
}

.menu-nav li.active a {
	color: var(--pm-c);
	border: solid .5px var(--pm-c);
} */

.mian {
	overflow: hidden;
	position: relative;
}

/* 首页 */
.module{
	margin: .28rem;
}
/* 轮播图 */
.home_slider{
	width: 6.94rem;
	margin-bottom: .2rem;
}
.home_slider .sliderBox {
	/* margin-bottom: .4rem; */
    overflow: hidden;
}

.home_slider .sliderBox .dotnav {
    display: none;
}

.home_slider .sliderBox .dotnav li a {
    border: none;
    border-radius: .36rem;
    width: .16rem;
    height: .16rem;
    background-color: #d9d9d9;
}

.home_slider .sliderBox .dotnav li.uk-active a {
    background-color: var(--pm-c);
}

.home_slider .sliderBox .slide {
    margin-left: -0.4rem;
}

.home_slider .sliderBox .slide li {
    width: 33.33%;
    padding-left: .4rem;
}

.home_slider .sliderBox .slide li:last-child {
    margin-right: 0;
}

.home_slider .sliderBox .slide li span {
    display: inline-block;
    overflow: hidden;
    position: relative;
    height: auto;
    border-radius: .12rem;
}

.home_slider .sliderBox {
    position: relative;
    overflow: hidden;
}

.home_slider .sliderBox .slider_item {
    width: 100%;
    margin-left: 0;
}

.home_slider .sliderBox .slider_item li {
    width: 100%;
    padding-left: 0;
}

.home_slider .sliderBox .slider_item li .thum {
    width: 8rem;
    height: 4.66rem;
    position: relative;
}
.home_slider .sliderBox .slider_item li .thum a{
	display: inline-block;
    width: 100%;
    height: 100%;
}
.home_slider .sliderBox .dotnav {
    width: 100%;
    margin-top: .24rem;
    margin-left: 0;
    display: none;
}

.home_slider .sliderBox .dotnav li {
    padding-left: 0;
    margin-right: .08rem;
}

.home_slider .sliderBox .dotnav li a {
    border: none;
    width: .1rem;
    height: .1rem;
    border-radius: 50%;
    position: relative;
}

.home_slider .sliderBox .dotnav li:last-child {
    margin-right: 0;
}

.home_slider .sliderBox .dotnav li.uk-active a {
    background-color: var(--pm-c);
}

.home_slider .sliderBox .btn {
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 0;
    width: .5rem;
    height: 1.02rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home_slider .sliderBox .btn svg {
    display: none;
}

.home_slider .sliderBox .btn.left {
    left: 0;
    background: url(../images/slider_btn_l.png) no-repeat left/contain;
}

.home_slider .sliderBox .btn.right {
    right: 0;
    background: url(../images/slider_btn_r.png) no-repeat left/contain;
}
/* 轮播图 end */
/* 热门资讯  */
.home_hot_news .item{
	margin-top: .3rem;
	box-sizing: border-box;
}
.home_hot_news .item .after-middle::after{
	width: .42rem;
	height: .42rem;
	background: url(../images/hot_news_hot.png) no-repeat left/contain;
	right: -0.1rem;

}
.home_hot_news .item .title{
	max-width: 3.6rem;
}
.home_hot_news .item .thumb{
	width: 2.74rem;
	height: 1.96rem;
}
.home_hot_news .item .info{
	background: #F8F8F8;
	/* padding-left: .3rem; */
	box-sizing: border-box;
	/* padding-top: .24rem; */
	margin-left: 0rem;
	padding: .16rem .24rem;
	padding-right: 0rem;
}
.home_hot_news .item .hot{
	width: .74rem;
	height: .4rem;
	background: #FFF9DD;
	border-radius: .08rem .08rem .08rem .08rem;
	border: .02rem solid #FFD526;
	font-weight: 400;
	font-size: .24rem;
	color: #FFD526;
	text-align: center;
	position: absolute;
    left: .2rem;
    top: .2rem;
}
.home_hot_news .item .info .title{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .28rem;
	color: #000000;
}
.home_hot_news .item .info .title:hover{
	color: var(--pm-c);
}
.home_hot_news .item .info .desc{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #999999;
	line-height: .52rem;
	margin: .1rem 0;
}
/* 热门资讯 end */

/* 推荐攻略 */
.home_tj_gl .list-container li{
	margin-top: .36rem;
}
.home_tj_gl .list-container .before-middle::before{
	width: .1rem;
	height: .1rem;
	background: var(--pm-c);
}
.home_tj_gl .list-container li .text{
	font-size: .24rem;
	color: #999999;
}
/* 推荐攻略 end */

/* 推荐排行 */
.home_news_rank .list .item{
	border-bottom: .02rem dashed #E5E5E5;
	padding-bottom: .2rem;
}
.home_news_rank .list .item .top{
	display: none;
}
.home_news_rank .list .item:first-child .top{
	display: flex;
}
.home_news_rank .list .item .btm{
	display: flex;
}
.home_news_rank .list .item:first-child .btm{
	display: none;
}
.home_news_rank .list .item.active .top {
    display: flex;
}
.home_news_rank .list .item.active .btm {
    display: none;
}
.home_news_rank .list .item .thumb{
	width: 2.2rem;
	height: 1.48rem;
	margin-right: .2rem;
}
.home_news_rank .list .item .thumb img{
	border-radius: .08rem;
}
.home_news_rank .list .item .order{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #999;
	line-height: .88rem;
	background: #F5F5F5;
	border-radius: .08rem;
	width: .4rem;
	height: .4rem;	
	text-align: center;
	line-height: .4rem;
	margin-right: .2rem;
}
.home_news_rank .list{
	margin-top: .36rem;
}
.home_news_rank .list .item{
	margin-top: .24rem;
}
.home_news_rank .list .item:nth-child(-n+3) .order{
	background-color: var(--pm-c);
    color: #333;
}
.home_news_rank .list .item .title{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .28rem;
	color: #333333;
}
.home_news_rank .list .item .time{
	font-size: .24rem;
	color: #888888;
}
.home_news_rank .list .item .title:hover{
	color: var(--pm-c);
}
.home_news_rank .list .item .info .text{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #666666;
	margin: .16rem 0;
}
.home_news_rank .list .item .info .author,
.home_news_rank .list .item .info .time{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #888888;
	position: relative;
	padding-left: .4rem;
	box-sizing: border-box;
}
.home_news_rank .list .item .info .author::before,
.home_news_rank .list .item .info .time::before{
	width: .24rem;
	height: .24rem;
	contain: "";
	left: 0rem;
}
.home_news_rank .list .item .info .author::before{
	background: url(../images/author.png) no-repeat left/contain;
}
.home_news_rank .list .item .info .time::before{
	background: url(../images/time.png) no-repeat left/contain;
}
/* 推荐排行 end */
/* 攻略评测 */
.home_game_pc .list-game-pc{
	margin-top: .3rem;
}
.home_game_pc .list-game-pc li{
	margin-bottom: .3rem;
	background: #F8F8F8;
	padding: .2rem .3rem;
	box-sizing: border-box;
}
.home_game_pc .list-game-pc li:hover .title{
	color: var(--pm-c);
}
.home_game_pc .list-game-pc li .title{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .28rem;
	color: #000000;
	line-height: .6rem;
	padding-right: .5rem;
}
.home_game_pc .list-game-pc li .desc{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #888888;
	line-height: .6rem;
}
.home_game_pc .list-game-pc .after-middle::after{
	content: "评测";
	background: #F9E48B;
	border-radius: 0rem 0rem 0rem .3rem;	
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #333333;
	line-height: .4rem;
	padding-left: .3rem;
	padding-right: .2rem;
	box-sizing: border-box;
	top: .22rem;
    right: 0;
}
.home_game_pc .game_pc .info{
	border-bottom: .02rem dashed #E5E5E5;
	padding-bottom: .2rem;
	box-sizing: border-box;
	margin-bottom: .4rem;
}
.home_game_pc .game_pc .info:last-child{
	margin-bottom: 0;
}
.home_game_pc .game_pc .info .time{
	margin-right: .1rem;
}
.home_game_pc .game_pc .info .pc{
	background: #F9E48B;
	border-radius: 0rem 0rem 0rem .3rem;	
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #333333;
	line-height: .4rem;
	padding-left: .3rem;
	padding-right: .2rem;
	box-sizing: border-box;
	margin-left: .1rem;
}
/* 攻略评测 end */

/* 新游资讯 */
.home_game_zx .gme_zx{
	margin-top: .3rem;
}
.home_game_zx .gme_zx .item{
	background: #F8F8F8;
	padding: .2rem;
	box-sizing: border-box;
	position: relative;
}
.home_game_zx .gme_zx .item .thumb{
	width: 100%;
	height: 2rem;
}
.home_game_zx .gme_zx .item .title{
	margin: .2rem 0;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .28rem;
	color: #333333;
}
.home_game_zx .gme_zx .item .title:hover{
	color: var(--pm-c);
}
.home_game_zx .gme_zx .item .desc{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #888888;
	line-height: .48rem;
}
.home_game_zx .gme_zx .item .time{
	position: absolute;
	background: rgba(0,0,0,0.5);
	top: .4rem;
	left: .4rem;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #FFFFFF;
	line-height: .4rem;
	padding: 0 .1rem;
}
.home_game_zx .gme_zx .game_zx_list{
	margin-top: .2rem;
}
.home_game_zx .gme_zx .game_zx_list li{
	margin-top: .1rem;
}
.home_game_zx .gme_zx .game_zx_list li:first-child{
	margin-top: 0rem;
}
.home_game_zx .gme_zx .game_zx_list li .time{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #999999;
	line-height: .4rem;
	background: #F6F6F6;
	padding: .06rem .2rem;
	box-sizing: border-box;
}
.home_game_zx .gme_zx .game_zx_list li .title{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .28rem;
	color: #333333;
	line-height: .72rem;
	margin: 0 .2rem;
}
.home_game_zx .gme_zx .game_zx_list li .title:hover{
	color: var(--pm-c);
}
.home_game_zx .gme_zx .game_zx_list li .jump{
	background: url(../images/jump.png) no-repeat left/contain;
	width: .4rem;
	height: .28rem;
	display: inline-block;
}
/* 新游资讯 end */

/* 精选攻略 */
.home_jx_gl{
	background: url(../images/gl_bg.png) no-repeat top/contain;
	text-align: center;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: bold;
	font-size: .28rem;
	color: #333333;
	padding-top: .3rem;
}
.home_jx_gl .rank.before-middle::before{
	background: url(../images/strategy-left.png) no-repeat left/cover;
	left: 1.54rem;
}
.home_jx_gl .rank.after-middle::after{
	background: url(../images/strategy-right.png) no-repeat left/cover;
	right: 1.54rem;
}
.home_jx_gl .before-middle::before,
.home_jx_gl .after-middle::after{
	width: 1rem;
	height: .1rem;
}
.home_jx_gl ul li{
	margin-top: .3rem;
	padding: 0rem .3rem;
	margin-left: .3rem;
	box-sizing: border-box;
}
.home_jx_gl ul li.before-middle::before{
	width: .1rem;
	height: .1rem;
	background: var(--pm-c);	
	left: 0rem;
}
.home_jx_gl ul li .title{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .28rem;
	color: #333333;
}
.home_jx_gl ul li .title:hover{
	color: var(--pm-c);
}
.home_jx_gl ul li .time{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #999999;
	margin-left: .2rem;
}
/* 精选攻略 end */
/* 手机游戏  */
.home_game .uk-grid{
	
}
.home_game .item{
	margin-top: .26rem;
	background: #f2f2f2;
	padding: .3rem .26rem;
	box-sizing: border-box;
}
.home_game .item .info{
	margin-left: 0;
}
.home_game .item .icon{
	width: 1.2rem;
	height: 1.2rem;
	border-radius: .24rem;
	margin-right: .2rem;
}
.home_game .item .type{
	font-size: .24rem;
	color: #999999;
	/* display: inline-block; */
}
.home_game .item .typ:first-child{
	margin: .06rem 0;
}
.home_game .details-btn{
	background: var(--pm-c);
	border-radius: .12rem;
	width: 1.16rem;
	height: .56rem;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .26rem;
	color: #333333;
	line-height: .56rem;
	margin-left: .24rem;
	text-align: center;
}
/* 手机游戏 end */

/* 应用软件  */
.home_soft .item{
margin-top: .48rem;
}
.home_soft .item:nth-child(-n+4){
margin-top: .4rem;
}
.home_soft .item .order{
	background: #E5E8E9;
	border-radius: .08rem;
	font-weight: bold;
	font-size: .24rem;
	color: #FFFFFF;
	line-height: .4rem;
	width: .4rem;
	height: .4rem;
	margin-right: .2rem;
	text-align: center;
}
.home_soft .item .icon{
	display: none;
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .2rem;
	overflow: hidden;
	margin-right: .2rem;
}

.home_soft .item .title{
	font-size: .28rem;
	color: #333333;
	margin-right: .16rem;
}
.home_soft .item .title:hover{
	color: var(--pm-c);
}
.home_soft .item .type{
	display: block;
	font-size: .24rem;
	color: #999;
}
.home_soft .item .desc{
	display: none;
	font-size: .24rem;
	color: #999;
}
.home_soft .item .down{
	display: none;
	background: var(--pm-c);
	border-radius: .12rem;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .28rem;
	color: #333333;
	width: 1.2rem;
	height: .6rem;	
	text-align: center;
	line-height: .6rem;
	margin-left: .2rem;
}
.home_soft .item .down_{
	font-size: .24rem;
	color: #FFD41F;
	margin-left: .2rem;
}
.home_soft .item .down_:hover{
	color: var(--pm-c);
}
.home_soft .item .box{
	display: flex;
}
.home_soft .item:nth-child(-n+3) .box{
	display: block;
}

.home_soft .item:nth-child(-n+3) .box .title{
	flex: 1;
	overflow: hidden;
}
.home_soft .item:nth-child(-n+3) .type{
	margin: .12rem 0;
}
.home_soft .item:nth-child(-n+3) .order{
	background-color: var(--pm-c);
	color: #333;
}
.home_soft .item:nth-child(-n+3) .icon{
	display: block;
}
.home_soft .item:nth-child(-n+3) .desc{
	display: block;
}
.home_soft .item:nth-child(-n+3) .down{
	display: block;
}
.home_soft .item:nth-child(-n+3) .down_{
	display: none;
}
/* 应用软件 end */

/* 友情链接  */
.index_friend_link{
	margin-top: .54rem;
}
.index_friend_link .aBox{
	padding: .3rem 0;
    box-sizing: border-box;
}
.index_friend_link .aBox a {
    display: inline-block;
    margin-right: .4rem;
    font-size: .24rem;
    color: #999 !important;
	margin-bottom: .2rem;
}
.index_friend_link .aBox a:hover{
	color: var(--pm-c) !important;
}
.index_friend_link .aBox .after-middle::after{
	border-right: .02rem solid #E5E8E9;
	right: -0.2rem;
	height: .3rem;
}
.index_friend_link .aBox .after-middle:last-child::after{
	border-right: none;
}
.index_friend_link .aBox a:last-child {
    margin-right: 0;
}
/* 友情链接 end */


/* 资讯详情 */
.single-news .titleBox {
    padding-top: .8rem;
    padding-bottom: .62rem;
    margin-bottom: .6rem;
    border-bottom: .02rem solid #eee;
}

.single-news .titleBox h1 {
    font-size: .36rem;
    color: #333;
    font-weight: bold;
    text-align: center;
    margin-top: 0;
}

.single-news .titleBox .tagBox {
    font-size: .24rem;
    color: #999;
    margin-top: .52rem;
}

.single-news .titleBox .tagBox div {
    /* margin-right: .88rem; */
}

.single-news .titleBox .tagBox div:last-child {
    margin-left: .1rem;
}
.single-news .detail_content p {
    text-indent: 2em;
    font-size: .28rem;
    color: #666;
    line-height: .64rem;
    margin: .3rem 0;
}

.single-news p iframe,
.single-news p img {
    display: block;
    width: 100%;
    height: auto;
    /* border-radius: .16rem; */
    margin: .6rem auto;
}


.single-news h3 {
    margin: .4rem 0 .2rem;
    font-size: .28rem;
    color: var(--pm-c);
    font-weight: bold;
    z-index: 3;
    position: relative;
    display: inline-block;
    padding-right: 2.22rem;
}
/* 攻略排行 */
.news_rank{
	background: url(../images/gl_bg.png) no-repeat top/contain;
	padding-top: .3rem;
}
.news_rank .list .item{
	border-bottom: .02rem dashed #E5E5E5;
	padding-bottom: .24rem;
}
.news_rank .list .item .top{
	display: none;
}
.news_rank .list .item .btm{
	display: flex;
}
.news_rank .list .item.active .top {
    display: flex;
}
.news_rank .list .item.active .btm {
    display: none;
}
.news_rank .list .item .thumb{
	width: 2.2rem;
	height: 1.48rem;
	margin-right: .24rem;
}
.news_rank .list .item .thumb img{
	border-radius: .08rem;
}
.news_rank .list .item .order{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #999;
	line-height: .88rem;
	background: #F5F5F5;
	border-radius: .08rem;
	width: .4rem;
	height: .4rem;	
	text-align: center;
	line-height: .4rem;
	margin-right: .2rem;
}
.news_rank .list{
	margin-top: 0rem;
}
.news_rank .rank{
	text-align: center;
	font-size: .28rem;
	color: #333333;
	font-weight: bold;
}
.news_rank .rank.before-middle::before,
.news_rank .rank.after-middle::after{
	width: .88rem;
    height: .1rem;
}

.news_rank .rank.before-middle::before{
	background: url(../images/strategy-left.png) no-repeat left/cover;
	left: 1.73rem;
}
.news_rank .rank.after-middle::after{
	background: url(../images/strategy-right.png) no-repeat left/cover;
	right: 1.73rem;
}
.news_rank .list .item{
	margin-top: .4rem;
}
.news_rank .list .item:nth-child(-n+3) .order{
	background-color: var(--pm-c);
    color: #333;
}
.news_rank .list .item .title{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .28rem;
	color: #333333;
}
.news_rank .list .item .time{
	font-size: .24rem;
	color: #888888;
}
.news_rank .list .item .title:hover{
	color: var(--pm-c);
}
.news_rank .list .item .info .text{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #666666;
	margin: .16rem 0;
}
.news_rank .list .item .info .author,
.news_rank .list .item .info .time{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: .24rem;
	color: #888888;
	position: relative;
	padding-left: .4rem;
	box-sizing: border-box;
}
.news_rank .list .item .info .author::before,
.news_rank .list .item .info .time::before{
	width: .24rem;
	height: .24rem;
	contain: "";
	left: 0rem;
}
.news_rank .list .item .info .author::before{
	background: url(../images/author.png) no-repeat left/contain;
}
.news_rank .list .item .info .time::before{
	background: url(../images/time.png) no-repeat left/contain;
}
.news_rank .time_box{
	/* margin-top: -0.2rem; */
}
.news_rank ul li{
	padding: 0 .3rem;
	box-sizing: border-box;
	margin-left: 0;
}
.news_rank .soft-box{
	margin: 0 .3rem;
}
/* 攻略排行 */
/* 资讯详情 end */
/* 游戏下载详情 */
.single-game .list .item:nth-child(-n+3) .top{
	display: flex;
}
.single-game .list .item:nth-child(-n+3) .btm{
	display: none;
}
.single-game .single-header{
	padding: .4rem 0;
	background: url(../images/game_bg.png) no-repeat left / cover;
	/* height: 3.08rem; */
	text-align: center;
	font-size: .32rem;
	color: #333333;
}
.single-game .single-header h1{
	margin-top: .4rem;
}
.single-game .single-info {
	margin-top: .4rem;
}

.single-game .single-info p {
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #999999;
	text-align: center;
	border-radius: .6rem .6rem .6rem .6rem;
	border: .02rem solid #F0F0F0;
	padding: .04rem .32rem;
	box-sizing: border-box;
	display: inline-block;
}

.single-game .single-info p span {
	font-size: .32rem;
	letter-spacing: .02rem;
	color: #333333;
	display: block;
	margin-top: .3rem;
	text-align: center;
}
.single-game .down_btn{
	margin-left: .28rem;
	margin-right: .28rem;
}
.single-game .down_btn a{
	display: block;
	width: 6.94rem;
	height: .9rem;
	background: #FF7585;
	border-radius: .6rem;
	text-align: center;
	font-weight: bold;
	font-size: .3rem;
	color: #FFFFFF;
	line-height: .9rem;
	margin-top: .46rem;
}
/* 游戏详情公共部分 */
.single-game .single-header .icon {
	margin: .35rem auto .25rem;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: .2rem;
	overflow: hidden;
}

.single-game .single-header .single-info {
	text-align: center;
}

.single-game .single-header .title {
	font-size: .3rem;
	font-weight: 600;
	letter-spacing: .02rem;
	color: #333333;
	text-align: center;
	margin-bottom: .26rem;
}

.single-game .single-header .date {
	display: inline-block;
	font-size: .24rem;
	letter-spacing: .02rem;
	color: #888888;
	background: url('../images/date.png') no-repeat left/contain;
	background-size: .3rem;
	padding-left: .4rem;
	margin: 0 auto;
	text-align: center;
}

.single-slide .item {
	width: 2.5rem;
	height: 4.2rem;
	object-fit: contain;
}

.single .single-header .down-href {
	display: block;
	width: 100%;
	font-size: .3rem;
	color: #fff;
	margin: .4rem 0;
}

.single .single-header .down-href a {
	display: block;
	height: .88rem;
	line-height: .88rem;
	width: 100%;
	text-align: center;
	background: var(--pm-c);
	border-radius: .1rem;
	margin-bottom: .2rem;
}

.single .single-header .down-href a.xz {
	background-color: #ffb22d;
}

.single-game .single-header ul {
	background-color: #f8f8f8;
	padding: .3rem .2rem;
	margin-top: .38rem;
}

.single-game .single-header ul li {
	font-size: .24rem;
	letter-spacing: .01rem;
	color: #888888;
	text-align: center;
}

.single-game .single-header ul li span {
	display: block;
	margin-top: .2rem;
}

/* 轮播图 */
.screenshots {
    position: relative;
    height: auto;
    margin: .3rem auto;
}

.screenshots .sliderBox {
    overflow: hidden;
}

/* .screenshots .sliderBox .dotnav {
    display: none;
}

.screenshots .sliderBox .dotnav li {}

.screenshots .sliderBox .dotnav li a {
    border: none;
    border-radius: .36rem;
    width: .16rem;
    height: .16rem;
    background-color: #d9d9d9;
}

.screenshots .sliderBox .dotnav li.uk-active a {
    background-color: var(--pm-c);
} */

.screenshots .sliderBox .slide {
    margin-left: -0.4rem;
}

.screenshots .sliderBox .slide li {
    width: 2.88rem;
    padding-left: .16rem;
}

.screenshots .sliderBox .slide li:last-child {
    margin-right: 0;
}

.screenshots .sliderBox .slide li .item {
    display: inline-block;
    overflow: hidden;
    position: relative;
    height: auto;
    border-radius: .12rem;
	width: 100%;
}
.screenshots .sliderBox .item img{
	width: 100%;
	height: 100%;
}

.screenshots .btn {
    display: block;
    width: .62rem;
    height: .62rem;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.screenshots .btn svg {
    display: none;
}
/* 游戏下载详情 end*/

/* 开服 */
.kaifu_warp .infoBox {
    margin-bottom: .36rem;
}

.kaifu_warp .infoBox .info {
    font-size: .28rem;
    /* color: var(--pm-c); */
    position: relative;
    padding-left: .64rem;
}

.kaifu_warp .infoBox .info span {
    font-size: .28rem;
    color: #999;
}

.kaifu_warp .infoBox .info::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    width: .44rem;
    height: .44rem;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/kaifu_time.png);
}
.kaifu_warp .home_game .info .type span{
	color: #FEC626;
}
.kaifu_warp .home_game .item{
	padding: 0;
	background: none;
}
.kaifu_warp .home_game .item{
	border-bottom: .02rem dashed #E5E5E5;
	padding-bottom: .32rem;
}
.kaifu_warp .home_game .uk-width-1-1{
	margin-bottom: .3rem;
}
.kaifu_warp .home_game .uk-width-1-1:last-child .item{
	margin-bottom: 0;
}
.kaifu_warp .kaifu_title{
	font-weight: bold;
	font-size: .36rem;
	color: #333333;
	line-height: .48rem;
	margin-top: .74rem;
	margin-bottom: .74rem;
	text-align: center;
}