﻿@charset "utf-8";
html,
body {
	font-size: 18px;
	font-family: "Microsoft YaHei", '微软雅黑';
}

* {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

a {
	text-decoration: none;
	cursor: pointer;
}

img {}

.fl {
	float: left;
}

.fr {
	float: right;
}

.mainb {
	width: 90%;
	margin: 0 auto;
}

.clear {
	clear: both;
}

.wl {
	width: 100%;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

.ftitle75 {
	text-align: center;
	position: relative;
	margin-bottom: 20px;
}

.ftitle75 span {
	color: #f1f1f1;
	font-size: 150px;
	display: block;
	margin: 0 auto -120px auto;
}

.ftitle75 h2 {
	font-size: 40px;
	color: #009C5A;
}

.ftitle75 p {
	color: #666;
	line-height: 35px;
}

.ftitle75 em {
	display: block;
	width: 150px;
	height: 4px;
	background: #eee;
	margin: 10px auto 0 auto;
}


/*头部开始*/

.head75 {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0));
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
}

.head75-pos {
	background: #fff;
}

.head75 .mainb:after,
.nav75 ul:after {
	content: "";
	display: block;
	clear: both;
}

.head75 .logo {
	width: 17%;
	float: left;
}

.head75 .logo1 {
	display: none;
}

.head75 .logo2 {
	height: 75px;
	margin: 5px 0;
	display: block;
}

.nav75 {
	/*width: 83%;*/
	width: 70%;
}

.nav75 ul {
	width: calc(100% - 80px);
	float: left;
}

.nav75 li {
	width: 12.5%;
	float: left;
	height: 85px;
	line-height: 85px;
	position: relative;
}

.nav75 li>a {
	text-align: center;
	font-size: 22px;
	color: #242e42;
	position: relative;
	transition: all .5s ease;
	display: block;
}

.nav75 li>a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #009C5A;
}

.nav75 li>a:hover:after {
	width: 100%;
	transition: all .6s;
}

.nav75 .down75 {
	min-width: 150%;
	background: url(../img/down.png) no-repeat 45px 0;
	padding: 14px 0 0;
	display: none;
}

.nav75 li:hover .down75 {
	display: block;
}

.nav75 .down75 div {
	background: rgba(255, 255, 255, 1);
	border-radius: 15px;
}

.nav75 .down75 div a {
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-bottom: 1px dashed #ccc;
	color: #009C5A;
	display: block;
}

.nav75 .down75 div a:hover {
	background: #009C5A;
	color: #fff;
}

.topma75 {
	width: 80px;
	height: 85px;
	line-height: 85px;
	position: relative;
	cursor: pointer;
}

.topma75>img {
	width: 60%;
	margin-left: 20%;
	vertical-align: middle;
	display: inline-block;
}

.topma75 span {
	display: none;
	position: absolute;
	top: 85px;
	left: 0;
	width: 100px;
	height: 100px;
	padding: 5px;
	    background: #fff;
	box-sizing: border-box;
}

.topma75 span img {
	width: 100%;
}

.topma75:hover span {
	display: block;
	transition: all .6s;
}


/*头部结束*/


/*banner开始*/

.slideshow-cont {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 1200px;
	overflow: hidden;
	background: black;
}

.slideshow {
	display: flex;
	align-items: center;
	width: 400vw;
	height: 50vh;
	transition: transform 1s cubic-bezier(0.7, 0, 0.3, 1) 0s;
}

.slideshow-a {
	transform: translateX(150vw);
}

.slideshow-b {
	transform: translateX(-150vw);
}

.slide {
	width: 100vw;
	height: 50vh;
	position: relative;
	display: flex;
	z-index: 1;
	font-size: 100px;
	font-family: 'Staatliches', cursive;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.slide img {
	position: absolute;
	width: 100%;
	height: 100vh;
}

.slideshow-a .slide img {
	top: 0;
}

.slideshow-b .slide img {
	bottom: 0;
}

.slideshow-b .slide:nth-of-type(4) {
	order: 1
}

.slideshow-b .slide:nth-of-type(3) {
	order: 2
}

.slideshow-b .slide:nth-of-type(2) {
	order: 3
}

.slideshow-b .slide:nth-of-type(1) {
	order: 4
}

.dot-cont {
	position: absolute;
	z-index: 11;
	bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	border-radius: 20px;
}

.dot {
	margin: 5px;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 0, 0.8);
	border-radius: 50%;
	transition: background 1s cubic-bezier(0.7, 0, 0.3, 1) 0s;
}

.dot img {
	width: 30px;
	height: auto;
}

.dot:hover {
	cursor: pointer;
	background: rgba(255, 255, 255, 0.2);
}

.dot-active {
	background: rgba(255, 255, 255, 0.3);
}

@keyframes fadeIn {
	0% {
		background: rgba(255, 255, 255, 0.1)
	}
	100% {
		background: rgba(255, 255, 255, 0.3)
	}
}


/*banner结束*/


/*公司简介开始*/

.about75 {
	padding-bottom: 60px;
}

.about75 .txt {
	width: 100%;
	text-align: center;
	color: #6d6d6d;
	line-height: 35px;
	height: 105px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.about75 .more {
	margin: 30px auto;
	width: 200px;
	text-align: center;
	height: 45px;
	line-height: 45px;
	border: 1px solid #ccc;
	color: #6d6d6d;
}

.about75 .more:hover {
	background: #242E42;
	border: 1px solid #242E42;
	color: #fff;
}

.about75 ul {
	width: 100%;
}

.about75 ul li {
	width: 25%;
	float: left;
	box-sizing: border-box;
	border-left: 1px solid #ccc;
	padding: 0 0 0 80px;
	margin-top: 40px;
}

.about75 ul li:first-child {
	border: none;
}

.about75 ul li b,
.about75 ul li span {
	display: block;
	line-height: 30px;
}

.about75 ul li b {
	font-size: 60px;
	margin-bottom: 30px;
	cursor:pointer;
}
.about75 ul li:hover b{
	animation: jello 1.2s;
	color:#009C5A;
}
@keyframes jello {
	from,
	11.1%,
	to {
		-webkit-transform: none;
		-moz-transform: none;
		transform: none
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		-moz-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		-moz-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg)
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		-moz-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		-moz-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}
	66.6% {
		-webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
		-moz-transform: skewX(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}
	77.7% {
		-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
		-moz-transform: skewX(0.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg)
	}
	88.8% {
		-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		-moz-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}
.about75 ul li span {
	color: #6d6d6d;
}


/*公司简介结束*/


/*产品开始*/

.pro75 {
	/*background: #242E42;*/
	background: url(../img/pro75-bj.jpg) fixed;
	background-size: 100% 100%;
	padding: 60px 0;
}

.pro75 li {
	width: 32.6666%;
	float: left;
	margin-left: 1%;
	margin-bottom: 20px;
	position: relative;
}

.pro75 li:first-child,
.pro75 li:nth-child(4) {
	margin-left: 0;
}

.pro75 li a {
	width: 100%;
	height: 518px;
	overflow: hidden;
}

.pro75 li a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s;
}

.pro75 li:hover a img {
	transform: scale(1.1);
}

.pro75 h3 {
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, .8);
	width: 100%;
	padding: 0 10px;
	box-sizing: border-box;
}

.pro75 h3 span {
	font-size: 20px;
	font-weight: normal;
	display: block;
	float: left;
	width: calc(100% - 30px);
	color: #fff;
	height: 50px;
	line-height: 50px;
	overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}

.pro75 h3 i {
	display: block;
	float: right;
	width: 30px;
	height: 50px;
	background: url(../img/arrow.png) no-repeat center center;
	background-size: 30px;
}


/*产品结束*/


/*案例开始*/

.case65 {
	background: url(../img/case75-bj.jpg) no-repeat center center;
	background-size: 100% 100%;
}

.case65 .con {
	margin-left: 5%;
	padding: 20% 0;
}

.case65 .con p {
	font-size: 30px;
	color: #fff;
	margin-bottom: 40px;
}

.case65 .con a {
	width: 180px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	background: #009C5A;
	color: #fff;
}


/*案例结束*/


/*广告条开始*/

.adv75 {
	background: #000;
	padding: 80px 0;
}

.adv75 p {
	margin-left: 5%;
	width: 70%;
	float: left;
	color: #fff;
	font-size: 28px;
	letter-spacing: 2px;
	line-height: 45px;
}

.adv75 .more {
	width: 250px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #009C5A;
	float: right;
	color: #fff;
	margin-top: 20px;
}


/*广告条结束*/


/*新闻开始*/

.news75 {
	padding-bottom: 60px;
}

.news75 ul {
	margin-top: 30px;
}

.news75 ul li {
	width: 31.333333%;
	float: left;
	margin-left: 2%;
}

.news75 ul li:first-child {
	margin-left: 0;
}

.news75 li .pic {
	width: 100%;
	height: 250px;
}

.news75 li .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news75 li h3 {
	margin-top: 20px;
	font-size: 20px;
	height: 35px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.news75 li .txt {
	color: #666;
	line-height: 35px;
	height: 70px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.news75 .more {
	color: #009C5A;
	margin: 20px 0;
}

.news75 .list {
	color: #727171;
}
.news75 .list li{
	width:100%;
	margin-left:0;
	height: 45px;
	line-height: 45px;
	border-bottom: 1px dashed #ccc;
}
.news75 .list li:after{
	content:"";
	display:block;
	clear:both;
}
.news75 .list a {
	width: 80%;
	float: left;
	color:#727171;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.news75 .list a:before {
	content: "--";
}
.news75 .list i{
	color:#727171;
	font-style:normal;
	text-align:right;
	float:right;
}

/*新闻结束*/


/*解决方案开始*/


/*解决方案结束*/


/*尾部开始*/

.flex {
	/*Flexbox for containers*/
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.waves {
	position: relative;
	width: 100%;
	height: 15vh;
	margin-bottom: -7px;
	/*Fix for safari gap*/
	min-height: 100px;
	max-height: 150px;
}


/* Animation */

.parallax > use {
	animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax > use:nth-child(1) {
	animation-delay: -2s;
	animation-duration: 7s;
}

.parallax > use:nth-child(2) {
	animation-delay: -3s;
	animation-duration: 10s;
}

.parallax > use:nth-child(3) {
	animation-delay: -4s;
	animation-duration: 13s;
}

.parallax > use:nth-child(4) {
	animation-delay: -5s;
	animation-duration: 20s;
}

@keyframes move-forever {
	0% {
		transform: translate3d(-90px, 0, 0);
	}
	100% {
		transform: translate3d(85px, 0, 0);
	}
}

.foot76 {
	background: #252525;
	padding-top: 30px;
}

.foot76 .top {
	border-bottom: #8c8c8c 1px solid;
	padding-bottom: 15px;
}

.foot76 .top:after,
.foot76 .bottom:after {
	display: block;
	content: "";
	clear: both;
}

.foot76 .top h3 {
	float: left;
	font-size: 24px;
	color: #fff;
	letter-spacing: 2px;
}

.foot76 .top div {
	float: right;
}

.foot76 .top div a,
.foot76 .top div span {
	float: right;
	color: #8c8c8c;
	height: 35px;
	line-height: 35px;
}

.foot76 .top div span {
	margin: 0 20px;
}

.foot76 .bottom {
	padding: 15px 0;
}

.foot76 .bottom ul {
	float: left;
}

.foot76 .bottom ul li {
	color: #8c8c8c;
}

.foot76 .bottom li span {
	margin-right: 30px;
	height: 35px;
	line-height: 35px;
}
.foot76 .bottom li span a{
	color:#8c8c8c;
}
.foot76 .bottom .ma {
	float: right;
}

.foot76 .bottom .ma img {
	width: 80px;
}


/*尾部结束*/


/*内页开始*/


/*内页公共部分*/


/*1---大图*/

.ibanner {
	height: 305px;
	margin-top: 85px;
	color: #fff;
	position: relative;
	text-align: center;
}

.iban1 {
	background: url(../img/ibanner.jpg) no-repeat center center;
	background-size: cover;
}

.iban2 {
	background: url(../img/ibanner2.jpg) no-repeat center center;
	background-size: cover;
}

.iban3 {
	background: url(../img/ibanner3.jpg) no-repeat center center;
	background-size: cover;
}

.iban4 {
	background: url(../img/ibanner4.jpg) no-repeat center center;
	background-size: cover;
}

.iban5 {
	background: url(../img/ibanner5.jpg) no-repeat center center;
	background-size: cover;
}

.iban6 {
	background: url(../img/ibanner6.jpg) no-repeat center center;
	background-size: cover;
}

.ibanner h2 {
	font-size: 32px;
	text-transform: uppercase;
	padding-top: 90px;
}

.ibanner h1 {
	letter-spacing: 2px;
}

.ibanner .mask {
	width: 100%;
	height: 100%;
	/*padding: 0 5%;
	box-sizing: border-box;*/
	background: rgba(0, 0, 0, .2);
	position: absolute;
	top: 0;
	left: 0;
}


/*2---内容*/

.icon {
	line-height: 35px;
	color: #666;
	    overflow: hidden;
}
.icon img{
	max-width:100%;
	height:auto;
}

/*3---内页二级栏目*/

.ibread {
	width: 100%;
	background: url(../img/ibread-bj.jpg) no-repeat center center;
	background-size: 100% 100%;
}

.ilocal {
	border-bottom: 1px solid #e6e6e6;
	height: 50px;
	line-height: 50px;
}

.ilocal:after {
	content: "";
	display: block;
	clear: both;
}

.ilocal_l {
	width: 80%;
}

.ilocal_l i {
	float: left;
	width: 30px;
	height: 50px;
	margin: 0px 10px 0 0;
	background: url(../img/ibread-icon.png) no-repeat center center;
	background-size: 100%;
}

.ilocal_l p,
.ilocal_l p a {
	display: inline-block;
	color: #666;
}

.ilocal_r {
	width: 20%;
	text-align: right;
}

.ilocal_r {
	float: right;
}

.ilocal_r a {
	color: #999;
}

.ibread .pro74-nav {
	margin: 20px 0;
}

.inav {
	padding: 20px 0;
	margin-bottom: 20px;
}
.poetryinav{
	margin-bottom:0;
}
.inav h2 {
	width: 200px;
	height: 50px;
	line-height: 50px;
	color: #333;
	float: left;
}

.inav h2:before {
	vertical-align: middle;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    display: inline-block;
    content: "";
    background: url(../img/local.png);
    background-size: 100%;
}

.inav ul{
	width: calc(100% - 200px);
	float: right;
}
.inav ul li{
	width: 14.16666%;
	float: left;
	margin-left: 3%;
	background: #fff;
    border-radius: 10px;
    border: 1px solid #f2f2f2;
    box-sizing: border-box;
    text-align: center;
    height: 50px;
    line-height: 50px;
    margin-bottom: 15px;
	overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}
.inav ul li:first-child,.inav ul li:nth-child(7),.inav ul li:nth-child(13),.inav ul li:nth-child(19){
	margin-left: 0;
}
.inav ul li a{
	color: #666;
	overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}
.inav ul li a:before{
	width: 10px;
    height: 10px;
    border: 2px solid #ddd;
    content: "";
    display: inline-block;
    margin-right: 10px;
    border-radius: 50%;
    line-height: 10px;
    vertical-align: unset;
}
.inav ul li:hover a{
	color: #009C5A;
	transition: all .6s;
}
.inav ul li:hover a:before{
	border: 2px solid #009C5A;
	transition: all .6s;
}
/*4---分页*/
.page {
	width: 100%;
	text-align: center;
	min-height: 30px;
}

.page .pagebox {
	text-align: center;
}

.pagebox span {
	border: 1px solid #ccc;
	margin-right: 10px;
	margin-bottom: 10px;
	width: 40px;
	line-height: 30px;
	display: inline-block;
	color: #7c7c7c;
	border-radius: 5px;
}

.pagebox span a {
	color: #7c7c7c;
	width: 100%;
	display: block;
}

.pagebox .pagebox_num_nonce {
	color: #fff;
	background: #009C5A;
	border: 1px solid #009C5A;
}

.pagebox .pagebox_pre,
.pagebox .pagebox_next_nolink,
.pagebox .pagebox_pre_nolink,
.pagebox .pagebox_next {
	width: 90px !important;
}
/*5---上一页下一页*/

.updown1 {
	margin: 20px 0;
}

.updown1:after {
	content: "";
	display: block;
	clear: both;
}

.updown1 span {
	font-weight: bold;
	color: #666;
}

.updown1 p {
	width: 48%;
	height: 42px;
	line-height: 42px;
	border-bottom: 1px solid #ddd;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 10px;
	background: url(../img/lubiao.png) no-repeat left center;
	padding-left: 20px;
	color: #666;
	box-sizing: border-box;
}
.inewsdetailI p{display:block;width:100%;}
.updown1 p a {
	color: #666;
}
/*公司简介*/

.iabout {}

.iabout .mainb{overflow:hidden;}

.iabout img {
	/* width: 100%; */
}
/* 诗歌 */
.poetry{
	background:url(../img/sg.jpg) no-repeat left center;
	background-size:100% 100%;
	line-height: 40px;
    font-weight: bold;
	letter-spacing:10px;
}
/*新闻列表*/
.inews-t{
	margin: 40px 0;
}
.inews-t ul{
	
}
.inews-t ul li{
	width: 32%;
	float: left;
	margin-bottom: 30px;
	padding: 40px 20px;
    border: solid 5px #f8f8f9;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all .7s;
    transition: all .7s;
    box-sizing: border-box;
    margin-left: 2%;
}
.inews-t ul li:first-child,.inews-t ul li:nth-child(4),.inews-t ul li:nth-child(7),.inews-t ul li:nth-child(10){
	margin-left: 0;
}
.inews-t ul li:after{
	content: "";
	display: block;
	clear: both;
}
.inews-t ul li:hover{
	border: 5px solid #009C5A;
}
.inews-t ul li a{
	display: block;
}
.inews-t li .date{
	width: 20%;
    text-align: center;
    color: #009C5A;
}
.inews-t li .date span{
	text-transform: uppercase;
    display: block;
    font-size: 30px;
    font-weight: bold;
}
.inews-t li .date em{
	display: block;
	margin: 10px auto;
	width: 60px;
	height: 1px;
	background: #009C5A;
}
.inews-t li .date p{
	    line-height: 35px;
}
.inews-t li .txt{
	    width: 77%;
}
.inews-t li .txt h3{
	color: #333;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 10px;
	overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}
.inews-t ul li:hover h3{
	color: #009C5A;
}
.inews-t li .txt p{
	color: #8c8c8c;
    line-height: 30px;
    height: 60px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
/*有侧边新闻详情*/

.inewsdetailII {}

.inewsdetailII .mainb:after {
	content: "";
	display: block;
	clear: both;
}

.inewsdetailII-con {
	width: 75%;
}

.inewsdetailII-con h2 {
	width: 100%;
	font-size: 40px;
	text-align: center;
	color: #333;
	font-weight: normal;
}

.inewsdetailII-con .info {
	height: 50px;
	line-height: 50px;
	margin: 20px 0;
	border-bottom: 1px dashed #a5a5a5;
	border-top: 1px dashed #a5a5a5;
	text-align: center;
}

.inewsdetailII-con .info span {
	display: inline-block;
	min-width: 120px;
	margin-right: 50px;
	color: #666;
}
.inewsdetailII-con .con img{
	max-width:100%;
	height:auto;
}
.irecom-r {
	width: 25%;
	padding-left: 60px;
	box-sizing: border-box;
}

.irecom-r .title {
	width: 100%;
	height: 40px;
	line-height: 40px;
	border-bottom: 2px solid #242E42;
}

.irecom-r .title span {
	display: inline-block;
	width: 150px;
	font-size: 20px;
	float: left;
	background: #242E42;
	color: #FFFFFF;
	text-align: center;
	font-weight: normal;
	letter-spacing: 2px;
}

.irecom-r .title em {
	float: right;
	text-transform: uppercase;
	
	font-size: 18px;
	font-weight: normal;
	font-style: normal;
}
.irecom-r .title em a{
	color: #999;
}
.irecom-r .pic-txt {
	width: 100%;
	margin-top: 20px;
}

.irecom-r .pic-txt:after {
	content: "";
	display: block;
	clear: both;
}

.irecom-r .pic-txt .pic {
	width: 30%;
	height: 100px;
	padding: 4px;
	background: #fff;
	box-shadow: 0px 0px 4px #555;
	box-sizing: border-box;
}

.irecom-r .pic-txt .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.irecom-r .pic-txt .txt {
	width: 68%;
}

.irecom-r .pic-txt .txt h3 {
	font-size: 20px;
	margin-bottom: 10px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.irecom-r .pic-txt .txt h3 a {
	color: #333;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.irecom-r .pic-txt .txt p {
	color: #999;
	line-height: 35px;
	height: 70px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.irecom-r ul {
	width: 100%;
	margin: 20px 0;
}

.irecom-r ul li {
	width: 100%;
	border-bottom: 1px dashed #999999;
	height: 50px;
	line-height: 50px;
}

.irecom-r ul li a {
	width: 80%;
	color: #555;
	display: inline-block;
	float: left;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.irecom-r ul li a:hover {
	color: #009C5A;
}

.irecom-r ul li a:before {
	vertical-align: middle;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	display: inline-block;
	content: "";
	background: url(../img/news-arrow.png);
	background-size: 100% 100%;
}

.irecom-r ul li span {
	text-align: right;
	float: right;
	display: inline-block;
	color: #555;
}
/* 无侧边栏新闻详情 */
.inewsdetailI {
	padding: 20px 0;
}

.inewsdetailI h2 {
	font-size: 40px;
	color: #262626;
	font-weight: normal;
	text-align: center;
	padding-bottom: 15px;
	border-bottom: 1px solid #d6d6d6;
}

.inewsdetailI .info {
	height: 50px;
	line-height: 50px;
}

.inewsdetailI .info:after {
	content: "";
	display: block;
	clear: both;
}

.inewsdetailI .info span {
	display: inline-block;
	float: left;
	min-width: 120px;
	margin-right: 50px;
	color: #aaa;
}

.inewsdetailI .info i {
	float: right;
	display: inline-block;
	color: #aaa;
	font-style: normal;
}

.inewsdetailI .desc {
	background: #f4f4f4;
	padding: 15px;
	box-sizing: border-box;
	margin: 20px 0;
}

.inewsdetailI .desc p {
	color: #666;
	line-height: 35px;
	height: 70px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.inewsdetailI .con {
	margin-bottom: 20px;
	line-height: 35px;
	color: #666;
}
.inewsdetailI .con img{
	max-width:100%;
	height:auto;
}
/*案例*/
.icase{
	margin: 40px 0;
}
.icase ul{
	
}
.icase ul li{
	width: 32%;
    float: left;
    margin-bottom: 30px;
    box-sizing: border-box;
    margin-left: 2%;
}
.icase ul li:first-child, .icase ul li:nth-child(4), .icase ul li:nth-child(7), .icase ul li:nth-child(10) {
    margin-left: 0;
}
.icase li a{
	display: block;
	width: 100%;
}
.icase li .pic{
	width: 100%;
	height: 507px;
	position: relative;
	overflow: hidden;
}
.icase li .pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s;
}
.icase li:hover .pic img{
	transform: scale(1.1);
}
.icase li .pic .mask{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.6) url(../img/add.png) no-repeat center center;
	opacity: 0;
}
.icase li:hover .pic .mask{
	opacity: 1;
}
.icase li h3{
	    color: #333;
    font-size: 20px;
    font-weight: normal;
    line-height: 50px;
    border-bottom: 1px solid #ccc;
    overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}
.icase li p{
	
}
.icase li p span{
    display: block;
    float: left;
    width: calc(100% - 30px);
    color: #666;
    height: 50px;
    line-height: 50px;
    overflow: hidden;white-space: nowrap;text-overflow: ellipsis;
}
.icase li p i{
	display: block;
    float: right;
    width: 30px;
    height: 50px;
    background: url(../img/arrow1.png) no-repeat center center;
    background-size: 30px;
}
/* 产品列表 */
.pro49-con {
	margin: 30px 0;
}

.pro49 .mainb {
	width: 98%;
}

.pro49-con li {
	width: calc(33.33% - 20px);
    margin-bottom: 20px;
    margin-left: 20px;
	float: left;
	position: relative;
}

.pro49-con li:first-child,
.pro49-con li:nth-child(4),.pro49-con li:nth-child(7),.pro49-con li:nth-child(10),.pro49-con li:nth-child(13),.pro49-con li:nth-child(16) {
	margin-left: 0;
}

.pro49-img {
	width: 100%;
	height: 548px;
}

.pro49-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pro49-mask {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: 1s;
	transition: 1s;
	transform: scale(0);
	-webkit-transform: scale(0);
}

.pro49-con li:hover .pro49-mask {
	transform: scale(1);
	-webkit-transform: scale(1);
	opacity: 1;
}

.pro49-mask a {
	display: block;
	width: 90%;
	height: 86%;
	margin: 5% auto auto auto;
	padding: 0 40px;
	box-sizing: border-box;
	background: rgba(0, 156, 90, .9);
	color: #fff;
}

.pro49-mask h3 {
	padding-top: 30%;
	text-align: left;
	letter-spacing: 1px;
	font-size: 26px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.pro49-mask em {
	display: block;
	width: 50px;
	height: 2px;
	background: #fff;
	margin: 20px 0;
}

.pro49-mask p {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
/* 图片新闻列表 */
.inews {
	padding-bottom: 20px;
	background: #f5f5f5;
}

.inews h2,
.imess h2 {
	font-size: 28px;
	letter-spacing: 2px;
	text-align: center;
	padding-top: 20px;
}

.inewslist {
	float: left;
	width: 100%;
	padding-top: 35px;
}

.inewslist li {
	float: left;
	margin: 0 0 39px 0;
	width: 100%;
	height: 300px;
	background: #FFFFFF;
}

.inewslist li .img {
	float: left;
	width: 30%;
	height: 300px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: center;
}

.inewslist li a.img i {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .7) url(../img/eye.png) no-repeat center center;
	background-size: 28px 22px;
	display: none;
}

.inewslist li a.img:hover i {
	display: block;
}

.inewslist li .time {
	float: left;
	width: 5%;
	height: 110px;
	padding: 17px 0 0 0;
	background: url(../img/db1.png) center center no-repeat;
	background-size: 100%;
	text-align: center;
	font-size: 18px;
	color: #fff;
	margin: 53px 0 0 -56px;
	position: relative;
	z-index: 9;
}

.inewslist li .time span {
	display: block;
	padding-top: 20px;
}

.inewslist li .con {
	float: right;
	margin: 60px 0 0 30px;
	width: 62%;
	padding: 0 44px 0 0;
	background: url(../img/db3.gif) right 49px no-repeat;
}

.inewslist li .con label {
	display: block;
	font-size: 12px;
	padding: 10px 0 35px;
	background: url(../img/db1.gif) left bottom no-repeat;
}

.inewslist li .con label font {
	color: #ebad4a
}

.inewslist li .con h4 {
	font-size: 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	color: #1d1d1d;
	padding: 2px 0 0;
}

.inewslist li .con span {
	display: block;
	line-height: 35px;
	height: 140px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	color: #666666;
	padding: 20px 0 0;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.inewslist li a:hover h4 {
	color: #643e33
}

.inews a.more {
	width: 200px;
	height: 45px;
	display: block;
	margin: 30px auto 0;
	text-align: center;
	color: #fff;
	font-size: 18px;
	line-height: 45px;
	border: 1px solid #e4e6e9;
	background: #ccc;
}

.inews a.more img {
	display: inline-block;
	vertical-align: middle;
}
/* 留言 */
.imess-con {
	margin-top: 20px;
}

.imess-con:after {
	content: "";
	display: block;
	clear: both;
}

.imess-mes {
	width: 55%;
	padding: 35px 6%;
	border-bottom: 5px solid #009C5A;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, .18);
	box-sizing: border-box;
}

.imess-mes h3,
.imess-info h3 {
	font-size: 30px;
	color: #333e46;
	letter-spacing: 2px;
	margin-bottom: 5px;
}

.imess-mes p,
.imess-info p {
	color: #595959;
	line-height: 35px;
	font-size: 16px;
}

input {
	border: 0;
	display: block;
	outline: none;
	background: none;
	box-sizing: border-box;
}

button {
	border: 0;
	display: block;
	outline: none;
	background: none;
	box-sizing: border-box;
}

textarea {
	border: 0;
	display: block;
	outline: none;
	background: none;
	box-sizing: border-box;
	resize: none;
}

.ilycon_img {
	width: 45%;
	padding-top: 15px;
}

.ily_form {
	width: 100%;
}

.ilycon_li {
	height: 66px;
	width: 100%;
	position: relative;
	margin-bottom: 14px;
	padding: 20px 0;
	border-bottom: 1px solid #434343;
	box-sizing: border-box;
	overflow: hidden;
}

.ilycon_li:nth-child(4) {
	height: 100px;
}

.ilycon_li input {
	width: 100%;
	height: 100%;
	position: relative;
	font-size: 16px;
	line-height: 26px;
	color: #ABABAB;
}

.ilycon_li textarea {
	width: 100%;
	height: 100%;
	position: relative;
	font-size: 16px;
	line-height: 26px;
	color: #949494;
	font-family: "微软雅黑";
}

.ilycli_box {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.ilycon_li img {
	position: absolute;
	top: 30%;
	bottom: 0;
	right: 0;
	margin: auto;
}

.ilycon_btn {
	width: 218px;
	height: 55px;
	background: #009C5A;
	border-left: 2px solid #009C5A;
	border-right: 2px solid #009C5A;
	border-radius: 22px;
	overflow: hidden;
	position: relative;
	text-align: center;
	cursor: pointer;
	margin-top: 30px;
}

.ilycon_sub {
	font-size: 18px;
	line-height: 55px;
	color: #fff;
}

.ilycon_btn:hover {
	opacity: 0.8;
	transition: 0.6s;
}

.imess-info {
	width: 42%;
	background: url(../img/mess-bj.png);
}

.imess-info p {
	height: 140px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.imess-info-con {
	line-height: 38px;
	margin-top: 30px;
	font-weight: bold;
	color: #000000;
}

.imess ul {
	width: 90%;
	margin: 60px auto 20px auto;
}

.imess ul:after {
	content: "";
	display: block;
	clear: both;
}

.imess ul li {
	width: 24.25%;
	margin-left: 1%;
	float: left;
	border: 1px solid #eee;
	background: #f7f7f7;
	border-radius: 30px;
	transition: all 0.6s;
	padding: 40px 40px 10px 40px;
	box-sizing: border-box;
	cursor: pointer;
}

.imess ul li:hover {
	box-shadow: 2px 2px 20px #ccc;
	transform: scale(1.02);
}

.imess ul li:first-child {
	margin-left: 0;
}

.imess li img {
	width: 60px;
	display: block;
	margin: 0 auto;
}

.imess li p {
	color: #333;
	text-align: center;
	font-size: 18px;
	line-height: 50px;
}

.imess li span {
	display: block;
	text-align: center;
	color: #009C5A;
	font-size: 20px;
	line-height: 30px;
	height: 60px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
/*商品详情页*/

.iprodetail-top {}

.iprodetail-top:after {
	content: "";
	display: block;
	clear: both;
}

.iprod-pic {
	width: 32%;
	overflow: hidden;
}

.iprod-pic img {
	width: 100%;
}

.iprod-info {
	width: 66%;
}

.iprod-info h2 {
	font-size: 30px;
	letter-spacing: 2px;
	color: #009C5A;
	padding-bottom: 10px;
	border-bottom: 2px solid #e0e1e2;
	position: relative;
}

.iprod-info h2:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	background: #009C5A;
	width: 10%;
	height: 2px;
}

.iprod-info p {
	color: #555;
	line-height: 35px;
	margin-top: 30px;
	height: 140px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.iprod-info ul {
	margin: 30px 0;
}

.iprod-info ul li {
	height: 50px;
	line-height: 50px;
	margin-bottom: 15px;
	color: #333;
	text-align: center;
}

.iprod-info ul li:after {
	content: "";
	display: block;
	clear: both;
}

.iprod-info ul li span {
	background: #f4f5f7;
	font-style: normal;
	display: block;
	width: 15%;
	float: left;
}

.iprod-info ul li i {
	background: #f4f5f7;
	font-style: normal;
	display: block;
	width: 83%;
	float: right;
}

.iprod-info .tel .more {
	width: 250px;
	height: 50px;
	line-height: 50px;
	background: #009C5A;
	color: #fff;
	display: inline-block;
	text-align: center;
}

.iprod-info .tel .more:before {
	vertical-align: middle;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	display: inline-block;
	content: "";
	background: url(../img/icon1.png);
	background-size: 100% 100%;
}

.iprod-info .tel em {
	font-size: 30px;
	font-style: normal;
	color: #009C5A;
	font-weight: bold;
	margin-left: 80px;
	line-height: 50px;
}

.iprod-info .tel em:before {
	vertical-align: middle;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	display: inline-block;
	content: "";
	background: url(../img/icon2.png);
	background-size: 100% 100%;
}

.iprodetail-bottom {
	margin-top: 20px;
}
.iprodetail-bottom img{
	max-width:100%;
	height:auto;
}
.iprodetail-bottom .title {
	margin-bottom: 20px;
}
.iprodetail-bottom .title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    border-bottom: 3px solid #009C5A;
}
.irecom-t .title span, .iprodetail-bottom .title span {
    display: inline-block;
    width: 200px;
    background: #009C5A;
    color: #FFFFFF;
    text-align: center;
    font-weight: normal;
    letter-spacing: 2px;
}
.iprodetail-bottom .title em {
    float: right;
    text-transform: uppercase;
    color: #999;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
}
/*Shrinking for mobile*/
@media screen and (max-width:1920px) {
	html,body {font-size: 16px;}
	
	.nav75 li>a,.pro75 h3 span,.news75 li h3,.iprodetail-bottom .title span,.inewslist li .con h4,.inews-t li .txt h3,.irecom-r .title span,.irecom-r .pic-txt .txt h3,.icase li h3,.imess li span {font-size: 18px;}
	
	.nav75 .down75 div a,.pro75 h3 span,.inewsdetailI .info{height: 45px;line-height: 45px;}
	
	.head75 .logo2 {height: 70px;}
	
	.head75 .logo {width: 21%;}
	
	.nav75 li,.topma75 {height: 80px;line-height: 80px;}
	
	.topma75>img {width: 52%;}
	
	.topma75 span{top:80px;}
	
	.slideshow-cont{height:900px;}
	
	.ftitle75 h2 {font-size: 34px;}
	
	.about75 ul li b {font-size: 54px;}
	
	.pro75 li a{height:391px;}
	
	.pro75 h3 i{height:45px;}
	
	.adv75 p {font-size: 24px;}
	
	.news75 li .pic {height: 220px;}
	
	.news75 li .txt {line-height: 30px;height: 60px;}
	/* 内页 */
	.inewsdetailI p{width:100%;}
	
	.ibanner {margin-top: 80px;}
	
	.ibanner h2 {font-size: 30px;}
	
	.ilocal_l i {background-size: 90%;}
	
	.inav h2 {font-size: 22px;}
	
	.inav h2:before {background-size: 92%;}
	
	.inav ul li,.inewsdetailII-con .info,.irecom-r ul li.inewsdetailII-con .info,.irecom-r ul li,.icase li p span {height: 45px;line-height: 45px;}
	
	.pro49-con li{margin-bottom:15px;}
	
	.pro49-img{height:449px;}
	
	.pro49-mask h3{font-size: 24px;}
	
	/*商品详情页*/
	.iprod-info h2 {
		font-size: 28px;
	}
	.iprod-info p {
		margin-top: 20px;
	}
	.iprod-info ul {
		margin: 20px 0;
	}
	.iprod-info .tel em {
		font-size: 28px;
	}
	.irecom-t .title span, .iprodetail-bottom .title span {width: 160px;}
	/* 新闻列表 */
	.inewslist{padding-top:0;}
	
	.inewslist li {margin: 0 0 30px 0;}
	
	.inewslist li .time{margin:53px 0 0 -44px;}
	
	.inewsdetailI h2 {font-size: 34px;}
	
	.inews-t ul li{padding:35px 20px;margin-bottom: 20px;}
	
	.inews-t li .date span {font-size: 26px;}
	
	.inewsdetailII-con h2{font-size:34px;}
	
	.irecom-r .title em{font-size:16px;}
	
	.irecom-r .pic-txt .txt p {line-height: 30px;height: 60px;}
	
	.irecom-r .pic-txt .pic {height: 90px;}
	
	.irecom-r ul li a {width: 76%;}
	
	.icase li .pic{height:383px;}
	
	.icase li h3{line-height:45px;}
	
	.icase li p i{height:45px;background-size: 25px;}
	
	.imess-mes h3, .imess-info h3 {font-size: 28px;}
	
	.ilycon_btn{height:45px;}
	
	.ilycon_sub{line-height:45px;}
	
	.imess li img {width: 50px;}
}
@media screen and (max-width:1600px) {
	html,body {font-size: 15px;}
	
	.nav75 li>a,.pro75 h3 span,.news75 li h3,.iprodetail-bottom .title span,.inewslist li .con h4,.inews-t li .txt h3,.irecom-r .title span,.irecom-r .pic-txt .txt h3,.icase li h3,.imess li span {font-size: 16px;}
	
	.nav75 .down75 div a,.pro75 h3 span,.inewsdetailI .info,.news75 .list a,.news75 .list li{height: 40px;line-height: 40px;}
	
	.head75 .logo2 {height: 60px;}
	
	.head75 .logo {width: 22%;}
	
	.nav75 li,.topma75 {height: 70px;line-height: 70px;}
	
	.topma75>img {width: 43%;}
	
	.topma75 span{top:70px;}
	
	.dot {width: 40px;height: 40px;}
	
	.dot img {width: 25px;}
	
	.slideshow-cont{height:730px;}
	
	.ftitle75 h2 {font-size: 30px;}
	
	.ftitle75 span {font-size: 110px;margin: 0 auto -95px auto;}
	
	.ftitle75 em {margin: 5px auto 0 auto;}
	
	.about75 .txt {line-height: 30px;height: 90px;}
	
	.about75 ul li b {font-size: 50px;margin-bottom: 20px;}
	
	.about75 ul li {margin-top: 20px;}
	
	.about75 {padding-bottom: 40px;}
	
	.pro75 {padding: 40px 0  30px 0;}
	
	.pro75 li a{height:326px;}
	
	.pro75 h3 i{height:45px;}
	
	.adv75 {padding: 50px 0;}
	
	.adv75 p {font-size: 20px;}
	
	.case65 .con {padding: 15% 0;}
	
	.case65 .con p {font-size: 28px;margin-bottom: 30px;}
	
	.news75 {padding-bottom: 40px;}
	
	.news75 li .pic {height: 190px;}
	
	.news75 li .txt {line-height: 25px;height: 50px;}
	
	.foot76 .bottom li span {height: 30px;line-height: 30px;}
	
	.foot76 .bottom li span a{display:inline-block;}
	/* 内页 */
	.inewsdetailI p{width:100%;}
	
	.ibanner {margin-top: 70px;}
	
	.ibanner {height: 250px;}
	
	.ibanner h2 {font-size: 28px;}
	
	.ilocal_l i {background-size: 83%;}
	
	.inav h2 {font-size: 22px;}
	
	.inav h2:before {background-size: 100%;width: 25px;height: 25px;}
	
	.inav ul li,.inewsdetailII-con .info,.irecom-r ul li.inewsdetailII-con .info,.irecom-r ul li,.icase li p span,.iprod-info .tel .more,.iprod-info ul li,.iprodetail-bottom .title {height: 40px;line-height: 40px;}
	
	.icon {line-height: 30px;}
	
	.pro49-con li{margin-bottom:20px;}
	
	.pro49-img{height:348px;}
	
	.pro49-mask h3{font-size: 20px;}
	
	/*商品详情页*/
	.iprod-info h2 {
		font-size: 24px;
	}
	.iprod-info p {
		line-height: 30px;
		height: 120px;
	}
	.iprod-info .tel em {
		font-size: 26px;
	}
	/* 新闻列表 */
	.inewslist li .con span {line-height: 30px;height: 120px;}
	
	.inewslist li .img,.inewslist li {height: 250px;}
	
	.inewslist li .time{margin:53px 0 0 -36px;font-size: 16px;}
	
	.inewsdetailI h2 {font-size: 30px;}
	
	.inews-t ul li{padding:25px 20px;}
	
	.inews-t li .date {width: 23%;}
	
	.inews-t li .date span {font-size: 24px;}
	
	.inews-t li .date em {margin: 10px auto 2px auto;}
	
	.inews-t li .txt {width: 72%;}
	
	.inews-t li .txt p {line-height: 25px;height: 50px;}
	
	.inewsdetailII-con h2{font-size:30px;}
	
	.irecom-r .title em{font-size:15px;}
	
	.irecom-r ul li a {width: 71%;}
	
	.icase li .pic{height:319px;}
	
	.icase li h3{line-height:40px;}
	
	.icase li p i{height:40px;background-size: 25px;}
	
	.imess-mes h3, .imess-info h3 {font-size: 26px;}
	
	.ilycon_btn{height:40px;}
	
	.ilycon_sub{line-height:40px;}
	
	.imess li img {width: 45px;}
	
	.ilycon_sub{font-size:16px;}
}

@media screen and (max-width:1440px) {
	
	.slideshow-cont{height:670px;}
	
	.pro75 h3{height:40px;}
	
	.pro75 li a {height: 293px;}
	
	.adv75 p {font-size: 18px;}
	
	.pro49-img {height: 312px;}
	
	.updown1 p {width: 45%;}
	
	.inewsdetailII-con {width: 70%;}
	
	.irecom-r {width: 29%;}
	
	.inewslist li .time {padding: 31px 0 0 0;font-size: 14px;}
	
	.inewsdetailI p{width:100%;}
	
	.icase li .pic {height: 287px;}
	
	.inews-t li .date {width: 26%;}
	
	.inews-t li .txt {width: 68%;}
	
	.inewslist li .con {width: 61%;}
}

@media screen and (max-width:1360px) {
	
	.slideshow-cont{height:600px;}
	
	.about75 .more {height: 40px;line-height: 40px;}
	
	.pro75 li a {height: 277px;}
	
	.adv75 p {line-height:35px;}
	
	.pro49-img {height: 294px;}
	
	.inews-t li .date {width: 26%;}
	
	.inews-t li .txt {width: 67%;}
	
	.updown1 p {width: 45%;}
	
	.inewsdetailII-con {width: 70%;}
	
	.irecom-r {width: 29%;}
	
	.inewslist li .time {padding: 31px 0 0 0;font-size: 14px;}
	
	.inewsdetailI p{width:100%;}
	
	.icase li .pic {height: 287px;}
	
	.inewslist li .con {width: 60%;}
}

@media screen and (max-width:1280px) {
	
	.slideshow-cont{height:550px;}
	
	.inews-t li .date {width: 28%;}
	
	.inews-t li .txt {width: 65%;}
	
	.irecom-r ul li a {width: 69%;}
	
	
}

@media screen and (max-width: 959px) {
	html,
	body {
		min-width: 768px;
		max-width: 768px;
		overflow-x: hidden;
	}
	.mainb {width: 98%;}
	
	.nav75{display:none;}
	
	.head75 .logo {width: auto;}
	
	.nav75 {display: none;position: fixed;width: 100%;height: 100%;top: 70px;margin-left: 0;float: none;background: #F5F5F5;padding: 20px 0;z-index: 3;right: -100%;transition: all .5s;}
				
	.nav75.lef {right: 0;}
				
	.navbtn {position: absolute;right: 10px;top: 23px;display: block;background: transparent;outline: none;border: none;}
				
	.navbtn span {display: block;width: 28px;height: 3px;background-color: #333333;margin-left: calc(50% - 15px);margin-bottom: 5px;transition: all .5s ease-out;transform-origin: 0 0;background: #009C5A;}
					
	.navbtn.active {padding: 2px;}
	
	.navbtn.active span:first-child {transform: rotate(45deg) translate(5px, -4px);}
	
	.navbtn.active span:nth-child(2) {opacity: 0;}
				
	.navbtn.active span:last-child {transform: rotate(-45deg) translate(-1px, 6px);}
				
	.nav75 ul {width: 100%;}
	
	.topma75{display:none;}
	
	.nav75 li {width: 100%;border-bottom:1px dashed #009C5A;height: 60px;line-height: 60px;}
	
	.nav75 .down75{display:none!important;}
	
	.slideshow-cont{height:360px;}
	
	.slideshow-a{display:none!important;}
	
	.slideshow,.slide,.slide img{height:100%;}
	
	.ftitle75 span{display:none;}
	
	.ftitle75{padding-top:15px;}
	
	.ftitle75 h2 {font-size: 24px;}
	
	.about75 {padding-bottom: 20px;}
	
	.about75 ul{display:none;}
	
	.about75 .more{margin:30px auto 0 auto;}
	
	.pro75 {padding: 20px 0 0px 0;}
	
	.pro75 li a {height: 170px;}
	
	.adv75 p{margin-left:0;width:100%;    float: none;}
	
	.adv75 .more {float: none;margin: 20px auto 0 auto;}
	
	.case65 .con {padding: 7% 0;}
	
	.news75 ul {margin-top: 15px;}
	
	.news75 ul li{width:100%;margin-bottom: 15px;margin-left: 0;}
	
	.news75 .list li{margin-bottom:0;}
	
	/* 内页 */
	
	.ibanner {height: 180px;}
	
	.ibanner h2,.ibanner h1 {font-size: 24px;}
	
	.ibanner h2 {padding-top: 60px;}
	
	.inav{padding:0;}
	
	.inav ul li {width: 31.333333%;margin-bottom: 10px;}
	
	.inav ul li:nth-child(3n-2){margin-left:0;}
	
	.inav h2{width:100%;text-align:center;}
	
	.inav ul{width:100%;}
	
	.pro49-img {height: 159px;}
	
	.pro49-mask a {padding: 0 20px;}
	
	.pro49-mask h3 {font-size: 18px;padding-top: 15%;}
	
	.iprod-pic{width:100%;}
	
	.iprod-info{width:100%;}
	
	.inews-t {margin: 20px 0;}
	
	.inews-t ul li {width: 49%;margin-bottom: 8px;}
	
	.inews-t ul li:nth-child(2n-1){margin-left:0;}
	
	.inews-t ul li:nth-child(2n){margin-left:1%;}
	
	.inewsdetailII-con {width: 100%;}
	
	.inewsdetailII-con h2,.inewsdetailI h2 {font-size: 26px;}
	
	.irecom-r {width: 100%;padding-left: 0px;}
	
	.inews{padding-top:20px;}
	
	.inewslist li .con {box-sizing: border-box;margin: 20px 0 0 20px;}
	
	.inewslist li .con span {line-height: 30px;height: 90px;-webkit-line-clamp:3;}
	
	.inewslist li .img, .inewslist li {height: 180px;margin: 0 0 20px 0;}
	
	.inewslist li .time{width:10%;margin: 20px 0 0 -36px;}
	
	.inewsdetailI .info span {min-width: 100px;}
	
	.inewsdetailI .desc p {line-height: 30px;height: 60px;}
	
	.inewsdetailI .con {line-height: 30px;}
	
	.imess-mes {width: 100%;}
	
	.inews h2, .imess h2 {font-size: 20px;}
	
	.imess-mes h3, .imess-info h3 {font-size: 22px;}
	
	.imess-info {width: 100%;margin-top:20px;}
	
	.imess-info p {line-height:30px;height: 120px;-webkit-line-clamp: 4;}
	
	.imess ul li{width: 49.5%;padding: 20px 20px 10px 20px;margin-bottom:5px;}
	
	.imess ul li:nth-child(2n-1) {margin-left: 0;}
	
	.imess ul {width: 98%;margin: 30px auto 0px auto;}
	
	.imess li p {font-size: 16px;}
	
	.imess li span{font-size: 18px;}
	
	.icase li .pic{height:166px;}
	
	.icon img{width:100%;height:auto;}
	
	.poetry {letter-spacing: 5px;}
}

@media (max-width: 768px) {
	.waves {
		height: 40px;
		min-height: 40px;
	}
}
@media screen and (max-width:640px) {
	html,
	body {
		min-width: 100%;
		max-width: 100%;
		margin:0;
	}
	
	.head75 .logo2 {height: 50px;}
	
	.nav75{top:60px;}
	
	.nav75 li {height: 55px;line-height: 55px;}
	
	.slideshow-cont{height:176px;}
	
	.dot {width: 30px;height: 30px;}
	
	.dot img {width: 17px;}
	
	.dot-cont{bottom:-2px;}
	
	.ftitle75 h2 {font-size: 22px;}
	
	.pro75 li {width: 49.5%;margin-bottom: 5px;}
	
	.pro75 li:nth-child(2n-1) {margin-left: 0;}
	
	.pro75 li:nth-child(2n) {margin-left: 1%;}
	
	.adv75 p {font-size: 16px;line-height: 30px;}
	
	.news75 .list a {width: 75%;}
	
	.foot76 .top div,.foot76 .top div a, .foot76 .top div span {float: left;}
	
	.foot76 .bottom .ma {float: left;margin-top:10px;}
	
	.foot76 .bottom li span{display:block;height:auto;}
	
	/* 内页 */
	.ibanner {margin-top: 60px;}
	
	.ibanner h2, .ibanner h1 {font-size: 22px;}
	
	.ibanner {height: 120px;}
	
	.ibanner h2 {padding-top: 34px;}
	
	.pro49-con {margin: 20px 0;}
	
	.pro49-con li {width: calc(50% - 5px);margin-bottom: 5px;margin-left: 5px;}
	
	.pro49-con li:nth-child(2n-1){margin-left:0;}
	
	.pro49-con li:nth-child(2n){margin-left:1%;}
	
	.iprod-info ul li {height: 60px;line-height: 30px;}
	
	.iprod-info ul li span {
		width: 11%;
		height: 60px;
	}
	.iprod-info ul li i {
		width: 87%;
		height: 60px;
	}
	.iprod-info .tel em {
		margin-left: 0px;
		display: block;
	}
	.iprodetail-bottom img {
		width: 100%;
		height: auto;
	}
	
	.iprodetail-bottom .title em{font-size:16px;}
	
	.updown1 p{width:100%;}
	
	.inews-t ul li {width: 100%;}
	
	.inews-t ul li:nth-child(2n){margin-left:0;}
	
	.inewsdetailII-con h2, .inewsdetailI h2 {font-size: 24px;}
	
	.inewsdetailII-con .info{height:auto;line-height:30px;}
	
	.inewsdetailII-con .info span{float: left;min-width: 120px;text-align:left;margin-right: 40px;}
	
	.inewsdetailII-con .info:after{content:"";display:block;clear:both;}
	
	.inewslist li .img, .inewslist li{height:auto;}
	
	.inewslist li .img{width:100%;height:254px;margin:0;}
	
	.inewslist li .time{display:none;}
	
	.inewslist li .con{width:100%;padding:0 10px 0 0;}
	
	.inewsdetailI .info {height: auto;line-height: 30px;}
	
	.inewsdetailI .info i{float:left;}
	
	.inewsdetailI .con img{width:100%;}
	
	.imess li img {width: 40px;}
	
	.icase{margin:15px 0;}
	
	.icase ul li {width: 49.5%;margin-left:1%;}
	
	.icase ul li:nth-child(2n-1){margin-left:0;}
	
	.icase ul li:nth-child(2n){margin-left:1%;}
	
	.icase li .pic {height: 125px;}
	
	.poetry {letter-spacing: 2px;}
}