/**************************************/
/*************[公用start]**************/
/**************************************/

/*主站变灰*/
/*html {
-webkit-filter:grayscale(100%);
-moz-filter:grayscale(100%);
-ms-filter:grayscale(100%);
-o-filter:grayscale(100%);
filter:grayscale(100%);
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)
}
* {
-moz-filter: grayscale(100%); 
-ms-filter: grayscale(100%); 
-o-filter: grayscale(100%); 
filter: gray;
}*/
/*主站变灰*/

/*淘宝变灰*/
/* body, html {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    }*/

/*淘宝变灰*/

/*百度百科變灰*/


/*body.memorial>* {
    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)
}
*/


/*百度百科變灰*/


@font-face{
	font-family:"msr";
	src:url("../fonts/MiSans-Regular.ttf");
}
@font-face{
	font-family:"msb";
	src:url("../fonts/MiSans-Bold.ttf");
}


body{
	overflow-x: hidden;
}



div.clear{
	clear: both;
	height: 0;
	width: 0;
}




a{
	text-decoration: none;
	color:inherit;
	cursor: pointer;
}

img{
	border:0;
	max-width: 100%;
}


div.wp{
	width: 1200px; /*主要内容区尺寸大小，每次制作前更新！！！ */
	margin:0 auto;
}

.fl{
	float: left;
}

.fr{
	float: right;
}

.tran{
	transition: all .3s ease-out 0s;
}
.tver{
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}



/*图片中心放大代码区域*/

.img-box{/*图片盒子类名*/

	overflow: hidden;
}

.img-box img{
	transition: .3s;
	width: 100%;
	max-width: 100%;
}

.img-box:hover img{
	/*图片中心放大代码*/
	  -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/*图片中心放大代码区域*/


.imgbox_a{
	position:relative;
	padding-bottom: 100%;
	overflow:hidden;
	display: block;
}

.imgbox_a>img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%!important;
	height: 100%!important;
}
.imgbox_hover>img{
	/* ueco 时间曲线*/
	/*transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s; */
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transition: .3s;

}
.imgbox_hover:hover>img{
	-webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
/**************************************/
/************[公用over]****************/
/**************************************/




/*header-start*/
/**************************************************************/

#header{
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	height: 98px;
	background-color: rgba(241,110,6,0);
	transition: background-color .3s;
}
#header .container{
	position: relative;
	z-index: 50;
}

#header::after{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	height: 1px;
	background-color: #fff;
	opacity: 0.21;
	content:"";
	z-index: 1;
}

.logo{
	width: 169px;
	margin-top: 12px;
}

.logo a,.logo img{
	display: block;
	width: 100%1;
}

.nav ul{
	margin:0;
}
.nav>ul>li{
	float: left;
	position: relative;
}
.nav>ul>li+li{
	margin-left: 45px;
}
.nav>ul>li>a{
	display: block;
	height: 98px;
	line-height: 98px;
	font-size: 16px;
	color: #fff;
	position: relative;
}

.nav>ul>li>a::after{
	position: absolute;
	left: 50%;
	margin-left: 0;
	width: 0px;
	height: 5px;
	background-color: #fed308;
	content:"";
	bottom: 25px;
	transition: width .3s,margin-left .3s;
}







.nav>ul>li:hover>a::after,
.nav>ul>li.cur>a::after{
	width: 34px;
	margin-left: -17px;
}

.nav>ul>li>ul{
	position: absolute;
	left: 50%;
	width: 114px;
	margin-left: -57px;
	top:100%;
	z-index: 600;
	background-color: #f06f07;
	display: none;
	padding: 10px 10px 13px;
}


.nav>ul>li:nth-child(2)>ul{
	    width: 165px;
    margin-left: -82px;
}




.nav>ul>li>ul>li{
	font-size: 0;
	text-align: center;
}
.nav>ul>li>ul>li>a{
	display: inline-block;
	padding: 8px 0px;
	text-align: center;
	font-size: 14px;
	color:#fff;
	text-align: center;
	position: relative;
 
}


#header:hover{
	background-color: rgba(241,110,6,1);
}


.nav>ul>li>ul>li>a::after {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    background-color: #fff;
    bottom: 0px;
    right: 0;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.nav>ul>li>ul>li>a:hover::after{
    width: 100%;
    right: auto;
    left: 0;
}





/**************************************************************/
/*header-over*/





/*main-start*/
/**************************************************************/

#main{

}

.fafa .flex-control-paging li a{
	width: 12px;
	height: 12px;
}

.fafa .flex-control-nav li{
	margin:0 5px;
}

.fafa .flex-control-nav{
	height: 0;
	bottom: 65px;
}

.fafa .flex-direction-nav a{
	width: 54px;
	height: 54px;
	margin-top: -27px;
}

.fafa .flex-direction-nav .flex-prev{
	left: 30px;
}
.fafa .flex-direction-nav .flex-next{
	right: 30px;
}

.main1{
	padding: 90px 0 70px;
}

.main1 .jieshao1-1{
	margin-right: 0;
	margin-left: 50px;
}

.more11{
	margin-top: 45px;
}

.more11 a{
	font-size: 14px;
	color: #333;
}
.more11.ziBai a{
	color: #fff;
}
.more11 a img{
	margin-top: -3px;
	margin-left: 13px;
}

.more11 a:hover{
	color: #fa4415;
}


.main2{
	padding: 70px 0 80px;
	background-image: url(../images/main2-bg.jpg);
}

.main2-menu{
	width: 240px;
}

.main2-menu dl{
	margin:0;
}

.main2-menu dd+dd{
	margin-top: 17px;
}
.main2-menu dd{
	height: 85px;
	line-height: 85px;
	font-size: 28px;
	color: #fff;
	border-radius: 6px; 
	background-color: rgba(255,255,255,0.2);
	font-family: "msb";
	text-align: center;
	cursor: pointer;
}

.main2-menu dd.cur{
	background: linear-gradient(to right, #f07a07, #fa4415);
}

.main2-div{
	width: 1026px;
	position: relative;
}

.main2-div-item{
	position: absolute;
	width: 100%;
	left: -1500%;
	top: 0;
}
.main2-div-item.cur{
	position: relative;
	left: 0;
}
.main2-div .pro1-p{
	height: 8em;
}

.main2-div .pro1-con{
	padding-bottom: 40px;
	padding-right: 260px;
}

.main2-div .pro2-item{
	width: 100%;
	margin: 0;
	padding: 40px 45px 15px;
}

.main2-div .pro2-con p{
	height: 4em;
}

.main2-list{
	margin-top: 30px;
}
.main2-list .owl-nav button.owl-prev{
    position: absolute;
    left:-70px;
    top: 50%;
    margin-top: -21px;
    width: 42px;
    height: 42px;
    background-image: url(../images/left2.png);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center ;
    font-size: 0;
    z-index: 50;
    background-size: 100%;
    transition: background-image .3s;
}
.main2-list .owl-nav button.owl-prev:hover{
	 background-image: url(../images/left2h.png);
}
.main2-list .owl-nav button.owl-next{
    position: absolute;
    right:-70px;
    top: 50%;
  	margin-top: -21px;
    width: 42px;
    height: 42px;
    background-image: url(../images/right2.png);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center ;font-size: 0;
    z-index: 50;
    background-size: 100%;
    transition: background-image .3s;
}
.main2-list .owl-nav button.owl-next:hover{
	 background-image: url(../images/right2h.png);
}









.main3{
	padding: 70px 0 80px;
	background-image: url(../images/main3-bg.jpg);
}


.main3-1{
	width: 1026px;
	margin-left: 34px;
}


.main3-1 .imgbox_a{
	padding-bottom: 53.9%;
	border-radius: 6px;
}

.main3-2{
	padding-top: 30px;
}

.main3-2-h1{
	font-size: 22px;
	color: #333;
	font-family: "msb";
}


.main3-2-p{
	font-size: 16px;
	color: #53565a;
	line-height: 2.2;
	margin-top: 25px;
	height: 19.8em;
	overflow: hidden;
}

.main3-2-p p{
	margin:0;
}

.more22{
	margin-top:74px;
}
.more22 a{
	display: block;
	height: 76px;
	line-height: 76px;
	background: linear-gradient(to right, #f07a07, #fa4415);
	color: #fff;
	font-size: 16px;
	background-color: #fff;
	border-radius: 6px;
	overflow: hidden;
	text-align: center;
}
.more22 a:hover{
	font-weight: bold;
}
.more22 a img{
	display: inline-block!important;
	width: 13px!important;
	margin-top: -3px!important;
	margin-left: 10px!important;
}

.fmain3 .flex-direction-nav a{
	width: 42px;
	height: 42px;
	margin-top: -21px;
	background-image: url(../images/left2.png);
}
.fmain3 .flex-direction-nav .flex-prev{
	left: 305px;
}
.fmain3 .flex-direction-nav .flex-prev:hover{
	background-image: url(../images/left2h.png);

}
.fmain3 .flex-direction-nav .flex-next{
	right: 30px;
	background-image: url(../images/right2.png);
}
.fmain3 .flex-direction-nav .flex-next:hover{
	background-image: url(../images/right2h.png);

}

.main4{
	padding: 70px 0;
	background-color: #fff;
}

.title-fr .more11{
	position: absolute;
	right: 0;
	top: 7px;
	margin-top: 0;
}

.main4 .news-con{
	padding-bottom: 0;
	border-bottom: 0;
}
.main4 .news-con::after{
	display: none;
}

.main4 .owl-dots {
  margin-top: 35px;
}
.main4 .owl-dots .owl-dot{
  margin:0 5px;
}
.main4 .owl-dot span{
  width: 13px;
  height: 13px;
}

.main4 .owl-nav button.owl-prev{
    position: absolute;
    left:-70px;
    top: 50%;
    margin-top: -21px;
    width: 42px;
    height: 42px;
    background-image: url(../images/left.png);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center ;
    font-size: 0;
    z-index: 50;
    background-size: 100%;
    transition: background-image .3s;
}
.main4 .owl-nav button.owl-prev:hover{
	 background-image: url(../images/lefth.png);
}
.main4 .owl-nav button.owl-next{
    position: absolute;
    right:-70px;
    top: 50%;
  	margin-top: -21px;
    width: 42px;
    height: 42px;
    background-image: url(../images/right.png);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center ;font-size: 0;
    z-index: 50;
    background-size: 100%;
    transition: background-image .3s;
}
.main4 .owl-nav button.owl-next:hover{
	 background-image: url(../images/righth.png);
}
.main5{
	padding: 80px 0 125px;
	background-image: url(../images/main5-bg.jpg);
}


.video-wp{
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #000;
	opacity: 0;
	visibility: hidden;
	z-index: 1800;
	padding: 0 60px;
	transition:  .3s;
	text-align: center;
	z-index: -1;
}
.video-wp.cur{
	opacity: 1;
	visibility: visible;
	z-index: 1800;
}
.video-box{
	position: relative;
	width: 100%;
}
.video-close{
	position: absolute;
	width: 36px;
	right: -18px;
	top: -18px;
	cursor: pointer;
	z-index: 25;
}
.video-close img{
	display: block;
	width: 100%;
	transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
.video-close:hover img{
	transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transition: transform .3s;
}
.video-box video {
    max-height: calc(100vh - 4em);
    width: 100%!important;
    vertical-align: middle;
    max-width: 100%;
}
.video-box video:focus{
	outline: none;
}



/**************************************************************/
/*main-over*/





/*footer-start*/
/**************************************************************/

#footer{
	background-color: #25262a;
}
.footer-1{
	padding: 42px 0 30px;
	border-bottom: 1px solid #464b53;
}

.er{
	width: 150px;
	font-size: 16px;
	color: #8c8c8c;
	text-align: center;
	margin-top: 38px;
	margin-left: 50px;
}

.er-pic{
	border:15px solid #2f3034;
	border-radius: 8px;
	margin-bottom: 20px;
}

.er-pic img{
	display: block;
	width: 100%;
}

.ovhd{
	overflow: hidden;
}

.foo-logo{
	width: 169px;
}

.foo-logo a,.foo-logo img{
	display: block;
	width: 100%;
}
.foo-nav{
	margin-top: 38px;
}
.foo-nav dl{
	margin:0;
}

.foo-nav>dl>dd{
	float: left;
}
.foo-nav>dl>dd+dd{
	margin-left: 30px;
}
.foo-nav>dl>dd>a{
	display: block;
	font-size: 18px;
	color: #fff;
	position: relative;
	padding: 0 4px;
	font-family: "msr";
}
.foo-nav>dl>dd>a::after{
	position: absolute;
	width: 0%;
	left: 50%;
	height: 9px;
	background-color: #fa4415;
	content:"";
	z-index: 15;
	transition: width .3s,left .3s;
	bottom: 0px;
}
.foo-nav>dl>dd>a:hover::after{
	width: 100%;
	left: 0;
}
.foo-nav>dl>dd>a span{
	position: relative;
	z-index: 50;
}

.foo-con-p{
	font-size: 16px;
	color: #8c8c8c;
	line-height: 2;
	margin-top: 30px;
}

.foo-con-p p{margin: 0;}


.footer-2{
	font-size: 16px;
	color: #8c8c8c;
	line-height: 1.8;
	padding: 20px 0;
}






/**************************************************************/
/*footer-over*/





/**************************************/
/********[特殊css样式要求区域]**********/
/**************************************/

#header-2{
	display: none;
	height: 75px;
	/*border-bottom:0px solid #035cac;*/
	box-shadow: 0 4px 8px -3px #000;
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	z-index: 1001;
	background-color: #fa4415;
	background: linear-gradient(to right, #f07a07, #fa4415);

}
.nav-2{
	display: none;
	background-color: #fff;
	position: relative;
	z-index:900;

}
.nav-2>ul{
	margin:0;
	max-height: calc(100vh - 129px);
	overflow-y: auto;
}
.nav-2>ul>li{

	border-top: 1px dotted #ccc;
	position: relative;
}

.jiaspan{
	position: absolute;
	width: 30px;
	height: 30px;
	background-image: url(../images/jia2.png);
	background-repeat: no-repeat;
	background-position: center ;
	top: 5px;

	right: 14px;
}
.jiaspan.cur{
	background-image: url(../images/jia2h.png);

}
.nav-2>ul>li:first-child{
	/*border-top: 0;*/
}
.nav-2>ul>li>a{

	padding:8px 10px;
	display: block;
	font-size: 16px;
	width: 100%;
	color:#333;
	font-family: "anb";
	text-transform: uppercase;

}
.nav-2>ul>li>ul{
	padding-bottom: 10px;
	display: none;
}
.nav-2>ul>li>ul>li>a{
	padding: 6px 10px;
	display: block;
	font-size: 14px;
	padding-left: 25px;
	width: 100%;
	color:#333;
}
/*.downla-2 {
	padding: 5px 0 10px;
	display: none;
}
.downla-2 dd{
	padding-left: 30px;
}
.downla-2 dd a{
	font-size: 14px;
	display: inline-block;
	padding: 3px 0;
	width: auto;
}*/
/*.nav-2 li a:hover{
	color:#1a0d07;
}*/

.nav-2-form{
	padding: 10px;
	position: relative;
}
.nav-2-form input[type="image"]{
	position: absolute;
	right: 19px;
    top: 17px;
    width: 18px;

}

.nav-2-form .form-control{padding-right: 50px;}
.logo-2 {
   font-size: 0;
   width: 125px;
   margin-left: 15px;
   margin-top:10px;
}

.logo-2 img{
	display: block;
	width: 100%;
}


.menu2{

	margin-right: 15px;
	height: 75px;
	font-size: 0;

}
.menu2 li{
	cursor:pointer ;
	margin-left: 15px;
	float: right;
	margin-top: 29px;
}
.menu2 li+li{
	margin-top: 21px;
}
.menu2 li img{
	/*vertical-align: middle;*/


}

.chenggao{
		display: none;
		height: 75px;
	}


#nav-2-heidi{
	position: fixed;w
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 800;
	background-image: url(../images/heidi.png);
	display: none;

}




/**************************************/
/********[特殊css样式要求区域]**********/
/**************************************/



.banner-2{
	height: 621px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.banner-2-wen{
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 50;
}
.banner-2-wen h1{
	margin:0;
	font-size: 36px;
	color: #fff;
	font-family: "msb";
}
.banner-2-wen h2{
	margin:0;
	font-size: 20px;
	color: #fff;
	font-family: "msr";
	margin-top: 15px;
}
.erji{
	padding: 102px 0 80px;
	position: relative;
	z-index: 100;
}


.erji-menu-wp{
	position: absolute;
	width: 100%;
	left: 0;
	top: -35px;
}

.erji-menu dl{
	margin:0;
	font-size: 0;
	text-align: center;
}

.erji-menu dd{
	display: inline-block;
	width: 250px;
}

.erji-menu dd+dd{
	margin-left: 25px;
}

.erji-menu dd>a{
	display: block;
	height: 70px;
	line-height: 70px;
	font-size: 24px;
	color: #fff;
	border-radius: 6px; 
	background: #e7e7e7;
	color: #53565a;
	font-family: "msb";
}

.erji-menu dd.cur>a,
.erji-menu dd>a:hover{
	color: #fff;
	background: linear-gradient(to right, #f07a07, #fa4415);
	transition: background .3s;
}

.menu{
	width: 300px;
}

.menu dl{
	margin:0;
}

.menu dd+dd{
	margin-top: 17px;
}
.menu dd>a{
	display: block;
	height: 90px;
	line-height: 90px;
	font-size: 24px;
	color: #fff;
	border-radius: 6px; 
	background: linear-gradient(to right, #05426a, #163a53);
	font-family: "msb";
	text-align: center;
}

.menu dd.cur>a,
.menu dd>a:hover{
	background: linear-gradient(to right, #f07a07, #fa4415);
	transition: background .3s;
}

.erji-content{
	width: 956px;
}


.about-xx-h1{
	font-size: 30px;
	color: #333;
	padding: 25px 0;
}

.about-xx-p{
	font-size: 16px;
	color: #666;
	line-height: 2.2;
}

.gongc-item{
	width: 48.5%;
	border-radius: 6px;
	overflow: hidden;
	margin-top: 3%;

}
.gongc-item:nth-child(1),
.gongc-item:nth-child(2){
	margin-top: 0;
}

.gongc-pic .imgbox_a{
	padding-bottom: 54%;
}

.gongc-con{
	padding: 25px 45px;
	background: linear-gradient(to right, #05426a, #163a53);
}

.gongc-item:hover .gongc-con{
	background: linear-gradient(to right, #f07a07, #fa4415);
}

.gongc-con h1{
	margin:0;
	font-size: 20px;
	color: #fff;
}


.gongc-con p{
	margin:0;
	font-size:16px;
	color: #fff;
	line-height: 2;
	height: 6em;
	overflow: hidden;
	margin-top: 15px;
}


.pro1 .imgbox_a{
	padding-bottom: 37.154%;
	border-radius: 6px;
}

.pro1 .imgbox_a::before{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-repeat: repeat-x;
	background-position: left top;
	background-image: url(../images/pro-hei1.png);
	content:"";
	z-index: 15;
}

.pro1-con{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 50;
	padding: 0 45px 60px;
	z-index: 50;
}

.pro1-con h1{
	margin:0;
	font-size: 28px;
	color: #fff;
}

.pro1-p p{margin:0;}
.pro1-p{
	font-size: 16px;
	color: #fff;
	line-height: 2;
	height: 6em;
	overflow: hidden;
	margin-top: 22px;
}

.pro2-item{
	display: block;
	width: 48.5%;
	border-radius: 6px;
	overflow: hidden;
	margin-top: 3%;
	padding: 45px 45px 30px;
	background: linear-gradient(to right, #05426a, #163a53);
	overflow: hidden;
}

.pro2-item:hover{
	background: linear-gradient(to right, #f07a07, #fa4415);
}
.pro2-item:hover .pro2-afl{
	background-image: url(../images/jt1h.png);
}
.pro2-item:hover .pro2-car{
	left: 0;
}
.pro2-con h1{
	margin:0;
	font-size: 24px;
	color: #fff;
}

.pro2-con p{
	margin:0;
	font-size: 14px;
	color: #fff;
	line-height: 2;
	height: 6em;
	overflow: hidden;
	margin-top: 25px;
}

.pro2-car{
	width: 243px;
	position: relative;
	left: 140px;
	transition: left .3s;
}

.pro2-car img{
	display: block;
	width: 100%;
}

.pro2-afl{
	height: 63px;
	line-height: 63px;
	font-size: 14px;
	color: #fff;
	padding-right: 26px;
	background-repeat: no-repeat;
	background-position: right center;
	background-image: url(../images/jt1.png);
}

.pro2-car-wp{
	margin-top: 30px;
}

.pro-xx-con{
	border:1px solid #e0e0e0;
	border-radius: 6px;
	padding: 20px;
	font-size: 16px;
	color: #666;
	line-height: 2.2;
}

.pro-xx img{
	display: block;
	margin:0 auto;
}
.pro-xx .menu {
	width: 358px;
}

.pro-xx .menu dd>a{
	text-align: left;
	padding-left: 35px;
	overflow: hidden;
	position: relative;
}

.pro-xx-car{
	position: absolute;
	right: -85px;
	width: 194px;
	top: 50%;
	transform: translateY(-50%);
	transition: right .3s;
}

.pro-xx-car img{
	display: block;
	width: 100%;
}


.pro-xx .menu dd>a:hover .pro-xx-ca r,
.pro-xx .menu dd.cur>a .pro-xx-car{
	right: 0;
}

.pro-xx .erji-content{
	width: 922px;
}

.zhibao{
	border:1px solid #e0e0e0;
	padding: 60px 45px 35px;
	border-radius: 6px;
}

.zhibao-p p{
	margin:0;
}

.zhibao-p{
	font-size: 16px;
	color: #53565a;
	line-height: 2.4;
	margin-top: 0px!important;
}

.zhibao-form{
	max-width: 500px;
	margin:0 auto;
	position: relative;
}

.zhibao-form input:focus{
	outline: none;
}

.zhibao-form input[type="text"]{
	display: block;
	width: 100%;
	height: 56px;
	font-size: 16px;
	color: #333;
	background-color: #f0f0f0;
	border-radius: 5px;
	border:1px solid #e6e6e6;
	padding: 10px 25px;
	padding-right: 120px;
}

.zhibao-form input[type="button"]{
	position: absolute;
	width: 112px;
	right: 0;
	top: 0;
	border-radius: 5px;
	border:0;
	color: #fff;
	font-size: 16px;
	height: 56px;
	cursor: pointer;
	background: linear-gradient(to right, #f07a07, #fa4415);
}

.zhibao-form input[type="button"]:hover{
	font-weight: bold;
}
.news-list{
	overflow: hidden;
}
.news-list dl{
	margin:0;
	margin-left: -3%;
	margin-top: -3%;
}

.news-list dd{
	float: left;
	width: 30.33333%;
	margin-left: 3%;
	margin-top: 3%;
}

.news-date{
	font-size: 24px;
	color: #333;
	font-family: "msb";
	padding-bottom: 20px;
	transition: color .3s;
}

.news-pic .imgbox_a{
	padding-bottom: 64.36%;
	border-radius: 6px;
}

.news-con{
	padding:30px 0;
	position: relative;
	border-bottom: 1px solid #d8d8d8;
}
.news-con::after{
	position: absolute;
	width: 0;
	left: 0;
	bottom: -1px;
	height: 1px;
	background-color: #fa4415;
	content:"";
	z-index: 15;
	transition: width .3s;
}
.news-con h1{
	margin:0;
	font-size: 20px;
	color: #333;
	transition: color .3s;
}

.news-con p{
	margin:0;
	font-size: 14px;
	color: #666;
	line-height: 2;
	height: 4em;
	overflow: hidden;
	margin-top: 18px;
}

.news-item:hover .news-date{
	color: #fa4415;
}

.news-item:hover .news-con h1{
	color: #fa4415;
}

.news-item:hover .news-con::after{
	width:100%;
}

.fenye{
	margin-top: 50px;
	text-align: center;
}

.fenye ul{
	margin:0;
}



.news-xx-left{
	width: 845px;
	margin-right: 50px;
}
.news-xx-h1{
	font-size: 30px;
	color: #333;
	line-height: 1.2;
	padding-bottom: 15px;
}
.news1-date{
	font-size: 14px;
	color: #53565a;
}
.news1-date img{
	margin-top: -3px;
	margin-right: 10px;
}
.news-xx-con{
	font-size: 16px;
	color: #333;
	line-height: 2.2;
	margin-top: 30px;
}


.news-xx-con img{
	display: block;
	margin:0 auto 10px;
}








.news-xx-right{
	overflow: hidden;
}

.news-xx-xg{
	font-size: 22px;
	color: #333;
}


.news-xx-right-list dl{
	margin:0;
}

.news-xx-right-list dd{
	margin-top: 25px;
}

.news-xx-right-list dd>a{
	display: block;
	border:1px solid #ebebeb;
	border-radius: 8px;
	padding: 20px 25px;
}

.news-xx-right-list dd>a h1{
	margin:0;
	font-size: 18px;
	color: #333;
	line-height: 1.6;
	height: 3.2em;
	overflow: hidden;
}

.news-xx-right-list dd>a h2{
	margin:0;
	font-size: 14px;
	color: #333;
	padding-left: 25px;
	background-repeat: no-repeat;
	background-position: left center;
	background-image: url(../images/date.png);
	margin-top: 15px;
	font-family: "Microsoft Yahei","Helvetica Neue", Helvetica, Arial, sans-serif;
}
.news-xx-right-list dd>a:hover{
	background-color: #009c4b;
  background-image: linear-gradient(to right, #f07a07 , #fa4415);
}
.news-xx-right-list dd>a:hover h1{color: #fff;}
.news-xx-right-list dd>a:hover h2{color: #fff;background-image: url(../images/dateh.png);}
.news-xx-right-mt{
	margin-top: 25px;
}


.contact1-1{
	width: 48.5%;
	margin-left: 3%;
}

.contact1-1 img{
	display: block;
	width: 100%;
	border-radius: 6px;
}

.contact1-2{
	height: 330px;
	background-color: #f9f9f9;
	padding: 50px 45px 0;
}

.contact1-2-title{
	font-size: 20px;
	color: #333;
}

.contact1-2-title::after{
	display: block;
	width:48px;
	height: 1px;
	content:"";
	background-color: #fa4415;
	margin-top: 18px;
}

.contact1-2-p p{
	margin:0;
}

.contact1-2-p{
	font-size: 16px;
	color: #333;
	line-height: 2;
	margin-top: 25px;
}
.contact1-2-a{
	margin-top: 45px;
}
.contact1-2-a a{
	display: block;
	width:188px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #fff;
	padding-left: 63px;
	position: relative;
  background: linear-gradient(to right, #f07a07, #fa4415);
  border-radius: 8px;
}
.contact1-2-a a img{
	margin-top: -3px;
	margin-left: 19px;
}
.contact1-2-a a::before{
	position: absolute;
	width: 17px;
	height: 17px;
	background-image: url(../images/contact-ico1.png);
	background-repeat: no-repeat;
	background-position: center;
	content:"";
	left: 25px;
	top: 50%;
	margin-top: -9px;
}

.contact1-2-a a:hover{
	font-weight: bold;
}

.contact-input input:focus,
.contact-input textarea:focus{
	outline: none;
}

.contact2{
	margin-top: 85px;
}
.contact2-1{
	width: 48.5%;
	margin-right: 3%;
}
.contact-input{
	position: relative;

}
.contact-input span{
	position: absolute;
	left: 17px;
	top: 0;
	height: 53px;
	line-height: 53px;
	font-size: 16px;
	color: #333;
}
.contact-input input{
	display: block;
	width: 100%;
	height: 53px;
	border:1px solid #e5e5e5;
	padding: 10px 15px;
	padding-left: 65px;
	border-radius: 4px;
}

.contact2-1 .contact-input+.contact-input{
	margin-top: 25px;
}

.contact-input textarea{
	display: block;
	width: 100%;
	height: 209px;
	border:1px solid #e5e5e5;
	padding: 17px 15px;
	padding-left: 65px;
	border-radius: 4px;
	resize: none
}

.contact2-btn{
	margin-top: 30px;
}
.contact-btn input:focus{
	outline: none;
}
.contact2-btn input{
	width: 130px;
	height: 46px;
	border:0;
	background-color: #e7e7e7;
	font-size: 16px;
	color: #333;
	border-radius: 4px;
}

.contact2-btn input[type="button"]{
	margin-left: 18px;
	background: linear-gradient(to right, #f07a07, #fa4415);
	color: #fff;
}

.contact2-btn input:hover{
	font-weight: bold;
}

.padd{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.jieshao1{
	background-color: #fff;
	padding: 60px 0 75px;
}

.title-11-wp{
	font-size: 0;
	position: relative;
}

.title-11{
	display: inline-block;
	position: relative;
	padding: 0 4px 6px;
	
}
.title-11 span{
	display: block;
	position: relative;
	z-index: 15;
	font-family: "msb";
	line-height: 1;
	font-size: 28px;
	color: #333;
}
.title-11.ziBai span{
	color: #fff;
}
.title-11::after{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	height: 15px;
	background-color: #fa4415;
	content:"";
	z-index: 5;
}

.jieshao-div{
	margin-top: 60px;
}

.jieshao1-1{
	width: 571px;
	margin-right: 36px;
}
.jieshao1-1 .imgbox_a{
	padding-bottom: 61.65%;
	border-radius: 6px;
	cursor: pointer;
}
.jieshao1-1 .imgbox_a::after{
	position: absolute;
	width: 60px;
	height: 60px;
	left: 50%;
	top: 50%;
	margin-left: -30px;
	margin-top: -30px;
	content:"";
	background-image: url(../images/bo.png);
	z-index: 15;
}

.jieshao1-2{
	padding-top: 15px;
}
.jieshao1-2-1{
	font-size: 27px;
	font-family: "msb";
	color: #fa4415;
}

.jieshao-p{
	font-size: 16px;
	color: #333;
	line-height: 2.2;
	margin-top: 15px;
}

.jieshao-p p{
	margin:0;
}



.jieshao2{
	background-image: url(../images/jieshao2-bg.jpg);
	padding: 60px 0 75px;
}


.jieshao2-dl dl{
	margin:0;
	margin-left: -3%;
}

.jieshao2-dl dd{
	float: left;
	width: 30.33333%;
	margin-left: 3%;
	background-color: #fff;
	padding: 60px 20px 30px; 
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	position: relative;
}
.jieshao2-title{
	position: absolute;
	width: 218px;
	height: 57px;
	line-height: 57px;
	background-image: url(../images/jieshao2-title.png);
	background-size: 100%;
	font-size: 22px;
	color: #fff;
	font-family: "msb";
	text-align: center;
	left: 0;
	top: -29px;
}
.jieshao2-con-p{
	font-size: 20px;
	color: #fa4415;
	font-family: "msb";
	line-height: 1.8;
}
.jieshao2-con-p p{margin:0;}
.jieshao2-con{
	border:1px dashed #fa4415;
	height: 142px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
}


.jieshao2 .jieshao-div{
	margin-top: 100px;
}







.jieshao3{
	background-color: #fff;
	padding: 60px 0 125px;
}

.jieshao3-pic{
	width: 692px;
	margin-left: 50px;
}

.jieshao3-pic img{
	display: block;
	width: 100%;
	border-radius: 6px;
}
.jieshao3-con{
	padding-top: 50px;
}
.jieshao3-con .jieshao-p{
	margin-top: 0;
	font-size: 18px;
}

.jieshao4{
	background-image: url(../images/jieshao4-bg.jpg);
	padding: 60px 0 85px;
}

.jieshao4 .jieshao-div{
	margin-top: 100px;
}


.jieshao4 .jieshao2-title{
	width: 234px;
	height: 60px;
	line-height: 60px;
	left: 50%;
	margin-left: -117px;
	background-image: url(../images/jieshao4-title.png);
	color: #fa4415;
}

.jieshao4 .jieshao2-dl dd{
	background: linear-gradient(to right, #f07a07, #fa4415);
}

.jieshao4 .jieshao2-con-p{
	color: #fff;
}

.jieshao4 .jieshao2-con{
  border: 1px dashed #fff;
}

.pro-yin-img img{
	display: block;
	margin:0 auto;
}

.gongcx-wp{
	padding: 60px 0 75px;
}

.gongcx2{
	margin-top: 80px;
}

.gongcx2-div{
	margin-top: 50px;
}

.gongcx2-pic .imgbox_a{
	padding-bottom: 64.36%;
	border-radius: 6px;
}

.gongcx2-con{
	margin-top: 20px;
}

.gongcx2-con h1{
	margin:0;
	font-size: 20px;
	color: #333;
	font-weight: bold;
}
.gongcx2-con h1 a:hover{
	color: #fa4415;
}
.gongcx2-con p{
	margin:0;
	font-size: 14px;
	color: #53565a;
	line-height: 1.8;
	height: 5.4em;
	overflow: hidden;
	margin-top: 15px;
}

.jieshao10{
	padding-bottom: 80px;
}

.pro3{
	background-image: url(../images/pro3-bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 50px 45px;
	border-radius:6px;	
}

.pro3-p p{margin:0;}
.pro3-p{
	font-size: 16px;
	color: #53565a;
	line-height: 2.2;
}

.pro3-dl dl{
	margin:0;
	margin-left: -2%;
}

.pro3-dl dd{
	float: left;
	width: 12.28571%;
	margin-left: 2%;
	margin-top: 2%;
}

.pro3-dl dd>a{
	display: block;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	border-radius: 6px;
	background-image: linear-gradient(to right, #05426a , #0c324c);
	height:62px;
	line-height: 62px;
}

.pro3-dl dd>a:hover,
.pro3-dl dd.cur>a{
	background-image: linear-gradient(to right, #f07a07 , #fa4415);
}
.pro4{
	margin-top: 55px;
}
.pro4-list dl{
	margin:0;
	margin-left: -3%;
}

.pro4-list dd{
	float: left;
	width: 30.3333%;
	margin-left: 3%;
	margin-top: 3%;
}

.pro4-list dd:nth-child(1),
.pro4-list dd:nth-child(2),
.pro4-list dd:nth-child(3){
	margin-top: 0
}

.pro4-item{
	display: block;
}

.pro4-pic .imgbox_a{
	padding-bottom: 55.88%;
	border-radius: 6px;
}

.pro4-h1{
	font-size: 18px;
	color: #333;
	text-align: center;
	margin-top: 15px;
}

.pro4-item:hover .pro4-h1{
	color: #fa4415;
}

.fpro4{
	margin-top: 40px;
}

.fpro4 .flex-direction-nav a{
	width: 42px;
	height: 42px;
	margin-top: -21px;
	transition:background-image .3s;
}

.fpro4 .flex-direction-nav .flex-prev{
	left: -70px;
	background-image: url(../images/left.png);
}
.fpro4 .flex-direction-nav .flex-prev:hover{
	background-image: url(../images/lefth.png);

}
.fpro4 .flex-direction-nav .flex-next {
  right:-70px;
	background-image: url(../images/right.png);
}

.fpro4 .flex-direction-nav .flex-next:hover{
	background-image: url(../images/righth.png);

}

.fpro4 .flex-control-paging li a{
	width: 13px;
	height: 13px;
	background-image: none!important;
	background-color: #e7e7e7;
	transition:background-color .3s;
	border-radius: 50%;
}

.fpro4 .flex-control-paging li a.flex-active{
	background-color: #fa4415;

}

.fpro4 .flex-control-nav{
	position: relative;
	bottom: 0;
	margin-top: 40px;
}

.pro5{
	margin-top: 50px;
}


.pro5-list dl{
	margin:0;
	margin-left: -3%;
}

.pro5-list dd{
	float: left;
	width: 30.3333%;
	margin-left: 3%;
	margin-top: 3%;
}

.pro5-item{
	display: block;
	cursor: pointer;
}

.pro5-pic .imgbox_a{
	padding-bottom: 64.36%;
	border-radius: 6px;
}


.pro5-pic .imgbox_a::before{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	content:"";
	background-color: #000;
	opacity: 0.27;
	z-index: 20;
}
.pro5-pic .imgbox_a::after{
	position: absolute;
	width: 55px;
	height: 55px;
	left: 50%;
	top: 50%;
	margin-left: -27px;
	margin-top: -27px;
	content:"";
	background-image: url(../images/bobo.png);
	background-size: 100%;
	z-index: 25;
}







.pro5-h1{
	font-size: 20px;
	color: #333;
	text-align: center;
	margin-top: 20px;
}

.pro5-item:hover .pro5-h1{
	color: #fa4415;
}


.main2 .pro3{
	margin-top: 60px;
}

.mmain2-hh1{
	font-size: 28px;
	color: #fa4415;
	font-weight: bold;
	padding-bottom: 22px;
}

.mmain2-hh1 img{
	margin-top: -3px;
	margin-left: 15px;
}


.pro3xx-gai{display: none;}
.pro3xx-gai:first-child{display: block;}


.pro3-p+.more11 {
  margin-top: 20px;
}

.pro3xxgai-item{
	cursor: pointer;
	font-size: 24px;
	color: #53565a;
	padding: 20px 34px;
	line-height: 1;
	border-radius: 6px;
	background-color: #e6e6e6;
	font-family: "msr";
}

.pro3xxgai-item+.pro3xxgai-item{
	margin-left: 15px;
}

.pro3xxgai-item.cur{
	background-color: #073f63;
	color: #fff;
	font-family: "msb";
}

.pro3xxgai-wp{
	margin-top: 25px;
}
.main2 .pro3{
	height: 420px;

}
.pro3{
	background-image: url(../images/pro3-bgx.jpg);
}


.pro6 {
  margin-top: 50px;
}

.fpro6{
	margin-top: 40px;
}

.pro6-table table.table{margin:0;}


.pro6-table table.table tr th{
	height: 68px;
	color: #fff;
	font-size: 22px;
	text-align: center;
	vertical-align: middle;
	background-color: #4d4d4d;
	font-weight: normal;
	font-family: "msr";
}

.pro6-table table.table tr td{
	height: 64px;
	color: #333;
	font-size: 18px;
	text-align: center;
	vertical-align: middle;
	font-family: "msr";
}

.fpro6 .flex-direction-nav a{
	width: 42px;
	height: 42px;
	margin-top: -21px;
	transition:background-image .3s;
}

.fpro6 .flex-direction-nav .flex-prev{
	left: -70px;
	background-image: url(../images/left.png);
}
.fpro6 .flex-direction-nav .flex-prev:hover{
	background-image: url(../images/lefth.png);

}
.fpro6 .flex-direction-nav .flex-next {
  right:-70px;
	background-image: url(../images/right.png);
}

.fpro6 .flex-direction-nav .flex-next:hover{
	background-image: url(../images/righth.png);

}

.fpro6 .flex-control-paging li a{
	width: 13px;
	height: 13px;
	background-image: none!important;
	background-color: #e7e7e7;
	transition:background-color .3s;
	border-radius: 50%;
}

.fpro6 .flex-control-paging li a.flex-active{
	background-color: #fa4415;

}

.fpro6 .flex-control-nav{
	position: relative;
	bottom: 0;
	margin-top: 40px;
}

.news-fform{
	width: 650px;
	margin:0 auto; 
	position: relative;
	top: -50px;
}

.news-fform input:focus{
	outline: none;
}
.news-fform input[type="text"]{
	display: block;
	width: 100%;
	height: 54px;
	border:1px solid #e1dfdd;
	border-radius: 4px;
	font-size: 16px;
	color: #333;
	line-height: 1.428571;
	padding: 10px 150px 10px 25px;
}
.news-fform input[type="button"]{
	position: absolute;
	right:0px;
	top: 0px;
	width: 130px;
	border-radius: 4px;
	height: 54px;
	border:0;
	color: #fff;
	font-size: 18px;
	color: #fff;
	font-family: "msr";
	background-image: linear-gradient(to right, #f07a07 , #fa4415);
}

.news-fform input[type="button"]:hover{
	font-family: "msb";

}


.baojia1{
	padding: 55px 45px;
	background-image: url(../images/baojia1.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 6px;
}

.baojia1-item{
	width: 48%;
}
.baojia1-2 .baojia1-item{
	width: 31%;
}
.baojia1-2 .baojia1-item.fl+.baojia1-item.fl{
	margin-left: 3.5%;
}
.baojia1-item select{
	height: 54px;
	font-size: 16px;
}

.baojia1-item select option:first-child{
	display: none;
}

.baojia2{
	margin-top: 35px;
	border:1px solid #e1dfdd;
	border-radius: 6px;
	padding: 45px 25px 45px 20px;
}

.baojia2-img{
	width: 654px;
	
	margin-right: 25px;
}
.baojia2-img-box{
	position: relative;
	padding: 28px 0 65px;
}
.baojia2-img-box>img{
	display: block;
	width: 467px;
	margin:0 auto;
}

.bja{
	position: absolute;
	width: 50px;
	height: 50px;
	z-index: 30;
	cursor: default;
	/*opacity: 0;*/
	/*display: none;*/
	/*background-color: #f00;*/
}
.bja>b{
	display: block;
	line-height: 50px;
	color: #fff;
	font-size: 26px;
	text-align: center;
	border-radius: 50%;
	background-color: #000000;
	font-weight: bold;
	cursor: pointer;
}
.bja>span{
	position: absolute;
	white-space: nowrap;
	font-size: 23px;
	color: #000;
	font-weight: bold;
	line-height: 1;
	left: 50%;
	transform: translateX(-50%);
	top: 60px;
}

.bja1{
	left: 50%;
	transform: translateX(-50%);
  top: 0px;
}

.bja2{
	left: 50%;
	transform: translateX(-50%);
  top: 120px;
}

.bja3{
	left: 95px;
  top: 186px;
}


.bja4{
	right: 95px;
  top: 186px;
}

.bja5{
	left: 25px;
  top: 400px;
}

.bja6{
	right: 25px;
  top: 400px;
}

.bja7{
	left: 125px;
  top: 500px;
}
.bja8{
	right: 125px;
  top: 500px;
}
.bja9{
	left:125px;
  top: 675px;
}

.bja10{
	right: 125px;
  top: 675px;
}

.bja11{
	left: 50%;
	transform: translateX(-50%);
  top: 650px;
}

.bja12{
	left:95px;
  top: 850px;
}

.bja13{
	right: 95px;
  top: 850px;
}
.bja14{
	left: 50%;
	transform: translateX(-50%);
  bottom: 95px;
}

.bja14>span{
	top: auto;
	bottom: 60px;
}

.bja15{
	left: 50%;
	transform: translateX(-50%);
  bottom: 35px;
}




.bw{
	position: absolute;
	z-index: 10;
	opacity: 0;
}
.bw.cur{
	opacity: 1;
}
.bw1{
	width: 300px;
	left: 50%;
	transform: translateX(-50%);
	top: 30px;
}
.bw2{
	width: 357px;
	left: 50%;
	transform: translateX(-50%);
	top: 55px;
}

.bw3{
	width: 70px;
	left: 119px;
	top: 97px;
}


.bw4{
	width: 70px;
	right: 119px;
	top: 97px;
}

.bw5{
	width: 44px;
	left: 94px;
	top: 381px;
}

.bw6{
	width: 44px;
	right: 94px;
	top: 381px;
}


.bw7{
	width: 72px;
	left: 124px;
	top: 331px;
}

.bw8{
	width: 71px;
	right: 126px;
	top: 331px;
}

.bw9{
	width: 79px;
	left: 121px;
	top: 594px;
}

.bw10{
	width: 79px;
	right: 123px;
	top: 594px;
}

.bw11{
	width: 273px;
	left: 50%;
	transform: translateX(-50%);
	top: 515px;
}

.bw12{
	width: 87px;
	left: 122px;
	top: 775px;
}

.bw13{
	width: 87px;
	right: 123px;
	top: 777px;
}
.bw14{
	width: 290px;
	left: 50%;
	transform: translateX(-50%);
	bottom: 71px;
}

.bw15{
	width: 369px;
	left: 50%;
	transform: translateX(-50%);
	bottom: 65px;
}
.baojia2-con{
	overflow: hidden;

}










.baojia2-p{
	font-size: 16px;
	color: #53565a;
	line-height: 1.8;
	padding-bottom: 22px;
}

.baojia2-con .pro6-table table.table tr th{
	height: 56px;
	font-size: 20px;
}


.baojia2-con .pro6-table table.table tr td{
	height: 65px;
	font-size: 18px;
}

.baojia2-con .pro6-table table.table tr.kongtr td{border:0;}

.heji{
	font-size: 18px;
	color: #fa4415;
}

.heji span{
	font-family: "msb";
	font-size: 22px;
}

.delspan{
	font-size: 14px;
	color: #333;
	display: inline-block;
	background-color: #e7e7e7;
	border-radius: 3px;
	cursor: pointer;
	padding: 8px 18px;
	line-height: 1;
}

.delspan:hover{
	color: #fff;
	background-color: #fa4415;
}


.baojia-zc{
	background-image: url(../images/zjia.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 6px;
	height: 99px;
	line-height: 99px;
	text-align: center;
	font-size: 18px;
	color: #fff;
	margin-top: 35px;
}

.baojia-zc span{
	font-size: 26px;
  font-family: "msb";
  padding-left: 7px;
}

.zhibao-list{
	margin-top: 50px;
}

.zbitem{
	width: 49%;
	margin-bottom:35px;
}

.zbitem-title{
	height: 70px;
	line-height: 70px;
	background-image: url(../images/zbitem-title.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
	border-top-right-radius: 6px;
	overflow: hidden;
	font-size: 24px;
	color: #fff;
	font-family: "msb";
	padding-left: 90px;
	position: relative;
}

.zb-ico{
	position: absolute;
	width: 36px;
	left: 35px;
	top: 50%;
	transform: translateY(-50%);
}
.zb-ico img{
	display: block;
	width: 100%;
}
.zbitem-div{
	/*height: 458px;*/
	min-height: 450px;
	border:1px solid #e0e0e0;
	border-top: 0;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	padding: 30px 40px;
}

.zbitem-zhang{
	position: relative;
}

.zbitem-zhang::after{
	position: absolute;
	width:232px;
	height: 232px;
	content:"";
	background-image: url(../images/biao.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	right: 15%;
	top: 15%;

}

.zbitem-dd{
	font-size: 18px;
	color: #333;
	line-height: 30px;
}
.zbitem-dd .fl img{
	margin-top: -3px;
	margin-right: 15px;
}
.zbitem-dd+.zbitem-dd{
	margin-top: 40px;
}

.zbitem-aa{
	margin-top: 28px;
}

.zbitem-aa a{
	display: block;
	width: 112px;
	height: 43px;
	line-height: 43px;
	border-radius: 6px;
	background-color: #f17407;
	text-align: center;
	font-size: 16px;
	margin-left: auto;
	color: #fff;
}


.zbitem-aa a:hover{
	font-weight: bold;
}


.zhibao-xx .zbitem-aa {
    margin-top: 5px;
}
.zhibao-xx .zbitem-aa a{
	margin-right: auto
}

.zhibao-xx .zbitem-div{
	min-height: 385px;
}

.zhibao-xx .zhibao-xx-item .zbitem-div{
	min-height: 315px;
}
.shigong-list{
	margin-top: 20px;
}
.shigong-list .imgbox_a{
	padding-bottom: 66.04%;
	border-radius: 4px;
}

.shigong-list .owl-nav button.owl-prev{
    position: absolute;
    left:-35px;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    background-image: url(../images/left100.png);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center ;
    font-size: 0;
    z-index: 50;
    background-size: 100%;
    transition: background-image .3s;
}
.shigong-list .owl-nav button.owl-prev:hover{
	background-image: url(../images/left100h.png);
}
.shigong-list .owl-nav button.owl-next{
    position: absolute;
    right:-35px;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    background-image: url(../images/right100.png);
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center ;font-size: 0;
    z-index: 50;
    background-size: 100%;
    transition: background-image .3s;
}

.shigong-list .owl-nav button.owl-next:hover{
	background-image: url(../images/right100h.png);
}

.shigong-list .owl-dots {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -30px;
    margin-top: 0;
}
.shigong-list .owl-dots .owl-dot{
    margin:0 5px;
}
.shigong-list .owl-dot span{
    width: 13px;
    height: 13px;
    background-image: url(../images/dott.png);
}

.shigong-list .owl-dot.active span{
    background-image: url(../images/dotth.png);
}