:root {
	--pm-c: #67D45F;
}

/*隐藏类*/
.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: 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: 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;
	}
}

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;
}

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;
	font-family: Microsoft YaHei, Microsoft YaHei;
}

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,
a:hover {
	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: inset006pxrgba(0, 0, 0, 0.3); */
	border-radius: .1rem;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
	border-radius: .1rem;
	background: rgba(0, 0, 0, 0.1);
	/* -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5); */
}

::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(255, 0, 0, 0.4);
}

.rank-nav li:last-child {
	margin-right: 0px;
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
	width: .12rem;
}

/*溢出*/
.oneTxtLine {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.twoTxtLine {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.threeTxtLine {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.fourTxtLine {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.fiveTxtLine {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.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;
}

.wrapper {
	width: 100%;
	background: #F7F7F7;
	/* padding-left: .3rem !important;
	padding-right: .3rem !important; */
}

.module {
	padding: .24rem;
	background: #fff;
	margin-bottom: .2rem;
}

.bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

a.thum {
	display: block;
	overflow: hidden;
}

a.title {
	display: block;
}

.bgc-fff {
	background-color: #fff;
	padding: .32rem;
}

/* 评分图标 */
.star {
	height: .2rem;
	width: 1rem;
	background: url('../images/star.png') repeat-x center/.2rem;
	display: inline-block;
	margin: .2rem 0;
}

.star:before {
	content: "";
	display: block;
	background: url('../images/star_curr.png') repeat-x 0/.2rem;
	height: .2rem;
}

.star-1:before {
	width: .2rem;
}

.star-2:before {
	width: .4rem;
}

.star-3:before {
	width: .6rem;
}

.star-4:before {
	width: .8rem;
}

.star-5:before {
	width: 1rem;
}

/* 多次使用 */
/* 重复使用 */
/* 分页多次使用 */
.pagination {
	padding: .6rem 0 .4rem 0;
	text-align: center;
	color: #999;
}

.pagination .page-item {
	display: inline-block;
	margin: .05rem;
	font-size: .26rem;
	border: .02rem solid #E6E6E6;
	color: #999;
	background: #fff;
	border-radius: .04rem;
}

.pagination .active span {
	background: var(--pm-c);
	color: #fff;
}

.pagination .page-item:hover {
	background: var(--pm-c);
	color: #fff;
}

.pagination .page-item .page-link {
	display: block;
	padding: .06rem .18rem;
	border: .02rem solid transparent;
}

.pagination li a {
	display: inline-block;
	color: #999;
}

.pagination li a:hover {
	background: var(--pm-c);
	color: #fff;
}

.pagination li:last-child {
	display: inline-block;
}


.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: .6;
}

.p-32-30 {
	padding: 0 .3rem 0 .32rem;
}

.m-32-30 {
	margin: 0 .3rem 0 .32rem;
}

.p-l-r-30 {
	padding: 0 .3rem;
}

.m-l-r-30 {
	margin: 0 .3rem;
}

.p-l-r-24 {
	padding: 0 .24rem;
}

.m-l-r-24 {
	margin: 0 .24rem;
}

.m-b-20 {
	margin-bottom: 0.2rem;
}

.m-b-40 {
	margin-bottom: 0.4rem;
}

.m-b-60 {
	margin-bottom: 0.6rem;
}

.m-b-80 {
	margin-bottom: 0.8rem;
}

/* 可复用 */
.list {
	width: 100%;
}

.list li {
	padding-left: .28rem;
	position: relative;
	margin-bottom: .32rem;
}

.list li:last-child {
	margin-bottom: 0 !important;
}

.list li::before {
	content: "";
	display: block;
	width: .08rem;
	height: .08rem;
	position: absolute;
	background-color: #e5e5e5;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 50%;
}

.list li .title {
	font-size: .28rem;
	color: #333;
	padding-right: .4rem;
}

.list li .title a {
	color: #333;
}

.list li .time {
	font-size: .24rem;
	color: #999;
}

.public_title {
	width: 100%;
	margin-bottom: .4rem;
	position: relative;
}


.public_title .title {
	font-size: .28rem;
	color: #333;
	position: relative;
	font-weight: bold;
	z-index: 3;
	padding-left: .72rem;
}

.public_title .title::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: "";
	width: .5rem;
	height: .24rem;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	background-image: url(../images/public_title_before.png);
}

.public_title .more {
	font-size: .24rem;
	color: #999;
}

.public_title .more span {
	color: var(--pm-c);
}




.bgc-ht {
	position: relative;
	padding-top: 0.8rem;
}

.bgc-ht::before {
	position: absolute;
	left: 0;
	top: 0.4rem;
	content: "";
	width: 100%;
	height: 0.1rem;
	background-color: #f7f7f7;
}

/* 底部 */
.footer {
	background-color: #333;
	font-size: .24rem;
	color: #999;
	padding: 0.4rem .6rem;
	box-sizing: border-box;
	text-align: center;
}

.footer .title {
	color: #ccc;
}

.footer .aBox {
	line-height: .48rem;
	text-align: center;
	margin: 0 auto .1rem;
}

.footer a,
.footer span,
.footer .aBox a {
	font-size: .24rem;
	color: #999;
}

.footer .aBox span::before,
.footer .aBox a::before {
	display: inline-block;
	content: "|";
	margin: 0 .08rem;
}

.footer .aBox span:first-child::before,
.footer .aBox a:first-child::before {
	display: none;
}

.footer_p {
	margin-bottom: 0.1rem;
}


.footer .txt {
	line-height: .48rem;
	text-align: center;
}

/* 首页 */
.header {
	background-repeat: no-repeat;
	background-size: cover;
	border-bottom: .04rem solid var(--pm-c);
	padding-bottom: 0.12rem;
}

.logoBox {
	margin: .3rem 0;
}

.logo {
	display: block;
	width: 1.77rem;
}

.navBarBox {}

.navBar {
	box-sizing: content-box;
	white-space: nowrap;
	overflow-x: scroll;
	height: .76rem;
	line-height: .64rem;
	padding-left: 0.24rem;
}

.header .navBar li {
	display: inline-block;
	height: auto;
	width: auto;
	text-align: center;
	font-size: .28rem;
	color: #666;
	position: relative;
}

.header .navBar li a {
	display: block;
	padding: 0 .22rem;
	line-height: .6rem;
	height: 0.6rem;
	font-size: .28rem;
	color: #333;
	background: rgba(103, 212, 95, 0.06);
	border-radius: 777px;
	position: relative;
	z-index: 3;
	margin-right: 0.2rem;
}

.header .navBar li:last-child {
	margin-right: 0;
}

.header .navBar li.active a {
	font-size: .28rem;
	color: #fff;
	background-color: var(--pm-c);
}

.header .navBar li.active a::before {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -.12rem;
	display: block;
	width: .2rem;
	height: .14rem;
	content: "";
	z-index: -1;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/xsj.png);
}


.header .searchBox {
	position: relative;
}

.header .searchBox .search_ipt {
	display: block;
	width: 3.44rem;
	height: .6rem;
	line-height: .6rem;
	background-color: rgba(103, 212, 95, 0.1);
	padding-left: .28rem;
	padding-right: .6rem;
	font-size: .28rem;
	color: #333;
	border-radius: 999px;
}

.header .searchBox .search_ipt::placeholder {
	font-size: .24rem;
	color: #888;
}

.header .searchBox .search_btn {
	position: absolute;
	right: .28rem;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	width: .28rem;
	height: .28rem;
	color: #fff;
	background-image: url(../images/search_icon.png);
	cursor: pointer;
}




.index_top_slider {
	height: auto;
	position: relative;
	overflow: hidden;
	margin-top: 0.2rem;
}

.index_top_slider .sliderBox {
	position: relative;
}

.index_top_slider .sliderBox .slider_item {
	width: 100%;
	margin-left: 0;
}

.index_top_slider .sliderBox .slider_item li {
	width: 100%;
	padding-left: 0;
}

.index_top_slider .sliderBox .slider_item li .thum {
	width: 100%;
	height: 3.72rem;
	position: relative;
}

.index_top_slider .slider_item .title {
	font-size: .28rem;
	color: #333;
	margin-bottom: .36rem;
}

.index_top_slider .slider_item .title a {
	color: #333;
}

.index_top_slider .slider_item .desc {
	font-size: .24rem;
	text-wrap: wrap;
	color: #999;
	line-height: .48rem;
	margin-bottom: .44rem;
}

.index_top_slider .slider_item .time {
	font-size: .24rem;
	color: #999;
}

.index_top_slider .sliderBox .info {
	background: rgba(103, 212, 95, 0.05);
	padding: .28rem .24rem;
}

.index_top_slider .sliderBox .dotnav {
	display: none;
	margin: 0 !important;
	position: absolute;
	bottom: .18rem;
	left: 50%;
	transform: translateX(-50%);
}

.index_top_slider .sliderBox .dotnav li {
	padding-left: 0;
	margin-right: .08rem;
}

.index_top_slider .sliderBox .dotnav li a {
	border: none;
	width: .1rem;
	height: .1rem;
	border-radius: .06rem;
	background: #fff;
}

.index_top_slider .sliderBox .dotnav li:last-child {
	margin-right: 0;
}

.index_top_slider .sliderBox .dotnav li.uk-active a {
	background-color: var(--pm-c);
}






.index_yxzx {}

.index_yxzx .top {
	margin-bottom: .36rem;
	padding-bottom: .34rem;
	border-bottom: .02rem dashed #e6e6e6;
}

.index_yxzx .top .btm {
	margin-top: .3rem;
}

.index_yxzx .top .title {
	font-size: .28rem;
	color: #333;
}

.index_yxzx .top .title a {
	color: #333;
}

.index_yxzx .top .time {
	font-size: .24rem;
	color: #999;
}

.index_yxzx .top .thum {
	position: relative;
	width: 1.76rem;
	height: 1.2rem;
	margin-right: .24rem;
}

.index_yxzx .top .desc {
	font-size: .24rem;
	color: #888;
	line-height: .6rem;
	text-wrap: wrap;
}

.index_yxzx .list li {
	margin-bottom: .52rem;
}

.index_yxzx .list li::before {
	width: .14rem;
	height: .18rem;
	border-radius: 0;
	background-color: transparent;
	background-image: url(../images/li_before.png);
}



.index_top_news {}

.index_top_news .itemBox {
	margin-left: -0.36rem;
	position: relative;
}

.index_top_news .itemBox::before {
	position: absolute;
	left: 0;
	bottom: .64rem;
	display: block;
	width: 100%;
	height: .02rem;
	background-color: #ECECEC;
	content: "";
}

.index_top_news .itemBox .uk-width-1-6 {
	padding-left: .36rem;
}

.index_top_news .itemBox .item {
	position: relative;
}

.index_top_news .itemBox .item::before {
	position: absolute;
	left: 50%;
	bottom: .66rem;
	transform: translateX(-50%);
	display: block;
	width: .18rem;
	height: .16rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/sj.png);
	content: "";
}

.index_top_news .itemBox .item .thum {
	width: 100%;
	height: 2.48rem;
	position: relative;
	margin-bottom: .24rem;
}

.index_top_news .itemBox .item .title {
	font-size: .26rem;
	color: #666;
	margin-bottom: .2rem;
}

.index_top_news .itemBox .item .time {
	font-size: .24rem;
	color: #999;
	margin-bottom: .6rem;
}

.index_top_news .itemBox .item:hover::before {
	background-image: url(../images/sj_curr.png);
}

.index_top_news .itemBox .item:hover .more {
	border-color: var(--pm-c);
	color: var(--pm-c);
}

.index_top_news .itemBox .item .more {
	display: block;
	width: 100%;
	height: .48rem;
	line-height: .44rem;
	border-radius: .08rem;
	border: .02rem solid #ECECEC;
	text-align: center;
	font-size: .24rem;
	color: #666;
}




.index_jxgl {}

.index_jxgl .top {
	padding: .36rem .28rem;
	position: relative;
	background: linear-gradient(rgba(103, 212, 95, 0.05), rgba(255, 255, 255, 0));
}

.index_jxgl .top::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 1.12rem;
	height: 1rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/jx.png);
	content: "";
}

.index_jxgl .top .title {
	padding: 0 1rem;
	font-size: .28rem;
	color: var(--pm-c);
	font-weight: bold;
	margin-bottom: .28rem;
}

.index_jxgl .top .title a {
	color: var(--pm-c);
}

.index_jxgl .top .desc {
	font-size: .24rem;
	color: #888;
	line-height: .6rem;
}


.index_jxgl .list {
	margin-top: .4rem;
}

.index_jxgl .list li {
	margin-bottom: .48rem;
}

.index_jxgl .list li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.index_jxgl .list li::before {
	width: .14rem;
	height: .18rem;
	border-radius: 0;
	background-color: transparent;
	background-image: url(../images/li_before.png);
}



.index_zxpc {}

.index_zxpc .itemBox {
	margin-left: -0.24rem;
}

.index_zxpc .itemBox .uk-width-1-2 {
	padding-left: .24rem;
}

.index_zxpc .itemBox .item {}

.index_zxpc .itemBox .item .thum {
	width: 100%;
	height: 1.96rem;
	position: relative;
}

.index_zxpc .itemBox .item .title {
	margin: .2rem 0;
	font-size: .24rem;
	color: #666;
}

.index_zxpc .itemBox .item .title a {
	color: #666;
}

.index_zxpc .itemBox .item .num {
	font-size: .24rem;
	color: #999;
	position: relative;
	padding-left: .48rem;
}

.index_zxpc .itemBox .item .num::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: "";
	width: .28rem;
	height: .28rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/xz.png);
}

.index_zxpc .list {
	margin-top: .4rem;
	padding-top: .38rem;
	border-top: .02rem dashed #e6e6e6;
}

.index_zxpc .list li {
	margin-bottom: .46rem;
}

.index_zxpc .list li .tag {
	width: 1.4rem;
	height: .56rem;
	line-height: .52rem;
	text-align: center;
	font-size: .24rem;
	color: var(--pm-c);
	border: .02rem solid var(--pm-c);
	border-left-width: .1rem;
	margin-right: .24rem;
}


.index_zxpc .list li::before {
	width: .14rem;
	height: .18rem;
	background-color: transparent;
	border-radius: 0;
	background-image: url(../images/li_before.png);
}


.zxpc.index_zxpc .list li {
	padding-left: 0;
	margin-bottom: 0.24rem;
	padding-bottom: 0.22rem;
	border-bottom: .02rem dashed #e6e6e6;
}

.zxpc.index_zxpc .list li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.zxpc.index_zxpc .list li::before {
	display: none;
}




.index_ydph {}

.index_ydph .list {}

.index_ydph .list li {
	margin-bottom: .2rem;
	padding-bottom: .18rem;
	padding-left: 0;
	border-bottom: .02rem dashed #e6e6e6;
}

.index_ydph .list li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.index_ydph .list li::before {
	display: none;
}

.index_ydph .list li:first-child .order {
	background-color: var(--pm-c);
}

.index_ydph .list li .order {
	width: .48rem;
	height: .48rem;
	background: #D9D9D9;
	line-height: .48rem;
	text-align: center;
	font-size: .26rem;
	color: #fff;
	margin-right: .2rem;
}

.index_ydph .list li:first-child .info {
	display: flex;
}

.index_ydph .list li .info {
	display: none;
	margin-left: .68rem;
	margin-top: .4rem;
}

.index_ydph .list li .thum {
	width: 1.76rem;
	height: 1.2rem;
	position: relative;
	margin-right: .24rem;
}

.index_ydph .list li .desc {
	font-size: .24rem;
	color: #888;
	line-height: .6rem;
	text-wrap: wrap;
}



.index_wjtj {}

.index_wjtj .itemBox {}

.index_wjtj .itemBox .item {
	margin-bottom: .36rem;
}

.index_wjtj .itemBox .item:last-child {
	margin-bottom: 0;
}

.index_wjtj .itemBox .item .title {
	font-size: .28rem;
	color: #333;
}

.index_wjtj .itemBox .item .title a {
	color: #333;
}

.index_wjtj .itemBox .item .detail {
	font-size: .24rem;
	color: var(--pm-c);
	position: relative;
	padding-right: .32rem;
}

.index_wjtj .itemBox .item .detail::before {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: "";
	width: .26rem;
	height: .26rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/more.png);
}

.index_wjtj .itemBox .item .info {
	margin-top: .4rem;
	position: relative;
	padding: .14rem .24rem;
	background-color: #fafafa;
}

.index_wjtj .itemBox .item .info::before {
	position: absolute;
	left: .76rem;
	top: -0.2rem;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	content: "";
	width: .26rem;
	height: .22rem;
	background-image: url(../images/ssj.png);
	z-index: 9;
}

.index_wjtj .itemBox .item .info .desc {
	font-size: .24rem;
	color: #9AA099;
	line-height: .48rem;
}

.index_wjtj .itemBox .item .info .time {
	font-size: .28rem;
	color: #9AA099;
	position: relative;
	margin-left: .28rem;
	padding-left: .28rem;
}

.index_wjtj .itemBox .item .info .time::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: "";
	height: .6rem;
	border-left: .02rem dashed #C4D7C1;
}




.index_newsBox {
	margin-top: .4rem;
}

.index_newsBox .list {}

.index_newsBox .list li {
	padding-left: 0;
	margin-bottom: .24rem;
	padding-bottom: .2rem;
	border-bottom: .02rem dashed #e5e5e5;
}

.index_newsBox .list li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.index_newsBox .list li::before {
	display: none;
}

.index_newsBox .list li .tag {
	width: 1.4rem;
	height: .56rem;
	line-height: .52rem;
	text-align: center;
	font-size: .24rem;
	color: var(--pm-c);
	border: .02rem solid var(--pm-c);
	border-left-width: .1rem;
	margin-right: .24rem;
}

.index_newsBox .list li .time {
	padding-left: .32rem;
	position: relative;
}

.index_newsBox .list li .time::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: "";
	width: .24rem;
	height: .24rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/time.png);
}





.index_sjyx {}

.index_sjyx .itemBox {}

.index_sjyx .itemBox .item {
	margin-bottom: 0.26rem;
}

.index_sjyx .itemBox .item:last-child {
	margin-bottom: 0;
}

.index_sjyx .itemBox .item .order {
	width: .4rem;
	height: 1.96rem;
	background: rgba(103, 212, 95, 0.1);
	line-height: 1.96rem;
	text-align: center;
	margin-right: .04rem;
	font-size: .24rem;
	color: var(--pm-c);
}

.index_sjyx .itemBox .item .info {
	position: relative;
	padding: .32rem .24rem;
	border: .02rem solid #EBF8EA;
}

.index_sjyx .itemBox .item .thum {
	width: 1.32rem;
	height: 1.32rem;
	border-radius: .3rem;
	position: relative;
	margin-right: .24rem;
}

.index_sjyx .itemBox .item .title {
	font-size: .28rem;
	color: #333;
	padding-right: .8rem;
}

.index_sjyx .itemBox .item .title a {
	color: #333;
}

.index_sjyx .itemBox .item .desc {
	font-size: .24rem;
	color: #888;
}

.index_sjyx .itemBox .item .tagBox {
	font-size: .24rem;
	color: #888;
	margin: .14rem 0;
}

.index_sjyx .itemBox .item .tagBox .tag::after {
	content: "|";
	margin: 0 .12rem;
}

.index_sjyx .itemBox .item .tagBox .tag:last-child::after {
	display: none;
}

.index_sjyx .itemBox .item .detail {
	display: block;
	width: 1.2rem;
	height: .88rem;
	position: absolute;
	right: 0;
	top: 0;
	font-size: .24rem;
	color: #fff;
	text-align: right;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/detail.png);
	padding-right: .12rem;
	padding-top: .12rem;
}



.index_yyrj {
	overflow: hidden;
}

.index_yyrj .list {
	margin-top: .48rem;
}


.index_yyrj .itemBox {
	margin-left: -0.6rem;
}

.index_yyrj .itemBox .uk-width-1-3 {
	padding-left: .6rem;
}

.index_yyrj .itemBox .uk-width-1-3.uk-grid-margin {
	margin-top: .58rem;
}

.index_yyrj .itemBox .item {
	text-align: center;
}

.index_yyrj .itemBox .item .thum {
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 3.18rem;
	position: relative;
	margin: 0 auto .4rem;
	z-index: 6;
}

.index_yyrj .itemBox .item .title {
	font-size: .28rem;
	color: #333;
}

.index_yyrj .itemBox .item .title a {
	color: #333;
}

.index_yyrj .itemBox .item .size {
	font-size: .28rem;
	margin: .28rem 0;
	color: #999;
}

.index_yyrj .itemBox .item .see {
	width: 1.12rem;
	height: .52rem;
	line-height: .48rem;
	text-align: center;
	font-size: .24rem;
	color: var(--pm-c);
	display: block;
	border: .02rem solid var(--pm-c);
	border-radius: .12rem;
	display: block;
	margin: 0 auto;
}

.index_yyrj .btmMore {
	display: block;
	width: 100%;
	height: .68rem;
	line-height: .68rem;
	text-align: center;
	font-size: .24rem;
	color: var(--pm-c);
	background: #F0FBEF;
	margin-top: .6rem;
}













.index_friend_link {
	margin-bottom: .8rem;
}

.index_friend_link .aBox {
	line-height: .56rem;
}


.index_friend_link .aBox a {
	font-size: .28rem;
	color: #333;
	margin-right: .46rem;
}

.index_friend_link .aBox a:last-child {
	margin-right: 0;
}


.list_game {
	margin-top: .4rem;
}



.list_game_itemBox .itemBox .item {
	margin-bottom: 0.26rem;
}

.list_game_itemBox .itemBox .item:last-child {
	margin-bottom: 0;
}

.list_game_itemBox .itemBox .item .label {
	width: .4rem;
	height: 1.96rem;
	background: rgba(103, 212, 95, 0.1);
	line-height: .4rem;
	writing-mode: vertical-rl;
	text-align: center;
	margin-right: .04rem;
	font-size: .24rem;
	color: var(--pm-c);
	letter-spacing: .08rem;
}

.list_game_itemBox .itemBox .item .info {
	position: relative;
	padding: .32rem .24rem;
	border: .02rem solid #EBF8EA;
}

.list_game_itemBox .itemBox .item .thum {
	width: 1.32rem;
	height: 1.32rem;
	border-radius: .3rem;
	position: relative;
	margin-right: .24rem;
}

.list_game_itemBox .itemBox .item .title {
	font-size: .28rem;
	color: #333;
	padding-right: .8rem;
}

.list_game_itemBox .itemBox .item .title a {
	color: #333;
}

.list_game_itemBox .itemBox .item .desc {
	font-size: .24rem;
	color: #888;
}

.list_game_itemBox .itemBox .item .tagBox {
	font-size: .24rem;
	color: #888;
	margin: .08rem 0;
}

.list_game_itemBox .itemBox .item .tagBox .tag::after {
	content: "|";
	margin: 0 .12rem;
}

.list_game_itemBox .itemBox .item .tagBox .tag:last-child::after {
	display: none;
}

.list_game_itemBox .itemBox .item .detail {
	display: block;
	width: 1.2rem;
	height: .88rem;
	position: absolute;
	right: 0;
	top: 0;
	font-size: .24rem;
	color: #fff;
	text-align: right;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/detail.png);
	padding-right: .12rem;
	padding-top: .12rem;
}



.list_news {
	margin-top: .4rem;
}

.list_news_itemBox .itemBox {}

.list_news_itemBox .itemBox .item .info {
	position: relative;
	z-index: 6;
}


.list_news_itemBox .itemBox .item {
	margin-bottom: .3rem;
}

.list_news_itemBox .itemBox .item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.list_news_itemBox .itemBox .item .title {
	font-size: .28rem;
	color: #333;
}

.list_news_itemBox .itemBox .item .title a {
	color: #333;
}

.list_news_itemBox .itemBox .item .detail {
	font-size: .24rem;
	color: var(--pm-c);
	position: relative;
	padding-right: .32rem;
}

.list_news_itemBox .itemBox .item .detail::before {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: "";
	width: .26rem;
	height: .26rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/more.png);
}

.list_news_itemBox .itemBox .item .info {
	margin-top: .4rem;
	position: relative;
	background-color: #fafafa;
	padding-right: 0.2rem;
}

.list_news_itemBox .itemBox .item .info::before {
	position: absolute;
	right: 0.56rem;
	top: -0.2rem;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	content: "";
	width: .26rem;
	height: .22rem;
	background-image: url(../images/ssj.png);
	z-index: 9;
}

.list_news_itemBox .itemBox .item .info .desc {
	font-size: .24rem;
	color: #9AA099;
	line-height: .48rem;
	text-wrap: wrap;
}

.list_news_itemBox .itemBox .item .info .time {
	font-size: .28rem;
	color: #9AA099;
	position: relative;
	margin-left: .28rem;
	padding-left: .28rem;
}

.list_news_itemBox .itemBox .item .info .time::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: "";
	height: .6rem;
	border-left: .02rem dashed #C4D7C1;
}


.list_news_itemBox .itemBox .item .thum {
	width: 1.88rem;
	height: 1.28rem;
	position: relative;
	margin-right: .28rem;
}


.show_news {}

.show_news_contentBox {}



.show_news .show_news_contentBox .titleBox {
	margin-top: 0.3rem;
	padding: .24rem;
	margin-bottom: 0.2rem;
	border-bottom: .02rem solid #e5e5e5;
}

.show_news .show_news_contentBox .titleBox h1 {
	font-size: .32rem;
	color: #333;
	font-weight: bold;
	line-height: .48rem;
	text-align: center;
}

.show_news .show_news_contentBox .titleBox .tagBox {
	font-size: .24rem;
	color: #999;
	margin-top: .24rem;
}

.show_news .show_news_contentBox .titleBox .tagBox .tag {}

.detail_content_box p,
.detail_contentBox p {
	text-indent: 2em;
	font-size: .28rem;
	color: #333;
	line-height: .64rem;
	margin: .3rem 0;
}

.detail_content_box p iframe,
.detail_content_box p img,
.detail_contentBox p iframe,
.detail_contentBox p img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: .4rem auto;
	border-radius: .16rem;
}

.detail_content_box h2,
.detail_contentBox h2,
.detail_content_box h3,
.detail_contentBox h3 {
	margin: .4rem 0 .2rem;
	font-size: .28rem;
	color: #333;
	z-index: 3;
	position: relative;
	padding-left: .8rem;
	height: .68rem;
	line-height: .64rem;
	font-weight: bold;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/h3_before.png);
}

.detail_contentBox h2::before,
.detail_content_box h2::before,

.detail_contentBox h3::before,
.detail_content_box h3::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: "";
	width: 2.04rem;
	height: .64rem;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
	display: none;
}



.kaifu {
	margin-top: .4rem;
}


.kaifu .titleBox {
	font-weight: 400;
	text-align: center;
	width: auto;
	font-size: .26rem;
	color: #777;
	margin-bottom: 0.4rem;
	position: relative;
}

.kaifu .titleBox .info {
	position: relative;
	padding-left: 0.56rem;
	font-size: .28rem;
	color: #333;
	font-weight: bold;
}

.kaifu .titleBox .info span {
	font-weight: 400;
	font-size: .24rem;
	color: #999;
}

.kaifu .titleBox .info::before {
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	width: 0.44rem;
	height: 0.44rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/kaifu_icon.png);
}




.kaifu .itemBox {}

.kaifu .itemBox .item {
	margin-bottom: 0.3rem;
}

.kaifu .itemBox .item:last-child {
	margin-bottom: 0;
}


.kaifu .itemBox .item .info .thum .tag {
	position: absolute;
	left: 0.08rem;
	top: 0.08rem;
	display: none;
	width: .76rem;
	height: .44rem;
	background: rgba(255, 255, 255, 0.7);
	border-radius: .08rem;
	border: .02rem solid var(--pm-c);
	line-height: .4rem;
	text-align: center;
	font-size: .26rem;
	color: var(--pm-c);
}


.kaifu .itemBox .item .info {
	padding: .32rem .24rem;
	position: relative;
	border: .02rem solid #EBF8EA;
}

.kaifu .itemBox .item .info .title {
	width: auto;
	position: relative;
	font-size: .28rem;
	color: #333;
}

.kaifu .itemBox .item .info .title span.tag {
	display: none;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: .64rem;
	height: .34rem;
	line-height: .3rem;
	text-align: center;
	font-size: .24rem;
	color: #aaa;
	border-radius: .04rem;
	border: .02rem solid #aaa;
	font-weight: 400;
}

.kaifu .itemBox .item .thum {
	width: 1.32rem;
	height: 1.32rem;
	border-radius: .3rem;
	position: relative;
	margin-right: .24rem;
}

.kaifu .itemBox .item .title {
	font-size: .28rem;
	color: #333;
	padding-right: .8rem;
}

.kaifu .itemBox .item .title a {
	color: #333;
}

.kaifu .itemBox .item .time {
	font-size: .24rem;
	color: #888;
	margin: .1rem 0;
}

.kaifu .itemBox .item .time span {
	color: var(--pm-c);
}

.kaifu .itemBox .item .desc {
	font-size: .24rem;
	color: #888;
}

.kaifu .itemBox .item .detail {
	display: block;
	width: 1.2rem;
	height: .88rem;
	position: absolute;
	right: 0;
	top: 0;
	font-size: .24rem;
	color: #fff;
	text-align: right;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/detail.png);
	padding-right: .12rem;
	padding-top: .12rem;
}



.show_game {}

.show_game .show_game_contentBox .titleBox {
	width: auto;
	height: auto;
	position: relative;
	background-repeat: no-repeat;
	background-position: left bottom;
	z-index: 3;
	margin-top: 0.3rem;
}


.show_game .show_game_contentBox .thum {
	position: relative;
	width: 1.4rem;
	height: 1.4rem;
	border-radius: .3rem;
	overflow: hidden;
	margin-right: 0.3rem;
}


.show_game .show_game_contentBox .titleBox .titleBoxBefore {
	position: relative;
	z-index: 6;
}


.show_game .show_game_contentBox .titleBox h1 {
	font-size: .32rem;
	color: #333;
	font-weight: bold;
	position: relative;
	margin-bottom: 0.12rem;
	text-wrap: wrap;
}

.show_game .show_game_contentBox .titleBox .score{
	position: relative;
	padding-top: 1rem;
	font-size: .24rem;
	color: #F8A932;
}
.show_game .show_game_contentBox .titleBox .score::before{
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	display: block;
	content: "";
	width: 0.84rem;
	height: 0.84rem;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/score_bgi.png);
}


.show_game .show_game_contentBox .tagBox {
	margin-top: 0.4rem;
	font-size: .24rem;
	color: #999;
	margin-left: 0;
	padding: .28rem .3rem;
	background-color: #f8f8f8;
}

.show_game .show_game_contentBox .tagBox .uk-width-1-2 {
	padding-left: 0;
}


.show_game .show_game_contentBox .tagBox .uk-width-1-2.uk-grid-margin {
	margin-top: 0.22rem;
}

.show_game .show_game_contentBox .tagBox .tag {
	position: relative;
	letter-spacing: 0;
}

.show_game .show_game_contentBox .tagBox .tag::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: none;
	content: "";
	background-repeat: no-repeat;
	background-size: cover;
	width: .36rem;
	height: .24rem;
}


.show_game .show_game_contentBox .down .btn:last-child a {
	margin-top: 0.36rem;
}

.show_game .show_game_contentBox .down a {
	display: block;
	margin-top: 0.4rem;
	width: auto;
	height: .9rem;
	font-size: .28rem;
	font-weight: bold;
	color: #fff;
	line-height: .9rem;
	text-align: center;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/down_btn.png);
	/* padding-left: 0.4rem; */
}

.show_game .show_game_contentBox .down a::before {
	position: absolute;
	left: 2.6rem;
	top: 50%;
	transform: translateY(-50%);
	display: none;
	width: 0.38rem;
	height: 0.38rem;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	/* background-image: url(../images/down_icon.png); */
}


.show_game_contentBox .sliderBox {
	overflow: hidden;
	width: 100%;
	height: auto;
}

.show_game_contentBox .item {
	margin-bottom: .8rem;
}

.show_game_contentBox .item:last-child {
	margin-bottom: 0;
}

.show_game_contentBox .sliderBox .slider li {
	padding-right: .2rem;
}

.show_game_contentBox .sliderBox .slider li:last-child {
	padding-right: 0;
}

.show_game_contentBox .sliderBox .slider li .img {
	width: 2.48rem;
	height: auto;
	border-radius: .12rem;
	position: relative;
	display: block;
	overflow: hidden;
}



.other_xzph {}

.other_xzph .list {}

.other_xzph .list li {
    margin-bottom: .2rem;
    padding-bottom: .18rem;
    padding-left: 0;
    border-bottom: .02rem dashed #e6e6e6;
}

.other_xzph .list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.other_xzph .list li::before {
    display: none;
}

.other_xzph .list li:first-child .order {
    background-color: var(--pm-c);
}

.other_xzph .list li .size {
    font-size: .24rem;
    color: #999;
}

.other_xzph .list li .order {
    width: .48rem;
    height: .48rem;
    background: #D9D9D9;
    line-height: .48rem;
    text-align: center;
    font-size: .26rem;
    color: #fff;
    margin-right: .2rem;
}

.other_xzph .list li:first-child .info {
    display: flex;
}

.other_xzph .list li .info {
    display: none;
    margin-left: .68rem;
    margin-top: .32rem;
}

.other_xzph .list li .thum {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: .3rem;
    position: relative;
    margin-right: .24rem;
}

.other_xzph .list li .detail {
    display: block;
    width: 1.12rem;
    height: .56rem;
    background: rgba(103, 212, 95, 0.1);
    border-radius: .08rem;
    line-height: .56rem;
    text-align: center;
    font-size: .24rem;
    color: var(--pm-c);
}

.other_xzph .list li .desc {
    font-size: .24rem;
    color: #888;
    line-height: .6rem;
    text-wrap: wrap;
}


/* 404/500页面 */
.error {
	min-height: 8rem;
	margin-bottom: .8rem;
}

.error .img {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
	margin: 1rem auto 0;
}

.error .textBox {
	margin-top: .12rem;
	text-align: center;
}

.error .textBox .text {
	text-align: center;
	font-size: .28rem;
	color: #999;
	margin-bottom: .28rem;
}

.error .textBox .goHome {
	text-align: center;
	font-size: .28rem;
	color: var(--pm-c);
	text-decoration: underline;
}