* {
	margin: 0;
	padding: 0;
}

html,
body {
	position: relative;
	height: 100%;
}

.width {
	width: 1200px;
	margin: 0 auto;
}

.clear {
	clear: both;
}

body {
	font-family: "微软雅黑";
}

a {
	text-decoration: none;
	-moz-transition: .5s ease;
	-webkit-transition: .5s ease;
	transition: .5s ease;
}

li {
	list-style-type: none;
}

img {
	border: 0;
	/* max-width: 100%; */
	/* transition: all .3s; */
}

.logo_bg {
	width: 100%;
	height: 120px;
	position: fixed;
	top: 0;
	z-index: 99;
	background-color: #FFFFFF;
	box-shadow: 0px 0 8px rgba(0,0,0,.3);
}

.logo {
	float: left;
	font-size: 0;
	margin-top: 20px;
}

/* 导航 */
.nav {
	float: right;
	line-height: 120px;
	font-weight: bold;
}

.nav ul{
	width: 700px;
	display: flex;
	justify-content: space-between;
}

.nav_a1 {
	position: relative;
	font-size: 16px;
	color: #333;
	padding: 15px 0;
}

.nav_a1:hover {
	color: #0068b7;
}

.nav_a1::after {
	content: '';
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #fff;
	-moz-transition: .5s ease;
	-webkit-transition: .5s ease;
	transition: .5s ease;
}

.nav_a1:hover::after {
	left: 0;
	width: 100%;
	background: #0068b7;
}

/* banner */
.flexslider {
	position: relative;
	width: 100%;
	height: 600px;
	margin: 0 auto;
	overflow: hidden;
	margin-top: 120px;
}

.flexslider .slides {
	position: relative;
	z-index: 1;
}

.flexslider .slides li {
	width: 100%;
	height: 600px;
}

.flex-control-nav {
	position: absolute;
	bottom: 4%;
	z-index: 2;
	width: 100%;
	text-align: center;
}

.flex-control-nav li {
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 5px;
	*display: inline;
	zoom: 1;
}

.flex-control-nav a {
	display: inline-block;
	width: 8px;
	height: 8px;
	overflow: hidden;
	cursor: pointer;
	font-size: 0;
	background: #fff;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-moz-transition: .5s ease;
	-webkit-transition: .5s ease;
	transition: .5s ease;
}

.flex-control-nav a:hover {
	background: #0068b7;
}

.flex-control-nav .flex-active {
	background: #0068b7;
}

.flexslider .flex-direction-nav {
	position: absolute;
	z-index: 3;
	width: 100%;
	top: 0;
}

.flexslider .flex-direction-nav li a {
	display: block;
	width: 15%;
	height: 600px;
	overflow: hidden;
	cursor: pointer;
	position: absolute;
	filter: alpha(Opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	-moz-transition: .5s ease;
	-webkit-transition: .5s ease;
	transition: .5s ease;
}

.flexslider .flex-direction-nav li a.flex-prev {
	left: 0;
	background: url(../img/prev.png) 40% 50% no-repeat;
	background-size: 50px;
}

.flexslider .flex-direction-nav li a.flex-next {
	right: 0;
	background: url(../img/next.png) 60% 50% no-repeat;
	background-size: 50px;
}

.flexslider .flex-direction-nav li a:hover {
	filter: alpha(Opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

.flexslider .flex-direction-nav li a.flex-prev:hover {
	background-position: 30% 50%;
}

.flexslider .flex-direction-nav li a.flex-next:hover {
	background-position: 70% 50%;
}

/* 关于我们 */
.title{
	width: 100%;
}

.title_i p{
	position: relative;
	font-size: 28px;
	line-height: 70px;
	
}
.title_i p::after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 2px;
	background: #0068b7;
	-moz-transition: .5s ease;
	-webkit-transition: .5s ease;
	transition: .5s ease;
}

.about_i{
	height: 920px;
	margin-top: 30px;
}
.about_i .about_i_con{
	max-height: 320px;
}
.about_i_con p{
	font-size: 18px;
	line-height: 35px;
	padding-top: 15px;
	text-indent: 2em;
}
.about_i_bg{
	margin-top: 30px;
}
.about_i_bg img{
	display: block;
	width: 700px;
	height: 450px;
	float: left;
	border-radius: 10px;
	box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.5);
}
.about_i_num{
	float: right;
	width: 450px;
	display: flex;
	flex-wrap: wrap;
	background: url(../img/num_bg.png);
}
.about_num{
	padding-top: 20px;
	width: 225px;
	height: 130px;
	text-align: center;
}
.about_num span{
	line-height: 80px;
	font-size: 35px;
	font-weight: bold;
	color: #333333;
}
.about_i_num .sp2{
	line-height: 0px;
	font-size: 16px;
	/* font-weight: 100; */
	color: #999999;
}

/* 产品展示 */
.pro_i{
	height: 720px;
	background-color: #F5F5F5;
}
.pro_i_bg{
	margin-top: 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.pro_con{
	width: 300px;
	height: 300px;
	position: relative;
	overflow: hidden;
}
.pro_con img{
	transition: all .3s;
	max-width: 100%;
}
.pro_con:hover img{
	transform: scale(1.1);
}
.pro_con:hover .pro_cover{
	opacity: 1;
}
.pro_con:hover .pro_cover p{
	opacity: 1;
}
.pro_cover{
	width: 300px;
	height: 300px;
	background-color: rgba(0,0,0,.5);
	z-index: 2;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	transition: all .3s;
}
.pro_cover p{
	line-height: 300px;
	color: #FFFFFF;
	text-align: center;
	opacity: 0;
	transition: all .3s;
}

/* 优势 */
.youshi{
	height: 400px;
}
.youshi1_all{
	display: flex;
}
.youshi_con{
	width: 400px;
	height: 280px;
	margin-top: 30px;
	border-radius: 20px;
	display: inline-block;
	transition:  all .3s;
}
.youshi1_ico1{
	width: 80px;
	height: 80px;
	border: 1px solid #333333;
	border-radius: 20px;
	margin: 30px auto;
	background: url(../img/hezuo.png)center no-repeat;
	transition:  all .3s;
}
.youshi1_ico2{
	width: 80px;
	height: 80px;
	border: 1px solid #333333;
	border-radius: 20px;
	margin: 30px auto;
	background: url(../img/jingyan.png)center no-repeat;
	transition:  all .3s;
}
.youshi1_ico3{
	width: 80px;
	height: 80px;
	border: 1px solid #333333;
	border-radius: 20px;
	margin: 30px auto;
	background: url(../img/pinzhi.png)center no-repeat;
	transition:  all .3s;
}
.youshi_con .p1{
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 20px;
}
.youshi_con p{
	font-size: 15px;
	line-height: 20px;
	text-align: center;
	padding:0 30px;
}
.youshi_con:hover .youshi1_ico1{
	background: url(../img/hezuo_w.png)center no-repeat #0068B7;
	border: 1px solid #ebf8ff;
}
.youshi_con:hover .youshi1_ico2{
	background: url(../img/jingyan_w.png)center no-repeat #0068B7;
	border: 1px solid #ebf8ff;
}
.youshi_con:hover .youshi1_ico3{
	background: url(../img/pinzhi_w.png)center no-repeat #0068B7;
	border: 1px solid #ebf8ff;
}
.youshi_con:hover{
	background-color: #ebf8ff;
}

/* 新闻 */
.news_i{
	height: 600px;
	background-color: #f8f8f8;
}
.news_i_left{
	width: 600px;
	height: 450px;
	overflow: hidden;
	margin-top: 30px;
	float: left;
}
.news_i_left img{
	transition: all .8s;
}
.news_i_left img:hover{
	transform: scale(1.1);
}
.news_i_right{
	width: 600px;
	height: 450px;
	float: right;
	margin-top: 30px;
	background-color: #FFFFFF;
}
.news_i_con{
	width: 100%;
	height: 150px;
	transition: all .3s;
}
.news_i_con a{
	display: flex;
}
.news_i_con_left{
	height: 120px;
	width: 120px;
	margin-top: 15px;
	padding-left: 20px;
	border-right: 1px solid #999999;
	text-align: center;
}
.news_i_con_left .p1{
	font-size: 30px;
	color: #666666;
	font-weight: bold;
	padding-top: 30px;
	transition: all .3s;
}
.news_i_con:hover .news_i_con_left .p1{
	color: #0068B7;
}
.news_i_con_left .p2{
	font-size: 16px;
	color: #999999;
	font-weight: bold;
	transition: all .3s;
}
.news_i_con:hover .news_i_con_left .p2{
	color: #0068B7;
}
.news_i_con_right{
	height: 120px;
	width: 440px;
	margin-top: 15px;
	padding:0 20px;
}
.news_i_con_right .p3{
	font-size: 16px;
	color: #666666;
	line-height: 60px;
}
.news_i_con_right .p4{
	font-size: 14px;
	color: #999999;
}
.news_i_con:hover{
	background-color: #ebf8ff;
}

/* 联系我们 */
.contact_i{
	height: 500px;
}
.contact_i_left{
	float: left;
	width: 500px;
}
.contact_i_left .p1{
	font-size: 20px;
	font-weight: bold;
	color: #0068B7;
	line-height: 60px;
}
.contact_i_left .p2{
	line-height: 35px;
	color: #555555;
	display: inline-block;
	margin-right: 30px;
	padding-left: 35px;
	background: url(../img/phone.png)left no-repeat;
}
.contact_i_left .p3{
	line-height: 35px;
	color: #555555;
	display: inline-block;
	padding-left: 35px;
	background: url(../img/youbian.png)left no-repeat;
}
.contact_i_left .p4{
	line-height: 35px;
	color: #555555;
	padding-left: 35px;
	background: url(../img/e-mail.png)left no-repeat;
}
.contact_i_left .p5{
	line-height: 35px;
	color: #555555;
	padding-left: 35px;
	background: url(../img/address.png)left no-repeat;
}
.contact_i_img1{
	display: inline-block;
	text-align: center;
	margin: 10px 20px;
}
.contact_i_right{
	float: right;
	width: 650px;
	height: 400px;
}

.foot{
	height: 50px;
	background-color: #666666;
	text-align: center;
}
.foot p{
	font-size: 14px;
	line-height: 50px;
	display: inline-block;
	padding-right: 20px;
	color: #FFFFFF;
}
.foot a{
	font-size: 14px;
	color: #FFFFFF;
}

/* 内页ban */
.ban{
	width: 100%;
	height: 280px;
	text-align: center;
	margin-top: 125px;
}
.ban img{
	box-shadow: 0 0 8px rgba(0,0,0,.2);
}
.about{
	margin-top: 20px;
	min-height: 600px;
}
.culture{
	width: 100%;
	margin-top: 20px;
	height: 600px;
	background-color: #F5F5F5;
}
.culture_all{
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.culture_con{
	width: 270px;
	height: 200px;
	border: 5px solid #FFFFFF;
	background-color: #FFFFFF;
	margin-bottom: 26px;
	transition: all .3s;
	overflow: hidden;
	border-radius: 50px 0 50px 0;
}
.culture_con:hover{
	border: 5px solid #0068b7;
}
.culture_con .p1{
	font-size: 22px;
	text-align: center;
	line-height: 60px;
	margin-bottom: 20px;
	position: relative;
}
.culture_con .p1::after{
	content: '';
	z-index: 2;
	width: 60px;
	height: 5px;
	position: absolute;
	bottom: 0;
	left: 105px;
	background: #0068B7;
	border-radius: 4px;
	transition: .5s ease;
}
.culture_con .p2{
	font-size: 14px;
	text-align: center;
	line-height: 22px;
	padding: 0 30px;
}
.honor{
	margin-top: 20px;
	height: 970px;
}
.honor_all{
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.honor_con{
	width: 270px;
	height: 400px;
	border: 5px solid #f5f5f5;
	margin-bottom: 26px;
	transition:  all .3s;
}
.honor_con img{
	width: 100%;
}
.honor_con:hover{
	border: 5px solid #0068B7;
}

.partner{
	min-height: 300px;
	margin-bottom: 30px;
}
.partner_all{
	margin-top: 20px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.partner_con{
	width: 198px;
	height: 100px;
	border: 1px solid #F5F5F5;
}
.partner_con img{
	width: 100%;
}
.partner_con:hover{
	border: 1px solid #0068B7;
}

/* 位置 */
.position{
	width: 875px;
	font-size: 14px;
	margin-bottom: 15px;
	height: 40px;
	line-height: 40px;
	padding-left: 25px;
	border-bottom: 1px solid #dedede;
	background: url(../img/home.png)left no-repeat;
}
.position a{
	color: #333333;
}

/* 商品 */
.product{
	margin-top: 30px;
}

/* 左侧菜单 */
.pro_menu{
	width: 250px;
	float: left;
}
.pro_menu p{
	text-align: left;
	height: 80px;
	line-height: 80px;
	font-size: 22px;
	font-weight: bold;
	color: #FFFFFF;
	padding-left: 90px;
	background: url(../img/menu.png) 40px center no-repeat #0068b7;
}
.menu_ul{
	width: 248px;
	border: 1px solid #B5B5B5;
}
.menu_ul li{
	border-top: 1px solid #B5B5B5;
}
.menu_ul li a{
	display: block;
	width: 198px;
	height: 40px;
	line-height: 40px;
	color: #333333;
	padding-left: 50px;
	font-size: 14px;
}
.menu_ul li a:hover{
	background-color: #018DD6;
	color: #FFFFFF;
}
.menu_ul ul li a{
	width: 168px;
	font-size: 14px;
	color: #666666;
	padding-left: 80px;
}
.cur3{
	background-color: #018DD6;
	color: #FFFFFF !important;
}

.product_right{
	float: right;
	width: 900px;
	min-height: 450px;
}

.pro_conall{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.pro_right_con{
	width: 290px;
	height: 325px;
	border: 1px solid #B5B5B5;
	text-align: center;
	margin-bottom: 20px;
	transition: all .3s;
	overflow: hidden;
}
.pro_right_con:last-child:nth-child(3n - 1) {
      margin-right: calc(290px + 28px / 2);
  }
.pro_right_con:hover{
	border: 1px solid #0068b7;
}
.pro_right_con:hover p{
	background-color: #0068b7;
	color: #FFFFFF;
	border-top: 1px solid #0068b7;
}

.pro_right_con img{
	display: block;
	width: 100%;
	height: 290px;
	transition: all .3s;
	overflow: hidden;
}
.pro_right_con p{
	height: 35px;
	line-height: 35px;
	font-size: 13px;
	border-top: 1px solid #B5B5B5;
	transition: all .3s;
	color: #333333;
}

/* 产品详情 */
.pro2_right{
	float: right;
	width: 900px;
	min-height: 450px;
}
/* 内页 */
.pro_con2{
	float: right;
	height: 280px;
	width: 450px;
	position: relative;
}
.pro_con2 .p1{
	height: 40px;
	line-height: 40px;
	font-size: 20px;
	border-bottom: 1px solid #777777;
}
.pro_con2 .p2{
	font-size: 14px;
	line-height: 25px;
	color: #666666;
}
.pro_con2 a{
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	width: 150px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	color: #FFFFFF;
	background-color: #D50000;
	border-radius: 10px;
}
/* 详情 */
.xiangqing{
	margin-top: 20px;
	width: 900px;
	float: right;
}
.xiangqing_title{
	height: 35px;
	border-bottom: 2px solid #e7ecec;
}
.xiangqing_title .p1{
	display: inline-block;
	width: 120px;
	height: 35px;
	font-size: 24px;
	padding-left: 25px;
	background: url(../img/xq.png)left center no-repeat;
	border-bottom: 2px solid #333333;
}
.xiangqing_title .p2{
	color: #bfbfbf;
	display: inline-block;
}
.xq_con{
	margin-top: 25px;
	min-height: 100px;
	margin-bottom: 30px;
}

/* 新闻 */
.news_con{
	width: 100%;
	height: 150px;
	border: 1px solid #cbcbcb;
	margin-bottom: 20px;
}
.news_con_left{
	float: left;
	width: 120px;
	height: 120px;
	overflow: hidden;
	margin: 15px;
}
.news_con_left img{
	max-width: 100%;
	transition: all .3s;
}
.news_con_right{
	float: right;
	width: 700px;
	height: 120px;
	overflow: hidden;
	margin: 15px;
}
.news_con_right .p1{
	line-height: 40px;
	color: #666666;
}
.news_con_right .p2{
	font-size: 13px;
	color: #999999;
	line-height: 20px;
}

/* 新闻详情 */
.news{
	float: right;
	width: 900px;
}
.news .p1{
	font-size: 25px;
	padding-bottom: 15px;
	text-align: center;
}
.news .p2{
	font-size: 14px;
	padding-bottom: 15px;
	color: #999999;
	border-bottom: 1px solid #AAAAAA;
	text-align: center;
}
.news_con2{
	min-height: 500px;
	margin-top: 15px;
}

.contact{
	margin-top: 60px;
	padding-bottom: 40px;
	border-bottom: 1px dashed #AAAAAA;
}
.contact_left{
	float: left;
	width: 700px;
	text-align: center;
}
.contact_left i{
	display: block;
	margin: 0 auto;
	width: 200px;
	height: 220px;
	background: url(../img/logo2.png) no-repeat center;
}
.contact_left .p1{
	font-size: 25px;
	font-weight: bold;
	padding-bottom: 25px;
}
.contact_left .p2{
	font-size: 20px;
	font-weight: bold;
	color: #005CA1;
	line-height: 45px;
}
.contact_right{
	float: right;
	width: 500px;
	border-radius: 30px;
	overflow: hidden;
}
.contact_right img{
	width: 100%;
	transition: all .3s;
}
.contact_right img:hover{
	transform: scale(1.1);
}

.message_con{
	margin-top: 30px;
}
.message_con .p1{
	text-align: center;
	font-size: 25px;
	font-weight: bold;
	padding-bottom: 25px;
}
.message {
	font-size: 14px;
	color: #666;
	line-height: 42px;
	margin-top: 40px;
	/* margin-left: 100px; */
	margin: 0 auto;
}

.message td {
	padding-bottom: 10px;
}

.message img {
	position: absolute;
	height: 42px;
}

.in1 {
	height: 24px;
	line-height: 24px;
	border: 1px solid #ddd;
	outline: none;
	padding: 8px 10px;
	font-size: 14px;
	color: #666;
	width: 300px;
	margin-right: 20px;
}

.in2 {
	height: 100px;
	line-height: 24px;
	border: 1px solid #ddd;
	outline: none;
	padding: 8px 10px;
	font-size: 14px;
	color: #666;
	resize: none;
	font-family: "微软雅黑";
	width: 716px;
	margin-bottom: -16px;
}

.in3 {
	float: left;
	display: block;
	width: 110px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #005ca1;
	font-size: 14px;
	background: #005ca1;
	color: #fff;
	outline: none;
	cursor: pointer;
	-moz-transition: .3s ease;
	-webkit-transition: .3s ease;
	transition: .3s ease;
}

.in4 {
	background: #666;
	border-color: #666;
	margin-left: 10px;
}

.in3:hover {
	background: none;
	color: #005ca1;
}

.in4:hover {
	color: #666;
}






/* 分页器 */
 .page{
	 float: right;
	 width: 880px;
 	height: 50px;
 	text-align: center;
 	font-size: 14px;
 	background-color: #FFFFFF;
 	color: #676767;
	margin-top: 15px;
 }
 .page,
 .page span,
 .page p,
 .page a {
 	padding: 4px;
 	font-size: 14px;
 	color: #868686;
 }
 
 .page a {
 	color: #666;
 }
 
 .page a:hover {
 	color: #005ca1;
 }
 
 




/* #0068b7 */