﻿/*header*/
.header{
	position: relative;
	z-index: 999;
	padding:0 1rem;
	box-shadow: 2px 3px 4px rgba(0,0,0,.1);
}
.header-flex{
	display: flex;
	justify-content: space-between;
}
.header .logo{
	display: flex;
	align-items: center;
	flex: 1;
}
.header .logo img{
	height: 100%;
	padding-top: 5px;
	padding-bottom: 5px;
	height: 4.5rem;
}
.nav{
	flex: 2;
}
.nav ul.s-flex{
	width: 100%;
	justify-content: flex-end;
}
.nav ul.s-flex>li{
	position: relative;
	z-index: 999;
}
.nav ul.s-flex>li>a{
	display: block;
	font-size: 15px;
	line-height: 5rem;
	height: 5rem;
	overflow: hidden;
	padding: 0 1.875rem;
}
.nav ul.s-flex>li.active>a{
	background-color: #3959a7;
	color: #fff;
}
.drop-menu{
	position: absolute;
	left: 0;
	top: 100%;
	display: block;
	width: 100%;
	text-align: center;
	background-color: #3959a7;
	color: #fff;
	transform: rotateY(-90deg);
	transition: all .25s ease-in-out;
	opacity: 0;
}
.drop-menu p>a{
	display: block;
	border-top: 1px solid rgba(255,255,255,.2);
	font-size: .875rem;
	line-height: 2.4rem;
}
.drop-menu p>a:hover{
	background-color: rgba(0,0,0,.2);
}
.nav li:hover .drop-menu{
	transform: rotateY(0);
	opacity: 1;
}
.header-right{
	flex: 1;
	display: flex;
	height: 5rem;
	padding:1rem 0;
	justify-content: center;
	align-items: center;
}
.header-search form{
	width: 10rem;
	position: relative;
	max-width: 100%;
	display: flex;
	height: 5rem;
	justify-content: center;
	align-items: center;
}
.header-search form:hover input{
	width: 100%;
}
.header-search input{
	width:0;
	line-height: 2rem;
	padding: 0;
	border: none;
	font-size: .875rem;
	color: #777;
	transition: all .35s ease-in-out;
	border-bottom: 1px solid rgba(0,0,0,.1);
}
.header-search input:focus{
	outline: none;
	width: 100%;
}
.header-search button{
	position: absolute;
	top: 0;
	right: .5rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	line-height: 5rem;
	font-size: 1.25rem;
	color: #777;
	border: none;
	background-color: transparent;
	outline: none;
}
.header-phone{
	border-left: 1px solid rgba(0,0,0,.1);
	margin-left: 10px;
	padding-left: 10px;
}
.header-phone {
	font-size: 1.25rem;
	font-family: helvetica;
	font-weight: 900;
	line-height: 2rem;
	color: #3959a7;
}
.header-phone .iconfont{
	font-size: 2rem;
	color: #666;
	font-weight: 400;
	margin-right: 2px;
}

.about-img{
	border-radius: 40% 0 40% 0;
	overflow: hidden;
}
.about-text{
	margin-top: 2rem;
}
.about-text h2{
	font-size: 2.25rem;
	line-height: 2;
	font-family: "times new roman";
	letter-spacing: 2px;
	font-weight: 900;
	color: #777;
}
.about-text h3{
	font-size: 1.625rem;
	line-height: 2;
	letter-spacing: 2px;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid rgba(0,0,0,.1);
	color: #3959a7;
}
.about-text p{
	font-size: 1rem;
	line-height: 2;
	color: #999;
}
.about-description{
	font-size: 0.9375rem;
	line-height: 2;
	margin-top: 1.5rem;
	color: #555;
}
.more-btn2{
	margin-top: 1rem;
}
.more-btn2 a{
	display: inline-block;
	font-size: .875rem;
	border-radius: 5rem;
	line-height: 2rem;
	color: #fff;
	background-color: #3959a7;
	padding: 0 1rem;
	font-family: 'Times New Roman', Times, serif;
	transition: all .35s ease-in-out;
	border: 1px solid #fff;
}
.more-btn2 a:hover{
	color: #3959a7;
	border: 1px solid #3959a7;
	background-color: #fff;
}
/*??????*/
.index-pro-swiper .swiper-slide{
	background-color: #fff;
	box-shadow: 0px 2px 8px rgba(0,0,0,.15);
}
.pro-pic{
	position: relative;
	border-right: 1px solid #eee;
	overflow: hidden;
}
.pro-pic>a.active{
	position: relative;
	z-index: 1;
	opacity: 1;
	transform: translateX(0);
}
.pro-pic>a{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0;
	transform: translateX(50%);
	transition: all .25s ease-in;
}
.pro-type{
	position: absolute;
	left: 0;
	top: 0;
	color: #fff;
	background-color: #e77b34;
	height: 3.125rem;
	line-height: 3.125rem;
	font-size: .875rem;
	padding-left: 1rem;
	padding-right: 1rem;
	z-index: 99999999;
}
.pro-type::after{
	content: '';
	position: absolute;
	left: 99%;
	top: 0;
	display: block;
	border-width:1.6rem .875rem;
	border-style: solid;
	border-color:#E77B34 transparent transparent  #E77B34;
}
.index-pro-swiper .swiper-slide-active .pro-type{
	background-color: #3959a7;
}
.index-pro-swiper .swiper-slide-active .pro-type::after{
	border-color: #3959a7 transparent transparent #3959a7;
}
.index-pro-swiper .swiper-slide-active .pro-list li.active::after{
	background-color: #3959a7;
}
.index-pro-swiper .swiper-slide-active .pro-list li.active a,.index-pro-swiper .swiper-slide-active .pro-list li a:hover{
	color: #3959a7;
}


.about-bg{
	/*background: url(img/about-bg.jpg) center center fixed no-repeat;*/
	position: relative;
}
.about-bg::before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.9);
}
.about-bg .container{
	position: relative;
	z-index: 2;
}
.index-about-list{
	padding: 3.5rem 0 1.5rem;
}
.index-about-list li{
	width: 25%;
	text-align: center;
	padding:1.5rem;
	border: 1px solid #3959a7;
	border-right: none;
}
.index-about-list li:last-child{
	border-right: 1px solid #3959a7;
}
.index-about-list li .iconfont{
	display: inline-flex;
	float: left;
	width: 6rem;
	height: 6rem;
	border: 1px solid #3959a7;
	color: #3959a7;
	border-radius: 50%;
	font-size: 4rem;
	justify-content: center;
	align-items: center;
	transform: translateX(0);
	transition: all .35s ease-in-out;
}
.index-about-list li h6{
	color: #3959a7;
	font-size: 1.5rem;
	line-height: 2;
	transform: translateX(0);
	transition: all .35s ease-in-out;
	
}
.index-about-list li p{
	text-transform: uppercase;
	font-family: helvetica;
	font-size: .875rem;
	line-height: 2rem;
	color: #3959a7;
	transform: translateX(0);
	transition: all .35s ease-in-out;
}
.index-about-list li:hover .iconfont{
	transform: translateX(1rem);
}
.index-about-list li:hover p,.index-about-list li:hover h6{
	transform: translateX(-1rem);
}


/*??????page???*/
.qywh-title{
	position: relative;
	font-size: 1.5rem;
	line-height: 2;
	margin-top: 1.5rem;
	color: #3959a7;
}
.qywh-line{
	display: inline-block;
	width: 3.5rem;
	border-bottom: 1px solid #aaa;
	margin: 1rem 0;
}

/*???????????????*/
.pro-content{
	padding: 1rem;
	background-color: #fff;
	
}
.pro-content-img{
	border: 1px solid #ddd;
}
.pro-content-smallImg{
	width: 100%;
	overflow: hidden;
}
.pro-content-smallImg ul{
}
.pro-content-smallImg li{
	width: 20%;
	padding: 5px;
}
.pro-content-smallImg li img{
	border: 1px solid #ddd;
}
.pro-content-smallImg li.active img{
	border-color: #3959a7;
}
.pro-content-text{
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid rgba(0,0,0,.15);
}
.pro-content-text h2{
	font-size: 2.1875rem;
	font-weight: 900;
	color: #3959a7;
	margin-top: 1.5rem;
}
.pro-content-phone{
	display: inline-block;
	line-height: 2rem;
	color: #3959a7;
	padding: 1rem 2rem;
	border-radius: 3rem;
	border: 2px solid #3959a7;
	margin-top: 1.5rem;
}
.pro-content-phone strong{
	font-family: helvetica;
	font-size: 1.25rem;
}
.pro-content-title1{
	background-color: #3959a7;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
	padding: .5rem 1rem;
	color: #fff;
	margin-bottom: 1rem;
	margin-top: 1rem;
}