@charset "utf-8";

.fl {
	float: left;
}

.fr {
	float: right;
}

@-webkit-keyframes ripple {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.1, 0.1);
	}

	5% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(1)
	}
}

@-moz-keyframes ripple {
	0% {
		opacity: 0;
		-moz-transform: scale(0.1, 0.1);
	}

	5% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-moz-transform: scale(1)
	}
}

@-o-keyframes ripple {
	0% {
		opacity: 0;
		-o-transform: scale(0.1, 0.1);
	}

	5% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-o-transform: scale(1)
	}
}

@keyframes ripple {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.1, 0.1);
		-moz-transform: scale(0.1, 0.1);
		-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
	}

	5% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

/* 首页bannner */
.banner,
.banner .swiper-container,
.banner .swiper-slide {
	overflow: hidden;
	width: 100%;
}

.banner .swiper-slide {
	position: relative;
}

.banner .swiper-slide img {
	width: 100%;
	height: auto;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 10px;
}

.banner .swiper-pagination-bullet {
	width: 15px;
	height: 15px;
	opacity: 1;
	border-radius: 50%;
	background-color: #fff;
}

.banner .swiper-pagination-bullet-active {
	background-color: #009944;
}

.banner .swiper-container-horizontal>.swiper-pagination-bullets,
.banner .swiper-pagination-custom,
.banner .swiper-pagination-fraction {
	bottom: 20px;
}

.banner .swiper-button-prev,
.banner .swiper-container-rtl .swiper-button-next {
	background: url(../images/left.png)
}

.banner .swiper-button-next,
.banner .swiper-container-rtl .swiper-button-prev {
	background: url(../images/right.png)
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
	width: 51px;
	height: 93px;
	margin-top: -46px;
}

/* 商标 */
.trademark {
	width: 1200px;
	background-color: #fff;
	border-radius: 15px;
	margin: 0 auto;
	margin-top: -95px;
	position: relative;
	z-index: 2;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.trademark-box {
	display: flex;
	justify-content: space-between;
	padding: 35px 58px;
}

.trademark-box a {
	display: block;
	width: 120px;
	height: 120px;
	overflow: hidden;
	border-radius: 50%;
	box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.2);
}

.trademark-box a img {
	width: 100%;
	height: 100%;
}

/* 首页简介 */
.about-title {
	margin-bottom: 50px;
}

.about-title em {
	display: block;
	text-align: center;
	font-size: 44px;
	font-weight: bold;
	color: #e4e4e4;
	text-transform: uppercase;
}

.about-title h4 {
	font-size: 40px;
	text-align: center;
	font-weight: bold;
	color: #00ac4c;
}

.about-title h4 span {
	color: #ffae00;
}

.about-index-text {
	text-align: center;
	font-size: 18px;
	line-height: 30px;
	color: #333;
	width: 85%;
	margin: 0 auto;
	min-width: 1200px;
}

.about-index-list {
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
}

.about-index-list li {
	width: 32%;
	background: linear-gradient(to right, #75c241, #29a549);
	border-radius: 10px;
	padding: 25px;
	box-sizing: border-box;
}

.about-index-list li img {
	width: 60px;
	height: auto;
}

.about-index-list li h4 {
	font-size: 22px;
	color: #fff;
	font-weight: bold;
	margin-top: 10px;
}

.about-index-list li p {
	margin-top: 5px;
	font-size: 14px;
	line-height: 22px;
	color: #fff;
	height: 44px;
	overflow: hidden;
}

/*关于我们*/
.about-jj p {
	/* text-indent: 2em;*/
	font-size: 14px;
	color: #333;
	line-height: 30px;
	margin-bottom: 5px;
}

/*案例展示*/
.product-case a {
	float: left;
	width: 280px;
	margin-right: 26px;
	margin-bottom: 30px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.product-case a:nth-child(4n) {
	margin-right: 0;
}

.product-case a i {
	display: block;
	width: 280px;
	height: 280px;
	padding: 0px 0px;
	overflow: hidden;
	background-color: #fff;
}

.product-case a i img {
	max-width: 100%;
	margin: 0 auto;
	height: 280px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.product-case a div {
	position: relative;
	text-align: center;
	background: #FFF;
	height: 48px;
	overflow: hidden;
	padding: 0 20px;
}

.product-case a div h4 {
	margin-top: 15px;
	font-size: 16px;
	color: #333;
	text-align: center;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.product-case a div p {
	margin-top: 15px;
	font-size: 16px;
	color: #9b9996;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.product-case a div em {
	position: absolute;
	font-size: 14px;
	text-align: center;
	left: 0;
	color: #fff;
	bottom: -48px;
	height: 48px;
	width: 100%;
	line-height: 48px;
	background: #009b4c;
	display: block;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.product-case a:hover div em {
	bottom: 0;
}

.product-case a:hover div h4,
.product-case a:hover div p {
	margin-top: 10px;
}

.product-case a:hover {
	box-shadow: 0 0 10px #666
}

/* .product-case a:hover i img {
	padding: 20px 0px;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1)
} */

/*新闻详情*/
.news-xq{
	margin-top: 30px;
}
.news-xq-tit h2 {
	text-align: center;
	font-size: 24px;
	color: #333;
	font-weight: bold;
	margin-bottom: 5px;
}

.news-xq-tit p {
	text-align: center;
	font-size: 14px;
	color: #999999;
	line-height: 24px;
}

.news-xq-tit p span {
	margin: 0 10px;
}

.news-xq-tit {
	padding-bottom: 10px;
	border-bottom: 1px dashed #ddd;
	margin-bottom: 30px;
}

.news-xq-c p {
	font-size: 14px;
	color: #333;
	line-height: 24px;
	margin-bottom: 10px;
	/*text-indent: 2em;
	margin-bottom: 20px;*/
}

.news-xq ul li a {
	font-size: 14px;
	color: #333;
	line-height: 24px;
}

.news-xq-c img {
	max-width: 80%;
	/*width: 80%;*/
	margin: 0 auto;
}

/*.news-xq ul li:first-child a{
	display: block;
	width: 120px;
	text-align: center;
	line-height: 34px;
	border: 1px solid #b5b5b5;
	border-radius: 50px;
	color: #b5b5b5;
	padding-left: 20px;
	background: url(../img/news/fh.png) no-repeat 30px center;
}*/
.news-xq-c {
	padding-bottom: 40px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 50px;
}

.news-xq ul li:first-child {
	margin-bottom: 20px;
}

/*新闻列表*/
.news-list li {
	padding: 25px 60px 20px 20px;
	margin-top: 40px;
	background: #FFF;
	margin-bottom: 35px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.news-list li .imga {
	float: left;
	display: block;
	overflow: hidden;
	position: relative;
	width: 320px;
	height: 205px
}

.news-list li .imga img {
	width: 100%;
	height: 100%;
}

.news-list li .imga .cate {
	position: absolute;
	top: 35px;
	left: 0;
	padding-right: 20px;
	background: #ff6700;
	line-height: 32px;
	color: #FFF
}

.news-list li .imga .cate i {
	float: left;
	width: 30px;
	height: 30px;
	margin: 1px 8px 1px 0;
	background: url(../images/public.png) -180px -30px no-repeat
}

.news-list li .info {
	overflow: hidden;
	width: 760px;
	float: right;
}

.news-list li .info .line {
	border-left: 52px solid #c10003;
	background: #D8D8D8;
	margin-bottom: 35px;
	height: 1px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.news-list li .info .tit {
	height: 44px;
	line-height: 44px;
	font-weight: normal;
	font-size: 20px;
	margin-bottom: 6px
}

.news-list li .info .tit a {
	color: #333;
}

.news-list li .info .tit a em {
	font-weight: normal;
	color: #c10003;
	margin-right: 10px;
	text-transform: uppercase;
	font-size: 14px;
}

.news-list li .info .note {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin: 0 0 25px;
	line-height: 24px;
	color: #6A6969
}

.news-list li:hover {
	box-shadow: 0 0 10px #666;
	transform: translate3d(0, -8px, 0);
	-webkit-transform: translate3d(0, -8px, 0);
	-moz-transform: translate3d(0, -8px, 0);
	-ms-transform: translate3d(0, -8px, 0);
}

.news-list li:hover .info .line {
	border-left-width: 760px
}

/*服务项目*/
.product-list a {
	float: left;
	overflow: hidden;
	border-radius: 8px;
	position: relative;
	width: 380px;
	height: 300px;
	margin-right: 30px;
	margin-bottom: 30px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.product-list a:nth-child(3n) {
	margin-right: 0;
}

.product-list a img {
	width: 100%;
	height: 100%;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

.product-list a h4 {
	position: absolute;
	font-size: 36px;
	font-family: "宋体";
	font-weight: bold;
	color: #fff;
	text-align: center;
	width: 100%;
	left: 0;
	height: 100%;
	line-height: 300px;
	top: 0;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.product-list a:hover h4 {
	top: -20px;
}

.product-list a:hover img {
	/*-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1)*/
}

.product-list a:hover {
	box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
	transform: translate3d(0, -8px, 0);
	-webkit-transform: translate3d(0, -8px, 0);
	-moz-transform: translate3d(0, -8px, 0);
	-ms-transform: translate3d(0, -8px, 0);
}

/*在线留言*/
.ly-box {
	padding: 50px;
	background-color: #fff;
}

.ly-box li {
	position: relative;
	width: 45%;
	float: left;
	margin-left: 2%;
	margin-bottom: 15px;
	border: 1px solid #ddd;
}

.ly-box li:nth-child(2n) {
	float: right;
	margin-left: 0;
}

.ly-box li label {
	position: absolute;
	line-height: 40px;
	height: 40px;
	font-size: 14px;
	color: #333;
	left: -40px;
}

.ly-box li input {
	width: 100%;
	line-height: 40px;
	height: 40px;
	box-sizing: border-box;
	padding: 0 10px;
	font-size: 14px;
	color: #666;
}

.ly-box li:last-child {
	width: 98%;
}

.ly-box li textarea {
	width: 100%;
	height: 180px;
	display: block;
	box-sizing: border-box;
	padding: 10px;
	font-size: 14px;
	color: #666;
	resize: none;
}

.ly-box form>input {
	display: inline-block;
	width: 184px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	font-size: 14px;
	color: #fff;
	border-radius: 5px;
	background-color: #ffae00;
	margin-left: 22px;
	margin-top: 10px;
}

.ly-box .site {
	border: none;
}

.ly-box .site input {
	width: 234px;
	border: 1px solid #ddd;
}

.ly-box .site span {
	margin: 0 10px;
}

/*联系我们*/
.contact-tit {
	margin-bottom: 60px;
}

.contact-tit h2 {
	text-align: center;
	font-size: 36px;
	color: #333;
}

.contact-tit i {
	display: block;
	width: 90px;
	height: 1px;
	background-color: #ccc;
	margin: 8px auto 0;
}

.contact-tit p {
	text-align: center;
	font-size: 14px;
	color: #888;
	line-height: 36px;
}

.contact-c-l {
	width: 500px;
}

.contact-c-l h5 {
	font-size: 18px;
	color: #333;
	line-height: 30px;
	margin-bottom: 50px;
}

.contact-c-l div p {
	font-size: 14px;
	color: #666;
	line-height: 30px;
}

.contact-c-l div p a {
	color: #007CC3;
}

.contact-c-l div {
	margin-bottom: 40px;
}

.contact-map {
	width: 650px;
}

.contact-map img {
	width: 100%;
	height: auto;
}

.contact {
	margin-bottom: 100px;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	zoom: 1;
	/* IE <8 */
}

/*标题展示*/
.tb_img {
	margin: 0px 10px;
	display: inline !important;
}

.public-header {
	text-align: center;
	margin-bottom: 60px;
}

.public-header-d1 {
	margin-top: 10px;
}

.bg_01,
.bg_02 {
	width: 440px;
	height: 15px;
	background: url(../images/i-bg2.png) no-repeat;
	display: inline-table;
	margin-bottom: 10px;
}

.public-header-d1-d1 {
	width: 412px;
	height: 15px;
	background: url(../images/i-bg1.png) no-repeat;
	display: inline-table;
	margin-bottom: 10px;
}

.public-header-d1-d2 {
	font-size: 35px;
	font-weight: bold;
	color: #ce9c3a;
	display: inline-table;
	padding: 0px 25px;
}

.public-header-d1-d2 i {
	color: #094;
	font-size: 35px;
}

.public-header span {
	font-weight: bold;
	font-size: 20px;
	color: #bcb8b7;
	text-transform: uppercase;
}

.public-header-d2 {
	color: white;
	font-size: 28px;
	margin-top: 10px;
	border-bottom: 2px solid white;
	width: 30%;
	margin: 10px auto 0px;
}

.public-header-d3 {
	font-size: 16px;
}

/*  首页优势开始 */
.i-servers {
	padding: 60px 0px;
}

.i-servers-nr ul {
	display: flex;
	justify-content: space-between;
}

.i-servers-nr ul li {
	width: 282px;
	height: 340px;
	border-radius: 2px;
	border: 1px solid #ddd;
}

.i-servers-nr ul li img {
	margin: 0 auto;
	width: 120px;
	padding-top: 20px;
	margin-bottom: 6%;
}

.i-servers-nr ul li h2 {
	font-size: 18px;
	color: #009b4c;
	padding: 20px 0px;
	text-align: center;
}

.i-servers-nr ul li p {
	font-size: 14px;
	padding: 0px 10px;
}

.ys_bg {
	width: 282px;
	height: 160px;
	line-height: 160px;
	background: #009b4c;
}

.ys_img {
	width: 250px !important;
	padding-top: 0px !important;
}

/* 关于我们 */
.i-about {
	padding-top: 60px;
	padding-bottom: 88px;
	background-color: #f8f8f8;
}

.i-about-box {}

.i-about-box-d1 {
	width: 49%;
	float: left;
	height: 492px;
}

.i-about-box-d1-d1 {
	padding-top: 30px;
}

.i-about-box-d1-d1 img:nth-child(1) {
	width: 150px;
	height: 255px;
	border: 1px solid #d2d2d2;
	padding: 3px;
	float: left;
	margin-left: 140px;
}

.i-about-box-d1-d1 img:nth-child(2) {
	border: 1px solid #d2d2d2;
	padding: 3px;
	width: 230px;
	height: 290px;
	margin-left: 30px;
	float: left;
}

.i-about-box-d1-d2 {
	padding: 32px 18px 20px 135px;
}

.i-about-box-d1 a {
	padding: 10px 31px;
	text-align: right;
	width: auto;
	background-color: #009944;
	color: white;
	float: right;
	font-size: 14px;
	border-radius: 5px;
}

.i-about-box-d2 {
	background: url(../images/about.png) no-repeat left 10px;
	width: 51%;
	float: left;
	height: 492px;
}

.i-about-box-d2>p {
	padding-left: 80px;
	color: #009944;
	font-size: 25px;
	margin-top: 60px;
}

.i-about-box-d2 p span {
	color: #ce9c3a;
}

.more_gg {
	padding: 32px 18px 20px 135px;
}

.i-about-box-d2-d1 {
	padding-left: 40px;
	margin-top: 10px;
}

.i-about-box-d2-d1 p {
	text-align: justify;
}

.i-about-box-d2-d2 {
	padding-left: 40px;
	margin-top: 50px;
}

.i-about-box-d2-d2 img:nth-child(1) {
	width: 230px;
	height: 150px;
	border: 1px solid #d2d2d2;
	padding: 3px;
	float: left;
	/* margin-left: 20px; */
}

.i-about-box-d2-d2 img:nth-child(2) {
	width: 230px;
	height: 150px;
	border: 1px solid #d2d2d2;
	padding: 3px;
	float: left;
	margin-left: 17px;
}


/* 首页产品展示 */
.i-anli {
	padding: 60px 0px 60px;
	background: url(../images/product_bg.jpg) no-repeat center;
	background-size: cover;
	height: 1200px;
	box-sizing: border-box;
}

.title-index {
	text-align: center;
	margin-bottom: 70px;
}

.title-index h4 {
	font-size: 40px;
	color: #00ac4c;
	position: relative;
	line-height: 42px;
	margin-bottom: 20px;
	font-weight: bold;
	height: 42px;
}

.title-index h4::after {
	position: absolute;
	content: '';
	display: block;
	height: 2px;
	width: 400px;
	background-color: #eee;
	position: absolute;
	right: 0;
	top: 21px;
}

.title-index em {
	margin: 0 10px;
	font-weight: normal;
	font-size: 25px;
}

.title-index h4::before {
	position: absolute;
	content: '';
	display: block;
	height: 2px;
	width: 400px;
	background-color: #eee;
	left: 0;
	top: 21px;
}

.title-index.active h4::before,
.title-index.active h4::after {
	background-color: #fff;
}

.title-index.active h4 {
	color: #fff;
}

.title-index p {
	font-size: 16px;
	color: #999;
}

.title-index.active p {
	color: #fff;
}

.title-index h4 .cur {
	color: #ffae00;
}

.i-ani-more {
	text-align: center;
}

.i-ani-more a {
	background-color: #000;
	height: 45px;
	font-size: 50px;
	line-height: 35px;
	display: block;
	width: 180px;
	margin: auto;
	color: white;
	border-radius: 50px;
}

.i-ani-more a>img {
	margin: 0 auto;
	padding-top: 12px;
}

.tab-index {
	background-color: rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	height: 50px;
	display: flex;
	justify-content: space-around;
	margin-bottom: 75px;
}

.tab-index a {
	width: 11.11%;
	line-height: 50px;
	border-radius: 50px;
	font-size: 18px;
	color: #fff;
	text-align: center;
}

.tab-index a:hover {
	background-color: #ffae00;
}

.prduct-list a {
	float: left;
	width: 275px;
	height: 382px;
	position: relative;
	overflow: hidden;
	margin-right: 33.33px;
	margin-bottom: 33px;
}

.prduct-list a:nth-child(4n) {
	margin-right: 0;
}

.prduct-list a i {
	display: block;
	overflow: hidden;
}

.prduct-list a i img {
	width: 275px;
	height: 382px;
}

.prduct-list a span {
	display: block;
	position: absolute;
	line-height: 60px;
	text-align: center;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	font-size: 18px;
	color: #fff;
	z-index: 3;
	left: 0;
	bottom: 0;
}

/* 资质证书 */
.aptitude-list a {
	display: block;
	padding: 8px;
	border-radius: 5px;
	background-color: #fff;
}

.aptitude-list a img {
	width: 100%;
	height: auto;
}

.aptitude-list a h4 {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	line-height: 38px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
}

/* 基地展示 */
.i-jidi {
	padding: 60px 0px 60px;
	background: url(../images/jd_bg.jpg) no-repeat center;
	background-size: 100% 100%;
}
}

.i-jidi-box a {
	display: block;
}

.i-jidi-box a img {
	width: 100%;
	height: auto;
}


/* 新产品展示 */
.cont1.active {
	padding-top: 201px;
}

.cont1-box {
	margin: 0px auto;
}

.cont1-c {
	/* margin-top: 30px; */
}

.cont1-c li,
.pro_nr li {
	position: relative;
	width: 100%;
	overflow: hidden;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	-ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.cont1-c li:hover img,
.pro_nr li:hover img {
	transform: scale(1.2);
	/* 放大1.2倍 */
}

.cont1-c li img {
	max-width: 100%;
	height: 255px;
	margin: 0 auto;
	transition: all 0.6s;
}

.cont1-c li:nth-child(4n),
.pro_nr li:nth-child(4n) {
	margin-right: 0%;
}

.cont1-c li div,
.pro_nr li div {
	background-color: rgba(0, 0, 0, 0.65);
	position: absolute;
	left: 0;
	width: 100%;
	bottom: -60px;
	height: 110px;
	transition: all ease-out .3s;
	-webkit-transition: all ease-out .3s;
	-moz-transition: all ease-out .3s;
	-ms-transition: all ease-out .3s;
}

.cont1-c li div h4,
.pro_nr li div h4 {
	font-size: 14px;
	color: #fff;
	line-height: 50px;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/*首页新闻展示*/
.i-news {
	padding: 60px 0px 60px 0px;
}

.i-news-list-l {
	float: left;
	width: 522px;
}

.i-news-list-l i {
	display: block;
	overflow: hidden;
}

.i-news-list-l i img {
	width: 522px;
	height: 370px;
}

.i-news-list-l a {
	display: block;
}

.i-news-list-l a h4 {
	font-size: 20px;
	color: #333;
	line-height: 60px;
	background-color: #f5f5f5;
	padding: 0 15px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.i-news-list-r {
	float: right;
	width: 650px;
}

.i-news-list-r a {
	display: block;
	background-color: #f5f5f5;
	margin-bottom: 20px;
	height: 130px;
}

.i-news-list-r a .i-news-time {
	width: 124px;
	border-right: 1px solid #fff;
	height: 130px;
	float: left;
	text-align: center;
}

.i-news-list-r a .i-news-time em {
	display: block;
	font-size: 46px;
	color: #333;
	line-height: 50px;
	margin-top: 26px;
}

.i-news-list-r a .i-news-time span {
	display: block;
	font-size: 16px;
	color: #333;
}

.i-news-list-r .i-news-txt {
	width: 522px;
	float: left;
	padding: 0 25px;
	padding-top: 24px;
	box-sizing: border-box;
}

.i-news-list-r .i-news-txt h4 {
	font-size: 18px;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-bottom: 5px;
}

.i-news-list-r .i-news-txt p {
	font-size: 14px;
	color: #666;
	line-height: 26px;
	height: 52px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

/*.dy-img {
    position: relative;
}*/
.i-news-box .dy-l .dy-i {
	width: 100%;
	height: 170px;
}

.i-news-box .dy-l .dy-i img {
	width: 100%;
	height: 100%;
}

/*.dy-t {
    width: 100%;
    height: 35px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 16px;
    line-height: 35px;
    position: absolute;
    left: 0;
    bottom: 0;
}*/
.i-news-box .dy-l dl {
	width: 100%;
	height: 48px;
	border-bottom: 1px dotted #cccccc;
	line-height: 51px;
}

.i-news-box .dy-l dl a {
	width: 100%;
	display: block;
}

.i-news-box .dy-l dl dt {
	width: 70%;
	float: left;
	font-size: 14px;
	color: #373737;
	overflow: hidden;
	padding-left: 20px;
	text-overflow: ellipsis;
	background: url(../images/19.png) no-repeat left center;
	-o-text-overflow: ellipsis;
	white-space: nowrap;
}

.i-news-box .dy-l dl dd {
	width: 20%;
	float: right;
	color: #656565;
	font-size: 13px;
	text-align: right;
}

.i-news-box .dy-l dl:hover dt,
.i-news-box .dy-l dl:hover dd {
	color: #cc0000;
}

.i-frends {
	background-color: #f7f7f7;
	margin-bottom: 20px;
	/* padding: 20px 0px; */
}

.i-frends-div {
	padding: 15px 0px;
}

.i-frends-div span {
	padding: 0px 30px 0 0;
	display: -webkit-inline-box;
	border-right: 1px solid;
	color: #666;
}

.i-frends-div a {
	padding: 0px 30px;
	display: -webkit-inline-box;
	border-right: 1px solid;
	color: #666;
}

.i-frends-div a:last-child {
	border-right: 0px;
}

.i-btn {
	background-color: #009946;
}

.i-btn-box {}

.i-btn-box>h1 {
	font-size: 33px;
	color: white;
	font-weight: bold;
	padding: 36px 0px;
	font-family: -webkit-pictograph;
}

.i-btn-box-d1 {
	/* padding: 30px 0px; */
}

.i-btn-box-d1-img {
	width: 175px;
	height: 175px;
	float: left;
}

.i-btn-box-d1-d1 {
	font-size: 14px;
	width: 70%;
	float: left;
	color: white;
	text-align: left;
	margin-left: 50px;
	margin-top: 27px;
}

.i-btn-box-d1-v1 {
	width: 70%;
	float: left;
	border-top: 1px white dashed;
	padding: 30px 0px;
}

.i-btn-box-d1-d1 p {
	line-height: 33px;
}

.i-btn-box-d1-d2 {
	width: 25%;
	float: right;
	margin-top: 60px;
}

.i-btn-box-d1-d2 div {
	width: 50%;
	text-align: center;
	font-size: 14px;
	float: right;
	color: white;
	line-height: 12px;
}

.i-btn-box-d1-d2 div img {
	margin: 0 auto;
	width: 140px;
}

.logo-text {
	width: 175px;
	height: 175px;
	float: left;
	text-align: center;
	font-size: 62px;
	font-weight: bold;
	color: #fff;
	line-height: 66px;
	margin-top: 56px;
}

/*内页1111111111111111111111111111111111111111111111*/

.content {
	margin-top: 30px;
	margin-bottom: 100px;
	min-height: 500px;
}

.content-r {
	width: 940px;
	float: right;
}

/*内页产品荣誉轮播*/
.ny_cpry,
.cp_cpry {
	margin-top: 40px;
}

.ny_cpry ul li,
.cp_cpry ul li {
	width: 380px;

	background-color: #ddd;
	float: left;
	margin-bottom: 40px;

}

.ny_cpry ul li img,
.cp_cpry ul li img {
	width: 100%;
}

.ny_cpry ul li p,
.cp_cpry ul li p {
	font-size: 16px;
	text-align: center;
	line-height: 50px;
}

/*产品中心*/
.product a {
	float: left;
	position: relative;
	width: 300px;
	height: 256px;
	margin-bottom: 20px;
	overflow: hidden;
	margin-right: 20px;
	box-sizing: border-box;
	border: 1px solid #eee;
	overflow: hidden;
}

.product a:hover img {
	transform: scale(1.2);
	/* 放大1.2倍 */
}

.product a img {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	transition: all 0.6s;
}

.product a:nth-child(3n) {
	margin-right: 0;
}

.product a h4 {
	line-height: 40px;
	width: 100%;
	text-align: center;
	font-size: 14px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.68);
	position: absolute;
	left: 0;
	bottom: 0;
	box-sizing: border-box;
	padding: 0 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ly_title {
	padding: 40px 0 0px 0;
}

.ly_title h2 {
	font-size: 20px;
	font-weight: bold;
	color: #333333;
	border-bottom: 1px solid #ddd;
	height: 40px;
	background: url(../images/b4.jpg) no-repeat left bottom;
}

.lt_p {
	font-size: 20px;
	font-weight: bold;
	color: #333333;
	border-bottom: 1px solid #ddd;
	/*  height: 40px;
    background: url(../images/b4.jpg) no-repeat left bottom;*/
}

/*关于我们*/
.about p {
	font-size: 16px !important;
	color: #5a5a5a;
	/*text-indent: 2em;*/
	text-align: justify;
	line-height: 30px;
	margin-bottom: 12px;
}

.about p img {
	max-width: 100%;
}

/*新闻详情*/
.xq-tit h2 {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #333;
}

.xq-tit p {
	text-align: center;
	font-size: 14px;
	color: #999;
	margin-top: 8px;
}

.xq-tit p span {
	margin: 0 10px;
}

.xq-tit {
	padding-bottom: 35px;
	border-bottom: 1px dashed #e0e0e0;
}

.news-xq-box {
	width: 100%;
	margin: 0 auto;
	margin-top: 30px;
}

.news-xq-box table {
	width: 100% !important;
}

.news-xq-box p {
	font-size: 14px;
	color: #5a5a5a;
	line-height: 26px;
	text-align: justify;
}

.news-xq-box img {
	max-width: 100%;
	margin-top: 15px;
	display: inline;
}

.news-fh {
	padding-top: 25px;
	border-top: 1px solid #e7e7e7;
	margin-top: 20px;
}

.news-fh>a {
	display: block;
	width: 138px;
	text-align: center;
	line-height: 38px;
	font-size: 12px;
	color: #333;
	border: 1px solid #333;
	border-radius: 50px;
	background: url(../img/news/fh.png) no-repeat 20px center;
	margin-bottom: 20px;
}

.news-fh ul li {
	font-size: 14px;
	line-height: 30px;
}

.news-fh ul li span {
	color: #666;
}

.news-fh ul li a {
	color: #787878;
}

/*新闻中心*/
.news li div {
	float: left;
	width: 550px;
}

.news li>a {
	display: block;
	float: right;
	width: 266px;
	height: 132px;
	transition: all ease-out .3s;
	-webkit-transition: all ease-out .3s;
	-moz-transition: all ease-out .3s;
	-ms-transition: all ease-out .3s;
}

.news li>a img {
	width: 100%;
	height: 100%;
}

.news li div a {
	display: block;
	font-size: 16px;
	color: #333;
	line-height: 30px;
	height: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 20px;
}

.news li:hover div a {
	text-decoration: underline;
	color: #49af08;
}

.news li:hover>a {
	margin-right: 30px;
}

.news li div p {
	font-size: 14px;
	color: #5a5a5a;
	line-height: 24px;
	font-family: Microsoft YaHei;
	/*height: 24px;*/
	/*overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;*/
}

.news li div span {
	display: block;
	font-size: 12px;
	color: #999;
	margin-top: 10px;
}

.news li {
	margin-bottom: 25px;
	padding-bottom: 25px;
	border-bottom: 1px solid #eee;
}

/*在线客服*/
.yb_conct {
	position: fixed;
	z-index: 9999999;
	top: 30%;
	right: 0px;
	cursor: pointer;
	transition: all .3s ease;
}

.yb_bar li span {
	text-indent: 70px;
	display: block;
}

.yb_bar ul li i {
	position: absolute;
	right: 70px;
	top: 0;
	width: 140px;
	height: 140px;
	padding: 5px;
	background-color: #ffae00;
	box-sizing: border-box;
	display: none;
	border-radius: 5px;
}

.yb_bar ul li i img {
	width: 100%;
	height: 100%;
}

.yb_bar ul li {
	width: 60px;
	height: 60px;
	font: 16px/60px 'Microsoft YaHei';
	color: #fff;
	margin-bottom: 3px;
	border-radius: 3px;
	transition: all .5s ease;
	position: relative;
}

.yb_bar .yb_top {
	background: #ffae00 url(../images/icon.png) no-repeat 0 -180px;
}

.yb_bar .yb_phone {
	background: #ffae00 url(../images/icon.png) no-repeat 0 -60px;
}

.yb_bar .yb_QQ {
	text-indent: 0;
	background: #ffae00 url(../images/icon.png) no-repeat 0 0px;
}

.yb_bar .yb_ercode {
	background: #ffae00 url(../images/icon.png) no-repeat 0 -120px;
}

.yb_QQ a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
}

/*产品列表页*/
.pp_dl {
	background: #ffffff;
	margin-top: 40px;
	padding: 55px 35px 55px 35px;
}

.pp_dd {
	width: 825px;
}

.pd_title {
	border-bottom: 1px solid #cccccc;
	padding-bottom: 10px;
}

.pd_name {
	font-size: 16px;
	font-weight: bold;
	color: #cc0000;
}

.pd_p {
	font-size: 15px;
	color: #666666;
	line-height: 30px;
	margin-top: 10px;
	text-align: justify;
}

/*视频列表*/
.product-case ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.product-case ul li {
	width: 380px;
	margin: 30px 0;
}

.product-case ul li p {
	font-size: 16px;
	text-align: center;
	line-height: 45px;
}

/*产品分类展示*/
.pro_fftype {
	margin: 50px 0;
}

.pro_fftype dl {
	overflow: hidden;
}

.pro_fftype dl dd {
	float: left;
	width: 280px;
	margin-bottom: 30px;
	height: 400px;
	border-radius: 5px;
	background: #fff;
	margin-right: 26.6px;
}
.pro_fftype dl dd:nth-child(4n){
	margin-right: 0;
}
.pro_fftype dl dd a {
	display: block;
	width: 280px;
	height: 400px;
	margin: 0;
}

.pro_fftype a {
	position: relative;
}

.pro_fftype a:hover .zhezhao {
	height: 100%;
}

.pro_fftype .zhezhao {
	position: absolute;
	text-align: center;
	background: rgba(0, 172, 76, 0.5);
	height: 0px;
	overflow: hidden;
	padding: 0px;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	transition: all 1s ease 0s;
	-ms-transition: all 1s ease 0s;
}

.pro_fftype .zhezhao .zhezhao_txt {
	height: 100%;
	margin: 0px;
	background: rgba(0, 172, 76, 0.5);
	padding-top: 90px;
}

.pro_fftype .zhezhao .zhezhao_txt p {
	color: white;
	font-size: 25px;
}

.pro_fftype dl dd img {
	display: block;
	width: 100%;
	height: 400px;
}

.zhezhao {
	/* display: none; */
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(199, 93, 0, 0.74);
	top: 0;
	bottom: 0;
}

.zhezhao .zhezhao_txt {
	margin-top: 90px;
}

.zhezhao p {
	color: #fff;
	text-align: center;
	font-size: 24px;
}

/*资质荣誉*/
.product-case1{
	margin-top: 40px;
}
.product-case1 a {
	float: left;
	width: 280px;
	display: block;
	margin-right: 26.66px;
	padding: 8px;
	border-radius: 5px;
	background-color: #fff;
	box-sizing: border-box;
}
.product-case1 a:nth-child(4n){
	margin-right: 0;
}
.product-case1 a img {
	width: 100%;
	height: auto;
}

.product-case1 a h4 {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	line-height: 38px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
}
.message{
	margin-top: 40px;
	background-color: #fff;
}
.message h4{
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	color: #333;
	padding-top: 20px;
}
.message .ly-box{
	padding-top: 0;
}
.lx_dl{
	background-color: #fff;
}
.sendWord{
	font-size: 16px;
	color: #666;
	line-height: 30px;
}
.qywh li{
	float: left;
	width: 19%;
	text-align: center;
	background-color: #ffae00;
	padding: 40px 0;
	font-size: 18px;
	color: #fff;
	margin-right: 1.25%;
	border-radius: 8px;
}
.qywh li:last-child{
	margin-right: 0;
}
.qywh{
	padding-bottom: 50px;
}