* {
	box-sizing:content-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul,li{ list-style-type:none;}
a{text-decoration:none;color:#000;}
*{margin: 0px;padding: 0px;font-size:14px; font-family: "微软雅黑", arial, Helvetica, sans-serif;}
li{list-style-type:none;}
h1,h2,h3,h4,h5{font-weight: 500;}
img{border:0px;max-width: 100%;display:inline-block;}

.w1200{ width: 1200px;margin: 0 auto; }
.w1150{ width: 1150px;margin: 0 auto; }
.w1100{ width: 1100px;margin: 0 auto; }
.w1050{ width: 1050px;margin: 0 auto; }
.w1000{ width: 1000px;margin: 0 auto; }
.w900{ width: 900px;margin: 0 auto; }
.w333{width: 33.3333%;float: left; }
.w50{ width: 50%;float: left; }
.w666{ width: 66.6666%;float: left; }
.w25{ width: 25%;float: left; }

.left{ float: left; }
.right{ float: right; }

.clear:after{
  display:block;
  clear:both;
  content:"";
  visibility:hidden;
  height:0;
}

/*头部*/
.top{
  background-color: #ededed;
}
.top .topt{
  border-bottom: 1px solid #aaa;
  padding: 10px 0;
}
.top .logo{
  float: left;
}
.top .logo a{
  display: block;
  float: left;
}
.top .logo a img{
  display: block;
  /*width: 200px;*/
  /*max-height: 60px;*/
  height: 52px;
  margin-top: 5px;
}
.top .logo h3{
  float: left;
  line-height: 50px;
  font-size: 16px;
  color: #555;
  /*font-weight: bold;*/
  letter-spacing: 0px;
  text-shadow: 0 0 1px rgba(0,0,0,0.6);  
}
.top .topcon{
  float: right;
}
.top .topcon .language a{
	display: block;
	float: right;
	line-height: 26px;
	margin-left: 15px;
	color: #444;
}
.top .topcon .language a img{
	display: block;
	margin: 3px 0;
	height: 20px;
	float: left;
	margin-right: 5px;
}
.top .topcon p{
  padding-left: 25px;
  line-height: 24px;
  float: left;
  font-size: 16px;
  color: #666;
  margin-top: 10px;

}
.top .topcon p.toptel{
  background:url(../image/toptel.png) no-repeat left center;
  background-size: auto 14px;
  padding-left: 40px;
  /*letter-spacing: 1px;*/
}
.top .topcon p.topemail{
  background:url(../image/topemail.png) no-repeat left center;
  background-size: auto 12px;
  margin-left: 40px;
}

.top .topf{
  margin-top: 15px;
}
.top .nav{
  float: left;
}
.top .nav li{
  float: left;
  line-height: 50px;
}

.top .nav li{
  float: left;
  position: relative;
}
.top .nav>li>a{
  font-size: 16px;
  color: #565656;
  padding: 0 15px;
  display: block;
  transition: all 0.4s;
}
.top .nav>li>a:hover{
  color: #00ab4f;
}
.top .nav li span{
  display: inline-block;
  float: right;
  font-size: 16px;
  width: 16px;
  height: 16px;
  margin: 17px 5px;
  /*font-family: "songti";*/
  /*margin-left: 10px;*/
  background: url(../image/dhjt.png) no-repeat center;
  background-size: 100%;
  transition: all 0.3s;
  transform:rotate(0deg);
  -ms-transform:rotate(0deg); /* Internet Explorer */
  -moz-transform:rotate(0deg); /* Firefox */
  -webkit-transform:rotate(0deg); /* Safari 和 Chrome */
  -o-transform:rotate(0deg); /* Opera */
}
.top .nav li a:hover span{
  transform:rotate(180deg);
  -ms-transform:rotate(180deg); /* Internet Explorer */
  -moz-transform:rotate(180deg); /* Firefox */
  -webkit-transform:rotate(180deg); /* Safari 和 Chrome */
  -o-transform:rotate(180deg); /* Opera */
}
.top .nav li dl{
  background-color:#00ab4f;
  position: absolute;
  top: 50px;
  opacity: 0;
  transition: all 0.4s;
  z-index: 999;
  width: 200px;
  display: none;
  max-height: 360px;
  overflow-y: auto;
}

/*滚动条样式*/
.top .nav li dl::-webkit-scrollbar {/*滚动条整体样式*/
    width: 4px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 4px;
}
.top .nav li dl::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.2);
}
.top .nav li dl::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 0;
    background: rgba(0,0,0,0.1);
}


.top .nav li:hover dl{
    display: block;
    animation: menu1 0.3s ease-in-out both;
    animation-delay: 0.3s;
}
@keyframes menu1 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*.top .nav li:hover dl{
  top: 50px;
  opacity: 1;
  z-index: 999;
}*/
.top .nav li dl a{
  font-size: 12px;
  color: #fff;
  line-height: 36px;
  padding: 0 10px;
  transition: all 0.4s;
  /*text-transform : uppercase;*/
  display: block;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.top .nav li dl a:hover{
  background-color: #eb6100;
}
.top .search{
  float: right;
  margin: 12px 0px;
  height: 26px;
  background-color: #fff;
  /*padding: 0 10px;*/
  padding-left: 10px;
  border-radius: 10px;
}
.top .search input{
  width: 200px;
  border: 0px;
  line-height: 26px;
  float: left;
  padding: 0 5px;
  color: #666;
  outline: none;
}
.top .search input.submit{
  width: 26px;
  height: 26px;
  background:url(../image/search.png) no-repeat center;
  background-size: 20px;
}
/*.flexslider{height: 660px;}
.slides li{height: 660px;}*/


/*底部*/
.foot{
	background-color: #ededed;
	padding-top: 50px;
}
.foot .fttp{
	margin-bottom: 40px;
}
.foot .ftlogo{
	float: left;
	width: 280px;
	margin-right: 20px;
}
.foot .ftli{
	float: left;
	width: 180px;
	margin-right: 20px;
}
.foot h3{
	font-size: 16px;
    color: #444;
    text-shadow: 0 0 1px rgba(0,0,0,0.6);
    margin-bottom: 25px;
}
.foot .ftli span{
  display: none;
}
.foot .ftli li{
	margin-top: 5px;
}
.foot .ftli li a{
	display: block;
	line-height: 24px;
	color: #444;
}
.foot .ftli li:nth-child(1){
	margin-top: 0px;
}
.foot .ftli li a:hover{
	color: #00ab4f;
}
.foot .ftmessage{
	float: right;
	width: 500px;
}
.foot .ftmessage p{
	color: #666;
}
.foot .ftmessage ul{
	padding-left: 10px;
}
.foot .ftmessage input{
	line-height: 24px;
	width: 410px;
	padding: 0 5px;
	color: #666;
	border: 1px solid #bbb;
}
.foot .ftmessage textarea{
	width: 410px;
	height: 80px;
	line-height: 20px;
	padding: 0 5px;
	color: #666;
	border: 1px solid #bbb;
}
.foot .ftmessage input.submit{
	margin-top: 20px;
	float: right;
	width: 100px;
	text-align: center;
	line-height: 32px;
	color: #fff;
    background-color: #5cb85c;
    border: 1px solid #4cae4c;
    border-radius: 3px;
    cursor: pointer;
	transition: all 0.3s;
}
.foot .ftmessage input.submit:hover{
	background-color: #00ab4f;
}
.foot .ftmessage h4{
	float: left;
	width: 80px;
	line-height: 24px;
	font-size: 14px;
	color: #555;
}
.foot .ftmessage h4 span{
	color: red;
}
.foot .ftmessage li{
	margin-top: 20px;
}
.foot .ftmessage li:after{
	clear: both;
	content:"";
	visibility:hidden;
}
.foot .ftbt{
	border-top: 1px solid #ddd;
}
.foot .ftbt p{
	text-align: right;
	line-height: 50px;
	color: #666;
}

/*首页*/
.inpronav{
	margin-top: 25px;
}
.inpronav li{
	float: left;
	width: 19.8%;
	margin:1px 2px 1px 0;
}
.inpronav li:nth-child(5n){
	margin-right: 0px;
}
.inpronav li a{
	display: block;
	text-align: center;
	color: #fff;
	line-height: 30px;
	color: #fff;
	background-color: #eb6100;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
	transition: all 0.3s;
}
.inpronav li a:hover{
	background-color: #00ab4f;
}

.intl{
	margin-bottom: 30px;
}
.intl h3{
	float: left;
	font-size: 20px;
	padding: 0 30px;
	background-color: #eb6100;
	color: #fff;
	line-height: 25px;
}

.inma1{
	margin-top: 25px;
}
.inma1 .newsproli li{
	float: left;
	width: 18.4%;
	margin-right: 2%;
	border:1px solid #ccc;
	padding: 5px;
}
.inma1 .newsproli li:nth-child(5n){
	margin-right: 0px;
}
.inma1 .newsproli li a{
	display: block;
	
}
.inma1 .newsproli li a img{
	display: block;
}
.inma1 .newsproli li a h3{
	color:#333;
	line-height: 20px;
	height: 40px;
	font-size: 14px;
	margin: 10px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
    
}
.inma1 .newsproli li a h3:hover{
	color: #00ab4f;
}
.inma1 .newsproli li a.inquire{
	display: block;
	background-color: #00ab4f;
	border: 1px solid #ddd; color: #fff;
	line-height: 40px;
	text-align: center;
	/*background:url(../image/inqu.png) no-repeat center;
	background-size: 20px;*/
}
.inma1 .newsproli li a.inquire img{
	display: inline-block;
	width: 18px;
	vertical-align:middle;
	margin-right: 5px;
}
.inma1 .newsproli li a.inquire:hover{
	background-color: #00ab4f;
}

.inma2{
	margin-top: 50px;
}
.inma2 .hotproli li{
	float: left;
	width: 18.4%;
	margin-right: 2%;
	border:1px solid #ccc;
	padding: 5px;
	margin-bottom: 20px;
}
.inma2 .hotproli li:nth-child(5n){
	margin-right: 0px;
}
.inma2 .hotproli li a{
	display: block;
	
}
.inma2 .hotproli li a img{
	display: block;
}
.inma2 .hotproli li a h3{
	color:#333;
	line-height: 20px;
	height: 40px;
	font-size: 14px;
	margin: 10px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.inma2 .hotproli li a h3:hover{
	color: #00ab4f;
}
.inma2 .hotproli li a.inquire{
	display: block;
	background-color: #00ab4f;
	border: 1px solid #ddd;
	line-height: 40px;
	text-align: center;
	color: #fff;
	/*background:url(../image/inqu.png) no-repeat center;
	background-size: 20px;*/
}
.inma2 .hotproli li a.inquire img{
	display: inline-block;
	width: 18px;
	vertical-align:middle;
	margin-right: 5px;
}
.inma2 .hotproli li a.inquire:hover{
	background-color: #00ab4f;
}

.inma3 .im3ab h3{
	text-align: center;
	font-size: 26px;
	color: #444;
	margin-bottom: 15px;
}
.inma3 .im3ab span font{
	display: block;
	margin: 0 auto;
	height: 1px;
	width: 500px;
	background-color: #ddd;
	margin-bottom: 10px;
}
.inma3 .im3ab p{
	text-align: center;
	color: #555;
}
.inma3 img{
	display: block;
	margin: 0 auto;
	margin-top: 5px;
}

.inma4{
	padding: 0 10px;
	margin-bottom: 50px;
}
.inma4{
	margin-top: 40px;
}
.inma4 .im4bk{
	border: 1px solid #aaa;
	padding: 10px;
	transition: all 0.3s;
}
.inma4 .im4bk:hover{
	transform: translateY(-5px);
	box-shadow: 0 0 8px rgba(0,0,0,0.5);
}
.inma4 .im4bk img{
	display: block;
	margin-bottom: 20px;
}
.inma4 .im4bk h3{
	font-size: 16px;
	color: #444;
	text-shadow: 0 0 1px rgba(0,0,0,0.6);
	margin-bottom: 5px;
}
.inma4 .im4bk a{
	display: block;
	color: #555;
}
.inma4 .im4bk a:hover{
	color: #00ab4f;
}

/*当前位置*/
.location{
	margin: 20px auto;
}
.location p{
	padding-left: 25px;
	background: url(../image/home.png) no-repeat left top 2px;
	background-size: auto 16px;
	color: #555;
}
.location p a{
	display: inline-block;
	color: #555;
}
.location p a:hover{
	color: #00ab4f;
}

/*左侧列表*/
.prole{
	float: left;
	width: 280px;
	margin-right: 20px;
	border: 1px solid #ddd;
	margin-bottom: 20px;
}
.prole h1{
	background-color: #00ab4f;
	color: #fff;
	font-size: 16px;
	text-shadow: 0 0 2px rgba(255,255,255,1);
	padding: 0 10px;
	line-height: 45px;
}
.prole h1 a{

	color: #fff;
	font-size: 16px;

}

.prole>ul{
	background-color: #eee;
	padding: 0 10px;
}
.prole>ul>li{
	border-bottom: 1px solid #ccc;
}
.prole li{
	position: relative;
}
.prole li>a{
	display: block;
	position: relative;
	
}
.prole li>a h3{
	color: #555;
	line-height: 45px;
	padding-left: 10px;
	transition: all 0.3s;
}
.prole li:last-child>a h3{
	border-bottom: 0px;
}
.prole li a:hover{
	/*background-color: #fafafa;*/
}
.prole li a:hover h3{
	color: #00ab4f;
	/*border-color: #fafafa;*/
}
.prole li span{
	position: absolute;
	right: 0px;
	top: 0px;
	height: 45px;
	width: 45px;
	/*background: url(../image/prolesj.png)no-repeat center;*/
	background-size: 12px;
	font-size: 24px;
	color: #999;
	line-height: 45px;
	text-align: center;
	/*background-color: #fff;*/
	transition: all 0.3s;
	z-index: 99;
	cursor:pointer;
}
.prole li dd span{
	right: 0px;
}
.prole li.on>span,.prole dd.on>span{
	-webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    color: #ccc;
}

.prole li dl{
	display: none;
	background-color: #f5f5f5;
	/*padding-left: 15px;*/
}
/*.prole li:hover dl{
	display: block;
	opacity: 1;
	transition: all 0.3s;
}*/

.prole li dl dd{
	position: relative;
}
.prole li dl a{
	display: block;
	white-space:nowrap;
	line-height: 45px;
	color: #555;
	padding: 0px 15px;
	/*border-left: 1px solid #aaa;*/
	transition: all 0.3s;
}
.prole li dl a:hover{
	color: #00ab4f;
	/*border-left: 1px solid #00ab4f;*/
}
.prole li dl ul{
	display: none;
}
.prole li dl li{
	padding-left: 15px;
	position: relative;
}
.prole li dl li a{
	position: relative;
	display: block;
	white-space:nowrap;
	line-height: 45px;
	color: #555;
	padding: 0px 15px;
	border-left: 1px solid #ccc;
}
.prole li dl li .xx{
	position: absolute;
	left: 15px;
	top: 22px;
	height: 1px;
	width: 5px;
	background-color: #ccc;
}

/*产品右侧*/
.prori{
	float: right;
	width: 900px;
}
.prori .prode{
	margin-bottom: 10px;
}
.prori p{
	color: #444;
}
/*产品分类*/
.prori .procen li{
	float: left;
	width: 24%;
    margin-right: 1.33%;
}
.prori .procen li:nth-child(4n){
	margin-right: 0px;
}
.prori .procen li a{
	display: block;
}
.prori .procen li img{
	display: block;
	border: 1px solid #ddd;
	width: 100%;
}
.prori .procen h3{
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	overflow: hidden;
    white-space: nowrap;
}
.prori .procen a:hover h3{
	color: #00ab4f;
}


/*产品列表*/
.prori .hoirtn{height: 40px;border-bottom: 2px solid #d4d4d4; margin-bottom: 18px;}
.prori .hoirtn h3 {height: 40px;display: inline-block;font-size: 24px;font-weight: normal;line-height: 40px;padding-right: 24px;
border-bottom: 2px solid #1c1c1c;}








.prori .proli li{
	float: left;
	width: 24%;
	margin-right: 1.33%;
	border:1px solid #ccc;
	padding: 5px;
	margin-bottom: 20px;
}
.prori .proli li:nth-child(4n){
	margin-right: 0px;
}
.prori .proli li a{
	display: block;
	
}
.prori .proli li a img{
	display: block;
}
.prori .proli li a h3{
	color:#333;
	line-height: 20px;
	height: 20px;
	font-size: 14px;
	/*margin: 10px 0;*/
	margin-top: 10px;
	margin-bottom: 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.prori .proli li a h4{
	color:#666;
	line-height: 20px;
	height: 20px;
	font-size: 14px;
	/*margin-bottom: 5px;*/
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.prori .proli  li a h3:hover{
	color: #00ab4f;
}
.prori .proli li a.proquire{
	display: block;
	background-color: #00ab4f;
	border: 1px solid #ddd;
	line-height: 40px;
	text-align: center;
	color: #fff;
	/*background:url(../image/inqu.png) no-repeat center;
	background-size: 20px;*/
	transition: all 0.3s;
    cursor: pointer;
}
.prori .proli li a.proquire img{
	display: inline-block;
	width: 18px;
	vertical-align:middle;
	margin-right: 5px;
}
.prori .proli li a.proquire:hover{
	background-color: #00ab4f;
}

/*产品详情*/

.prori .promatop .left{
  float: left;
  width: 400px;
}
.prori .promatop .left .propic{
	position: relative;
}
.prori .promatop .left .propic .hd{
	position: relative;
	margin-top: 10px;
}
.prori .promatop .left .propic .hd li{
	float: left;
	width: 19%;
	margin-right: 1.25%;
	border: 1px solid #ddd;
}
.prori .promatop .left .propic .hd li:nth-child(5){
	margin-right: 0px;
}
.prori .promatop .left .propic .hd li.on{
	border: 1px solid #0aa284;
}
.prori .promatop .left .propic .hd li img{
	display: block;
}
.prori .promatop .left .propic .bd li img{
	width: 100%;
	border: 1px solid #ddd;
}
.prori .promatop .right{
  float: right;
  width: 480px;
}
.prori .promatop .right h3{
  font-size: 16px;
  line-height: 32px;
  color: #333;
  margin-bottom: 10px;
}
.prori .promatop .right p{
	font-size: 14px;
	line-height: 24px;
	color: #333;
	margin-bottom: 10px;
}
.prori .promatop .right span{
  margin-top: 240px;
  margin-bottom: 10px;
  display: block;
  height: 1px;
  border-bottom: 1px dashed #ccc;
}
.prori .promatop .right a{
  display: block;
  line-height: 48px;
  width: 40%;
  float: left; 
  background-size: auto 24px !important;
  padding-left: 30px;
}
.prori .promatop .right .proinqu{
	border-bottom: 1px dashed #ccc;
	padding-bottom: 20px;
	margin-bottom: 10px;
}
.prori .promatop .right .proinqu a{
    background-color: #ecf8e6;
    border: 1px solid #42ba05;
    color: #40be03;
	width: 120px;
	line-height: 32px;
	padding:0px;
	text-align: center;
	cursor: pointer;
}
.prori .promatop .right a.ico1{
  background: url(../image/skype.png)no-repeat center left;
}
.prori .promatop .right a.ico2{
  background: url(../image/whatsapp.png)no-repeat center left;
}
.prori .promatop .right a.ico3{
  background: url(../image/wechat.png)no-repeat center left;
}
.prori .promatop .right a.ico4{
  background: url(../image/qq.png)no-repeat center left;
  background-size: auto 28px !important;
}
.prori .promatop .right a.ico5{
	display: none;
	padding-left: 0px !important;
}



.prori .pronma li{
  list-style: initial;
  margin-left: 20px;
}
/*.prori .pronma table{
  width: 100%;
  border-collapse: collapse;
  background-color: #f5f5f5;
}
.prori .pronma table tr td:nth-child(1){
  border-left: 0px !important;
}
.prori .pronma td{
  border: 1px solid #ccc !important;
  border-right: 0px !important;
  padding: 0px !important;
  padding: 3px 10px!important;
  text-align: center;
  color: #666;
}*/

.prori .procen{
	margin-top: 30px;
	margin-bottom: 30px;
}
.prori .procen .procentl{
	background-color: #ddd;
}
.prori .procen h2{
	color: #333;
	line-height: 48px;
	font-size: 14px;
	border-top: 1px solid #ddd;
}
.prori .procen h2 span{
	width: 280px;
	display: inline-block;
}
.prori .procen .procentl h3{
  float: left;
  color: #fff;
  font-size: 18px;
  line-height: 36px;
  background-color: #00ab4f;
  padding: 0 10px;
}

/*内页右侧*/
.mari{
	float: right;
	width: 900px;
}
.mari .newsli li{
	margin-bottom: 20px;
}
.mari .newsli li a{
	display: block;
}
.mari .newsli li img{
	display: block;
	float: left;
	margin-right: 10px;
	width: 160px;
	height: 120px;
}
.mari .newsli li .newsliri{
	float: right;
	width: 730px;
}
.mari .newsli li h3{
	font-size: 16px;
	color: #333;
	line-height: 24px;
	height: 24px;
	/*margin-bottom: 5px;*/
	transition: all 0.3s;
}
.mari .newsli li h3 span{
	display: block;
	float: right;
}
.mari .newsli li p{
	color: #666;
	width: 630px;
}
.mari .newsli li a:hover h3{
	color: #00ab4f;
}

/*新闻内页*/
.newsri .newstl{
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #ddd;
}
.newsri .newstl h3{
	text-align: center;
	font-size: 24px;
	color: #555;
	margin-bottom: 10px;
}
.newsri .newstl span{
	display: block;
	text-align: center;
	font-size: 14px;
	color: #666;
}

/*联系我们*/
.contact{
	margin-bottom: 30px;
}
.contact .contl h3{
	color: #FF6600;
	font-size: 25px;
	margin-bottom: 40px;
}
.contact .left{
	float: left;
	width: 48%;
}
.contact .left li:after{
	clear: both;
	display: block;
}
.contact .left li{
	margin-bottom: 20px;
}
.contact .left p{
	float: left;
	color: #444;
	width: 100px;
	line-height: 30px;
}
.contact .left p span{
	color: #ff2200;
}
.contact .left input{
	line-height: 30px;
	width: 476px;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 0 10px;
}
.contact .left textarea{
	line-height: 30px;
	width: 476px;
	height: 60px;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 0 10px;
}
.contact .left input.submit{
	/*margin-top: 20px;*/
	margin-left: 100px;
	float: left;
	width: 100px;
	text-align: center;
	line-height: 32px;
	color: #fff;
    background-color: #5cb85c;
    border: 1px solid #4cae4c;
    border-radius: 3px;
    cursor: pointer;
	transition: all 0.3s;
}

.contact .right{
	float: right;
	width: 48%;
}
.contact .right{
	line-height: 180%;
}

/*案例列表*/
.caseli li{
	float: left;
	width: 32%;
	margin-right: 2%;
	margin-bottom: 20px;
}
.caseli li:nth-child(3n){
	margin-right: 0px;
}
.caseli li a{
	display: block;
	position: relative;
}
.caseli li a img{
	display: block;
	width: 100%;
}
.caseli li a h3{
	position: absolute;
	width: 100%;
	line-height: 30px;
	bottom: 0px;
	background-color: rgba(0, 171, 79, 0.7);
	padding: 0 10px;
	color: #fff;
}

/*单篇*/
.about{
	margin-bottom: 30px;
}
.about p{
	color: #444;
	line-height: 180%;
}

/*下载列表*/
.downli li{
	border-bottom: 1px dashed #ccc;
	margin-bottom: 5px;
}
.downli li a{
	display: block;
	line-height: 32px;
}
.downli li h3{
	float: left;
	color: #555;
	padding-left: 25px;
	background: url(../image/down.png) no-repeat left center;
	background-size: 16px;
}
.downli li span{
	float: right;
	color: #888;
}
/*弹窗留言*/
.message{
  display: none;
}
.messagebg{
  background-color: rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.promessage{
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 50%;
  margin-left: -200px;
  margin-top: -170px;
  width: 400px;
  height: 340px;
  background-color: #fff;
}
.promessage .prometl h3{
  font-size: 16px;
  line-height: 36px;
  color: #555;
  background-color: #eee;
  padding: 0 10px;
  border-bottom: 1px solid #ddd;
}
.promessage .prometl h3 span{
  float: right;
  display: block;
  transform: rotate(45deg);
  font-size: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
}
.promessage form{
  padding:10px 20px;
}
.promessage li{
  margin-bottom: 10px;
}
.promessage input{
  width: 100%;
  border: 1px solid #ddd;
  line-height: 30px;
  padding: 0 10px;
  color: #666;
}
.promessage h4{
  font-size:14px;
  color: #666;
  margin-bottom: 5px;
}
.promessage textarea{
  width: 100%;
  border: 1px solid #ddd;
  line-height: 25px;
  height: 60px;
  padding: 5px 10px;
  color: #666;
}
.promessage input.submit{
  /*margin-left: 100px;*/
  margin: 0 auto;
  display: block;
  width: 100px;
  text-align: center;
  line-height: 32px;
  color: #fff;
  background-color: #5cb85c;
  border: 1px solid #4cae4c;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s;
}


/*手机板块*/
.waptop,.wapnav,.slide2{
	display: none;
}

@media screen and (max-width: 640px) {

.float{
  display: none;
}

.w1200{
	width: 100%;
}
.top{
	display: none;
}
.waptopkj{
	width: 100%;
	height: 60px;
}
.waptop{
	position: fixed;
	top: 0px;
	width: 100%;
	display: block;
	text-align: center;
	font-size: 0px;
	z-index: 99;
	background-color: #fff;
}
.waptop .nav-title{
	width: 60px;
	height: 60px;
	float: left;
}
.waptop .nav-title .nav-btn{
	display: block;
	width: 60px;
	height: 60px;
}
.waptop .nav-title .nav-btn .line{
	display: inline-block;
    width: 24px;
    height: 1px;
    background-color: #888;
    border-radius: 1px;
    position: absolute;
    left: 18px;
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.waptop .nav-title .nav-btn .line:nth-child(1){
	top: 20px;
}
.waptop .nav-title .nav-btn .line:nth-child(2){
	top: 28px;
}
.waptop .nav-title .nav-btn .line:nth-child(3){
	top: 36px;
}

.waptop .nav-title .nav-btn.on .line:nth-child(1){
	-webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
    top: 19px;
}
.waptop .nav-title .nav-btn.on .line:nth-child(2){
	opacity: 0;
}
.waptop .nav-title .nav-btn.on .line:nth-child(3){
	-webkit-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}
.waptop .waplogo{
	display: inline-block;
	/*margin: 0 auto;*/
	width: 200px;
	text-align: center;
}
.waptop .waplogo a{
	display: block;
}
.waptop .waplogo a img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
	max-height: 60px;
}
.waptop .wapsearch{
	float: right;
	
}
.waptop .wapsearch a{
	display: block;
	width: 20px;
	margin: 20px;
}
.waptop .wapsearch a img{
	display: block;
}

.wapnav{
	display: block;
	position: fixed;
	top: 60px;
	left: -100%;
	z-index: 999;
	background-color: #fff;
	width: 100%;
	height: 100vh;
	padding-bottom: 60px;
	overflow-y: auto;
  transition: all 0.3s;
  border-top: 1px solid #eee;
}
/*滚动条样式*/
.wapnav::-webkit-scrollbar {/*滚动条整体样式*/
    width: 4px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 4px;
}
.wapnav::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.2);
}
.wapnav::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 0;
    background: rgba(0,0,0,0.1);
}

.wapnav li{
	position: relative;
}
.wapnav li a{
	display: block;
	line-height: 50px;
	height: 50px;
	padding: 0 50px 0 20px;
	border-bottom: 1px solid #eee;
}
.wapnav li span{
  position: absolute;
  right: 0px;
  top: 0px;
  /*display: inline-block;
  float: right;*/
  font-size: 16px;
  width: 50px;
  height: 50px;
  /*font-family: "songti";*/
  /*margin-left: 10px;*/
  background: url(../image/dhjt.png) no-repeat center;
  background-size: 60%;
  transition: all 0.3s;
  transform:rotate(0deg);
  -ms-transform:rotate(0deg); /* Internet Explorer */
  -moz-transform-:rotate(0deg); /* Firefox */
  -webkit-transform:rotate(0deg); /* Safari 和 Chrome */
  -o-transform:rotate(0deg); /* Opera */
}
.wapnav li.on span{
  transform:rotate(180deg);
  -ms-transform:rotate(180deg); /* Internet Explorer */
  -moz-transform:rotate(180deg); /* Firefox */
  -webkit-transform:rotate(180deg); /* Safari 和 Chrome */
  -o-transform:rotate(180deg); /* Opera */
}
.wapnav li dl{
  display: none;
}
.wapnav li dl dd a{
  display: block;
  padding-left: 40px;
  color: #555;
}

/*幻灯片*/
.slide1{
  display: none;
}
.slide2{
  display: block;
}
.flexslider{height: auto;}
.flexslider .flex-control-nav{padding: 0px;}
.slides li{height: auto;}

/*底部*/
.foot{
  background-color: #ededed;
  padding: 0 10px;
  padding-top: 50px;
}
.foot .fttp{
  margin-bottom: 40px;
}
.foot .ftlogo{
  float: none;
  width: 100%;
}
.foot .ftlogo a{
  display: block;
  text-align: center;
}
.foot .ftli{
  float: none;
  width: 100%;
  margin-top: 20px;
  position: relative;
}
.foot h3{
  font-size: 16px;
  line-height: 24px;
  color: #444;
  text-shadow: 0 0 1px rgba(0,0,0,0.6);
  margin-bottom: 15px;
}
.foot .ftli span{
  display: block;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 24px;
  height: 24px;
  background: url(../image/dhjt.png) no-repeat center;
  background-size: 110%;
  transition: all 0.3s;
  transform:rotate(0deg);
  -ms-transform:rotate(0deg); /* Internet Explorer */
  -moz-transform-:rotate(0deg); /* Firefox */
  -webkit-transform:rotate(0deg); /* Safari 和 Chrome */
  -o-transform:rotate(0deg); /* Opera */
}
.foot .ftli span.on{
  transform:rotate(180deg);
  -ms-transform:rotate(180deg); /* Internet Explorer */
  -moz-transform:rotate(180deg); /* Firefox */
  -webkit-transform:rotate(180deg); /* Safari 和 Chrome */
  -o-transform:rotate(180deg); /* Opera */
}
.foot .ftli ul{
  display: none;
}
.foot .ftli li{
  margin-top: 5px;
}
.foot .ftli li a{
  display: block;
  line-height: 24px;
  color: #444;
}
.foot .ftli li:nth-child(1){
  margin-top: 0px;
}
.foot .ftli li a:hover{
  color: #00ab4f;
}
.foot .ftmessage{
  float: none;
  width: 100%;
}
.foot .ftmessage p{
  color: #666;
}
.foot .ftmessage ul{
  padding-left: 0px;
}
.foot .ftmessage input{
  margin-left: 5px;
  line-height: 24px;
  width: 100%;
  padding: 0 5px;
  color: #666;
  border: 1px solid #bbb;
}
.foot .ftmessage textarea{
  margin-left: 5px;
  width: 100%;
  height: 80px;
  line-height: 20px;
  padding: 0 5px;
  color: #666;
  border: 1px solid #bbb;
}
.foot .ftmessage input.submit{
  margin-top: 20px;
  float: right;
  width: 100px;
  text-align: center;
  line-height: 32px;
  color: #fff;
    background-color: #5cb85c;
    border: 1px solid #4cae4c;
    border-radius: 3px;
    cursor: pointer;
  transition: all 0.3s;
}
.foot .ftmessage h4{
  float: left;
  width: 80px;
  line-height: 24px;
  font-size: 14px;
  color: #555;
  margin-bottom: 5px;
}

.foot .ftmessage li{
  margin-top: 15px;
}
.foot .ftmessage li:after{
  clear: both;
  content:"";
  visibility:hidden;
}
.foot .ftbt{
  border-top: 1px solid #ddd;
  padding: 10px 0;
}
.foot .ftbt p{
  text-align: center;
  line-height: 20px;
  color: #666;
}

/*首页*/
.inpronav{
  margin-top: 25px;
}
.inpronav ul{
  padding: 0 40px;
}
.inpronav li{
  width: 50%;
  margin:0;
  border: 1px solid #fff;
}

.intl{
  margin-bottom: 10px;
}
.intl h3{
  float: left;
  font-size: 20px;
  padding: 0 30px;
  background-color: #eb6100;
  color: #fff;
  line-height: 25px;
}

.inma1{
  margin-top: 25px;
  padding: 0 10px;
}
.inma1 .newsproli li{
  float: left;
  width: 48%;
  margin-right: 4%;
  border:1px solid #ccc;
  margin-bottom: 10px;
}
.inma1 .newsproli li:nth-child(2n){
  margin-right: 0px;
}

.inma2{
  margin-top: 20px;
  padding: 0 10px;
}
.inma2 .hotproli li{
  float: left;
  width: 48%;
  margin-right: 4%;
  border:1px solid #ccc;
  padding: 5px;
  margin-bottom: 20px;
}
.inma2 .hotproli li:nth-child(5n){
  margin-right: 4%;
}
.inma2 .hotproli li:nth-child(2n){
  margin-right: 0px;
}

.inma3{
  padding: 0 10px;
}
.inma3 .im3ab h3{
  font-size: 22px;
}
.inma3 .im3ab span font{
  width: 180px;
}
.inma4{
  padding: 0 10px;
  margin-bottom: 20px;
}
.inma4{
  margin-top: 20px;
}
.inma4 .im4bk{
  border: 1px solid #ccc;
  padding: 10px;
  transition: all 0.3s;
  margin-bottom: 15px;
}

/*左侧列表*/
.prole{
	float: none;
	width: 98%;
	margin: 0 auto;
	border: 1px solid #ddd;
	margin-bottom: 20px;
	position: relative;
}

.prole>ul{
	display: none;
}

.prole h1:after{
	display: block;
	content: ">";
	position: absolute;
	right: 0px;
	top: 0px;
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	font-size: 24px;
	transform:rotate(0deg);
	-ms-transform:rotate(0deg); 	/* IE 9 */
	-moz-transform:rotate(0deg); 	/* Firefox */
	-webkit-transform:rotate(0deg); /* Safari 和 Chrome */
	-o-transform:rotate(0deg); 
	transition: all 0.3s;
}
.prole h1.on:after{
	transform:rotate(90deg);
	-ms-transform:rotate(90deg); 	/* IE 9 */
	-moz-transform:rotate(90deg); 	/* Firefox */
	-webkit-transform:rotate(90deg); /* Safari 和 Chrome */
	-o-transform:rotate(90deg); 
}

.prori{
	width: 100%;
	padding: 0 10px;
}
.prori .procen li{
	float: none;
	width: 100%;
}
.prori .proli li{
	width: 48%;
	margin-right: 4%;
}
.prori .proli li:nth-child(2n){
	margin-right: 0px;
}

/*弹窗留言*/

.promessage{
  position: fixed;
  z-index: 999;
  left: 1%;
  top: 70px;
  margin-left: 0;
  margin-top: 0;
  width: 98%;
  height: 340px;
  background-color: #fff;
}

.prori .promatop .left {
    float: left;
    width: 400px;
}

/*产品详情*/

.prori .promatop .left{
  float: none;
  width: 100%;
}
.prori .promatop .right{
  float: none;
  width: 100%;
}
.prori .promatop .right h3{
  font-size: 22px;
  line-height: 56px;
  color: #333;
  margin-bottom: 10px;
}
.prori .promatop .right span{
  margin-top: 240px;
  margin-bottom: 10px;
  display: block;
  height: 1px;
  border-bottom: 1px dashed #ccc;
}
.prori .promatop .right a{
  display: block;
  line-height: 48px;
  width: 50%;
  float: left;
  background-size: auto 24px !important;
  padding-left: 30px;
}

/*内页右侧*/
.mari{
	float: none;
	width: 100%;
}
.mari .newsli li img{
	float: none;
	width: 100%;
	height: auto;
}
.mari .newsli li .newsliri{
	float: none;
	width: 100%;
	padding: 0 10px;
}
.mari .newsli li h3{
	height: auto;
	font-weight: bold;
}
.mari .newsli li h3 span{
	font-weight: normal;
	color: #555;
	display: block;
	float: right;
}
.mari .newsli li p{
	width: 100%;
}
.mari .newsli li a:hover h3{
	color: #00ab4f;
}

/*新闻内页*/
.newsri .newstl{
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #ddd;
}
.newsri .newstl h3{
	text-align: center;
	font-size: 24px;
	color: #555;
	margin-bottom: 10px;
}
.newsri .newstl span{
	display: block;
	text-align: center;
	font-size: 14px;
	color: #666;
}

.mari .newsma{
	padding: 0 10px;
	margin-bottom: 20px;
}
.mari .newsma p{
	color: #444;
}

/*案例列表*/
.caseli{
	padding: 0 10px;
}
.caseli li{
	float: left;
	width: 48%;
	margin-right: 4%;
}
.caseli li:nth-child(3n){
	margin-right: 4%;
}
.caseli li:nth-child(2n){
	margin-right: 0px;
}

/*下载*/
.downli{
	padding: 0 10px;
}


/*联系我们*/
.contact{
	margin-bottom: 30px;
	padding: 0 10px;
}
.contact .contl h3{
	color: #FF6600;
	font-size: 25px;
	margin-bottom: 40px;

}
.contact .left{
	float: none;
	width: 100%;
	padding: 0 10px;
	margin-bottom: 30px;
}
.contact .left:after{
	clear: both;
	display: block;
	content: "";
}

.contact .left li{
	margin-bottom: 10px;
}
.contact .left input{
	width: 100%;
}

.contact .left textarea {
    width: 100%;
}

.contact .left input.submit{
}

.contact .right{
	float: none;
	width: 100%;
	padding: 0 10px;
}








}