@charset "utf-8";
/*自定义字体样式*/
@font-face{
	font-family: 'Mont';
	src: url('../font/Montserrat-Bold.eot'); /* IE9*/
	src: url('../font/Montserrat-Bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../font/Montserrat-Bold.woff') format('woff'), /* chrome、firefox */
         url('../font/Montserrat-Bold.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
         url('../font/Montserrat-Bold.svg#Montserrat-Bold') format('svg'); /* iOS 4.1- */
}
*{
    margin: 0;
    padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /* Firefox */
	-webkit-box-sizing: border-box; /* Safari */
}
body,a,input,button,textarea{
    font-size: 62.5%;
    font-family: Arial, "微软雅黑";
}
body{
	width: 100%;
    min-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}
ul, li{
    list-style: none;
}
header, footer{
    display: block;
}
a{
    text-decoration: none;
}
img{
	float: left;
}
.clear{
    clear: both;
}
.animate-box{
    opacity: 0;
}

/*头部样式*/
header{
	width: 1200px;
	height: 120px;
	margin: 0 auto;
}
header>.logo{
	width: 358px;
	height: 55px;
	float: left;
	margin-top: 32px;
}
header>.menu{
	float: right;
	line-height: 120px;
}
header>.menu>ul>li{
	float: left;
	width: 100px;
	height: 120px;
	line-height: 120px;
	position: relative;
}
header>.menu>ul>li>a{
	display: block;
	width: 100%;
	height: 120px;
	line-height: 120px;
	text-align: center;
	font-size: 18px;
	color: #666;
}
header>.menu>ul>li>a.active{
	color: #1d632d;
}
header>.menu>ul>li>a.active::after{
	content: "";
	width: 100%;
	height: 4px;
	position: absolute;
	background-color: #1d632d;
	bottom: 0;
	left: 0;
}
header>.menu>ul>li>p{
	position: absolute;
	width: 200px;
	height: 0;
	text-align: center;
	top: 150px;
	left: -50px;
	z-index: 2;
	transition: .3s;
	overflow: hidden;
	opacity: 0;
}
header>.menu>ul>li:hover>p{
	height: auto;
	overflow: visible;
	top: 120px;
	opacity: 1;
}
header>.menu>ul>li:hover>p::after{
	content: "";
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #1d632d;
	position: absolute;
	top: -8px;
	left: 50%;
	margin-left: -8px;
}
header>.menu>ul>li>p>a{
	display: block;
	width: 100%;
	height: 50px;
	background-color: #1d632d;
	text-align: center;
	line-height: 50px;
	font-size: 18px;
	color: #fff;
}

/*banner样式*/
.banner {
	width: 100%;
	min-width: 1600px;
	position: relative;
}
.banner>.owl-stage-outer>.owl-stage>.owl-item>img {
	width: 100%;
}
.banner>.owl-dots{
	position: absolute;
	width: 100%;
	text-align: center;
	bottom: 10px;
}
.banner>.owl-dots>button>span{
	background-color: rgba(255,255,255,.5) !important;
}
.banner>.owl-dots>button.active>span{
	background-color: rgba(255,255,255,1) !important;
}

/*首页标题样式*/
.index-title{
	margin: 33px 0 27px 0;
	float: left;
}
.index-title>h3{
	font-size: 30px;
	color: #333;
	position: relative;
}
.index-title>h3>i{
	display: block;
	width: 20px;
	height: 20px;
	border: 4px solid #ff7800;
	border-radius: 50%;
	position: absolute;
	left: -10px;
	top: -3px;
	z-index: -1;
}
.index-title>span{
	display: block;
	font-size: 20px;
	font-family: Mont;
	color: #ddd;
	text-transform: uppercase;
}
.more{
	float: right;
	font-size: 16px;
	color: #999;
	margin-top: 74px;
}
.more>i{
	display: inline-block;
	width: 7px;
	height: 14px;
	margin-left: 8px;
	position: relative;
	top: 2px;
}
.more>i>img{
	width: 100%;
}

/*首页经营产品样式*/
.index-product-box{
	width: 1200px;
	margin: 0 auto;
}
.index-product-box>.list>ul{
	width: 1210px;
}
.index-product-box>.list>ul>li{
	width: 260px;
	height: 300px;
	float: left;
	overflow: hidden;
	margin-right: 10px;
	background-color: #000;
	position: relative;
	transition: .3s;
}
.index-product-box>.list>ul>li>.pic{
	position: absolute;
	width: 390px;
	height: 100%;
	top: 0;
	left: 0;
}
.index-product-box>.list>ul>li>.pic>img{
	width: 100%;
	transition: .3s;
}
.index-product-box>.list>ul>li>.text{
	position: absolute;
	top: 20px;
	left: 20px;
	color: #fff;
	line-height: 30px;
	z-index: 1;
}
.index-product-box>.list>ul>li>.text>span{
	font-size: 18px;
}
.index-product-box>.list>ul>li>.text>h3{
	font-size: 18px;
	font-weight: normal;
}
.index-product-box>.list>ul>li>.text>p{
	font-size: 16px;
	display: none;
}
.index-product-box>.list>ul>li.active{
	width: 390px;
}
.index-product-box>.list>ul>li.active>.text>p{
	display: block;
}

/*首页关于我们样式*/
.index-about{
	width: 100%;
	height: 500px;
	background-color: #f5f5f5;
	margin-top: 50px;
}
.index-about>.index-about-box{
	width: 1200px;
	margin: 0 auto;
}
.index-about>.index-about-box>.left{
	float: left;
	width: 50%;
	padding-right: 30px;
}
.index-about>.index-about-box>.left>h3{
	font-size: 20px;
	color: #333;
	margin-bottom: 15px;
}
.index-about>.index-about-box>.left>p{
	font-size: 16px;
	line-height: 28px;
	color: #999;
	text-align: justify;
	margin-bottom: 16px;
}
.index-about>.index-about-box>.left>a{
	display: block;
	width: 120px;
	height: 40px;
	background-color: #1d632d;
	text-align: center;
	line-height: 40px;
	font-size: 16px;
	color: #fff;
	margin-top: 40px;
}
.index-about>.index-about-box>.left>a>i{
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 10px;
	position: relative;
	top: 2px;
}
.index-about>.index-about-box>.left>a>i>img{
	width: 100%;
}
.index-about>.index-about-box>.right{
	width: 50%;
	height: 100%;
	float: right;
}
.index-about>.index-about-box>.right>img{
	width: 100%;
}

/*首页新闻资讯样式*/
.index-news{
	width: 1200px;
	margin: 0 auto;
}
.index-news>.news-list>.image-news{
	width: 550px;
	float: left;
}
.index-news>.news-list>.image-news>a>.img{
	width: 100%;
	height: 320px;
	overflow: hidden;
}
.index-news>.news-list>.image-news>a>.img>img{
	width: 100%;
	transition: .3s;
}
.index-news>.news-list>.image-news>a:hover>.img>img{
	transform: scale(1.2);
}
.index-news>.news-list>.image-news>a>span{
	display: block;
	font-family: Mont;
	font-size: 24px;
	color: #ddd;
	padding: 5px 0;
}
.index-news>.news-list>.image-news>a>h3{
	font-size: 18px;
	color: #333;
	padding: 5px 0;
}
.index-news>.news-list>.image-news>a:hover>h3{
	color: #1d632d;
	text-decoration: underline;
}
.index-news>.news-list>.image-news>a>p{
	font-size: 16px;
	color: #999;
	text-align: justify;
	line-height: 28px;
}
.index-news>.news-list>.right{
	float: right;
	width: 600px;
}
.index-news>.news-list>.right>a{
	display: block;
	width: 100%;
	border-bottom: 2px solid #ddd;
	transition: .3s;
	margin-bottom: 30px;
}
.index-news>.news-list>.right>a:hover{
	border-bottom: 2px solid #1d632d;
}
.index-news>.news-list>.right>a>h3{
	font-size: 18px;
	color: #333;
	margin-bottom: 10px;
}
.index-news>.news-list>.right>a:hover>h3{
	color: #1d632d;
	text-decoration: underline;
}
.index-news>.news-list>.right>a>p{
	font-size: 16px;
	color: #999;
	text-align: justify;
	line-height: 28px;
	margin-bottom: 5px;
}
.index-news>.news-list>.right>a>.time{	
	font-family: Mont;
	font-size: 16px;
	color: #ddd;
	padding: 5px 0;
}
.index-news>.news-list>.right>a>.time>span{
	display: block;
	float: left;
}
.index-news>.news-list>.right>a>.time>p{
	float: right;
	position: relative;
	padding-right: 20px;
	text-transform: uppercase;
	transition: .3s;
}
.index-news>.news-list>.right>a:hover>.time>p{
	color: #1d632d;
}
.index-news>.news-list>.right>a>.time>p>i{
	display: block;
	width: 16px;
	height: 16px;
	background-image: url("../image/news-more-icon.png");
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top: 0;
	transition: .3s;
}
.index-news>.news-list>.right>a:hover>.time>p>i{
	background-image: url("../image/news-more-icon-active.png");
}

/*首页实力展示样式*/
.index-strength{
	width: 1200px;
	margin: 0 auto;
}
.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li{
	height: auto;
}
.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li>.pic{
	width: 100%;
	height: 300px;
	overflow: hidden;
}
.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li>.pic>img{
	transition: .3s;
	width: 100%;
}
.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li:hover>.pic>img{
	transform: scale(1.2);
}
.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li>.text{
	width: 100%;
	height: 50px;
	background-color: #f5f5f5;
	line-height: 50px;
	padding: 0 10px;
}
.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li>.text>p{
	font-size: 16px;
	color: #333;
	position: relative;
	transition: .3s;
}
.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li>.text>p>i{
	display: block;
	width: 0;
	height: 4px;
	background-color: #1d632d;
	position: absolute;
	top: 23px;
	left: 0;
	transition: .3s;
}
.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li:hover>.text>p{
	padding-left: 25px;
}
.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li:hover>.text>p>i{
	width: 20px;
}
.index-strength>.list>ul>.disabled {
	display: block !important;
	width: 100%;
	height: 24px;
	top: 50% !important;
	margin-top: -62px;
	position: absolute;
	top: 0;
	z-index: -1;
}
.index-strength>.list>ul>.disabled>.owl-prev {
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	position: absolute;
	left: -44px;
	overflow: hidden;
	background-color: #ddd !important;
	transition: .3s;
	cursor: pointer;
}
.index-strength>.list>ul>.disabled>.owl-next {
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	position: absolute;
	right: -44px;
	overflow: hidden;
	background-color: #ddd !important;
	transition: .3s;
	cursor: pointer;
}
.index-strength>.list>ul>.disabled>.owl-prev:hover,.index-strength>.list>ul>.disabled>.owl-next:hover{
	background-color: #1d632d !important;
}
.index-strength>.list>ul>.disabled>.owl-prev>span,.index-strength>.list>ul>.disabled>.owl-next>span{
	font-size: 16px;
	color: #333;
	transition: .3s;
}
.index-strength>.list>ul>.disabled>.owl-prev:hover>span,.index-strength>.list>ul>.disabled>.owl-next:hover>span{
	color: #fff;
}

/*内页banner样式*/
.sub-product-banner,.sub-news-banner,.sub-certification-banner{
	width: 100%;
	min-width: 1200px;
}
.sub-product-banner>img,.sub-news-banner>img,.sub-certification-banner>img{
	width: 100%;
	float: none;
}

/*内页标题样式*/
.sub-title{
	margin: 33px 0 27px 0;
	float: left;
}
.sub-title>h3{
	font-size: 30px;
	color: #333;
	position: relative;
	padding-left: 25px;
}
.sub-title>h3>i{
	display: block;
	width: 20px;
	height: 4px;
	background-color: #ff7800;
	position: absolute;
	left: 0;
	top: 17px;
}
.sub-title>span{
	display: block;
	font-size: 20px;
	font-family: Mont;
	color: #ddd;
	text-transform: uppercase;
}
.sub-class{
	float: right;
	font-size: 16px;
	color: #999;
	margin-top: 52px;
}
.sub-class>a{
	display: inline-block;
	padding: 0 15px;
	height: 40px;
	background-color: #ddd;
	color: #666;
	line-height: 40px;
	font-size: 16px;
}
.sub-class>a.active{
	background-color: #1d632d;
	color: #fff;
}

/*产品中心页样式*/
.sub-product-box,.sub-news-box,.sub-certification-box{
	width: 1200px;
	margin: 0 auto;
	overflow: hidden;
}
.sub-product-box>.list>ul{
	width: 1230px;
}
.sub-product-box>.list>ul>a{
	display: block;
	width: 380px;
	float: left;
	margin-right: 30px;
	margin-bottom: 30px;
}
.sub-product-box>.list>ul>a>li>.pic{
	width: 100%;
	height: 300px;
	overflow: hidden;
}
.sub-product-box>.list>ul>a>li>.pic>img{
	width: 100%;
	transition: .3s;
}
.sub-product-box>.list>ul>a:hover>li>.pic>img{
	transform: scale(1.2);
}
.sub-product-box>.list>ul>a>li>p{
	width: 100%;
	height: 50px;
	line-height: 50px;
	background-color: #ddd;
	font-size: 16px;
	color: #333;
	padding-left: 10px;
	position: relative;
	transition: .3s;
}
.sub-product-box>.list>ul>a:hover>li>p{
	padding-left: 35px;
}
.sub-product-box>.list>ul>a>li>p>i{
	display: block;
	width: 0;
	height: 4px;
	background-color: #1d632d;
	position: absolute;
	top: 23px;
	left: 10px;
	transition: .3s;
}
.sub-product-box>.list>ul>a:hover>li>p>i{
	width: 20px;
}

/*产品详情页样式*/
.sub-product-box>h3,.sub-news-box>h3{
	font-size: 20px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	color: #333;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
}
.sub-product-box>.details>.pic{
	width: 100%;
	height: auto;
}
.sub-product-box>.details>.pic>img{
	float: none;
	width: 100%;
}
.sub-product-box>.details{
	margin: 30px 0;
}
.sub-product-box>.details img{
	max-width: 1200px;
	display: block;
	float: none;
	margin: 10px auto;
}
.sub-product-box>.details>h3{
	width: 100%;
	height: 100px;
	line-height: 100px;
	font-size: 18px;
	color: #333;
	padding-left: 20px;
	position: relative;
}
.sub-product-box>.details>h3>i{
	display: block;
	width: 0;
	height: 0;	
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #333;
	position: absolute;
	left: 0;
	top: 46px;
}
.sub-product-box>.details>p{
	font-size: 16px;
	color: #666;
	line-height: 28px;
	text-align: justify;
	margin-bottom: 16px;
}

/*新闻列表页样式*/
.sub-news-box>.list>ul>a{
	display: block;
	width: 100%;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
}
.sub-news-box>.list>ul>a:last-child{
	border-bottom: none;
}
.sub-news-box>.list>ul>a>li>span{
	display: block;
	line-height: 40px;
	font-family: Mont;
	font-size: 24px;
	color: #ddd;
}
.sub-news-box>.list>ul>a>li>h3{
	color: #333;
	font-size: 18px;
	line-height: 40px;
	transition: .3s;
}
.sub-news-box>.list>ul>a:hover>li>h3{
	text-decoration: underline;
	color: #1d632d;
}
.sub-news-box>.list>ul>a>li>p{
	color: #999;
	line-height: 28px;
	font-size: 16px;
	text-align: justify;
}

/*新闻详情页样式*/
.sub-news-box>.time{
	float: right;
	font-size: 20px;
	font-family: Mont;
	color: #ddd;
	margin-top: 70px;
}
.sub-news-box>.details{
	margin: 30px 0;
}
.sub-news-box>.details>p{
	font-size: 16px;
	color: #666;
	line-height: 28px;
	text-align: justify;
	margin-bottom: 16px;
}
.sub-news-box>.details>p>img{
	max-width: 1200px;
	display: block;
	float: none;
	margin: 10px auto;
}

/*图片列表*/
.photo-list>ul{
	width: 1230px;
}
.photo-list>ul>li{
	float: left;
	margin: 0 30px 30px 0;
	width: 380px;
	height: auto;
	background-color: #f5f5f5;
}
.photo-list>ul>li>.image{
	width: 100%;
	height: 250px;
	overflow: hidden;
}
.photo-list>ul>li>.image>img{
	width: 100%;
	transition: .3s;
}
.photo-list>ul>li:hover>.image>img{
	transform: scale(1.2);
}
.photo-list>ul>li>h3{
	font-size: 20px;
	font-weight: normal;
	color: #333;
	height: 60px;
	line-height: 60px;
	padding: 0 15px;
	text-align: justify;
}

/*产品认证列表样式*/
.sub-certification-box>.certificate-list>ul{
	width: 1230px;
}
.sub-certification-box>.certificate-list>ul>li{
	width: 380px;
	height: auto;
	margin: 0 30px 30px 0;
	background-color: #f5f5f5;
	float: left;
}
.sub-certification-box>.certificate-list>ul>li>.image{
	width: 100%;
	height: auto;
	overflow: hidden;
}
.sub-certification-box>.certificate-list>ul>li>.image>img{
	width: 100%;
}
.sub-certification-box>.certificate-list>ul>li>p{
	width: 100%;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 16px;
	color: #333;
}

/*页面底部样式*/
footer{
	width: 100%;
	background-color: #1d632d;
	margin-top: 50px;
}
footer>.content-box{
	width: 1200px;
	margin: 0 auto;
}
footer>.content-box>.logo{
	width: 174px;
	height: 50px;
	float: left;
	margin: 50px 0;
}
footer>.content-box>.logo>img{
	width: 100%;
}
footer>.content-box>.menu{
	float: right;
	margin-top: 67px;
}
footer>.content-box>.menu>a{
	display: block;
	float: left;
	margin-left: 40px;
	font-size: 16px;
	color: #fff;
}
footer>.content-box>.menu>a:hover{
	text-decoration: underline;
}
footer>.content-box>.contact{
	width: 100%;
	border-top: 1px solid rgba(255,255,255,.2);
	padding: 30px 0;
}
footer>.content-box>.contact>.list{
	float: left;
	margin-right: 50px;
}
footer>.content-box>.contact>.list>i{
	display: block;
	width: 44px;
	height: 44px;
	border: 2px solid #fff;
	border-radius: 50%;
	margin-bottom: 15px;
}
footer>.content-box>.contact>.list>i>img{
	width: 100%;
}
footer>.content-box>.contact>.list>p{
	font-size: 16px;
	color: #fff;
	line-height: 28px;
}
footer>.content-box>.contact>a{
	float: right;
	font-size: 16px;
	color: rgba(255,255,255,.2);
	margin-top: 90px;
}
footer>.copy{
	width: 100%;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
	color: #fff;
	text-align: center;
	border-top: 1px solid rgba(255,255,255,.2);
}
footer>.copy>span{
	margin-right: 30px;
}
footer>.copy>a{
	font-size: 16px;
	color: #fff;
}
footer>.copy>a:hover{
	text-decoration: underline;
}

/*移动端样式*/
@media only screen and (max-width: 749px){
	body{
		padding-top: 80px;
		min-width: 100%;
	}
	header{
		width: 100%;
		height: 80px;
		background-color: #fff;
		position: fixed;
		top: 0;
		z-index: 5;
	}
	header>.logo{
		width: 200px;
		height: 30px;
		float: left;
		margin: 25px 0 0 2%;
	}
	header>.logo>img{
		width: 100%;
	}
	.mobile-menu{
		width: 100%;
		background-color: #fff;
		position: fixed;
		z-index: 4;
		top: 80px;
		padding-bottom: 60px;
	}
	.mobile-menu>a{
		display: block;
		width: 96%;
		height: 60px;
		margin: 0 auto;
		border-bottom: 1px solid #ddd;
		line-height: 60px;
		font-size: 16px;
		color: #333;
	}
	.mobile-menu>a.active{
		font-weight: bold;
	}
	.mobile-menu>p{
		width: 96%;
		height: 60px;
		margin: 0 auto;
		border-bottom: 1px solid #ddd;
		overflow: hidden;
	}
	.mobile-menu>p>span{
		display: block;
		width: 100%;
		line-height: 60px;
		font-size: 16px;
		position: relative;
	}
	.mobile-menu>p>span>i{
		display: block;
		width: 16px;
		height: 10px;
		position: absolute;
		top: 25px;
		right: 0;
		transition: .3s;
	}
	.mobile-menu>p>span>i>img{
		width: 100%;
	}
	.mobile-menu>p>a{
		display: block;
		width: 95%;
		height: 50px;
		margin: 0 auto 0 5%;
		border-top: 1px solid #ddd;
		line-height: 50px;
		font-size: 16px;
		color: #666;
	}
	.mobile-menu>p.active{
		height: auto;
	}
	.mobile-menu>p.active>span{
		font-weight: bold;
	}
	.mobile-menu>p.active>span>i{
		transform: rotate(-180deg);
	}
	.menu-icon {
		width: 24px;
		height: 20px;
		position: absolute;
		overflow: hidden;
		top: 30px;
		right: 2%;
		z-index: 999;
	}	
	.menu-icon>i{
		display: block;
		width: 24px;
		height: 4px;
		border-radius: 2px;
		background-color: #333;
		transition: .5s;
		position: relative;
	}
	.menu-icon>i.i2 {
		width: 20px;
		margin-left: 4px;
	}
	.menu-icon>i.i2,.menu-icon>i.i3{
		margin-top: 4px;
	}
	.mask{
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,.5);
		position: fixed;
		top: 0;
		z-index: 3;
	}
	.banner {
		min-width: 375px;
	}
	
	/*首页标题样式*/
	.index-title>h3{
		padding-left: 25px;
	}
	.index-title>h3>i{
		width: 20px;
		height: 4px;
		border: none;
		border-radius: 0;
		left: 0;
		top: 17px;
		background-color: #ff7800;
	}
	
	/*首页经营产品样式*/
	.index-product-box{
		width: 96%;
		margin: 0 auto;
	}
	.index-product-box>.list>ul{
		width: 100%;
	}
	.index-product-box>.list>ul>li{
		width: 100%;
		margin-right: 0;
		margin-bottom: 2%;
	}
	.index-product-box>.list>ul>li>.pic>img{
		opacity: 1;
	}
	.index-product-box>.list>ul>li>.text>p{
		display: block;
	}
	
	/*首页关于我们样式*/
	.index-about{
		height: auto;
		margin-top: 2%;
	}
	.index-about>.index-about-box{
		width: 96%;
	}
	.index-about>.index-about-box>.left{
		float: none;
		width: 100%;
		padding-right: 0;
	}
	.index-about>.index-about-box>.left>a{
		margin-top: 20px;
	}
	.index-about>.index-about-box>.right{
		width: 100%;
		height: auto;
		margin-top: 30px;
		float: none;
	}
	
	/*首页新闻资讯样式*/
	.index-news{
		width: 96%;
	}
	.index-news>.news-list>.image-news{
		width: 100%;
		float: none;
	}
	.index-news>.news-list>.image-news>a>.img{
		height: auto;
	}
	.index-news>.news-list>.image-news>a:hover>.img>img{
		transform: none;
	}
	.index-news>.news-list>.image-news>a>span{
		margin-top: 10px;
	}
	.index-news>.news-list>.right{
		float: none;
		width: 100%;
		border-top: 1px solid #ddd;
		padding-top: 30px;
	}
	
	/*首页实力展示样式*/
	.index-strength{
		width: 96%;
	}
	
	.index-strength>.list>ul{
		width: 82%;
		margin: 0 auto;
	}
	.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li{
		height: auto;
	}
	.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li>.pic{
		height: auto;
	}
	.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li>.text>p{
		padding-left:25px;
	}
	.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li>.text>p>i{
		width: 20px;
	}
	.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li>.pic>img{
		float: none;
	}
	.index-strength>.list>ul>.owl-stage-outer>.owl-stage>.owl-item>li:hover>.pic>img{
		transform: scale(1);
	}
	.index-strength>.list>ul>.disabled{
		margin-top: -32px;
	}
	.index-strength>.list>ul>.disabled>.owl-prev {
		left: -30px;
	}
	.index-strength>.list>ul>.disabled>.owl-next {
		right: -30px;
	}
	
	/*内页banner样式*/
	.sub-product-banner,.sub-news-banner,.sub-certification-banner{
		min-width: 375px;
	}
	
	/*内页标题样式*/
	.sub-title{
		margin: 33px 0 27px 0;
		float: none;
	}
	.sub-class{
		float: none;
		margin-top: 0;
	}
	.sub-class>a{
		display: block;
		float: left;
		width: 49%;
		padding: 0 0;
		margin-right: 2%;
		margin-bottom: 2%;
		text-align: center;
	}
	.sub-class>a:nth-child(2n){
		margin-right: 0;
	}
	
	/*产品中心页样式*/
	.sub-product-box,.sub-news-box,.sub-certification-box{
		width: 96%;
	}
	.sub-product-box>.list>ul{
		width: 100%;
	}
	.sub-product-box>.list>ul>a{
		width: 100%;
		float: none;
		margin-right: 0;
		margin-bottom: 2%;
	}
	.sub-product-box>.list>ul>a>li>.pic{
		height: auto;
	}
	.sub-product-box>.list>ul>a>li>.pic>img{
		float: none;
	}
	.sub-product-box>.list>ul>a:hover>li>.pic>img{
		transform: scale(1);
	}
	.sub-product-box>.list>ul>a>li>p{
		padding-left: 35px;
	}
	.sub-product-box>.list>ul>a>li>p>i{
		width: 20px;
	}
	
	/*产品详情页样式*/
	.sub-product-box>h3{
		height: auto;
		line-height: 35px;
		padding: 10px 0 ;
	}
	.sub-product-box>.details>h3{
		height: 60px;
		line-height: 60px;
	}
	.sub-product-box>.details>h3>i{
		top: 26px;
	}
	.sub-product-box>.details img,.sub-news-box>.details img{
		width: 100%;
	}
	
	/*新闻列表页样式*/
	.sub-news-box>h3{
		height: auto;
		line-height: 35px;
		padding: 10px 0 ;
	}
	
	/*新闻详情页样式*/
	.sub-news-box>.time{
		margin-top: 0;
		margin-bottom: 15px;
	}
	.sub-news-box>.details>p>img{
		max-width: none;
		width: 100%;
	}
	
	/*图片列表*/
	.photo-list>ul{
		width: 100%;
	}
	.photo-list>ul>li{
		float: none;
		margin: 0 0 20px 0;
		width: 100%;
		height: auto;
	}
	.photo-list>ul>li>.image{
		height: auto;
	}
	
	/*产品认证列表样式*/
	.sub-certification-box>.certificate-list>ul{
		width: 100%;
	}
	.sub-certification-box>.certificate-list>ul>li{
		width: 100%;
		margin: 0 0 30px 0;
		float: none;
	}
	.sub-certification-box>.certificate-list>ul>li>.image{
		height: auto;
	}
	
	/*页面底部样式*/
	footer{
		margin-top: 30px;
	}
	footer>.content-box{
		width: 94%;
	}
	footer>.content-box>.logo{
		width: 100%;
		height: auto;
		float: none;
		margin: 0 0;
		padding: 30px 0 20px 0;
	}
	footer>.content-box>.logo>img{
		width: 174px;
		float: none;
		display: block;
		margin: 0 auto;
	}
	footer>.content-box>.menu{
		clear: both;
		width: 100%;
		float: none;
		margin-top: 0;
	}
	footer>.content-box>.menu>a{
		width: 33.33%;
		display: block;
		float: left;
		margin-left:0;
		text-align: center;
		line-height: 40px;
	}
	footer>.content-box>.contact{
		margin-top: 0;
		padding: 10px 0;
	}
	footer>.content-box>.contact>.list{
		float: none;
		margin-right: 0;
		position: relative;
		padding: 15px 0 15px 38px;
	}
	footer>.content-box>.contact>.list>i{
		margin-top: 20px;
		width: 32px;
		height: 32px;
		margin-bottom: 10px;
		position: absolute;
		left: 0;
		top: -2px;
	}
	footer>.content-box>.contact>.list>p{
		font-size: 16px;
		color: #fff;
		line-height: 20px;
	}
	footer>.copy{
		height: auto;
		font-size: 16px;
		line-height: 28px;
		padding: 10px 0;
	}
	footer>.copy>span{
		display: block;
		margin-right: 0;
	}
}