@charset "utf-8";
/* 初始化CSS */
* {
	margin: 0;
	padding: 0;
	font-family: "Microsoft YaHei";
}
html {
	overflow-x:hidden; 
	}
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}
fieldset, img {
	border: none;
	vertical-align: middle;
	max-width: 100%;
}
address, caption, cite, code, dfn, th, var {
	font-style: normal;
	font-weight: normal;
}
ul, ol {
	list-style: none;
}
li {
	list-style-type: none;
}
input {
	padding-top: 0;
	padding-bottom: 0;
}
select, input {
	vertical-align: middle;
}
select, input, textarea {
	margin: 0;
	font-size: 14px;
}
input[type="text"], input[type="password"], textarea {
	outline-style: none;
}
textarea {
	font-family: "Microsoft YaHei";
	resize: none;
	font-family: ""
}
body {
	color: #2e2e2e;
	font-size: 14px;
}
a {
	text-decoration: none;
	color: inherit;
	color: #2e2e2e;
}
a:hover {
	color: #39662f;
}

i, em {
	font-style: normal;
}
.clearfix {
	zoom: 1;
}
.clear {
	clear: both;
}
.fl {
	float: left;
}
.fr {
	float: right;
}
.auto {
	margin-left: auto;
	margin-right: auto;
}
.w1300 {
	width: 1300px;
	margin: auto;
}
.w1200 {
	width: 1200px;
	margin: auto;
}
.w1100 {
	width: 1100px;
	margin: auto;
}
.bggrey {
	background: #f6f6f6;
}
.bgwhite {
	background: #fff;
}
.h10 {
	height: 10px;
}
.h15 {
	height: 15px;
}
.h20 {
	height: 20px;
}
.h25 {
	height: 25px;
}
.h30 {
	height: 30px;
}
.h35 {
	height: 35px;
}
.h40 {
	height: 40px;
}
.h45 {
	height: 45px;
}
.h50 {
	height: 50px;
}
.h60 {
	height: 60px;
}
.h70 {
	height: 70px;
}
.h80 {
	height: 80px;
}
.w100 {
	width: 100%;
}
.w98 {
	width: 98%;
	margin: auto;
}
.w96 {
	width: 96%;
	margin: auto;
}
.w95 {
	width: 95%;
	margin: auto;
}
.w92 {
	width: 92%;
	margin: auto;
}
.w90 {
	width: 90%;
	margin: auto;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex_a {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.flex_b {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex_c {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.items {
	align-items: center;
}
.overflow {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.overflow2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.overflow3 {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.overflow4 {
	display: -webkit-box;
	-webkit-line-clamp: 4;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.overflow5 {
	display: -webkit-box;
	-webkit-line-clamp: 5;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.overflow6 {
	display: -webkit-box;
	-webkit-line-clamp: 6;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.position {
	position: relative;
}
/*html5*/
article, aside, footer, header, section, footer, nav, figure, main {
	display: block
}
/*小号文字  scale以12号字体为基准 需写实际字号大小*/
.font_adjust {
	-webkit-text-size-adjust: none;
}
.font_scale8 {
	-webkit-transform: scale(0.66);
}
.font_scale10 {
	-webkit-transform: scale(0.83);
}
.font_lc {
	-webkit-transform-origin: left center;
}
.font_rc {
	-webkit-transform-origin: right center;
}
.font_up {
	text-transform: uppercase;
}
/*文字截断*/
.TXTovehid {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/*transition*/
.tran200 {
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.tran300 {
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.tran400 {
	-webkit-transition: all 0.4s linear;
	-moz-transition: all 0.4s linear;
	-ms-transition: all 0.4s linear;
	transition: all 0.4s linear;
}
.tran500 {
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	transition: all 0.5s linear;
}
.tran1000 {
	-webkit-transition: all 1s linear;
	-moz-transition: all 1s linear;
	-ms-transition: all 1s linear;
	transition: all 1s linear;
}
.scaleimg:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.rotateY:hover {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.rotate360:hover {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.translateX:hover {
	-webkit-transform: translateX(-6px);
	-moz-transform: translateX(6px);
	-ms-transform: translateX(-6px);
	transform: translateX(-6px);
}
/*网页限定宽度*/
.con_1000 {
	position: relative;
	margin: 0 auto;
	width: 1200px;
}
.con_full {
	width: 100%;
}
/*图片懒加载loading*/
.lazy {
	background: url(../images/loading.gif) no-repeat center center #eee;
}
.header {
	width: 100%;
	background: #ffffff;
}
.header .logo {
	width: 660px;
	height: 76px;
	margin: 12px 0;
}
.header .logo img {
	/*width: 100%;*/
}
/* 搜索框 */
.search {
    /*width: 360px;*/
}
.searchForm {
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    width: 360px;
    border: 1px solid #bdbdbd;
    background-color: #fff;
}
.searchForm a {
    float: right;
    display: inline-block;
    width: 75px;
    height: 40px;
    background-color: #39662f;
    color: #FFF;
    text-align: center;
    font-size: 16px;
}
.searchForm input {
    border: 0px none;
    width: 250px;
    padding:2px 0px 2px 5px;
}

.hnav {
	width: 100%;
	background: #39662f;
	height: 50px;
}
.nav {
	margin: auto;
	height: 50px;
	position: relative;
	z-index: 3;
}
.nav .nLi {
	height: 50px;
	line-height: 50px;
	float: left;
	width: 14.2%;
	position: relative;
	display: inline;
	box-sizing: border-box;
	/*border-right: 1px solid #3f8d3b;*/
}
.nav .nLi:hover {
	background: #3f8d3b;
}
.nav .nLi:last-child {
	border-right: none;
}
.nav .nLi .nla {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 16px;
	color: #fff;
}

.nav .sub {
	display: none;
	width: 100%;
	left: 0;
	top: 50px;
	position: absolute;
	background: #fff;
	line-height: 47px;
}
.nav .sub a {
	width: 100%;
	display: block;
	text-align: center;
	font-size: 14px;
	color: #737373;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.nav .sub a:hover {
	background: #39662f;
	color: #fff;
}
.banner {
	width: 100%;
	height: 500px;
	overflow: hidden;
	position: relative;
}

.leftimg {
	width: 600px;
	height: 295px;
	position: relative;
}
.leftimg a {
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	background: rgba(0,0,0,0.5);
	text-indent: 1em;
	color: #fff;
	font-size: 14px;
	position: absolute;
    bottom: 0;
    left: 0;
    z-index: 99;
}


.h15 {
	height: 15px;
}
.innews {
	width: 48.7%;
	/*height: 295px;*/
}
.innews .hd {
	height: 34px;
	line-height: 34px;
	position: relative;
	border-bottom: 2px solid #39662f;
}
.innews .amore {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9;
	display: block;
	color: #4c4c4c;
	font-size: 14px;
}
.innews .hd li {
	/*width: 85px;*/
	color: #333;
	cursor: pointer;
	text-align: center;
	font-size: 16px;
}
.innews .hd .on {
	background: #39662f;
	color: #fff;
}
.innews .bd {
	/*border: 1px solid #39662f;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;*/
}
.innews .bd ul {
	margin: 10px auto;
	/*height: 239px;*/
}
.innews .bd li {
	width: 100%;
	border-bottom: 1px dashed #ccc;
	padding-bottom: 12px;
	margin-bottom: 20px;
}
.innews .bd li a span {
	color: #39662f;
	margin-right: 5px;
}

.about {
	background: #f8f8f8;
	height: 370px;
	padding: 1px 0;
}
.intitle {
	margin: 20px 0;
}
.intitle img {
	width: 25px;
	height: 25px;
}
.intitle p {
	font-size: 20px;
	font-weight: bold;
	color: #2d373c;
	margin-left: 10px;
}
.aboutimg {
	line-height: 30px;
	color: #4c4c4c;
	text-indent: 2em;
}
.about-img {
	width: 575px;
	height: 275px;
}
.about-right {
	width: 650px;
	height: 275px;
	position: relative;
}
.about-right .tit {
	color: #2d373c;
	font-size: 20px;
	font-weight: bold;
}
.about-right p {
	line-height: 30px;
	color: #343434;
	font-size: 14px;
	letter-spacing: 1px;
}
.more {
	display: block;
	width: 120px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 9;
	background: #39662f;
	border-radius: 2px;
}
.more:hover {
	color: #fff;
}

.cont_l {
	width: 12.5%;
	height: 72px;
	background: #f2f2f2;
	text-align: center;
}
.cont_l .p1 {
	font-size: 30px;
	line-height: 22px;
	color: #39662f;
	margin: 12px 0 10px;
}
.cont_l .p2 {
	font-size: 14px;
	line-height: 22px;
	color: #474747;
}
.cont_r {
	width: 84%;
}
.cont_r .p3 {
	font-size: 15px;
	line-height: 34px;
	color: #414141;
}
.cont_r .p3:hover {
	color: #39662f;
}
.cont_r .p4:hover {
	color: #39662f;
}
.cont_r .p4 {
	font-size: 14px;
	line-height: 22px;
	color: #6e6e6e;
}

.innews2 {
	width: 49%;
	/*height: 345px;*/
}
.innews2 .hd {
	height: 45px;
	line-height: 25px;
	position: relative;
}
.innews2 .amore {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9;
	display: block;
	color: #898989;
	font-size: 14px;
}
.innews2 .hd li {
	/*width: 97px;*/
	color: #333333;
	cursor: pointer;
	text-align: center;
	margin-right: 30px;
	font-size: 16px;
    padding: 0 6px 3px 6px;
}
.innews2 .hd .on {
	border-bottom: 4px solid #39662f;
}
.innews2 .bd {
	border: 1px solid #cecece;
	border-radius: 2px;
}
.innews2 .bd ul {
	margin: 10px auto;
	height: 275px;
}
.innews2 .bd li {
	width: 96%;
	margin: auto;
	height: 36px;
	line-height: 36px;
}
.innews2 .bd li a img {
	width: 15px;
	height: 15px;
	margin-right: 10px;
}
.border-ccc {
	border: 1px solid #ccc;
}
.yeji li {
	width: 12.5%;
	text-align: center;
}
.yeji li img {
	width: 90px;
	height: 90px;
}
.yeji li p {
	color: #333;
	font-size: 16px;
	margin-top: 5px;
}

/*footer*/
.footer {
	padding: 25px 0 0;
	background: #323232;
	color: #fff;
	font-size: 14px;
}
.mt {
	margin-top: 10px;
}
.flogo {
	width: 22%;
}
.fdes {
	width: 40%;
	line-height: 24px;
}
.finfo {
	width: 21%;
}
.finfo p {
	line-height: 24px;
}
.fbottom {
	text-align: center;
	margin: 22px auto 0;
	padding: 10px 0;
	border-top: 1px solid #616161;
	font-size: 13px;
	color: #999;
}
.fbottom a {
	color: #999;
}

.des {
	width: 1060px;
	margin: 10px auto 20px;
	text-align: center;
	line-height: 30px;
	font-size: 16px;
	color: #424242;
}
.qiehuan {
	width: 60%;
	margin: 0 auto 20px;
}
.qiehuan li {
	width: 156px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #333;
	font-size: 16px;
	margin-right: 25px;
	box-sizing: border-box;
}
.qiehuan li:last-child {
	margin-right: 0;
}
.qiehuan li a {
	color: #424242;
	display: block;
	width: 100%;
	height: 100%;
}
.qiehuan li:hover {
	background: #2477bd;
	border: none;
}
.qiehuan li:hover a {
	color: #fff;
}
.qhover {
	background: #2477bd;
	border: none !important;
}
.qhover a {
	color: #fff !important;
}
.qh-con {
	margin: 0 auto 15px;
}
.qh-con li {
	width: 220px;
	height: 136px;
	line-height: 136px;
	border: 1px solid #ccc;
	margin: 0 20px 25px 0;
	text-align: center;
}
.qh-con li:nth-child(5n) {
	margin-right: 0;
}
.qh-con li img {
	max-width: 100%;
}
.qh-con-ny {
	width: 710px;
	margin: 20px auto 15px;
}
.qh-con-ny li {
	width: 220px;
	height: 136px;
	line-height: 136px;
	border: 1px solid #ccc;
	margin: 0 20px 25px 0;
	text-align: center;
}
.qh-con-ny li:nth-child(3n) {
	margin-right: 0;
}
.qh-con-ny li img {
	max-width: 100%;
}

.bg-grey {
	background: #f5f5f5;
	height: 440px;
	padding: 30px 0;
}
.in-title {
	width: 980px;
	margin: auto;
}
.in-title .tit-img {
	width: 360px;
}
.in-title .title {
	text-align: center;
}
.in-title .title p:first-child {
	font-size: 38px;
	color: #39662f;
	font-weight: bold;
	line-height: 50px;
}
.in-title .title p:last-child {
	font-size: 18px;
	color: #a6a6a6;
	line-height: 30px;
	text-transform: Uppercase;
}
.newsul {
	width: 100%;
	margin: 20px auto;
}
.newsul li {
	width: 320px;
}
.newsul li img {
	width: 320px;
	height: 185px;
}
.newsul li .title {
	line-height: 24px;
	margin: 10px auto;
}
.newsul li .title a {
	color: #4a4a4a;
}
.newsul li .title a:hover {
	color: #39662f;
}
.bline {
	width: 140px;
	height: 1px;
	background: #8d8d8d;
}

/*首页css结束*/

/*单页开始*/
.nybanner {
}

.dytitle {
	width: 100%;
	margin: 20px auto 0;
	height: 40px;
	line-height: 40px;
	border-bottom: 1px solid #ccc;
}
.dytitle h3 {
	font-size: 19px;
	color: #1A1A1A;
	font-weight: bold;
}
.dytitle .crumbs {
	padding-left: 24px;
	font-size: 14px;
	color: #484848;
}
.dytitle a:hover {
	color: #39662f; 
}
.content a:hover {
	color: #39662f; 
}

/*zbcn*/
.zbcn {
	width: 100%;
	margin: 20px auto;
}
.zbcn01 {
	width: 1100px;
	margin: 10px auto;
	background: url(../images/zb01.jpg) no-repeat center center;
	height: 276px;
}
.zbcn02 {
	width: 1100px;
	margin: 10px auto;
	background: url(../images/zb02.jpg) no-repeat center center;
	height: 333px;
}
.zbcn01 h3 {
	padding-left: 615px;
	color: #17479B;
	font-size: 20px;
	font-weight: bold;
	height: 30px;	
	line-height: 30px;
	padding-top: 50px
}
.zbcn02 h3 {
	padding-top: 105px;
	padding-left: 100px;
	color: #17479B;
	font-size: 20px;
	font-weight: bold;
	height: 30px;	
	line-height: 30px;
}
.zbcn01 p {
	width: 100%;
	margin: 15px auto;
	padding-left: 600px;
	font-size: 14px;
	line-height: 20px;
	color: #696969;
}
.zbcn02 p {
	width: 100%;
	margin: 15px auto;
	padding-left: 85px;
	font-size: 14px;
	line-height: 20px;
	color: #696969;
}
.zbcn01 p span, .zbcn02 p span {
	width:6px;
	height:6px;
	border:1px solid rgba(0,113,205,1);
	border-radius:50%;
	display: inline-block;
	margin-right: 10px;
}

/*荣誉滚动*/

.scroll {
	width: 1200px;
	overflow: hidden;
	height: 200px;
	margin: 20px 0 20px 20px !important;
}
.scroll ul {
	white-space: nowrap;
	overflow: hidden;
	width: 100%;
	height: 200px;
	margin: 0 auto;
}
.scroll ul li {
	width: 23.8%;
	height: 200px;
	float: left;
	margin-left: 1.5%;
	background: url(../images/ryborder.png)no-repeat center center;
	background-size: 100% 100%;	
}
.scroll ul li:first-child {
	margin-left: 0;
}
.scroll ul li a {
	width: 96%;
	display: inline-block;
	margin: 5px;
}	
.scroll ul li img {
	vertical-align: top;
	width: 100%;
	height: 190px;
}
/*
.swiper-container {
	width: 100%;
	height: 220px;
	margin: 20px auto !important;
}
.swiper-container ul {
	width: 92%;
	height: 210px;
	margin: 0 auto;
}
.swiper-container ul li {
	width: 23.8%;
	height: 200px;
	float: left;
	margin-left: 1.5%;
	background: url(../images/ryborder.png)no-repeat center center;
	background-size: 100% 100%;	
}
.swiper-container ul li:first-child {
	margin-left: 0;
}
.swiper-container ul li a {
	width: 96%;
	display: inline-block;
	margin: 5px;
}
.swiper-container ul li img {
	width: 100%;
	height: 190px;
}*/

/*文章页*/
/*.title {
	text-align: center;
	margin: 20px auto;
	font-size: 20px;
	font-weight: bold;
	line-height: 30px;
}*/
.data {
	width: 80%;
	margin: 10px auto;
	text-align: center;
	font-size: 14px;
	color: #808080;
}
.data span {
	padding: 2px 10px;
}
.content {
	width: 100%;
	min-height: 300px;
	margin: 20px auto;
}
.content img, .content p {
	max-width: 100%;
}
/*列表页*/
.content ul {
	width: 100%;
	margin: 20px auto;
}
/*.content ul li {
	margin: 5px auto;
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
}*/
.circle {
	width: 6px;
	height: 6px;
	border: 1px solid rgba(0,113,205,1);
	border-radius: 50%;
	display: inline-block;
	margin-right: 10px;
}
.content ul li:nth-child(2n+1) {
    background: #FAFAFA;
}
.content ul li {display:block; width:100%; margin-bottom:20px;height:158px; overflow:hidden; padding-bottom:20px;border-bottom:1px dashed #e1e1e1; position:relative; z-index:2; left:0; top:0;}
.content ul li  .tit{display:block; height:30px; line-height:30px; font-size:16px; font-weight:bold; color:#39662f;}
.content ul li  .time{display:block; line-height:22px; font-size:13px; color:#999;}
.content ul li  .d_c{didsplay:block; width:100%;padding-top:7px;}

.content ul li  .d_c  img{ width:174px; height:132px;margin-right:10px;} 
.content ul li  .d_c .wz{display: block; font-size:14px; line-height:22px;height:132px; overflow:hidden;}
.content ul li  .d_c .wz a{font-size:12px; line-height:22px;}
.content ul li  .moret{display:block; position:absolute; z-index:9; right:10px; bottom:10px; width:80px; height:20px; background:#9c9c9c; line-height:20px; font-size:12px; color:#fff; text-align:center;}
.content ul li  .moret:hover{background:#39662f; color:#fff;}




.container{margin-left:auto; margin-right:auto; width:1000px;}
.form_list{
	width: 98%
	margin: auto;
}
.form_list span {
	margin-left: 2px;
}
.form_list label{
	margin-right: 25px;
	position: relative;
	padding-left: 15px;
	font-size: 16px;
}
.form_list label input{
	position: absolute;
	top: 2px;
	left: 0px;
}
.form_list .form_input{
	width: 98%;
	height: 30px;
	padding-left: 10px;
	border: 0.5px solid #dfdfdf;
	margin: 10px 0 20px;
}
.form_list .form_textarea{
	height: 80px;
	padding-top: 10px;
}
.clicksubmit{
	width: 20%;
	height: 35px;
	line-height: 35px;
	background: #39662f;
	text-align: center;
	color: #fff;
	cursor: pointer;
	margin: 10px auto 0;
}
/*分页*/

.qy_page_list {
	text-align: center;
	margin-top: 30px;
}

.qy_page_list>div {
	display: inline-block;
}

.qy_page_list>div a {
	padding: 6px 10px;
	border: 1px solid #666;
	font-size: 12px;
	color: #666;
	margin: 0 3px;
}

.qy_page_list>div span {
	padding: 6px 10px;
	border: 1px solid #39662f;
	font-size: 12px;
	color: #fff;
	background-color: #39662f;
	margin: 0 3px;
}

input[type=number] {

    -moz-appearance:textfield;

}

input[type=number]::-webkit-inner-spin-button,

input[type=number]::-webkit-outer-spin-button {

    -webkit-appearance: none;

    margin: 0;

}

#demoSelect {
	color: #eee;
}

select{color: #333333}

option{color: #333333;}

/* WebKit browsers */

::-webkit-input-placeholder { /* WebKit browsers */
  color: #9c9c9c;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #9c9c9c;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #9c9c9c;
} 
input{
    caret-color: #9c9c9c;
}

/*浮动电话*/
.ad_boxfixed {
    position: fixed;
    z-index: 2000;
    bottom: 150px;
    right: 0;
    line-height: 1.2;
}
.ad_boxfixed .ad_tel {
    float: left;
    background: #39662f;
    border: 1px solid #39662f;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 10px 14px 11px;
    color: #fff;
    margin-right: 10px;
}
.ad_boxfixed .ad_tel .ad_tel_icon {
    float: left;
    cursor: pointer;
}
.ad_boxfixed .ad_tel .ad_tel_text {
    margin-left: 62px;
    padding-top: 2px;
    
}
.ad_boxfixed .ad_tel .ad_tel_text .ad_tel_txt {
    font-size: 14px;
    font-weight: 200;
}
.ad_boxfixed .ad_tel .ad_tel_text .ad_tel_num {
    font-size: 20px;
    font-weight: bold;
    margin-top: 8px;
}
.ad_boxfixed .ad_tel .ad_tel_icon .icon_adTel {
    display: block;
    width: 54px;
    height: 54px;
    background: url(../images/ad_tel.png);
}
.ad_boxfixed .ad_tel:hover .ad_tel_icon .icon_adTel {
    animation: yaohuang 0.3s infinite;
    -webkit-animation: yaohuang 0.3s infinite;
}

/*产品列表页*/
.sec_left {
	float: left;
	width: 20%;
	height: auto;
}

.nav_tit {
	padding-left: 30px;
	height: 54px;
	line-height: 54px;
	/*background: url(/template/default//images/nav_tit.png) no-repeat;*/
	background: #39662f;
    border-radius: 5px;
}

.nav_tit .sp1 {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

.nav_tit .sp2 {
	font-size: 12px;
	color: #fff;
}

.dropdown {
	height: 100%;
	width: 242px;
	background-color: #fff;
	padding-top: 20px;
	font-size: 14px;
	font-weight: bold;
}

.dropdown li {
	padding-left: 10px;
	line-height: 42px;
	border-bottom: 1px solid #eee;
}
.dropdown .choose {
	background: #39662f;
}
.dropdown .choose a {
	color: #fff;
}
.dropdown li img {
	width: 9px;
	height: 9px;
	margin-right: 12px;
}

.dropdown li a {
	width: 100%;
	text-decoration: none;
	text-transform: uppercase;
	color: #808080;
}

.dropdown li.current a {
	color: #39662f;
}

.sec_middle {
	padding-top: 30px;
}

.sec_about_right {
	float: right;
	width: 76%;
	height: 100%;
	padding-bottom: 20px;
}

.sec_position {
	padding: 0 0 5px 10px;
	width: 100%;
    height: 30px;
    line-height: 30px;
    border-bottom: 1px solid #39662f;
}

.sec_position .sp1 {
	color: #39662f;
	font-size: 24px;
	float: left;
	font-weight: bold;
	border-left: 3px solid #39662f;
	padding-left: 15px;
}

.sec_position .sp2 {
	color: #666;
	font-size: 12px;
	float: right;
}

.sec_position .sp2 a {
	color: #666;
}

.left-message {
	line-height: 26px;
	color: rgb(34,34,34);
	padding: 10px;
	font-weight: normal
}
.s_product {
	margin-top: 30px;
}

.s_product ul li {
	float: left;
	width: 228px;
	margin-right: 16px;
	margin-bottom: 22px;
}
.s_product ul li:nth-child(4n) {
	margin-right: 0;
}

.s_product ul li a {
	display: block;
}

.s_product ul li a img {
	width: 228px;
	height: 162px;
}

.s_product ul li a p {
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #666;
	font-size: 14px;
	margin-top: 5px;
}
.s_link {
	margin-top: 30px;
}

.s_link ul li {
	float: left;
	width: 222px;
	height: 138px;
	margin-right: 16px;
	margin-bottom: 22px;
}
.s_link ul li:nth-child(4n) {
	margin-right: 0;
}

.s_link ul li a {
	display: block;
}

.s_link ul li a img {
	width: 216px;
	height: 162px;
}
.newslist2,.newslist {
	margin-top: 10px;
}

.newslist {
	padding-right: 10px
}

.list-main {
	padding: 30px 0;
}

.list-main ul li {
	padding: 0 0 10px 0;
	border-bottom: dotted 1px #CCCCCC;
	position: relative;
	margin-bottom: 10px;
}
.list-main ul li .zn_tit {
	width: 89%;
	font-size: 14px;
}
.list-main ul li .zn_date {
	width: 8.5%;
	font-size: 13px;
	color: #999;
}

.list-main ul li .zn_titsx {
	float: right;
	width: 715px;
	position: absolute;
	right: 0;
	bottom: 20px;
	line-height: 30px;
}

.list-main ul li .zn_titsxl {
	float: left;
	color: #888;
	font-size: 14px
}

.list-main ul li .zn_titsxr {
	float: right;
	padding: 0 10px;
	/*margin-right: 20px;*/
	border: #999 solid 1px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	color: #3d3d3d;
	font-size: 14px
}

.newslist li {
	height: 40px;
	border-bottom: #CCC dashed 1px;
	line-height: 40px;
}

.newslist li a {
	float: left;
	color: #555;
	font-size: 14px;
	width: 800px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.newslist li a:hover {
	color: #39662f
}

.newslist li span.time {
	float: right;
	color: #999;
	font-size: 14px;
	margin-right: 5px;
}

.newslist li span.dot {
	float: left;
	background-color: #999;
	padding: 3px;
	margin: 17px 10px 0px 10px;
}
.about-content {
    padding: 20px 0 0;
}
.headline2 {
	color: #000000;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 13px;
	text-align: center;
	line-height: 30px;
}

.release {
	text-align: center;
	font-size: 14px;
	color: #999999;
	padding-bottom: 25px;
	border-bottom: 1px dotted #e3e3e3;
}

.sec_middle .page a {
	font-size: 14px;
	color: #333
}

.sec_middle .page a:hover {
	color: #39662f
}

.sec_middle .page {
	font-size: 14px;
	color: #333
}
.newslist2 {
	margin-top: 10px;
}

.newslist2 li {
	height: 60px;
	border-bottom: 1px dashed #EEEEEE !important;
}

.newslist2>ul>li div {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

.newslist2>ul>li span {
	font-size: 16px;
	color: #666
}

.newslist2>ul>li div img {
	width: 25px;
	margin-right: 8px;
	position: relative;
	top: -2px
}

.newslist2>ul>li a {
	height: 30px;
	width: 90px;
	border-radius: 30px;
	text-align: center;
	background-color: #007db8;
	line-height: 30px;
	vertical-align: middle;
	position: absolute;
	right: 10px;
	top: 15px;
	color: white;
	font-size: 14px;
}

.newslist2>ul>li i {
	font-size: 20px;
	margin-right: 16px;
	margin-left: 10px;
}

