/* Main CSS Document */

/* reset */
* {
	margin: 0;
	padding: 0;/*-webkit-user-select: none;
	-webkit-touch-callout: none; /* 当你触摸并按住触摸目标时候，禁止或显示系统默认菜单。 *//*-webkit-tap-highlight-color: transparent;*/
}
html, body {
	height: 100%;
	font-family: "微软雅黑", "\5fae\8f6f\96c5\9ed1", Arial, Helvetica, sans-serif;
	font-size: 0.32rem;
	outline: 0;
	-webkit-text-size-adjust: none;/* Chrome 浏览器中设置小于 12px 的字体 */
	/*-webkit-tap-highlight-color: rgba(0,0,0,.5);
	-webkit-overflow-scrolling: touch;*/
	color: #333;
	background: #FFF;
}
/* 滚动条 */
.scroll-bar::-webkit-scrollbar-track {
	border-radius: 0;
	background-color: #F1F1F1;
}
.scroll-bar::-webkit-scrollbar {
	width: 0px;
	height: 0px;
	background-color: #F1F1F1;
}
.scroll-bar::-webkit-scrollbar-thumb {
	border-radius: 0;
	background-color: #F60;
}
.blur {
	filter: url(https://www.unweibao.com/public/m/css/blur.svg);
	/* FireFox, Chrome, Opera */
	-webkit-filter: blur(4px);
	/* Chrome, Opera */
	-moz-filter: blur(4px);
	-ms-filter: blur(4px);
	filter: blur(4px);
	filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius=4, MakeShadow=false);
	/* IE6~IE9 */
}
.relative {
	position: relative;
}
.absolute {
	position: absolute;
}
.static {
	position: static;
}
.none {
	display: none !important;
}
.iconfont {
	font-size: inherit;
	text-rendering: auto;
}
a {
	color: #333;
}
a, a:link, a:visited, a:active, a:hover {
	text-decoration: none;
}
i, em {
	font-style: normal;
}
span, em, i, u {
	text-decoration: none;
}
ul, dl, li, dd, dt {
	list-style: none;
}
td, th, div {
	word-break: break-all;
	word-wrap: break-word;
}
h1, h2, h3, h4, h5 {
	font-size: 0.8rem;
	font-weight: normal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
	font-weight: normal;
}
fieldset, img {
	border: 0 none;
}
img {
	color: transparent;
	font-size: 0;
	vertical-align: middle;
	/*
	For IE.
	http://css-tricks.com/ie-fix-bicubic-scaling-for-images
	*/
	-ms-interpolation-mode: bicubic;
}
.blur {
	filter: url(https://www.unweibao.com/public/m/css/blur.svg);
	/* FireFox, Chrome, Opera */
	-webkit-filter: blur(4px);
	/* Chrome, Opera */
	-moz-filter: blur(4px);
	-ms-filter: blur(4px);
	filter: blur(4px);
	filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius=4, MakeShadow=false);
	/* IE6~IE9 */
}
input, select, textarea, button {
	outline: 0 none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing : border-box;
	-ms-box-sizing : border-box;
	-o-box-sizing : border-box;
	box-sizing : border-box;
	/*resize: vertical;*/
	-webkit-user-select: text !important;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	font-family: "微软雅黑";
	resize: none;
}
button, input[type=button], input[type=submit] {
	cursor: pointer;
	-webkit-appearance : none;/*解决ios上按钮的圆角问题*/
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}
input[type=search] {
	-webkit-appearance: textfield;
}
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}
textarea {
	overflow-y: auto;
}
/* 清除黄色背景 */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
	box-shadow: 0 0 0px 1000px white inset;
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}
/* 去掉数字输入框上下按钮 */
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}
input[type="number"] {
	-moz-appearance: textfield;
}
/*全局样式*/
.l {
	float: left;
}
.r {
	float: right;
}
/*清楚浮动*/
.clearfix {
	zoom: 1;
}
.clearfix:before, .clearfix:after {
	clear: both;
	content: "\0020";
	display: block;
	height: 0;
	visibility: hidden;
}
/*.标准浏览器*/
/*窗体大小*/
.w-750 {
	width: 10.0rem;
}
.w-690 {
	width: 9.2rem;
}
.mauto {
	margin: 0 auto;
}
/* 手机屏幕 */
.screen-boxs {
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	font-size: 18px;
	display: none;
	text-align: center;
	background: #EEE;
	position: absolute;
	z-index: 2;
}
@media screen and (orientation:portrait) {
	/*竖屏*/
}
@media screen and (orientation:landscape) {
	/*横屏*/
	.screen-boxs {
		display: block;
	}
}
/*让position:fixed在IE6下可用! 兼容全能代码，勿删除*/
.fixed-top /* 头部固定 */ {
	position: fixed;
	bottom: auto;
	top: 0px;
	-webkit-transform: translateZ(0);
}
.fixed-bottom /* 底部固定 */ {
	position: fixed;
	bottom: 0px;
	top: auto;
	-webkit-transform: translateZ(0);
}
.fixed-left /* 左侧固定 */ {
	position: fixed;
	right: auto;
	left: 0px;
	-webkit-transform: translateZ(0);
}
.fixed-right /* 右侧固定 */ {
	position: fixed;
	right: 0px;
	left: auto;
	-webkit-transform: translateZ(0);
}
/* 上面的是除了IE6的主流浏览器通用的方法 */
* html, * html body /* 修正IE6振动bug */ {
	background-image: url(about:blank);
	background-attachment: fixed;
}
* html .fixed-top /* IE6 头部固定 */ {
	position: absolute;
	bottom: auto;
	_top:expression(eval(document.documentElement.scrollTop));
}
* html .fixed-right /* IE6 右侧固定 */ {
	position: absolute;
	right: auto;
	_left:expression(eval(document.documentElement.scrollLeft+document.documentElement.clientWidth-this.offsetWidth)-(parseInt(this.currentStyle.marginLeft, 10)||0)-(parseInt(this.currentStyle.marginRight, 10)||0));
}
* html .fixed-bottom /* IE6 底部固定  */ {
	position: absolute;
	bottom: auto;
	_top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop, 10)||0)-(parseInt(this.currentStyle.marginBottom, 10)||0)));
}
* html .fixed-left /* IE6 左侧固定 */ {
	position: absolute;
	right: auto;
	_left:expression(eval(document.documentElement.scrollLeft));
}
/* 分页样式 */
.mpage_boxs {
	font-size: 0;
	text-align: center;
}
.mpage_boxs ul {
	display:inline-block;
}
.mpage_boxs ul li{
	margin-top: 0.4rem;
	display:inline-block;
	float:left;
}
.mpage_boxs ul li > * {
	padding:0 0.4rem;
	line-height: 0.8rem;
	font-size: 0.32rem;
	text-align: center;
	border: 1px solid #DDD;
	border-left: none;
	display:block;
	color: #00913a;
	background: #FFF;
}
.mpage_boxs ul li:first-child > * {
	border-left: 1px solid #DDD;
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
}
.mpage_boxs ul li:last-child > * {
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}
.mpage_boxs ul li span {
	color: #999;
}
.mpage_boxs ul .cur a {
	color: #999;
	background:#F4F4F4;
}
.mpage_boxs ul .info > * {
	color: #999;
}
.mpage_boxs ul .info b {
	margin:0 3px;
}
/* 弹出窗口 */
.modal_backdrop {
	width: 100%;
	background: #000;
	filter: alpha(opacity=40);
	-moz-opacity: 0.40;
	-khtml-opacity: 0.40;
	opacity: 0.40;
	z-index: 100001;
	display: none;
}
.modal_backdrop-black {
	background: #000;
}
.modal_backdrop-write {
	background: #FFF;
}
.modal_backdrop-transparent {
	background: transparent;
}
.modal_backdrop_top {
	width: 100%;
	background: #FFF;
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	display: none;
}
.modal_tbox {
	left: 0;
	width: 100%;
	z-index: 100002;
}
.modal_tbox .tconbox {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	box-shadow: 0 3px 7px rgba(0,0,0,0.3);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
	position: absolute;
	display: none;
}
.modal_tbox .tconbox .tcon-close {
	right: 0.4rem;
	top: 0.4rem;
	width: 0.2rem;
	height: 0.2rem;
	text-indent: -9999px;
	cursor: pointer;
	display: block;
	background: url(https://www.unweibao.com/public/m/images/close.png) no-repeat left top;
	background-size: cover;
	overflow: hidden;
	position: absolute;
	z-index: 1;
	transition: none;
}
.modal_tbox .tconbox .tcon-close:hover {
	background-position: right top;
}
.modal_tbox .tconbox .tcon-til {
	line-height: 1.0rem;
	font-size: 0.4rem;
	text-align: center;
}
.modal_tbox .tconbox .tcon-con {
	padding: 0 0.4rem;
}
.modal_tbox .tconbox .pagin {
	height: 1.0rem;
	text-align: center;
}
.modal_tbox .tconbox .tcon-bar {
	left: 0;
	bottom: 0;
	width: 100%;
	border-top: 2px solid #F60;
	position: absolute;
}
.modal_tbox .tconbox .tcon-bar .form {
	padding: 0.2rem 0;
}
/* 加载处理窗口 */
.modalbg_loading-box {
	z-index: 100003;
}
.modal_loading-box {
	z-index: 100004;
}
.modal_tbox .loading-box {
	width: 64px;
	height: 20px;
	box-shadow: none;
}
.modal_tbox .loading-box .ball-beat > div {
	background-color: rgba(0,0,0,.5);
}
.modal_tbox .loading-box .msg {
	line-height: 0.56rem;
	font-size: 0.4rem;
	text-align: center;
	color: #FFF;
}
/* 当前位置 */
.bd-position {
	line-height: 1.0rem;
	font-size:0.32rem;
}
/* 自适应 */
.row {
}
.row:after, .row:before {
	display: table;
	content: " ";
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.row:after {
	clear: both;
}
/* 导航 */
.bd-drawer {
	padding: 0.4rem 0;
	width: calc(100% - 3.5rem) !important;
	background: #FFF !important;
}
.bd-drawer > ul {
}
.bd-drawer ul li {
	width: 100%;
	display: inline-block;
	float: left;
}
.bd-drawer ul li:first-child {
	border: none;
}
.bd-drawer ul li a {
	padding-left: 1.2rem;
	line-height: 1.0rem;
	font-size: 0.4rem;
	border-bottom: 1px solid #DDD;
	display: block;
	position:relative;
}
.bd-drawer ul li a em {
	left: 0.56rem;
	top: 0.4rem;
	width: 0.16rem;
	height: 0.16rem;
	display: block;
	background: #00913a;
	position:absolute;
}
.bd-drawer ul li a i {
	right: 0;
	top: 0;
	width: 1.0rem;
	height: 1.0rem;
	text-align: center;
	position: absolute;
}
.bd-drawer ul .li-13 i {
	display: none;
}
.bd-drawer ul li .con {
	display: none;
}
.bd-drawer ul li ul {
	border-top: 1px solid #444;
}
.bd-drawer ul li ul li a {
	padding-left: 1.6rem;
}
.bd-drawer ul li ul li a em {
	left: 1.0rem;
}
/*头部*/
.hd-boxs {
}
.hd-con {
	/* -webkit-box-shadow: 0 0 10px rgba(50,50,50,0.1);
	-moz-box-shadow: 0 0 10px rgba(50,50,50,0.1);
	box-shadow: 0 0 10px rgba(50,50,50,0.1); */
}
.hd-logo {
	float: left;
}
.hd-logo a {
	width: 2.2rem;
	height: 0.92rem;
	line-height: 0.92rem;
	display: block;
	color: #333;
	position: relative;
}
.hd-logo a:before {
	content: " ";
	left: 0;
	top: 0.22rem;
	width: 100%;
	height: 0.48rem;
	position: absolute;
	z-index: 1;
}
.hd-logo embed {
	left: 0;
	top: 0.22rem;
	height: 0.48rem;
	position: absolute;
}
.hd-logo .con {
	left: 2.44rem;
	top: 0.15rem;
	width: 4.8rem;
	line-height: 0.35rem;
	font-size: 0.2rem;
	text-align: center;
	position: absolute;
}
.hd-logo .con p {
	display: block;
}
.hd-menu {
	margin-right: -0.4rem;
	float: right;
}
.hd-menu a {
	width: 1.2rem;
	height: 0.92rem;
	line-height: 0.92rem;
	text-align: center;
	font-size: 0.4rem;
	display: block;
}
/* 中部 */
.bd-boxs {
}
.bd-mbox {
}
.bd-mbox .bm-til {
	padding:0.88rem 0 0.4rem;
	text-align:center;
}
.bd-mbox .bm-til .til {
	font-size:0;
}
.bd-mbox .bm-til .til dl {
	display:inline-block;
}
.bd-mbox .bm-til .til dl dd {
	line-height:1.2rem;
	display:inline-block;
	float:left;
}
.bd-mbox .bm-til .til .d-1 {
}
.bd-mbox .bm-til .til .d-1 ul {
	margin-left:-0.16rem;
}
.bd-mbox .bm-til .til .d-1 ul li {
	margin-left:0.16rem;
	display:inline-block;
	float:left;
	color:#00913a;
}
.bd-mbox .bm-til .til .d-1 .l-1 {
	font-size:0.16rem;
	opacity:.2;
}
.bd-mbox .bm-til .til .d-1 .l-2 {
	font-size:0.2rem;
	opacity:.5;
}
.bd-mbox .bm-til .til .d-1 .l-3 {
	font-size:0.32rem;
}
.bd-mbox .bm-til .til .d-2 {
	padding:0 0.4rem;
	font-size:0.6rem;
	font-weight:bold;
}
.bd-mbox .bm-til .ftil {
	line-height: 0.4rem;
	font-size: 0.28rem;
	color: #999;
}
.bd-mbox .bm-til.on {
	color:#FFF;
}
/*底部*/
.ft-boxs {
	padding-bottom: 1.68rem;
}
.fx-boxs {
	width: 100%;
	z-index: 1999;
}
.fx-con {
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
	background: #FFF;
	position: relative;
}
.fx-boxs ul {
}
.fx-boxs ul li {
	width: 25%;
	display: inline-block;
	float: left;
}
.fx-boxs ul li a {
	padding-top: 1.0rem;
	height: 0.68rem;
	line-height: 0.48rem;
	font-size: 0.32rem;
	text-align: center;
	display: block;
	position: relative;
	overflow: hidden;
}
.fx-boxs ul li i {
	left: 0;
	top: 0.32rem;
	width: 100%;
	line-height: 0.56rem;
	font-size: 0.56rem;
	text-align: center;
	display: block;
	color: #00913a;
	position: absolute;
}
.fx-gotop {
	right: 0.32rem;
	bottom: 2.0rem;
	width: 0.8rem;
	height: 0.8rem;
	font-size: 0.8rem;
	display: none;
	color: #00913a;
	position: absolute;
}
.fx-gotop:before {
	content: " ";
	left: 0.08rem;
	bottom: 0.04rem;
	width: 0.64rem;
	height: 0.64rem;
	background: #FFF;
	position:absolute;
}
.fx-gotop i {
	float: left;
	position:relative;
}
/* 获取方案 */
.bd-huoqufangan {
	padding: 0.56rem 0;
	background:#F5F5F5;
}
.bd-huoqufangan .bm-con {
}
.bd-huoqufangan .bm-con .d-dl {
}
.bd-huoqufangan .bm-con .d-dd {
	background: #FFF;
}
.bd-huoqufangan .bm-con .d-1 {
	padding: 0.28rem 0.4rem 0.4rem;
}
.bd-huoqufangan .bm-con .d-til {
	line-height: 1.0rem;
	font-size: 0.24rem;
}
.bd-huoqufangan .bm-con .d-til b {
	margin-right: 0.2rem;
	font-size: 0.48rem;
}
.bd-huoqufangan .bm-con .d-con {
}
.bd-huoqufangan .bm-con .d-con dl {
	margin: -0.2rem -0.1rem 0;
}
.bd-huoqufangan .bm-con .d-con dl dd {
	margin-top: 0.2rem;
	padding: 0 0.1rem;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display:inline-block;
	float:left;
}
.bd-huoqufangan .bm-con .d-con dl dd input[type="text"], .bd-huoqufangan .bm-con .d-con dl dd select {
	padding:0 20px;
	width:100%;
	height:0.8rem;
	font-size: 0.28rem;
	border:none;
	background:#F5F5F5;
}
.bd-huoqufangan .bm-con .d-con dl dd textarea {
	width: 100%;
	height: 2.16rem;
	line-height: 0.4rem;
	border:0.28rem solid #F5F5F5;
	font-size: 0.28rem;
	font-family: "微软雅黑", "\5fae\8f6f\96c5\9ed1", Arial, Helvetica, sans-serif;
	background:#F5F5F5;
	float:left;
}
.bd-huoqufangan .bm-con .d-con dl dd input[type="submit"] {
	left:0;
	top:0;
	width:100%;
	height:0.72rem;
	border:none;
	outline:0 none;
	background: transparent;
	position:absolute;
}
.bd-huoqufangan .bm-con .d-con .d-d1 {
	width: 50%;
}
.bd-huoqufangan .bm-con .d-con .d-d2 {
	width: 100%;
}
.bd-huoqufangan .bm-con .d-con .d-d2 .btn[data-id="submit"] {
	width:100%;
	line-height:0.72rem;
	font-size:0.28rem;
	text-align:center;
	display: block;
	color:#FFF;
	background:#00913a;
}
.bd-huoqufangan .bm-con .d-con .d-d2 .btn[data-id="submit"] i {
	margin-left:0.32rem;
}
.bd-huoqufangan .bm-con .d-2 {
	margin-top: 0.28rem;
	padding: 0.5rem 0.4rem;
}
.bd-huoqufangan .bm-con .d-2 ul {
	margin-top: -0.5rem;
}
.bd-huoqufangan .bm-con .d-2 ul li {
	margin-top: 0.2rem;
	padding-left:0.8rem;
	height: 0.8rem;
	line-height: 0.28rem;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	position:relative;
}
.bd-huoqufangan .bm-con .d-2 ul li i {
	left:0;
	top:0;
	width:0.48rem;
	line-height:0.8rem;
	font-size: 0.48rem;
	text-align:center;
	color:#999;
	position:absolute;
}
.bd-huoqufangan .bm-con .d-2 ul li .til {
	margin-top: 9px;
	font-size: 0.2rem;
	display:block;
}
.bd-huoqufangan .bm-con .d-2 ul li .con {
	font-size: 0.2rem;
	margin-top: 5px;
	display:block;
}
.bd-huoqufangan .bm-con .d-2 ul li:nth-child(even) {
	width: 100%;
}
.bd-huoqufangan .bm-con .d-2 ul li:nth-child(odd) {
	width: 100%;
}
/*  */
.bd-guanyu {
	padding-bottom: 0.8rem;
}
.bd-guanyu .bm-con {
}
.bd-guanyu .bm-con .c-about {
	margin-bottom: 0.4rem;
}
.bd-guanyu .bm-con .c-about .player {
	margin-bottom: 0.6rem;
	height: 5.48rem;
}
.bd-guanyu .bm-con .c-about .til {
	margin:0 auto 0.2rem;
	padding-left:0.56rem;
	width: 1.68rem;
	line-height:0.56rem;
	font-size:0.4rem;
	font-weight:bold;
	color:#00913a;
	position:relative;
}
.bd-guanyu .bm-con .c-about .til i {
	left:0;
	top:0;
	font-size: 0.48rem;
	font-weight:normal;
	position:absolute;
}
.bd-guanyu .bm-con .c-about .con {
	line-height: 0.48rem;
	font-size: 0.28rem;
	text-indent:0.4rem;
	color: #666;
}
.bd-guanyu .bm-con .c-tab {
	margin-bottom: 0.2rem;
}
.bd-guanyu .bm-con .c-tab ul {
	margin-left: -0.28rem;
}
.bd-guanyu .bm-con .c-tab ul li {
	margin-left: 0.28rem;
	width: 2.88rem;
	display: inline-block;
	float: left;
}
.bd-guanyu .bm-con .c-tab ul li a {
	line-height: 0.8rem;
	font-size: 0.28rem;
	text-align: center;
	display: block;
	background: #F5F5F5;
}
.bd-guanyu .bm-con .c-tab ul .on a {
	color: #FFF;
	background: #00913a;
}
.bd-guanyu .bm-con .swiper-slide {
	overflow: hidden;
}
.bd-guanyu .bm-con .swiper-slide ul {
	margin: -0.24rem -0.12rem 0;
}
.bd-guanyu .bm-con .swiper-slide ul li {
	margin-top: 0.24rem;
	padding: 0 0.12rem;
	width: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display:inline-block;
	float:left;
}
.bd-guanyu .bm-con .swiper-slide ul li a {
	display: block;
}
.bd-guanyu .bm-con .swiper-slide ul li .img img {
	width: 4.48rem;
	height: 3.08rem;
}