header{
	display: flex;
	justify-content: space-between;
	padding: 0px 70px;
	position: relative;
	z-index: 99999;
	background: #fff;
}
nav{
	flex: 1;
	background-color: #fff;
}
nav ul{
	display: flex;
	height: 100%;
	justify-content: center;
}
nav ul>li{
	overflow: hidden;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1rem;
}
nav ul>li>a{
	display: block;
	padding: 10px 8px;
	position: relative;
	z-index: 99;
	transition: all .35s ease-in-out;
}
nav ul>li::before{
	content: '';
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 100%;
	transition: all .35s ease-in-out;
	background-color: #3071BF;
}
nav ul>li:hover::before{
	top: 0;
}
nav ul>li:hover>a{
	color: #fff;
}

.top-icons{
	display: flex;
	align-items: center;
}
.top-icons .iconfont{
	font-size: 1.8rem;
	margin-left: 10px;
	cursor: pointer;
}
.top-icons a{
	font-size: 1.35rem;
	font-family: helvetica;
	vertical-align: middle;
}
/*搜索框*/
.search-box{
	width: 100%;
	padding: 1rem;
	background-color: rgba(255,255,255,.9);
	position: absolute;
	left: 0;
	top: -1rem;
	opacity: 0;
	z-index: -1;
	transition: all .55s ease-in-out;
}
.search-box-active{
	top: 100%;
	opacity: 1;
}
.search-box form{
	display: block;
	width: 50rem;
	max-width: 100%;
	margin: 1rem auto;
	position: relative;
	padding-left: 5%;
}
.search-box form .iconfont{
	position: absolute;
	font-size: 1.5rem;
	right: 1rem;
	top: -1rem;
	color: #666;
	cursor: pointer;
}
.search-box form input{
	display: block;
	border: none;
	background-color: transparent;
	border-bottom: 1px solid #999;
	width: 80%;
	margin: 0 auto;
	font-size: 1.25rem;
	line-height: 2;
	padding: 0 1rem;
	outline: none;
	color: #3071BF;
}
.search-box form input:link{
	border: none;
	outline: none;
}
/*关于我们*/
.index-about{
	background-color: #3190EE;
}
.about-content{
	width: 650px!important;
	max-width: 100%;
	padding:5rem 1rem 0;
	padding-right: 3rem;
}
.about-content h3{
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #fff;
}
.about-content h6{
	font-size: 1.5rem;
	font-weight: 900;
	font-family: helvetica;
	margin-bottom: 1rem;
	color: #fff;
}
.about-content p{
	font-size: .875rem;
	line-height: 2;
	color: #fefefe;
	margin-bottom: 1rem;
}
.about-more{
	padding: 1rem 0;
}
.about-more a{
	position: relative;
	display: inline-block;
	border: 1px solid #fff;
	padding: .5rem 1.5rem;
	border-radius: 3px;
	color: #fff;
	font-size: .875rem;
	transition: all .35s ease-in-out;
}
.about-more a:hover{
	background-color: #fff;
	color: #3071BF;
}
/*产品*/
.index-title{
	text-align: center;
	margin: 2rem 0;
}
.index-title h3{
	font-size: 2rem;
	line-height: 2;
	font-weight: 900;
}
.index-title h6{
	font-family: helvetica;
	font-size: .875rem;
	color: #999;
}
.label-list ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.label-list ul li{
	padding: 0 1rem;
	margin-bottom: 1rem;
}
.label-list ul li>a{
	background-color: #3071BF;
	color: #fff;
	display: inline-block;
	padding: 0 1.2rem;
	line-height: 3;
	font-size: .875rem;
}
.pro-item li{
	padding: 1rem;
}
.pro-item li>a{
	display: flex;
	width: 100%;
	height: 100%;
	background-color: #F1F1F1;
	position: relative;
	overflow: hidden;
	border-radius: 3px;
	transition: all .35s ease-in-out;
}
.pro-item li>a p{
	position: absolute;
	display: block;
	bottom: -5rem;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: .875rem;
	line-height: 2.4;
	color: #fff;
	padding: 0 5px;
	border-top: 2px solid #fff;
	background-color: #3071BF;
	transition: all .35s ease-in-out;
}
.pro-item li>a:hover{
	box-shadow: 2px 3px 5px rgba(0,0,0,.15);
}
.pro-item li>a:hover p{
	bottom: 0;
}
/*新闻*/
.list-news ul li{
	padding: 1rem;
}
.list-news ul li>a{
	display: block;
	background-color: #fff;
	padding: 1rem;
}
.list-news ul li>a:hover{
	box-shadow: 0 3px 8px rgba(0,0,0,.1);
}
.list-news ul li .title{
	font-size: 1.25rem;
	color: #3071BF;
	font-weight: 900;
	line-height: 2;
}
.list-news ul li .time{
	font-size: .875rem;
	line-height: 2rem;
	color: #999;
}
.list-news ul li .description{
	font-size: .875rem;
	line-height: 2;
	position: relative;
}
.list-news ul li .description::after{
	position: absolute;
	left: 0;
	bottom: -1rem;
	content: '';
	width: 0;
	height: 1px;
	background-color: #3071BF;
	transition: all .45s ease-in-out;
}
.list-news ul li:hover .description::after{
	width: 100%;
}
.news-content .news-content-title{
	font-size: 1.25rem;
	font-weight: 900;
	color: #3071BF;
	text-align: center;
	margin-bottom: 1rem;
}
.news-content .news-content-data{
	font-size:.875rem;
	color: #999;
	text-align: center;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid rgba(0,0,0,.1);
}
.news-content .news-content-data span{
	margin-right: 8px;
}
.news-content .news-content-data a{
	display: inline-block;
	padding: 2px 10px;
	background-color: #3071BF;
	color: #fff;
}
/*pic*/
.pic-title{
	padding: 1rem;
	text-align: center;
}
.pic-title h3{
	font-size: 1.5rem;
	line-height: 2;
	color: #3071BF;
	font-weight: 900;
}
.pic-title p{
	font-size: .875rem;
	font-family: helvetica;
	font-weight: 900;
	color: #999;
}
.list-pro li{
	margin-bottom: 1.5rem;
}
.list-pro li>a{
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 99;
	justify-content: center;
	align-items: center;
	padding-bottom: 2rem;
}
.list-pro li>a img{
	border: 1px solid #ddd;
	box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.list-pro li>a p{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	font-size: .875rem;
	line-height: 2rem;
	text-align: center;
}
/*foot*/
.footer{
	background: #333333;
	padding-top: 80px;
	margin-top: 50px;
	color: #fff;
}
.foot-item h3{
	font-size: 1.25rem;
	line-height: 2;
	margin-bottom: 1rem;
	color: #fff;
}
.foot-item p{
	font-size: .875rem;
	line-height: 2;
}
.copyright{
	border-top: 1px solid rgba(255,255,255,.25);
	margin-top: 1.5rem;
	padding-top: 1rem;
	text-align: center;
	font-size: .875rem;
	padding-bottom: 1rem;
}
.footer a:hover{
	color: #ddd;
}
.drop-menu{
	display: none;
}

/*page*/
.page-position{
	border-bottom: 1px solid #ddd;
	box-shadow: 0 0 5px 4px rgba(0,0,0,.05);
}
.page-title span{
	display: inline-block;
	font-size: 1.5rem;
	color: #fff;
	font-weight: 900;
	background-color: #3071BF;
	padding: .7rem 1.5rem;
}
.bar{
	display: flex;
	height: 100%;
	justify-content: flex-end;
	align-items: center;
}
.bar li{
	font-size: .875rem;
	line-height: 2;
	color: #999;
}
.bar li:hover a{
	color: #3071BF;
}

.page-main{
	padding: 3.125rem 1.875rem;
	background-color: #fff;
	margin: 2.25rem 0;
	box-shadow: 2px 3px 5px rgba(0,0,0,.1);
}
.page-label li{
	position: relative;
	margin: 10px 15px 0 0;
	transition: all .3s ease-in-out;
}
.page-label li>a{
	display: block;
	background-color: #F5F5F5;
	padding: 2px 0 0 10px;
	cursor: pointer;
	color: #333;
	font-size: .875rem;
	line-height: 2.625rem;
	transition: all .3s ease-in-out;
}
.page-label li:hover>a,.page-label li.active>a{
	border-left: 5px solid #3071BF;
	background-color: #F5F5F5;
}
.page-label li .iconfont{
	font-size: 2rem;
	position: absolute;
	right: 0px;
	top: 0px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #3071BF;
	font-weight: normal;
	cursor: pointer;
}
.page-label li.active{
	border:none;
}
.label-drop{
	display: none;
}
.label-drop p{
	font-size: .6rem;
	line-height: 2.4rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #666;
	padding-left: 4px;
	margin-bottom: 5px;
}
.label-drop p:hover{
	color: #000;
}

/*contact*/
.page-contact{
	padding: 1rem;
}
.page-contact h6{
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 2;
	margin-bottom: 1rem;
	color: #3071BF;
}
.page-contact p{
	font-size: .875rem;
	line-height: 2;
}
.page-contact .iconfont{
	font-size: 1.25rem;
	margin-right: 3px;
}
.article .title{
	padding:.75rem 1rem;
	background-color: #3071BF;
	color: #fff;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	margin-top: 1.5rem;
}
.page-right .article h3{
	margin-bottom: 1.5rem;
}
.pro-content img{
	background-color: #F5F5F5;
	margin-bottom: 1rem;
}

.title-small{
	font-size: 1.125rem;
	line-height: 3rem;
	background-color: #F9F9F9;
	padding: 0 2rem;
	margin-bottom: 1rem;
	position: relative;
	overflow: hidden;
	color: #444;
}
.title-small::after{
	content: '';
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	border-top: 1.5625rem solid #3071BF;
	border-right: 1.5625rem solid transparent;
}


.bg-production{
	position: relative;
	margin-bottom: 5rem;
	color: #fff;
	overflow: initial!important;
}
.bg-production::before{
	content: '';
	position: absolute;
	background-color: #1b2680;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}
.bg-equipment{
	background: url(../img/p1.jpg) center center no-repeat;
	background-size: 100% 100%;
}
.bg-strength{
	background: url(../img/p2.jpg) center center no-repeat;
	background-size: 100% 100%;
}
.production-item{
	padding:15%;
	transform: translateY(5rem);
	position: relative;
	width: 100%;
	height: 100%;
}
.production-item::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.6);
	z-index: -1;
	transition: all .45s ease-in-out;
}
.production-item::after{
	content: '';
	display: block;
	position: absolute;
	width: 1px;
	background-color: rgba(255,255,255,.8);
	height: 6rem;
	left: 50%;
	top: -3rem;
}
.production-item h1{
	font-size: 2.25rem;
	text-align: center;
	line-height: 2;
	letter-spacing: 2px;
}
.production-item h6{
	font-family: helvetica;
	line-height: 2;
	font-size: 1.25rem;
	text-align: center;
	text-transform: uppercase;
}
.production-item p{
	font-size: .875rem;
	line-height: 2;
	padding-top: 1rem;
	padding-bottom: 1rem;
}
.production-more{
	text-align: center;
	margin: 1rem 0;
}
.production-more a{
	font-size: .875rem;
	display: inline-block;
	padding: .75rem 1.5rem;
	border: 1px solid #fff;
	border-radius: 5px;
	transition: all .45s ease-in-out;
}
.production-item:hover .production-more a{
	background-color: #fff;
	color: #666;
}
.production-item:hover::before{
	background-color: rgba(0,0,0,.3);
}

.bg-order{
	background-color: #e6e6e6;
	padding-top: 8rem;
	margin-top: -5rem;
}
.index-order{
	border-top: 2px solid #316AC5;
	padding:3rem 1.5rem;
	margin-bottom: 2rem;
	background: url(http://lyzhengye.com/themes/default/img/order-bg.png) center center no-repeat;
	background-color: #fff;
	background-size:auto 90%;
	box-shadow: 0 3px 8px rgba(0,0,0,.3);
}
.order-title{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.order-title h1{
	font-size: 2rem;
	line-height: 2;
}
.order-title h6{
	font-size: .875rem;
	font-family: helvetica;
	text-transform: uppercase;
	font-weight: 900;
	color: #666;
}
.order-list .iconfont{
	display: block;
	text-align: center;
	font-size: 3rem;
	color: #178FE5;
}
.order-list p{
	font-size: .875rem;
	line-height: 2;
	text-align: center;
}
.order-text h3{
	font-size: 1.25rem;
	color: #316AC5;
	font-weight: 900;
	line-height: 2;
}
.order-text p{
	font-size: .875rem;
	line-height: 2;
}
.order-text a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 1rem;
	width: 1.8rem;
	height: 1.8rem;
	border-radius: 50%;
	background-color: #316AC5;
	color: #fff;
	float: right;
	font-weight: 900;
}