@charset "utf-8";



/* 注意：以下长度用em换算，1em=10px。特别注意文字大小，父子层级会继承，所以不要在div中定义字体大小，只能用span修改字体。

------------------------------------------------------------------------------------------------------ */



/* 全局样式

-------------------------------------------------------------- */

html,body,a,p,span,ul,img{ padding:0; margin:0; list-style:none; border:none; font-size:14px; font-family:"Microsoft YaHei","Arial"; color:#666;}

p{line-height:25px;}

img{ border:none; vertical-align:middle;}

td{ vertical-align:center; font-size:14px;}



*{margin:0;padding:0;}

body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,img{border:medium none;margin:0;padding:0;}

body,button,input,select,textarea{outline:none;}

.body{background:#fff;}

.nbody{background:#efefef;}

ul,ol,li{list-style:none;}



img{border:0px;}

table,table tr,table td{border:solid 1px #777777; }

html,body{height:auto;margin:0 auto;}

.hide{display:none;}

.clear{clear:both;}

input,textarea{

	font-family:"Microsoft YaHei","Arial";

	}

h1,h2,h3,h4,h5,h6 { font-weight: bold; }



h1 { font-size: 3em; line-height: 1; margin:0; padding:0;}

h2 { font-size: 2em;  margin:0; padding:0;}

h3 { font-size: 1.5em; line-height: 1;  margin:0; padding:0;}

h4 { font-size: 1.2em; line-height: 1.25; margin:0; padding:0;}

h5 { font-size: 1em;  margin:0; padding:0;}

h6 { font-size: 1em; }

body{background:#fff;}

/* 页面基本元素

-------------------------------------------------------------- */



/* 链接样式 */

a {text-decoration:none;}

a:visited {text-decoration:none;}

a:hover {text-decoration:none;}



/* 常用元素 */

.clear { clear:both; font-size:1px; line-height:0px; height:0px; }



/* 层浮动 */

.left { float: left; }

.right{ float: right; }

.center { margin: 0 auto; }



/* 文字对齐 */

.tleft { text-align:left; }

.tright { text-align:right; }

.tcenter {text-align:center; }



img{
	webkit-transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1);

    transition: transform .75s cubic-bezier(.19, 1, .22, 1), -webkit-transform .75s cubic-bezier(.19, 1, .22, 1);

	}

/* top

-------------------------------------------------------------- */
.header{
	width:100%;
	height:100px;
	z-index: 999;
	top:0;
	padding:0 0 0 2%;
	position: fixed;
	}
.logo{
	overflow:hidden;
	padding:11.5px 0;
}
.topewm{
	width:100px;
	text-align:center;
	padding:39.5px 0;
	position:relative;
	cursor:pointer;
	}
.topewm .ewmimg{
	opacity:0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	position:absolute;
	background:#fff;
	padding:10px;
	border-radius:5px;
	top:100px;
	right:0;
}
.topewm .ewmimg img{
	width:100px;
}
.topewm:hover .ewmimg{
	opacity:1;
}
.small{
	background:rgba(0,0,0,0.5);
	box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0px 2px 3px rgba(0,0,0,0.3); 
}
	
/* nav
-------------------------------------------------------------- */
.menu, .menu ul {

  list-style: none;

  padding: 0;

}



.menu > li {

  position: relative;

  display: inline-block;

  outline: 0;

}



.submenu {

  position: absolute;

  left: 0;

  top: 100%;

  z-index: 0;

  overflow: hidden;

  /* IE8 needs this */

  overflow: hidden\0/ !important;

  max-height: 0;

  /* A .submenu should be only revealed when hovering the .menu */

  pointer-events: none;

}



.menu > li:hover .submenu, .menu > li:focus .submenu {

  pointer-events: auto;

  z-index: 10;

  max-height: 2000px;

  -webkit-transition: none;

     -moz-transition: none;

}



/* Default

 ================================================================= */

.submenu li {

  opacity: 0;



  -webkit-transition: opacity .4s, -webkit-transform .6s, max-height .6s;

     -moz-transition: opacity .4s,    -moz-transform .6s, max-height .6s;

      -ms-transition: opacity .4s,     -ms-transform .6s, max-height .6s;

       -o-transition: opacity .4s,      -o-transform .6s, max-height .6s;

          transition: opacity .4s,         transform .6s, max-height .6s;

}



.menu > li:hover .submenu li, .menu > li:focus .submenu li {

  opacity: 1;



  -webkit-transform: none;

     -moz-transform: none;

      -ms-transform: none;

       -o-transform: none;

          transform: none;

}

/* Shield

 ================================================================= */

.shield {

  overflow: visible;



  -webkit-perspective: 400px;

     -moz-perspective: 400px;

      -ms-perspective: 400px;

       -o-perspective: 400px;

          perspective: 400px;

}



.shield li {

  -webkit-transform: rotateX(90deg);

     -moz-transform: rotateX(90deg);

      -ms-transform: rotateX(90deg);

       -o-transform: rotateX(90deg);

          transform: rotateX(90deg);



  -webkit-transform-origin: 0 0;

     -moz-transform-origin: 0 0;

      -ms-transform-origin: 0 0;

       -o-transform-origin: 0 0;

          transform-origin: 0 0;



  -webkit-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

     -moz-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

      -ms-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

       -o-transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

          transition-timing-function: cubic-bezier(0, .35, .5, 1.7);

}
.nav{
	text-align:right;
	margin-right:148px;
}
.nav > ul{

	display:inline-block;
	margin:0;
	}

.nav .menu > li{
	float:left;
	text-align:center;
	line-height:100px;
	padding:0 38px;
	}

.nav .menu > li:hover,.nav .menu > li.active{
	background: -webkit-linear-gradient(top, #34902c , rgba(52,144,44,0.5)); /* Safari 5.1 - 6.0 */
	  background: -o-linear-gradient(bottom, #34902c , rgba(52,144,44,0.5)); /* Opera 11.1 - 12.0 */
	  background: -moz-linear-gradient(bottom, #34902c , rgba(52,144,44,0.5)); /* Firefox 3.6 - 15 */
	  background: linear-gradient(to bottom, #34902c , rgba(52,144,44,0.5)); /* 标准的语法 */
	}
.nav .menu > li a{
	color:#fff;
	font-size:16px;
	display:block;
	line-height:100px;
	position:relative;
	}

.nav .menu > li:hover a,.nav .menu > li.active a{
	font-weight:bold;
	}


.nav .menu > li .submenu{

	width:160px;
	left:50%;
	margin-left:-80px;
	}

.nav .menu > li .submenu li{

	width:100%;

	line-height:30px;
	padding:8px 0;

	background:#35902a;

	text-align:center;
	margin-top:1px;

}

.nav .menu > li .submenu li a{

	display:block;
	color:#fff;
	background:none;
	font-size:14px;
	padding:0;
	line-height:30px;
}
.nav .menu > li .submenu li a:before{
	display:none;
	}

.nav .menu > li .submenu li:hover{

	background:#3ea631;

}
.nav .menu > li.current:after{
	width:100%;
	}
.cont{
	width:1436px;
	overflow:hidden;
	margin:auto;
	}
.cont1{
	width:1436px;
	height:auto;
	margin:auto;
	}

/* banner

-------------------------------------------------------------- */
.banner {
	width: 100%;
	overflow: hidden;
	position: relative;
	text-align: center;
}
.bannermore{
	width:100px;
	height:100%;
	position:absolute;
	right:0;
	top:0;
	border-left: solid 1px rgba(132,132,132,0.2);
	z-index:99;
}
.bannermore img{
	position:absolute;
	top:50%;
	margin-top:-50px;
	right:0;
}
/*shubiao*/
.shubiao-index{
	position:absolute;
	bottom:26px;
	left:50%;
	width:60px;
	margin-left:-30px;
	z-index:9999;
}
.shubiao{
	width:14px;
	margin:40px auto 0;
	position:relative;
}
.shubiao-ncon{
	margin-top:70px;
}
.shubiao_line {
    width: 1px;
    height: 60px;
    background: #fff;
    margin:10px auto;
}
.shubiao_pinyin{
	font-size:14px;
	text-align:center;
	color:#282828;
	margin-top:5px;
}
#shubiao{
	width:26px;
	margin:0 auto;
}
.mouse {
  position: relative;
  width: 28px;
  height: 50px;
  border-radius: 30px;
  border: 3px solid #000;
}
.mouse:after {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 3px;
  height: 12px;
  border-radius: 20px;
  background-color: #000;
  -webkit-animation: scroll 1s infinite alternate;
          animation: scroll 1s infinite alternate;
}

@-webkit-keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}
@keyframes scroll {
  100% {
    -webkit-transform: translate(-50%, 8px);
            transform: translate(-50%, 8px);
  }
}

/**/
.rslides {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
}
.rslides li {
	-webkit-backface-visibility: hidden;
	position: absolute;
	display: none;
	width: 100%;
	left: 0;
	top: 0;
}
.rslides li:first-child {
	position: relative;
	display: block;
	float: left;
}
.rslides img {
	display: block;
	height: auto;
	float: left;
	width: 100%;
	border: 0;
}
.rslides {
	margin: 0 auto 40px;
}
#slider2, #slider3 {
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	margin: 0 auto;
}
.rslides_tabs {
	width:34px;
	padding: 0;
	font-size: 18px;
	list-style: none;
	position:absolute;
	top:50%;
	margin-top:-111px;
	left:40px;
	z-index: 99;
}
.rslides_tabs li {
	float: left;
	width: 34px;
	height: 34px;
	margin:20px 0;
	border-radius:50%;
}
.rslides_tabs a {
	width: 12px;
	height: 12px;
	display: block;
	background:#fff;
	border-radius:50%;
	margin:10px;
}
.rslides_tabs li:hover, .rslides_tabs .rslides_here {
	border:solid 1px #fff;
}
/* Callback example */
.events {
	list-style: none;
}
.callbacks_container {
	margin-bottom: 50px;
	position: relative;
	float: left;
	width: 100%;
}
.callbacks {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
}
.callbacks li {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
}
.callbacks img {
	display: block;
	position: relative;
	z-index: 1;
	height: auto;
	width: 100%;
	border: 0;
}
.callbacks .caption {
	display: block;
	position: absolute;
	z-index: 2;
	font-size: 20px;
	text-shadow: none;
	color: #fff;
	background: #000;
	background: rgba(0,0,0, .8);
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px 20px;
	margin: 0;
	max-width: none;
}
.callbacks_nav {
	position: absolute;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	top: 52%;
	left: 0;
	opacity: 0.7;
	z-index: 3;
	text-indent: -9999px;
	overflow: hidden;
	text-decoration: none;
	height: 61px;
	width: 38px;
	background: transparent url("../images/themes.gif") no-repeat left top;
	margin-top: -45px;
}
.callbacks_nav:active {
	opacity: 1.0;
}
.callbacks_nav.next {
	left: auto;
	background-position: right top;
	right: 0;
}
#slider3-pager a {
	display: inline-block;
}
#slider3-pager img {
	float: left;
}
#slider3-pager .rslides_here a {
	background: transparent;
	box-shadow: 0 0 0 2px #666;
}
#slider3-pager a {
	padding: 0;
}
 @media screen and (max-width: 600px) {
.callbacks_nav {
	top: 47%;
}
}
/*banner*/

/* tit

-------------------------------------------------------------- */
.tit{
	width:100%;
	overflow:hidden;
	}
.tit h3{
	width:100%;
	overflow:hidden;
	font-size:35px;
	color:#35902a;
	line-height:45px;
	}
.tit h3 a{
	font-size:35px;
	color:#35902a;
	}
.tit p{
	width:100%;
	overflow:hidden;
	font-size:25px;
	font-family:Arial;
	color:#7b7b7b;
	line-height:30px;
	margin-top:3px;
	}
/* topnews
-------------------------------------------------------------- */
.topnews{
	background:#fff;
	border-radius:10px;
	margin-top: -38px;
    position: relative;
    z-index: 99;
}
.topnews .topnewlf{
	width:24%;
	overflow:hidden;
	line-height:76px;
	background:#35902a;
	padding:0 20px;
}
.topnewlf .topnews_date,.topnewlf .topnews_fl{
	padding:0;
	color:#fff;
	text-align:center;
}
.topnewlf .topnews_date{
	position:relative;
}
.topnewlf .topnews_date:after{
	content:"";
	width:1px;
	height:20px;
	background:#fff;
	position:absolute;
	right:0;
	top:28px;
}
.topnewlf .topnews_fl{
	font-size:20px;
}
.topnews .topnewrt{
	width:76%;
	height:76px;
	overflow:hidden;
	padding:0 110px;
}
.topnews .topnewrt dl{
	width:100%;
	overflow:hidden;
}
.topnews .topnewrt dl dt{
	width:30%;
	overflow:hidden;
	float:left;
	font-size:18px;
	line-height:76px;
	color:#1b1b1b;
	font-weight:normal;
	white-space: nowrap;
    text-overflow: ellipsis;
}
.topnews .topnewrt dl dd{
	width:70%;
	overflow:hidden;
	float:left;
	color:#939393;
	line-height:76px;
	white-space: nowrap;
    text-overflow: ellipsis;
}
/* pro
-------------------------------------------------------------- */
.pro{
	width:100%;
	overflow:hidden;
	background:url(../images/probg.jpg) no-repeat top center;
	background-size:cover;
	padding-top:88px;
	padding-bottom:92px;
}
.promenu{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:34px;
	}
.promenu ul{
	overflow:hidden;
	display:inline-block;
	}
.promenu ul li{
	overflow:hidden;
	float:left;
	line-height:30px;
	margin:0 28px;
	padding-bottom:26px;
	position:relative;
	}
.promenu ul li:after{
	content:"";
	width:0;
	height:2px;
	background:#38912e;
	position:absolute;
	left:0;
	bottom:0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	}
.promenu ul li a{
	font-size:16px;
	color:#343434;
	}
.promenu ul li:hover:after{
	width:100%;
	}
.promenu ul li:hover a{
	color:#38912e;
	}
.prolist{
	width:100%;
	overflow:hidden;
	margin-top:55px;
	}
.prolist dl{
	overflow:hidden;
	margin:35px 0;
	}
.prolist dl dt{
	position:relative;
	height:305px;
	}
.prolist dl dt,.prolist dl dd{
	width:100%;
	overflow:hidden;
	}
.prolist dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.prolist dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.prolist dl dd{
	font-size:20px;
	color:#202020;
	line-height:30px;
	background:url(../images/icon2.png) no-repeat right 3px;
	padding-right:24px;
	margin-top:20px;
	border-bottom:solid 3px #c3c3c3;
	padding-bottom:23px;
	}
.promore{
	width:100%;
	overflow:hidden;
	margin-top:52px;
	}
.promore a{
	display:block;
	width:180px;
	height:50px;
	text-align:center;
	line-height:50px;
	margin:auto;
	font-size:16px;
	color:#202020;
	background:#fff;
	border-radius:25px;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.promore a:hover{
	background:#ed6d00;
	color:#fff;
	}
.prolist dl:hover dd{
	border-bottom:solid 3px #ed6d00;
	}


/* about
-------------------------------------------------------------- */
.about{
	width:100%;
	overflow:hidden;
	background:url(../images/aboutbg.jpg) no-repeat right center;
	padding-top:146px;
	padding-bottom:256px;
	}
.about .aboutlf{
	width:55%;
	overflow:hidden;
	}
.aboutms{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#262624;
	margin-top:50px;
	}
.aboutmore{
	width:100%;
	overflow:hidden;
	margin-top:65px;
	}
.aboutmore a{
	width:170px;
	height:48px;
	display:block;
	text-align:center;
	line-height:48px;
	border:solid 2px #35902a;
	border-radius:25px;
	font-size:16px;
	color:#35902a;
	font-weight:bold;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.aboutmore a:hover{
	background:#35902a;
	color:#fff;
	}
.ab_fl{
	width:100%;
	overflow:hidden;
	margin-top:105px;
	}
.ab_fl dl{
	overflow:hidden;
	float:left;
	padding:0;
	position:relative;
}
.ab_fl dl{
	position:relative;
	}
.ab_fl dl:after{
	content:"";
	width:2px;
	height:44px;
	background:#35902a;
	position:absolute;
	right:64px;
	top:10px;
	transform:rotate(570deg);
	}
.ab_fl dl:last-child:after{
	display:none;
}
.ab_fl dl dt{
	width:100%;
	overflow:hidden;
	line-height:45px;
	color:#262624;
	font-size:45px;
	float:left;
}
.ab_fl dl dd{
	width:100%;
	overflow:hidden;
	float:left;
	color:#151515;
	line-height:20px;
	font-size:16px;
}
.ab_fl dl dt .counter{
	color:#262624;
	font-size:45px;
	font-family:Arial;
	line-height:45px;
	font-weight:bold;
	margin-right:5px;
	}
.ab_fl dl img{
	max-width:100%;
	height:auto;
}
/* nkysl
-------------------------------------------------------------- */
.nkysl{
	margin-top:60px;
	margin-bottom:60px;
	}
.nkyslnr{
	width:100%;
	overflow:hidden;
}
.nkyslnr ul,.nkyslnr ul li .nkysldate,.nkyslnr ul li h4,.nkyslnr ul li .nkyslmore{
	width:100%;
	overflow:hidden;
	}
.nkyslnr ul li{
	width:48%;
	overflow:hidden;
	float:left;
	border-bottom:solid 1px #cacaca;
	padding-bottom:23px;
	margin:56px 1%;
	}
.nkyslnr ul li .nkysldate{
	font-size:16px;
	color:#7e7e7e;
	line-height:30px;
	}
.nkyslnr ul li h4{
	font-size:20px;
	color:#2e2e2e;
	line-height:30px;
	margin-top:14px;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.nkyslnr ul li .nkyslmore{
	font-size:16px;
	color:#969696;
	line-height:30px;
	margin-top:27px;
	position:relative;
	}
.nkyslnr ul li .nkyslmore:before{
	content:"";
	width:60px;
	height:1px;
	background:#9b9b9b;
	position:absolute;
	left:88px;
	top:14.5px;
	}
.nkyslnr ul li .nkyslmore:after{
	content:"";
	width:25px;
	height:25px;
	border:solid 1px #9b9b9b;
	position:absolute;
	left:138px;
	top:2.5px;
	border-radius:50%;
	}
.nkyslnr ul li:hover h4 span{
	color:#099553;
	border-bottom:solid 3px #099553;
	}
.nkyslnr ul li:hover h4{
	color:#099553;
}
/* hxjs
-------------------------------------------------------------- */
.hxjs{
	width:100%;
	overflow:hidden;
	}
.hxjs .hxjslf{
	width:40%;
	overflow:hidden;
	}
.hxjs .hxjsrt{
	width:60%;
	overflow:hidden;
	height:766px;
	background:url(../images/hxjsimg.jpg) no-repeat top center;
	background-size:cover;
	}
.hxjstit{
	width:100%;
	overflow:hidden;
	height:266px;
	background:#35902a;
	}
.hxjstitlf{
	width:74%;
	overflow:hidden;
	font-size:40px;
	color:#fff;
	line-height:266px;
	background:url(../images/icon2.png) no-repeat 65px center;
	padding-left:220px;
	}
.hxjstitlf a{
	font-size:40px;
	color:#fff;
}
.hxjstitrt{
	width:26%;
	height:266px;
	overflow:hidden;
	background:url(../images/icon3.png) no-repeat center;
	border-left:solid 2px rgba(255,255,255,0.3);
	}
.hxjsnr{
	width:100%;
	height:500px;
	background:#efefef;
	padding:68px 105px 0 64px;
	}
.hxjsnr h4{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#000;
	line-height:30px;
	font-weight:normal;
	}
.hxjsnr .hxjsms{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	color:#6c6c6c;
	margin-top:29px;
	}
.hxjsnr .hxjsmore{
	width:100%;
	overflow:hidden;
	margin-top:90px;
	}
.hxjsnr .hxjsmore a{
	display:block;
	width:170px;
	height:46px;
	text-align:center;
	line-height:46px;
	font-size:16px;
	color:#35902a;
	border:solid 2px #35902a;
	border-radius:25px;
	font-weight:bold;
	transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
	}
.hxjsnr .hxjsmore a:hover{
	background:#35902a;
	color:#fff;
	}
.tab,.tab ul{
	width:100%;
	overflow:hidden;
	}
.tab{
	border:solid 1px #d1d1d1;
	}
.tab ul li{
	width:20%;
	height:348px;
	overflow:hidden;
	float:left;
	padding:90px 0 0 64px;
	border-right:solid 1px #d1d1d1;
	}
.tab ul li:last-child{
	border-right:none;
	background:#35902a;
	padding:90px 0 0 0;
	}
.tab ul li:last-child .hxjsicon{
	text-align:center;
	}
.tab ul li:last-child h4{
	color:#fff;
	text-align:center;
	}
.tab ul li .hxjsicon{
	width:100%;
	overflow:hidden;
	}
.tab ul li .hxjsicon img{
	max-width:100%;
	height:auto;
	}
.tab ul li h4{
	width:100%;
	overflow:hidden;
	font-size:22px;
	color:#343434;
	line-height:30px;
	font-weight:normal;
	margin-top:64px;
	}
.tab ul li:hover h4,.tab ul li.hover h4{
	color:#35902a;
	}
.tab ul li .hxjsicon .iconimgh{
	display:none;
	}
.tab ul li:hover .hxjsicon .iconimg,.tab ul li.hover .hxjsicon .iconimg{
	display:none;
	}
.tab ul li:hover .hxjsicon .iconimgh,.tab ul li.hover .hxjsicon .iconimgh{
	display:block;
	}
.tab ul li:last-child:hover h4{
	color:#fff;
	}
/* czxt
-------------------------------------------------------------- */
.czxt{
	width:100%;
	overflow:hidden;
	padding-top:100px;
	padding-bottom:122px;
	}
.czxt .tit h3,.czxt .tit p{
	text-align:center;
	}
.czxt .czxtnr{
	margin-top:65px;
	position:relative;
	}
.czxtnr .owl-carousel .owl-item{
	padding:0 30px;
	}
.czxtnr dl,.czxtnr dl dt,.czxtnr dl dd{
	width:100%;
	overflow:hidden;
	}
.czxtnr dl dt{
	border-radius:10px;
	}
.czxtnr dl dt img{
	width:100%;
	height:auto;
	}
.czxtnr dl dd{
	margin-top:37px;
	}
.czxtnr dl dd h4{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#191919;
	line-height:30px;
	border-bottom:solid 1px #cccccc;
	padding-bottom:26px;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	    white-space: nowrap;
    text-overflow: ellipsis;
	}
.czxtnr dl dd .czxtms,.czxtnr dl dd .czxtms p{
	width:100%;
	overflow:hidden;
	}
.czxtnr dl dd .czxtms{
	margin-top:26px;
	}
.czxtnr dl dd .czxtms p{
	color:#8a8a8a;
	font-size:16px;
	line-height:30px;
	}
.czxtmore{
	width:45px;
	height:45px;
	border:solid 3px #e0e0e0;
	border-radius:50%;
	background:url(../images/icon9.png) no-repeat center;
	margin-top:48px;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.czxtnr dl:hover dd .czxtmore{
	background:url(../images/iconh9.png) no-repeat center;
	border:solid 3px #35902a;
	}
.czxtnr dl:hover dd h4{
	color:#35902a;
	}
.czxtnr .owl-controls .owl-pagination{
	display:none;
	}
.czxtnr .owl-controls .owl-buttons div{
	width:25px;
	height:45px;
	position:absolute;
	top:50%;
	margin-top:-12.5px;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.czxtnr .owl-controls .owl-buttons .owl-prev{
	background:url(../images/prev.png) no-repeat center;
	left:-100px;
	}
.czxtnr .owl-controls .owl-buttons .owl-prev:hover{
	background:url(../images/prevh.png) no-repeat center;
	}
.czxtnr .owl-controls .owl-buttons .owl-next{
	background:url(../images/next.png) no-repeat center;
	right:-100px;
	}
.czxtnr .owl-controls .owl-buttons .owl-next:hover{
	background:url(../images/nexth.png) no-repeat center;
	}
/* news
-------------------------------------------------------------- */
.news{
	width:100%;
	overflow:hidden;
	background:#f3f3f3;
	padding-top:160px;
	padding-bottom:194px;
	}
.newsnr .newslf{
	width:22%;
	overflow:hidden;
	}
.newsnr .newslf .tit h3,.newsnr .newslf .tit p{
	text-align:left;
	}
.newslf .newsmenu,.newslf .newsmenu ul,.newslf .newsmenu ul li{
	width:100%;
	overflow:hidden;
	}
.newslf .newsmenu{
	margin-top:92px;
	padding-left:40px;
	}
.newslf .newsmenu ul li{
	width:100%;
	overflow:hidden;
	line-height:30px;
	margin-top:30px;
	position:relative;
	padding-bottom:12px;
	}
.newslf .newsmenu ul li a{
	font-size:18px;
	color:#252525;
	font-weight:bold;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.newslf .newsmenu ul li:after{
	content:"";
	width:68px;
	height:2px;
	background:#c4c4c4;
	position:absolute;
	left:0;
	bottom:0;
	}
.newslf .newsmenu ul li:hover a{
	color:#35902a;
	}
.newsmore{
	width:150px;
	height:150px;
	border:solid 1px #bebebe;
	border-radius:50%;
	text-align:center;
	padding-top:50px;
	background:url(../images/icon10.png) no-repeat center 94px;
	margin-top:118px;
	}
.newsmore a{
	font-size:20px;
	color:#252525;
	font-weight:bold;
	display:block;
	}
.news .newsrt{
	width:78%;
	overflow:hidden;
	position:relative;
	}
.newsrt .owl-carousel .owl-item{
	padding:0 1px;
	}
.news .newsrt .newslist{
	width:70%;
	overflow:hidden;
	}
.newslist dl,.newslist dl dt,.newslist dl dd{
	width:100%;
	overflow:hidden;
	}
.newslist dl dt{
	border-radius:10px;
	height:464px;
	position:relative;
	}
.newslist dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.newslist dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.newslist dl dd{
	margin-top:42px;
	}
.newslist dl dd .newsen{
	width:10%;
	overflow:hidden;
	}
.newslist dl dd .newsen span{
	display:block;
	width:58px;
	height:28px;
	text-align:center;
	line-height:28px;
	background:#35902a;
	border-radius:8px;
	font-family:Arial;
	font-size:13px;
	color:#fff;
	}
.newslist dl dd .newsin{
	width:70%;
	overflow:hidden;
	}
.newslist dl dd .newsin h4{
	width:100%;
	overflow:hidden;
	font-size:20px;
	color:#252525;
	line-height:30px;
	font-weight:normal;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	white-space: nowrap;
    text-overflow: ellipsis;
	}
.newslist dl dd .newsin p{
	width:100%;
	overflow:hidden;
	font-size:15px;
	color:#8f8f8f;
	margin-top:20px;
	}
.newslist dl dd .newsicon{
	width:20%;
	overflow:hidden;
	}
.newslist dl dd .newsicon span{
	display:block;
	width:45px;
	height:45px;
	border-radius:50%;
	background:#35902a url(../images/icon11.png) no-repeat center;
	float:right;
	}
.news .newsrt .newsdate{
	width:30%;
	overflow:hidden;
	padding-left:13%;
	}
.news .newsrt .newsdate .year,.news .newsrt .newsdate .day{
	width:100%;
	overflow:hidden;
	}
.newsdate .year{
	font-size:15px;
	color:#252525;
	}
.newsdate .day{
	font-size:45px;
	color:#252525;
	line-height:50px;
	border-bottom:solid 1px #c2c2c2;
	padding-bottom:25px;
	margin-top:5px;
	}
.newsrt .owl-controls .owl-buttons div{
	width:40px;
	height:40px;
	border:solid 3px #c4c4c4;
	border-radius:50%;
	position:absolute;
	z-index:99;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.newsrt .owl-controls .owl-buttons div:hover{
	border:solid 3px #35902a;
	}
.newsrt .owl-controls .owl-buttons .owl-prev{
	background:url(../images/prev2.png) no-repeat center;
	right:124px;
	top:258px;
	}
.newsrt .owl-controls .owl-buttons .owl-prev:hover{
	background:url(../images/prevh2.png) no-repeat center;
	}
.newsrt .owl-controls .owl-buttons .owl-next{
	background:url(../images/next2.png) no-repeat center;
	right:124px;
	top:200px;
	}
.newsrt .owl-controls .owl-buttons .owl-next:hover{
	background:url(../images/nexth2.png) no-repeat center;
	}
.newslist dl:hover dd .newsin h4{
	color:#35902a;
	}
/* footer
-------------------------------------------------------------- */
.footer{
	width:100%;
	overflow:hidden;
	background:#222222;
}
.footer .footernr{
	padding-top:120px;
	padding-bottom:98px;
	}
.footer .footerlf{
	width:70%;
	overflow:hidden;
	}
.footer .footerlf ul{
	width:100%;
	overflow:hidden;
	}
.footer .footerlf ul li{
	width:20%;
	overflow:hidden;
	float:left;
	}
.footer .footerlf ul li h4,.footer .footerlf ul li h4 a{
	font-size:16px;
	color:#fff;
	}
.footer .footerlf ul li h4{
	margin-bottom:32px;
	font-size:16px;
	color:#fff;
	}
.footer .footerlf ul li p{
	margin-top:13px;
	font-size:15px;
	color:rgba(255,255,255,0.5);
	}
.footer .footerlf ul li p,.footer .footerlf ul li p a{
	font-size:15px;
	color:rgba(255,255,255,0.5);
	}
.footer .footerlf ul li h4{
	line-height:30px;
	font-weight:normal;
	}
.footer .footerlf ul li p{
	line-height:30px;
	}
.footer .footerlf .link{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#fff;
	line-height:30px;
	margin-top:97px;
	}
.footer .footerlf .link a{
	font-size:16px;
	color:#fff;
	}
.footer .footerrt{
	width:30%;
	overflow:hidden;
	}
.footerrt .footerrtnr{
	overflow:hidden;
	float:right;
	}
.footerrt .footerrtnr .blogo,.footerrt .footerrtnr .btel{
	width:100%;
	overflow:hidden;
	}
.footerrt .footerrtnr .blogo img{
	max-width:100%;
	height:auto;
	}
.footerrt .footerrtnr .btel{
	font-size:36px;
	color:#fff;
	line-height:46px;
	margin-bottom:4px;
	margin-top:36px;
	}
.footerrt .footerrtnr .btel a{
	font-size:36px;
	color:#fff;
	}
.footerrt .footerrtnr p{
	font-size:16px;
	color:#fff;
	line-height:30px;
	}
.footerrt .footerrtnr p a{
	font-size:16px;
	color:#fff;
}
.footerrt .footerrtnr dl,.footerrt .footerrtnr dl dt,.footerrt .footerrtnr dl dd{
	overflow:hidden;
	}
.footerrt .footerrtnr dl{
	margin-top:90px;
	}
.footerrtnr dl dt img{
	max-width:100%;
	height:auto;
}
.footerrt .footerrtnr dl dd{
	color:#fff;
	line-height:30px;
	margin-top:9px;
	}
.bot{
	width:100%;
	overflow:hidden;
	background:#35902a;
	padding:24px 0;
	}
.botnr .botlf{
	width:70%;
	overflow:hidden;
	color:#fff;
	line-height:30px;
	}
.botnr .botrt{
	width:30%;
	overflow:hidden;
	color:#fff;
	line-height:30px;
	text-align:right;
	}
.botnr .botlf a,.botnr .botrt a{
	color:#fff;
}

/* banner_n
-------------------------------------------------------------- */
.banner_n { 
	width:100%; 
	height:606px;
	background:url(../images/aboutban.jpg) no-repeat top center;
	background-size:cover;
}
@media only screen and (min-width: 1921px) and (max-width:2560px) {
	.banner_n{
		height:808px;
	}
}
@media(max-width:1680px) {
	.banner_n{
		height:530px;
	}
}
@media(max-width:1440px) {
	.banner_n{
		height:455px;
	}
}
@media(max-width:1360px) {
	.banner_n{
		height:429px;
	}
}
@media(max-width:1280px) {
	.banner_n{
		height:404px;
	}
}
@media(max-width:1152px) {
	.banner_n{
		height:364px;
	}
}
@media(max-width:1024px) {
	.banner_n{
		height:323px;
	}
}
@media(max-width:991px) {
	.banner_n{
		height:313px;
	}
}
@media(max-width:768px) {
	.banner_n{
		height:242px;
	}
}
@media(max-width:640px) {
	.banner_n{
		height:202px;
	}
}
/* position
-------------------------------------------------------------- */
.position {
	width:100%;
	overflow:hidden;
	border-bottom:solid 1px #e6e6e6;
}
.positionnr .positionrt{
	text-align:right;
	font-size:16px;
	color:#343434;
	line-height:30px;
	padding:33px 0 33px 37px;
	background:url(../images/icon12.png) no-repeat left center;
	}
.positionnr .positionrt a{
	font-size:16px;
	color:#343434;
	}
.position a:hover {
	color: #2976ba;
}
.nmenu{
	overflow:hidden;
	}
.nmenu ul{
	overflow:hidden;
	margin:0;
	}
.nmenu ul li{
	overflow:hidden;
	float:left;
	line-height:96px;
	margin-right:52px;
	text-align:center;
	}
.nmenu ul li a{
	font-size:16px;
	color:#000;
	display:block;
	position:relative;
	}
.nmenu ul li a:after{
	content:"";
	width:0;
	height:2px;
	background:#38912e;
	position:absolute;
	bottom:0;
	left:0;
	-webkit-transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
    transition: all .6s cubic-bezier(.215, .61, .355, 1) 0s;
	}
.nmenu ul li a:hover,.nmenu ul li.active a{
	color:#38912e;
	}
.nmenu ul li:hover a:after,.nmenu ul li.active a:after{
	width:100%;
	}
/* ntit

-------------------------------------------------------------- */
.ntit{
	width:100%;
	overflow:hidden;
	}
.ntit h3{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#000;
	line-height:40px;
	}
.ntit hr{
	width:40px;
	border:none;
	border-bottom:solid 2px #009474;
	margin-top:20px;
	}
/* nabout
-------------------------------------------------------------- */
.nabout{
	margin-top:90px;
	margin-bottom:90px;
	}
.nabout h3{
	width:100%;
	overflow:hidden;
	font-size:40px;
	color:#38912e;
	line-height:50px;
	}
.nabout .nabouten{
	width:100%;
	overflow:hidden;
	font-size:25px;
	color:#cecece;
	line-height:25px;
	text-transform:uppercase;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	margin-top:8px;
	}
.nabout .naboutnr{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#525252;
	line-height:30px;
	margin-top:40px;
	}
.nabout .naboutnr p{
	font-size:16px;
	color:#525252;
	line-height:30px;
	}
.nabout .naboutnr img{
	max-width:100%;
	height:auto;
	}
.nabout .naboutnr table{
	width:100%;
	height:auto;
}
.nabout .naboutnr table tr,.nabout .naboutnr table td{
	padding:5px;
	font-size:16px !important;
	line-height:30px !important;
}
	/* nhonor
-------------------------------------------------------------- */
.nhonor{
	padding-top:60px;
	padding-bottom:60px;
	}
.nhonornr{
	width:100%;
	overflow:hidden;
	}
.nhonornr ul{
	width:100%;
	overflow:hidden;
	}
.nhonornr ul li{
	width:23%;
	overflow:hidden;
	position:relative;
	height:459px;
	float:left;
	margin:15px 1%;
	}
.nhonornr ul li img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	}
.nhonornr ul li:hover img{
	transform:translate(-50%, -50%) scale(1.2);
	}
/* npro
-------------------------------------------------------------- */
.npro{
	margin-top:50px;
	margin-bottom:50px;
	}
.npro .promenu{
	margin-top:0;
	}
.npronr{
	width:100%;
	overflow:hidden;
	}
.npro dl{
	width:450px;
	overflow:hidden;
	float:left;
	margin:20px 43px 20px 0;
	background:#f6f6f6;
	}
.npro dl:nth-child(3n){
	margin-right:0;
	}
.npro dl dt{
	width:100%;
	overflow:hidden;
	height:320px;
	position:relative;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	text-align:center;
	}
.npro dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
	transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
}
.npro dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.npro dl dt .nprobg{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(56,145,46,0.9) url(../images/tb1.png) no-repeat center 60%;
	opacity:0;
	z-index:99;
	-webkit-transition: all 0.35s ease-in-out;
	-moz-transition: all 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	}
.npro dl dt .nprotit{
	width:100%;
	overflow:hidden;
	text-align:center;
	font-size:20px;
	line-height:30px;
	color:#fff;
	margin-top:98px;
	font-weight:bold;
	}
.npro dl:hover dt .nprobg{
	opacity:1;
	-webkit-transform: translateY(100);
	-moz-transform: translateY(100);
	-ms-transform: translateY(100);
	-o-transform: translateY(100);
	transform: translateY(100);
	}
.npro dl dd{
	width:82%;
	overflow:hidden;
	margin:0 9%;
	color: #333;
    font-size: 18px;
	line-height:30px;
	padding:20px 0;
	text-align:center;
	border-top:solid 1px #a9a9a9;
	text-overflow: ellipsis;
    white-space: nowrap;
	}
.npro dl:hover{
	background:rgba(56,145,46,0.9);
	}
.npro dl:hover dd{
	color:#fff;
	border-top:solid 1px #fff;
	}
.npro .nproimg{
	width:100%;
	overflow:hidden;
	text-align:center;
	margin-top:60px;
	}
.npro .nproimg img{
	max-width:100%;
	height:auto;
	}
.npro .npro_infolf{
	padding:0 30px 0 0;
}
.npro .npro_infolf img{
	max-width:100%;
	height:auto;
}
.npro .npro_infort{
	padding:32px 0 0 60px;
}
.npro .npro_infort h1{
	width:100%;
	overflow:hidden;
	font-size:30px;
	color:#333;
	line-height:40px;
	font-weight:normal;
	margin:0;
	padding-bottom:28px;
}
.npro .npro_infort .npro_infolei{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:30px;
	margin-bottom:40px;
}
.npro .npro_infort .npro_infolei span{
	font-size:16px;
	color:#35902a;
	}
.npro .npro_infort .npro_ms{
	width:100%;
	overflow:hidden;
}
.npro .npro_infort .npro_ms p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:32px;
	color:#646160;
}
.npro_lxbtn{
	width:100%;
	overflow:hidden;
	margin-top:66px;
	}
.npro_lxbtn a{
	width:160px;
	height:50px;
	display:block;
	text-align:center;
	line-height:50px;
	font-size:16px;
	color:#fff;
	background:#35902a;
	}
.tjpro{
	width:100%;
	overflow:hidden;
	}
.tjpro{
	width:100%;
	overflow:hidden;
	}
.nprofbnr{
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	margin-top:40px;
	}
.nprofbnr p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	line-height:30px;
	}
.nprofbnr img{
	max-width:100%;
	height:auto;
}
.nprofbnr table{
	width:100%;
	height:auto;
}
.nprofbnr table tr,.nprofbnr table td{
	line-height:30px !important;
	font-size:16px !important;
	padding:5px !important;
}
.tjpro{
	width:100%;
	overflow:hidden;
	margin-top:70px;
	}
.tjpro .ntit h3{
	text-align:center;
	}
.tjpro .ntit hr{
	margin:20px auto;
	}
.tjpronr{
	width:100%;
	overflow:hidden;
	}
	
/* nnews
-------------------------------------------------------------- */
.nnews{
	margin-top:60px;
	margin-bottom:60px;
	}
.nnews .nnewsnr{
	width:100%;
	overflow:hidden;
	}
/* nnews
-------------------------------------------------------------- */
.nnewsnrlist{
	margin-bottom:30px;
	padding-bottom:30px;
	width:31.333333%;
	float:left;
	border-radius: 12px;
	overflow:hidden;
	margin:1%;
	background:#f5f5f5;
  transition:all 0.5s;
-moz-transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;
}
.nnewsnrlist .newsimg{
	width:100%;
	background:#f5f5f5;
	height:338px;
	position:relative;
	overflow:hidden;
	border-radius: 0px 0px 12px 12px;
}
.nnewsnrlist .newsimg img{
	max-width:100%;
	height:auto;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: all .5s ease;
}
.nnewsnrlist:hover .newsimg img{
	transform:translate(-50%, -50%) scale(1.2);
}
.nnewsnrlist .newscon{
	width:90%;
	margin:0px auto;
	padding:30px 0px 0px;
	overflow:hidden;
}
.nnewsnrlist .newsbt a{
	font-size:18px;
	color:#37912b;
	line-height:35px;
	margin-bottom:4px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
	font-weight:bold;
}
.nnewsnrlist .newsdate{
	width:20%;
	margin:5px 0;
}
.nnewsnrlist .newsnr{
	width:80%;
	margin:0px auto;
}
.newsbt{ 
	width: 100%;
    overflow: hidden;
	color:#37912b;
	font-size:18px;
	font-weight:bold;
	line-height:35px;
	text-overflow: ellipsis;
    white-space: nowrap;
	}
.nnewsnrlist .newsdate p{
	font-size:45px;
	font-family:Arial;
	font-weight:normal;
	color:#37912b;
	line-height: 50px;
	text-align:center;
  transition:all 0.5s;
-moz-transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;
	}
.nnewsnrlist .newsdate span{
	font-size:14px;
	font-family:Arial;
	display:block;
	color:#37912b;
	text-align:center;
  transition:all 0.5s;
-moz-transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;
	}
.nnewsnrlist .newsms{
	color:rgba(0,0,0,0.9);
	line-height:26px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
	height:52px;
	font-size:14px;
	margin-bottom:10px;
  transition:all 0.5s;
-moz-transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;
}
.nnewsnr a:hover .nnewsnrlist .newsimg{ background:#37912b;
  transition:all 0.5s;
-moz-transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;}
.nnewsnr a:hover .nnewsnrlist{ background:#37912b;
  transition:all 0.5s;
-moz-transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;}
.nnewsnr a:hover .newsdate p{ color:#fff;
  transition:all 0.5s;
-moz-transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;}
.nnewsnr a:hover .newsdate span{ color:#fff;
  transition:all 0.5s;
-moz-transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;}
.nnewsnr a:hover .newsbt{ color:#fff;
  transition:all 0.5s;
-moz-transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;}
.nnewsnr a:hover .newsms{ color:#fff;
  transition:all 0.5s;
-moz-transition:all 0.5s;
-webkit-transition:all 0.5s;
-o-transition:all 0.5s;}
.nnewsnrlist .nnewsmore a{
	font-size:14px;
	color:#000;
	
}
.nnewsnrlist .nnewsmore a:active,
.nnewsnrlist .nnewsmore a:visited,
.nnewsnrlist .newsbt a:active,
.nnewsnrlist .newsbt a:visited{
	color:#37912b;
	font-weight:bold;
}
.nnewsnrlist .nnewsmore a:hover,
.nnewsnrlist .newsbt a:hover{
	color:#fff;
}
.nnews h1{
	width: 100%;
    overflow: hidden;
    font-size: 24px;
    color: #333;
    text-align: center;
    margin: 0 0 16px 0;
	}
.nnewsnr{
	}
.nnews .fbtime {
    width: 100%;
    overflow: hidden;
    font-size: 15px;
    line-height: 30px;
    color: #666;
    text-align: center;
    border-bottom: solid 1px #ebebeb;
    padding-bottom: 23px;
}
.nnews .fbnr {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
    font-size: 18px;
    line-height: 35px;
    color: #333;
}
.nnews .fbnr p {
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    line-height: 35px;
    color: #333;
}
.nnews .fbnr img{
	max-width:100%;
	height:auto;
	}
/* nfzlc
-------------------------------------------------------------- */
.nfzlc{
	width:100%;
	overflow:hidden;
	background:url(../images/fzlcbg.jpg) no-repeat top center;
	padding-top:120px;
	padding-bottom:120px;
}
.nfzlcnr h3{
	width: 100%;
    overflow: hidden;
    font-size: 40px;
    color: #343434;
    line-height: 50px;
    font-weight: normal;
}
/*大事记start*/
.event_box{width:100%;margin:100px auto 0;position:relative;min-height:420px;}
.event_box .parHd {width:100%;display:inline-block;height:92px;overflow:hidden;}
.parHd  ul{width:100%;text-align:center;margin:0 auto;padding-top:15px !important;}
.parHd .tempWrap{margin:0 auto;}
.parHd .tempWrap:after{content:'';width:85%;height:1px;background:#580000;position:absolute;/* top:33%;*//* right:-140%;*/right:8%;top:35%;/* margin-top:-0.5px;*/z-index:10;}
.parHd li.no_line:before{display:none;}
.parHd li{display:inline-block;cursor:pointer;padding-top:30px;font-size:16px;color:#000;margin:0 30px;position:relative;}
.parHd li:after{content:'';background:url(../images/dot_ico.png) no-repeat;width:24px;height:24px;position:absolute;z-index:20;top:0;left:50%;margin-left:-12px;}
.parBd{text-align:center;margin-top:60px;}
.parBd h4{position:relative;font-size:40px;margin-bottom:3%;/*width:200px;*/ padding:0 60px;display:inline-block;text-align:center;}
.parBd h4:after{content:'';background:#000;width:100px;height:1px;position:absolute;left:-100px;bottom:12px;}
.parBd h4:before{content:'';background:#000;width:100px;height:1px;position:absolute;right:-100px;bottom:12px;}
.parBd p{line-height:180%;font-size:16px;width:80%;margin:0 auto;}
div#listBox {width:100%;}
.sPrev,.sNext{width:30px;height:30px;display:block;position:absolute;top:20px;z-index:99;}
.sPrev{left:0;}
.sNext{right:0;}
.sPrev img,.sNext img{transition:all .6s cubic-bezier(.51,1.1,.9,.95);-moz-transition:all .6s cubic-bezier(.51,1.1,.9,.95);-webkit-transition:all .6s cubic-bezier(.51,1.1,.9,.95);-o-transition:all .6s cubic-bezier(.51,1.1,.9,.95);}
.parHd li.act span{display:block;width:24px;height:24px;overflow:hidden;background:url(../images/cat.png) no-repeat;position:absolute;top:0;left:14px;z-index:21;}
.parHd li span,.parHd li.clone span{display:none;}	
/* nsyfw
-------------------------------------------------------------- */
.nsyfw{
	margin-top:60px;
	margin-bottom:60px;
	}
.nsyfwlist{
	width:100%;
	overflow:hidden;
	margin-top:92px;
	}
.nsyfw .nsyfwlist:first-child{
	margin-top:0;
	}
.nsyfwlist h4{
	width:100%;
	overflow:hidden;
	color:#38912e;
	font-size:30px;
	line-height:40px;
	}
.nsyfwlist dl{
	width:100%;
	overflow:hidden;
	background:#37912b;
	margin-top:38px;
	}
.nsyfwlist dl dt{
	width:62%;
	overflow:hidden;
	border: solid 8px #37912b;
	position:relative;
	height:490px;
	}
.nsyfwlist dl dt img{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
}
.nsyfwlist dl:hover dt img{
	transform:translate(-50%, -50%) scale(1.2);
	}
.nsyfwlist dl dd{
	width:38%;
	overflow:hidden;
	font-size:20px;
	color:#fff;
	line-height:30px;
	padding:112px 50px 0 50px;
	}
.nsyfwlist dl dd p{
	font-size:20px;
	color:#fff;
	line-height:30px;
	}
.nsyfw .nsyfwlist:nth-child(2n+1) dl dt{
	float:left;
	}
.nsyfw .nsyfwlist:nth-child(2n+1) dl dd{
	float:right;
	}
.nsyfw .nsyfwlist:nth-child(2n) dl dt{
	float:right;
	}
.nsyfw .nsyfwlist:nth-child(2n) dl dd{
	float:left;
	}
/* ncase
-------------------------------------------------------------- */
.ncase {
	margin-top: 45px;
	margin-bottom: 45px;
}
.ncase .ncasenr {
	width: 100%;
	overflow: hidden;
	margin-top: 25px;
}
.ncase .ncasenr dl {
	width: 375px;
	overflow: hidden;
	float: left;
	margin-right: 37.5px;
}
.ncase .ncasenr dl {
	width: 375px;
	overflow: hidden;
	float: left;
	margin-right: 37.5px;
	margin-top: 20px;
	margin-bottom: 20px;
}
.ncase .ncasenrr dl dt, .ncase .ncasenr dl dd {
	width: 100%;
	overflow: hidden;
	text-align: center;
}
.ncase .ncasenr dl dd {
	font-size: 16px;
	color: #000;
	line-height: 30px;
	padding: 12px 0;
	background: #ebebeb;
}
.ncase .ncasenr dl:nth-child(3n) {
	margin-right: 0;
}
.poptrox-popup{
	overflow:visible !important;
}
/* ncontact
-------------------------------------------------------------- */
.ncontact{
	margin-top:60px;
	margin-bottom:60px;
}
.ncontact .ncontactnr{
	width:100%;
	overflow:hidden;
	border-top:solid 1px #d1d1d1;
	font-size:18px;
	color:#333;
	line-height:35px;
	padding:40px 0 0 0;
	margin-top:28px;
	}
.ncontact .ncontactnr .ncontactlf{
	width:45%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:35px;
	}
.ncontactlf dl{
	overflow:hidden;
	float:left;
	}
.ncontactlf dl dt,.ncontactlf dl dd{
	overflow:hidden;
	text-align:center;
	}
.ncontactlf dl dt img{
	max-width:100%;
	height:auto;
	border: solid 1px #ccc;
}
.ncontactlf dl dd{
	font-size:16px;
	color:#333;
	line-height:32px;
	}
.ncontactimg{
	width:55%;
    overflow:hidden;
}
.ncontactimg img{
    max-width: 100%;
    height: auto;
}
.ncontact .ncontactnr p,.ncontact .ncontactnr .ncontactlf p{
	width:100%;
	overflow:hidden;
	font-size:16px;
	color:#333;
	line-height:35px;
	}
.ncontact .ncontactnr p a{
	font-size:16px;
	color:#333;
	}
.nmessage{
	margin-top:60px;
}
.nmessagenr{
	width:100%;
	overflow:hidden;
	margin-top:40px;
	}
.nmessagenr dl{
	width:49%;
	overflow:hidden;
	float:left;
	margin-top:21px;
	}
.nmessagenr dl dt{
	width:100%;
	overflow:hidden;
	color:#323232;
	font-size:16px;
	line-height:30px;
	padding-bottom:10px;
	}
.nmessagenr dl dd{
	width:100%;
	overflow:hidden;
	}
.nmessagenr dl dd input{
	width:100%;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:60px;
	padding-left:56px;
	color:#323232;
	}
.nmessagenr dl dd textarea{
	width:100%;
	height:360px;
	overflow:hidden;
	border:solid 1px #e4e4e4;
	line-height:30px;
	padding-left:56px;
	padding-top:18px;
	}
.nmessagenr dl:nth-child(1){
	margin-right:1%;
	}
.nmessagenr dl:nth-child(2){
	margin-left:1%;
	}
.nmessagenr dl:nth-child(1) dd input{
	background:#fff url(../images/icon13.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(2) dd input{
	background:#fff url(../images/icon14.png) no-repeat 24px center;
	}
.nmessagenr dl:nth-child(3) dd textarea{
	background:#fff url(../images/icon17.png) no-repeat 24px 21.5px;
	}
.nmessagenr dl:nth-child(3){
	width:100%;
	}
.nmessagenr .tjbtn {
    width: 100%;
    overflow: hidden;
	margin-top:25px;
}
.nmessagenr .tjbtn button {
    width: 100%;
    height: 60px;
    background: #38912e;
    color: #fff;
	text-align:center;
	font-size:16px;
}

/* dede_pages

-------------------------------------------------------------- */
.pages{clear:both;padding:20px 0;font-size:14px;text-align:center; overflow:hidden}
.pages ul{display:inline-block;margin:0 auto;padding:0}
.pages ul a{color:#555;display:block;padding: 5px 11px;  border: 1px solid #ddd;float: left;margin:5px;font-size:12px}
.pages ul a.page-num-current{ background:#ddd; }
.pages ul a:hover{ background:#ddd}
.news-exp,.news-exp2{
	width:100%;
	overflow: hidden;
	margin-top:20px;
}
.news-exp .news-explf,.news-exp .news-exprt{
	padding:0;
	line-height:30px;
}

.news-exp .news-explf i{
	width:40px;
	height:40px;
	background:url(../images/icon23.png) no-repeat center;
	border-radius:50%;
	display:block;
	float:left;
	margin-right:22px;
}
.news-exp .news-exprt i{
	width:40px;
	height:40px;
	background:url(../images/icon24.png) no-repeat center;
	border-radius:50%;
	display:block;
	float:right;
	margin-left:22px;
}
.news-exp .news-explf a,.news-exp .news-exprt a {
	overflow: hidden;
	font-size:16px;
	color:#343434;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.news-exp .news-exprt{
	text-align:right;
}
.news-exp .news-explf a:hover,.news-exp .news-exprt a:hover{
	color:#35902a;
	text-decoration:none;
}
.news-exp2{
	line-height:30px;
	font-size:16px;
	color:#343434;
}
.news-exp2 a{
	display:block;
	width:50%;
	overflow:hidden;
	float:left;
	line-height:30px;
	font-size:16px;
	color:#343434;
	    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-exp2 a:last-child{
	text-align:right;
}
.news-exp2 a:hover{
	color: #35902a;
}

.a_txt,.rg{
	display:none;
}
/*移动端导航*/
@media screen and (max-width: 1023px) and (min-width: 0px){
.nav,.topewm{display:none}
.headernr{
	width:98%;
}
.rg{display:block;padding-top:14px;float:right;margin-right:10px;}
.rg a img{vertical-align:top}
.a_txt{display:block;position:fixed;top:0px;left:0px;width:0px;height:0px;overflow:hidden;z-index:10000}
.a_txt .div1{position:absolute;width:100%;height:100%;background:#0b0d19;filter:alpha(opacity=0);opacity:0;left:0px;top:0px;z-index:1}
.a_txt .div2{position:absolute;width:20%;left:0px;top:5%;z-index:100;text-align:center;filter:alpha(opacity=0);opacity:0}
.a_txt .div3{position:absolute;width:80%;right:0px;top:0px;background:#0b0d19;height:100%;z-index:100;right:-80%}
.a_txt .div3 ul{padding-left:5%;padding-right:5%}
.a_txt .div3 ul li{border-bottom:1px solid #232530}
.a_txt .div3 ul li a{display:block;height:45px;color:#fff;line-height:45px;padding-left:5%;font-size:16px}
.a_txt .div3 ul li .a_js2{-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}
.a_txt .div3 ul li .a_js2_on{background:url(../images/reduce.jpg) 95% center no-repeat;-webkit-transition:all 0s;-moz-transition:all 0s;transition:all 0s}
.a_txt .div3 ul li .a_txt2{display:none}
.a_txt .div3 ul li .a_txt2 a{height:40px;line-height:40px;font-size:14px}
}

@media only screen and (min-width: 1440px) and (max-width: 1599px) {
	.newslist dl dt{
		height:409px;
	}
	 .npro dl dt{
		 height:283px;
	 }
	 .nsyfwlist dl dt{
		 height:431px;
	 }
	 .nhonornr ul li{
		 height:410px;
	 }
	 .nnewsnrlist .newsimg{
		 height:297px;
	 }
}
@media only screen and (min-width: 1360px) and (max-width: 1439px) {
	.newslist dl dt{
		height:387px;
	}
	 .npro dl dt{
		 height:267px;
	 }
	 .nsyfwlist dl dt{
		 height:407px;
	 }
	 .nhonornr ul li{
		 height:387px;
	 }
	 .nnewsnrlist .newsimg{
		 height:280px;
	 }
}
@media only screen and (min-width: 1280px) and (max-width: 1359px) {
	.newslist dl dt{
		height:364px;
	}
	 .npro dl dt{
		 height:251px;
	 }
	 .nsyfwlist dl dt{
		 height:382px;
	 }
	 .nhonornr ul li{
		 height:364px;
	 }
	 .nnewsnrlist .newsimg{
		 height:264px;
	 }
}
@media only screen and (min-width: 1152px) and (max-width: 1279px) {
	.newslist dl dt{
		height:327px;
	}
	 .npro dl dt{
		 height:226px;
	 }
	 .nsyfwlist dl dt{
		 height:343px;
	 }
	 .nhonornr ul li{
		 height:328px;
	 }
	 .nnewsnrlist .newsimg{
		 height:237px;
	 }
}
@media only screen and (min-width: 1024px) and (max-width: 1151px) {
	.newslist dl dt{
		height:297px;
	}
	 .npro dl dt{
		 height:201px;
	 }
	 .nsyfwlist dl dt{
		 height:304px;
	 }
	 .nhonornr ul li{
		 height:291px;
	 }
	 .nnewsnrlist .newsimg{
		 height:324px;
	 }
}
@media only screen and (min-width: 992px) and (max-width: 1023px) {
	.newslist dl dt{
		height:282px;
	}
	 .npro dl dt{
		 height:195px;
	 }
	 .nsyfwlist dl dt{
		 height:294px;
	 }
	 .nhonornr ul li{
		 height:282px;
	 }
	 .nnewsnrlist .newsimg{
		 height:314px;
	 }
}
@media only screen and (min-width: 860px) and (max-width: 991px) {
	 .npro dl dt{
		 height:264px;
	 }
	 .newslist dl dt{
		 height:313px;
	 }
	 .nsyfwlist dl dt{
		 height:415px;
	 }
	 .nhonornr ul li{
		 height:333px;
	 }
	 .nnewsnrlist .newsimg{
		 height:272px;
	 }
}
@media only screen and (min-width: 768px) and (max-width: 859px) {
	 .npro dl dt{
		 height:236px;
	 }
	 .newslist dl dt{
		 height:279px;
	 }
	 .nsyfwlist dl dt{
		 height:370px;
	 }
	 .nhonornr ul li{
		 height:298px;
	 }
	 .nnewsnrlist .newsimg{
		 height:243px;
	 }
}
@media only screen and (min-width: 640px) and (max-width: 767px) {
	 .npro dl dt{
		 height:402px;
	 }
	 .newslist dl dt{
		 height:332px;
	 }
	 .nsyfwlist dl dt{
		 height:306px;
	 }
	 .nhonornr ul li{
		 height:380px;
	 }
	 .nnewsnrlist .newsimg{
		 height:422px;
	 }
}
@media only screen and (min-width: 540px) and (max-width: 639px) {
	 .npro dl dt{
		 height:339px;
	 }
	 .newslist dl dt{
		 height:280px;
	 }
	 .nsyfwlist dl dt{
		 height:257px;
	 }
	 .nhonornr ul li{
		 height:321px;
	 }
	 .nnewsnrlist .newsimg{
		 height:356px;
	 }
}
@media only screen and (min-width: 425px) and (max-width: 539px) {
	 .npro dl dt{
		 height:267px;
	 }
	 .newslist dl dt{
		 height:220px;
	 }
	 .nsyfwlist dl dt{
		 height:200px;
	 }
	 .nhonornr ul li{
		 height:252px;
	 }
	 .nnewsnrlist .newsimg{
		 height:280px;
	 }
}
@media only screen and (min-width: 375px) and (max-width: 424px) {
	 .npro dl dt{
		 height:235px;
	 }
	 .newslist dl dt{
		 height:194px;
	 }
	 .nsyfwlist dl dt{
		 height:176px;
	 }
	 .nhonornr ul li{
		 height:223px;
	 }
	 .nnewsnrlist .newsimg{
		 height:247px;
	 }
}
@media only screen and (min-width: 320px) and (max-width: 374px) {
	 .npro dl dt{
		 height:201px;
	 }
	 .newslist dl dt{
		 height:166px;
	 }
	 .nsyfwlist dl dt{
		 height:148px;
	 }
	 .nhonornr ul li{
		 height:190px;
	 }
	 .nnewsnrlist .newsimg{
		 height:210px;
	 }
}
@media only screen and (min-width: 0px) and (max-width: 319px) {
	 .npro dl dt{
		 height:196px;
	 }
	 .newslist dl dt{
		 height:160px;
	 }
	 .nsyfwlist dl dt{
		 height:145px;
	 }
	 .nhonornr ul li{
		 height:186px;
	 }
	 .nnewsnrlist .newsimg{
		 height:205px;
	 }
}
@media(max-width:1680px) {
	.czxtnr .owl-controls .owl-buttons .owl-prev{
		left:-80px;
	}
	.czxtnr .owl-controls .owl-buttons .owl-next{
		right:-80px;
	}
}
@media(max-width:1600px) {
	.cont,.cont1{
		width:88%;
	}
	.nav{
		margin-right:100px;
	}
	.nav .menu > li{
		padding: 0 35px;
	}
	.tab ul li h4{
		font-size:20px;
	}
	.parBd h4{
		font-size:36px;
	}
	.npro dl{
		width:31.33333333%;
		margin: 20px 3% 20px 0;
	}
	.nsyfwlist h4{
		font-size:26px;
		line-height:36px;
	}
}
@media(max-width:1440px) {
	.nav{
		margin-right:60px;
	}
	.nav .menu > li{
		padding: 0 30px;
	}
	.newsdate .day{
		font-size:40px;
		line-height:45px;
	}
	.newslf .newsmenu{
		margin-top:50px;
	}
	.hxjstitlf,.hxjstitlf a{
		font-size:36px;
	}
	.czxtnr .owl-controls .owl-buttons .owl-prev{
		left:-60px;
	}
	.czxtnr .owl-controls .owl-buttons .owl-next{
		right:-60px;
	}
	.czxtnr dl dd{
		margin-top:20px;
	}
	.czxtnr dl dd h4{
		font-size:18px;
		padding-bottom:20px;
	}
	.parBd h4{
		font-size:32px;
	}
	.npro .npro_infort h1{
		font-size:26px;
		line-height:36px;
	}
	.nsyfwlist h4{
		font-size:22px;
		line-height:32px;
	}
	.nsyfwlist dl dd{
		padding: 70px 40px 0 40px;
	}
	.nsyfwlist dl dd p{
		font-size:18px;
	}
}
@media(max-width:1360px) {
	.nav{
		margin-right:30px;
	}
	.nav .menu > li{
		padding: 0 26px;
	}
	.ab_fl dl dt .counter{
		font-size:40px;
	}
	.news .newsrt .newsdate{
		padding-left:12%;
	}
	.newsmore{
		margin-top:98px;
	}
	.hxjstitlf{
		padding-left:190px;
		font-size: 32px;
	}
	.hxjstitlf a{
		font-size: 32px;
	}
	.parBd h4{
		font-size:30px;
	}
}
@media(max-width:1280px) {
	.nav{
		margin-right:20px;
	}
	.nav .menu > li{
		padding: 0 24px;
	}
	.topnewlf .topnews_fl {
		font-size: 18px;
	}
	.ab_fl dl:after{
		right:44px;
	}
	.newslist dl dd .newsen span{
		width:96%;
	}
	.newsmore {
		margin-top: 90px;
	}
	.tit h3,.tit h3 a{
		font-size:30px;
	}
	.tit h3{
		line-height:40px;
	}
	.tit p{
		font-size:20px;
		line-height:25px;
	}
	.hxjstitlf {
		padding-left: 170px;
		font-size: 30px;
	}
	.hxjstitlf a{
		font-size: 30px;
	}
	.parBd h4{
		font-size:28px;
	}
	.nfzlcnr h3{
		font-size:36px;
		line-height:46px;
	}
	.npro .npro_infort h1 {
		font-size: 22px;
		line-height: 32px;
	}
	.nsyfwlist dl dd{
		padding: 50px 30px 0 30px;
	}
}
@media(max-width:1152px) {
	.nav{
		margin-right:0;
	}
	.nav .menu > li{
		padding: 0 20px;
	}
	.topnews .topnewlf{
		padding: 0 10px;
	}
	.ab_fl dl dt .counter {
		font-size: 36px;
	}
	.news .newsrt .newsdate {
		padding-left: 10%;
	}
	.newsdate .day {
		font-size: 35px;
		line-height: 40px;
	}
	.newsmore {
		margin-top: 70px;
	}
	.tab ul li{
		padding: 90px 0 0 50px;
	}
	.czxtnr .owl-controls .owl-buttons .owl-prev{
		left:-40px;
	}
	.czxtnr .owl-controls .owl-buttons .owl-next{
		right:-40px;
	}
	.parBd h4{
		font-size:24px;
	}
	.nsyfwlist dl dd{
		padding: 40px 20px 0 20px;
	}
	.nsyfwlist dl dd p {
		font-size: 16px;
	}
}
@media(max-width:1151px) {
	.nnewsnrlist {
		width: 48%;
	}
}
@media(max-width:1024px) {
	.nav{
		margin-right:0;
	}
	.nav .menu > li{
		padding: 0 16px;
	}
	.news .newsrt .newsdate {
		padding-left: 8%;
	}
	.newsmore {
		margin-top: 50px;
	}
	.newslf .newsmenu {
		margin-top: 30px;
	}
	.tab ul li{
		padding: 90px 0 0 40px;
	}
	.hxjstitlf {
		padding-left: 160px;
		font-size: 28px;
	}
	.hxjstitlf a{
		font-size: 28px;
	}
}
@media(max-width:1023px) {
	.header{
		height:60px;
	}
	.logo {
		padding: 13px 0;
	}
	.logo img{
		height:34px;
	}
}
@media(max-width:991px) {
	.about{
		padding-top:80px;
		padding-bottom:80px;
	}
	.about .aboutlf{
		width:100%;
	}
	.topnews{
		margin-top:0;
	}
	.topnews .topnewrt{
		padding: 0 30px;
	}
	.topnewlf .topnews_date{
		display:none;
	}
	.topnewlf .topnews_fl{
		width:100%;
	}
	.nkyslnr ul li{
		width:100%;
		margin: 30px 0;
	}
	.nkyslnr ul li h4{
		font-size:18px;
	}
	.hxjs .hxjslf{
		width:100%;
	}
	.hxjs .hxjsrt{
		display:none;
	}
	.hxjsnr{
		height:auto;
		padding:40px 6%;
	}
	.hxjsnr .hxjsmore{
		margin-top:40px;
	}
	.tab ul li,.tab ul li:last-child{
		padding: 20px 0;
		height: auto;
	}
	.tab ul li h4{
		margin-top:10px;
	}
	.tab ul li .hxjsicon,.tab ul li h4{
		text-align:center;
	}
	.tab ul li .hxjsicon{
		height:72px;
	}
	.tab ul li .hxjsicon img{
		margin:auto;
	}
	.tab ul li h4 {
		font-size: 18px;
	}
	.czxt{
		padding-top:80px;
		padding-bottom:80px;
	}
	.tit h3,.tit h3 a{
		font-size:26px;
	}
	.tit h3{
		line-height:36px;
	}
	.tit p{
		font-size:18px;
		line-height:23px;
	}
	.newsnr .newslf,.news .newsrt{
		width:100%;
	}
	.newsmore,.newslf .newsmenu{
		margin-top:30px;
	}
	.newslf .newsmenu{
		margin-bottom:30px;
	}
	.news{
		padding-top:80px;
		padding-bottom:80px;
	}
	.newslf .newsmenu{
		padding-left:0;
	}
	.newslf .newsmenu ul li{
		width:auto;
		margin-right: 20px;
		float:left;
		margin-top:0;
	}
	.newsdate .day {
		font-size: 30px;
		line-height: 35px;
	}
	.positionnr .positionrt,.nmenu{
		width:100%;
	}
	.positionnr .positionrt{
		text-align:left;
		padding: 15px 0 15px 37px;
	}
	.nmenu ul li{
		line-height:50px;
		margin-right:40px;
	}
	.ncontact .ncontactnr .ncontactlf,.ncontactimg{
		width:100%;
	}
	.ncontactimg{
	    margin-top: 15px;
	}
	.newm dl {
		float: left;
		margin-top: 10px;
	}
	.nabout h3{
		font-size:36px;
		line-height:46px;
	}
	.nabout .nabouten{
		font-size:20px;
	}
	.npro_lxbtn{
		margin-top:30px;
	}
	.nhonornr ul li{
		width:31.3333333%;
	}
	.nsyfwlist dl dt,.nsyfwlist dl dd{
		width:100%;
	}
	.nsyfwlist dl dd{
		padding:20px;
	}
	.npro .npro_infolf{
		padding:0;
		text-align:center;
	}
	.npro .npro_infort{
		padding: 32px 0 0 0;
	}
	.nsyfwlist{
		margin-top:50px;
	}
	.nsyfwlist dl{
		margin-top:20px;
	}
	.nfzlcnr h3{
		font-size:32px;
		line-height:42px;
	}
	.npro dl {
		width: 48.5%;
	}
	.npro dl:nth-child(3n) {
		margin-right: 3%;
	}
	.npro dl:nth-child(2n) {
		margin-right: 0;
	}
	.nsyfwlist h4{
		font-size:20px;
		line-height:30px;
	}
	.news-exp2 a{
		width:100%;
	}
	.news-exp2 a:last-child {
		text-align: left;
	}
	.footer .footerlf,.footer .footerrt{
		width:100%;
	}
	.footer .footernr {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.footerrt .footerrtnr{
		width:100%;
		margin-top:20px;
	}
	.footerrt .footerrtnr dl,.footer .footerlf .link{
		margin-top: 30px;
	}
	.botnr .botlf,.botnr .botrt{
		width:100%;
		text-align:center;
	}
}
@media(max-width:767px) {
	.rslides_tabs li{
		margin: 5px 0;
	}
	.rslides img {
		width: 120%;
		margin-left: -10%;
	}
	.rslides_tabs{
		width:18px;
		margin-top:-42px;
		left:10px;
	}
	.rslides_tabs li{
		width:18px;
		height:18px;
	}
	.rslides_tabs a{
		width:8px;
		height:8px;
		margin:4px;
	}
	.about{
		background:none;
	}
	.aboutmore,.ab_fl{
		margin-top:40px;
	}
	.news .newsrt .newslist,.news .newsrt .newsdate{
		width:100%;
	}
	.newslist dl dd .newsen{
		display:none;
	}
	.newslist dl dd .newsin{
		width:80%;
	}
	.news .newsrt .newsdate{
		padding-left:0;
	}
	.newslist dl dd{
		margin-top:20px;
	}
	.newsrt .owl-controls .owl-buttons div{
		display:none;
	}
	.topnews .topnewrt dl dt{
		width:100%;
	}
	.topnews .topnewrt dl dd{
		display:none;
	}
	.topnews .topnewlf,.topnews .topnewrt{
		height:50px;
	}
	.topnews .topnewrt dl dt,.topnewlf .topnews_fl{
		line-height:50px;
	}
	.tab ul li{
		width:50%;
		border-bottom: solid 1px #d1d1d1;
	}
	.tab ul li:last-child{
		border-bottom:none;
	}
	.czxtnr .owl-controls .owl-buttons .owl-prev {
		left: -20px;
	}
	.czxtnr .owl-controls .owl-buttons .owl-next {
		right: -20px;
	}
	.nabout h3{
		font-size:32px;
		line-height:42px;
	}
	.nabout .nabouten{
		font-size:18px;
		line-height:20px;
	}
	.npro dl {
		width: 100%;
		margin: 20px 0 20px 0;
	}
	.npro dl:nth-child(3n) {
		margin-right:0;
	}
	.nmessagenr dl{
		width:100%;
	}
	.nmessagenr dl:nth-child(2n+1) {
		margin-right: 0;
	}
	.nmessagenr dl:nth-child(2n) {
		margin-left: 0;
	}
	.nmessagenr dl dd textarea{
		height:200px;
	}
	.nmenu ul li{
		margin-right:30px;
	}
	.nprofbnr table{
		width:767px;
	}
	.nnewsnrlist {
		width: 100%;
		margin: 0px;
		margin-bottom: 15px;
		padding-bottom: 25px;
	}
	.nnewsnrlist .newsdate{
		margin:0;
	}
	.nnewsnrlist .newsms{
		text-overflow: ellipsis;
		white-space: nowrap;
		height: 26px;
	}
	.footer .footerlf ul li{
		width:33.3333333%;
	}
	.footer .footerlf ul li:nth-child(4){
		clear:both;
	}
}
@media(max-width:640px) {
	.topnews .topnewrt {
		padding: 0 15px;
	}
	.topnews .topnewlf{
		padding:0;
	}
	.topnews .topnewrt dl dt{
		font-size:16px;
	}
	.nhonornr ul li{
		width:48%;
	}
	.nnewsnrlist .newsnr{
		padding-left:2%;
	}
	.nnewsnrlist .newscon {
		width: 94%;
	}
	.npro dl dd {
		width: 92%;
		margin: 0 4%;
		font-size:16px;
	}
}
@media(max-width:640px) {
	.topnews .topnewlf {
		width: 26%;
	}
	.topnews .topnewrt {
		width: 74%;
	}
	.ab_fl dl:after {
		right: 84px;
	}
	.nmenu ul li{
		margin-right:0;
		width:33.3333333%;
		text-align:center;
	}
}
@media(max-width:500px) {
	.ab_fl dl:after {
		right: 64px;
	}
}
@media(max-width:425px) {
	.ab_fl dl:after {
		display:none;
	}
	.topnews .topnewlf {
		width: 30%;
	}
	.topnews .topnewrt {
		width: 70%;
	}
	.hxjstitlf{
		background-position: 40px;
		padding-left: 140px;
	}
	.nmenu ul li{
		width:50%;
	}
}
@media(max-width:375px) {
	.topnews .topnewlf {
		width: 34%;
	}
	.topnews .topnewrt {
		width: 66%;
	}
	.czxtnr .owl-controls .owl-buttons .owl-prev {
		left: -15px;
	}
	.czxtnr .owl-controls .owl-buttons .owl-next {
		right: -15px;
	}
	.hxjstitlf{
		background-position: 20px;
		padding-left: 115px;
	}
}