﻿@charset "utf-8";
/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
    margin: 0;
    padding: 0;
}

/** 设置默认字体 **/
body,button, input, select, textarea /* for ie */ {
    font: 14px/1.0 "Arial","Microsoft YaHei","黑体","宋体","KaiTi",sans-serif;
}
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal;}
address, cite, dfn, em, var, i { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读, 让 small 正常化 */

/** 重置列表元素 **/
ul, ol { list-style: none; }

/** 重置文本格式元素 **/
a { text-decoration: none; -webkit-tap-highlight-color: rgba(0,0,0,0);}
a:hover { text-decoration: none; cursor: pointer; }

sup { vertical-align: text-top; } /* 重置, 减少对行高的影响 */
sub { vertical-align: text-bottom; }

/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车：让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; outline: none;} /* 使得表单元素在 ie 下能继承字体大小 */
button, input[type="button"] { cursor: pointer}
input::-ms-clear{display:none;}/*隐藏文本框叉子*/
input::-ms-reveal{display:none;}/*隐藏密码框小眼睛*/
/* 注：optgroup 无法扶正 */

/** 重置表格元素 **/
table { border-collapse: collapse; border-spacing: 0; }

/* 重置 HTML5 元素 */
article, aside, details, figcaption, figure, footer,header, hgroup, menu, nav, section,
summary, time, mark, audio, video {
    display: block;
    margin: 0;
    padding: 0;
}

html{
	font-size: 100px;
}
body{
	width: 100%;
	overflow-x: hidden;
	color: #333;
	background: #fff;
	padding-top: 100px;
}
.clear_both::after{
	content:".";
	display:block;
	height:0;
	visibility:hidden;
	clear:both;
}
.w1200{
	width: 1200px;
	margin: 0 auto;
	box-sizing: border-box;
}



.head_box{
	height: 100px;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	box-sizing: border-box;
	padding: 0 10%;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.head_box .logo_a{
	float: left;
	width: 237px;
	height: 100%;
	background: url(../img/logo.png) no-repeat center;
}
.head_box .dh_span{
	float: right;
	line-height: 100px;
	margin-left: 30px;
	padding-left: 34px;
	height: 100%;
	background: url(../img/dh.png) no-repeat left center;
}
.head_box .nav_ul{
	float: right;
	text-align: center;
	font-size: 0;
	height: 100px;
	line-height: 102px;
}
.head_box .nav_ul li{
	display: inline-block;
	vertical-align: middle;
	height: 34px;
	line-height: 34px;
	margin-left: 10px;
	position: relative;
}
.head_box .nav_ul li>a{
	display: block;
	font-size: 14px;
	padding: 0 16px;
	color: #333;
	position: relative;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.head_box .nav_ul li i{
	display: none;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.head_box .nav_ul .active i{
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.head_box .nav_ul li div{
	display: none;
	position: absolute;
	padding: 6px 0;
	width: 100%;
	top: 34px;
	background: rgba(0,51,152,0.6);
}
.head_box .nav_ul li div a{
	display: block;
	text-align: center;
	font-size: 14px;
	color: #fff;
	line-height: 2.0;
	white-space: nowrap;
}
.head_box .nav_ul li div dd{
	display: none;
	position: absolute;
	top: 0;
	left: 100%;
	padding: 6px 10px !important;
	background: rgba(0,51,152,0.6);
}
.head_box .nav_ul li>a::after{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	height: 2px;
	width: 0;
	opacity: 0;
	background: #0055a9;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.head_box .nav_ul li .active{
	color: #0055a9;
}
.head_box .nav_ul li .active::after{
	width: 100%;
	opacity: 1;
}
.head_box .nav_ul li:hover>a{
	color: #0055a9;
}
.head_box .nav_ul li:hover>a::after{
	width: 100%;
	opacity: 1;
}
.head_box .menu_div{
	display: none;
	top: 0;
	right: 0;
    width: 60px;
    height: 100%;
	text-align: center;
    position: absolute;
}
.head_box .menu_div span{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 40px;
    font-size: 0;
}
.head_box .menu_div i{
	display: inline-block;
    width: 30px;
	height: 2px;
    background: #003398;
    margin: 4px 0;
    opacity: 1;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.head_box .active_div{

}
.head_box .active_div i:nth-of-type(1){
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    transform: rotate(45deg) translate(7px, 7px);
}
.head_box .active_div i:nth-of-type(2){
    opacity: 0;
}
.head_box .active_div i:nth-of-type(3){
    -webkit-transform: rotate(-45deg) translate(7px, -7px);
    transform: rotate(-45deg) translate(7px, -7px);
}

.index_body{
	padding-top: 0;
}
.index_body .head_box{
	background: none;
	box-shadow: none;
}
.index_body .head_box .logo_a{
	background: url(../img/logo2.png) no-repeat center;
}
.index_body .head_box .nav_ul li>a{
	color: #fff;
}
.index_body .head_box .nav_ul li>a::after{
	background: #fff;
}
.index_body .head_box .dh_span{
    background: url(../img/dh2.png) no-repeat left center;
	color: #fff;
}

.show_box{
	background: #003398 !important;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.foot_box{
	padding-top: 56px;
	background-image: url(../img/tp20.jpg);
	background-repeat: repeat-x;
	background-color: #373737;
	position: relative;
	border-bottom: 50px solid #121212;
}
.foot_box dl{
	position: relative;
	padding-bottom: 30px;
}
.foot_box dt{
	float: left;
}
.foot_box dt h2{
	font-size: 22px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 30px;
}
.foot_box dt small{
	font-weight: normal;
	font-size: 14px;
	display: block;
	margin-top: 14px;
}
.foot_box dt form{
	width: 270px;
}
.foot_box dt form input{
	height: 36px;
	border-radius: 4px;
	background: #fff;
	width: 100%;
	padding: 0 10px;
	box-sizing: border-box;
	border: 1px solid #b5b5b5;
	font-size: 12px;
	margin-bottom: 16px;
}
.foot_box dt form textarea{
	height: 100px;
	width: 100%;
	box-sizing: border-box;
	border-radius: 4px;
	border: 1px solid #b5b5b5;
	padding: 6px 10px;
	line-height: 1.5;
	resize: none;
	font-size: 12px;
	margin-bottom: 16px;
}
.foot_box dt form button{
	height: 36px;
	width: 90px;
	border: none;
	background: #0055a9;
	color: #fff;
	font-size: 16px;
	border-radius: 18px;
}
.foot_box dd{
	float: right;
}
.foot_box dd p{
	white-space: nowrap;
	font-size: 16px;
	color: #fff;
	line-height: 2.0;
}
.foot_box dd em{
	display: block;
	font-size: 0;
	margin-top: 10px;
}
.foot_box dd i{
	display: inline-block;
	width: 130px;
	height: 130px;
	margin-right: 16px;
	background: #fff;
}
.foot_box dd h6{
	font-size: 14px;
	color: #fff;
	margin-top: 40px;
}
.foot_box dd h6 a{
	color: #fff;
	margin-left: 20px;
}
.foot_box .gjc_div{
	position: absolute;
	left: 0;
	bottom: -32px;
	font-size: 0;
}
.foot_box .gjc_div::before{
	content: "关键词：";
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	color: #fff;
	margin-right: 14px;
}
.foot_box .gjc_div a{
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	color: #fff;
	opacity: 0.6;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.foot_box .gjc_div a::after{
	content: "/";
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	color: #fff;
	margin: 0 10px;
}
.foot_box .gjc_div a:hover{
	opacity: 1;
}

.crumb_box{
	font-size: 0;
	border-bottom: 1px solid #ddd;
	margin-bottom: 50px;
}
.crumb_box::before{
	content: "";
	display: inline-block;
	vertical-align: top;
	width: 3px;
	height: 16px;
	background: #757575;
	margin-top: 17px;
	margin-right: 10px;
}
.crumb_box a{
	font-size: 14px;
	color: #888;
	display: inline-block;
	vertical-align: top;
	line-height: 50px;
}
.crumb_box a::after{
	content: "--";
	display: inline-block;
	vertical-align: top;
	margin: -1px 5px 0;
}
.crumb_box a:last-of-type::after{
	display: none;
}

.title_h3{
	font-size: 30px;
	color: #333;
	font-weight: bold;
	text-align: center;
	margin-bottom: 50px;
}
.title_h3::before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 28px;
	height: 4px;
	background: #003398;
	margin: -4px 28px 0;
}
.title_h3::after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 28px;
	height: 4px;
	background: #003398;
	margin: -4px 28px 0;
}

.title_h4{
	font-size: 20px;
	color: #333;
	font-weight: bold;
	text-align: center;
    margin-top: 25px;
	margin-bottom: 25px;
}
.title_h4::before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 28px;
	height: 4px;
	background: #003398;
	margin: -4px 28px 0;
}
.title_h4::after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 28px;
	height: 4px;
	background: #003398;
	margin: -4px 28px 0;
}

.pb{
	padding-bottom: 60px;
}

.pagin_box{
	margin-top: 50px;
	font-size: 0;
	text-align: center;
}
.pagin_box a{
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	color: #666;
	height: 30px;
	line-height: 30px;
	border: 1px solid #dcdcdc;
	padding: 0 12px;
	margin: 0 6px;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.pagin_box a.active{
	background: #397aba;
	border: 1px solid #397aba;
	color: #fff;
}
.pagin_box a:hover{
	background: #397aba;
	border: 1px solid #397aba;
	color: #fff;
}

.link_p{
	font-size: 0;
	text-align: center;
	margin-top: 50px;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.link_p a{
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	color: #333;
	line-height: 2.0;
	margin: 0 14px;
	padding: 0 10px;
	background: #d7d7d7;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.link_p .active{
	background: #003398;
	color: #fff;
}
.link_p a:hover{
	background: #003398;
	color: #fff;
}

.banner_box{
	overflow: hidden;
}
.banner_box img{
	width: 100%;
	vertical-align: top;
}

.product_dl{
	margin-top: 40px;
}
.product_dl dt{
	font-size: 24px;
	color: #003398;
	padding-bottom: 16px;
    font-weight: bold;
    text-align: center;
	margin-bottom: 50px;
	border-bottom: 1px solid #ccc;
}
.product_dl dt::before{
	content: "";
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 2px;
    background: #003398;
    margin: -4px 28px 0;
}
.product_dl dt::after{
	content: "";
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 2px;
    background: #003398;
    margin: -4px 28px 0;
}
.product_dl dd p{
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 10px;
}
.product_dl dd p:last-of-type{
	margin-bottom: 0;
}
.product_dl dd p span{
	display: inline-block;
	vertical-align: top;
	background: #003398;
	color: #fff;
	padding: 0 5px 0 10px;
}
.product_dl dd p a{
	display: inline-block;
	vertical-align: top;
	color: #333;
	margin-left: 10px;
	transition: 0.5s;
    -webkit-transition: 0.5s;
     
}
.product_dl dd p a:hover{
	color: #003398;
}

.news_dl{
	padding-top: 40px;
	margin-top: 40px;
	background: #f2f2f2;
}
.news_dl dt{
	font-size: 24px;
	color: #003398;
	padding-bottom: 16px;
    font-weight: bold;
    text-align: center;
	margin-bottom: 50px;
}
.news_dl dt::before{
	content: "";
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 2px;
    background: #003398;
    margin: -4px 28px 0;
}
.news_dl dt::after{
	content: "";
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 2px;
    background: #003398;
    margin: -4px 28px 0;
}
.news_dl dd{

}
.news_dl dd a{
	display: block;
	height: 42px;
	line-height: 42px;
	border-bottom: 1px dashed #ccc;
	font-size: 14px;
}
.news_dl dd a p{
	color: #666;
	display: inline-block;
	width: calc(100% - 90px);
	white-space: nowrap;
    text-overflow: ellipsis;
	overflow: hidden;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.news_dl dd a span{
	color: #999;
	float: right;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.news_dl dd button{
	display: block;
	margin: 30px auto 0;
	width: 90px;
	height: 30px;
	background: #0055a9;
	color: #fff;
	border: none;
}
.news_dl dd a:hover p{
	color: #003398;
}
.news_dl dd a:hover span{
	color: #003398;
}

.jj_dl{
	padding-top: 40px;
	margin-top: 40px;
	background: #f2f2f2;
}
.jj_dl dt{
	font-size: 24px;
	color: #003398;
	padding-bottom: 16px;
    font-weight: bold;
    text-align: center;
	margin-bottom: 30px;
	border-bottom: 1px solid #ccc;
}
.jj_dl dt::before{
	content: "";
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 2px;
    background: #003398;
    margin: -4px 28px 0;
}
.jj_dl dt::after{
	content: "";
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 2px;
    background: #003398;
    margin: -4px 28px 0;
}
.jj_dl dd{

}
.jj_dl dd p{
	font-size: 14px;
	color: #333;
	line-height: 2.0;
}
.jj_dl dd h6{
	display: inline-block;
    background: #003398;
	color: #fff;
	line-height: 32px;
	padding: 0 5px 0 10px;
	margin-bottom: 10px;
	margin-top: 20px;
}



.case_box{

}
.case_box ul{
	margin-top: -40px;
}
.case_box ul li{
	float: left;
	width: 15%;
	margin-right: 2%;
	margin-top: 40px;
}
.case_box ul li:nth-of-type(6n){
	margin-right: 0;
}
.case_box ul li em{
	display: block;
	padding-bottom: 100%;
	box-sizing: border-box;
	border: 1px solid #ccc;
	position: relative;
}
.case_box ul li em img{
	position: absolute;
	width: auto;
	height: auto;
	max-width: 94%;
	max-height: 94%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.case_box ul li p{
	white-space: nowrap;
    text-overflow: ellipsis;
	overflow: hidden;
	font-size: 14px;
	text-align: center;
	height: 36px;
	line-height: 36px;
	background: #f7f7f7;
}



.product_box{

}
.product_box ul{
	margin-top: -30px;
}
.product_box ul li{
	float: left;
	width: 32%;
	margin-right: 2%;
	margin-top: 30px;
	box-sizing: border-box;
	border: 1px solid #ccc;
}
.product_box ul li:nth-of-type(3n){
	margin-right: 0;
}
.product_box ul li a{
	display: block;
}
.product_box ul li em{
	display: block;
	overflow: hidden;
}
.product_box ul li em img{
	vertical-align: top;
	width: 100%;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.product_box ul li p{
	white-space: nowrap;
	color: #333;
    text-overflow: ellipsis;
	overflow: hidden;
	font-size: 14px;
	text-align: center;
	height: 42px;
	line-height: 42px;
	background: #e0e0e0;
}
.product_box ul li:hover em img{
	-webkit-transform: scale(1.1);
    transform: scale(1.1);
}



.productinfo_box{

}
.productinfo_box dl{
	
}
.productinfo_box dt{
	
}
.productinfo_box dt h3{
	font-size: 24px;
	margin-bottom: 40px;
}
.productinfo_box dt h3::before{
	content: "";
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 2px;
    background: #003398;
    margin: -4px 28px 0 0;
}
.productinfo_box dt img{
	
	margin: 0 auto;
	max-width: 100%;
	border: 1px solid #ccc;
}
.productinfo_box dt p{
	font-size: 14px;
	color: #999;
	line-height: 2.0;
	/*margin-top: 30px;*/
}
.productinfo_box dd{

}
.productinfo_box dd h4{
	font-size: 20px;
	color: #003398;
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 14px;
}
.productinfo_box dd ul{

}
.productinfo_box dd ul li{
	font-size: 0;
	line-height: 40px;
}
.productinfo_box dd ul li:nth-of-type(odd){
	background: #ebebeb;
}
.productinfo_box dd ul li span{
	font-size: 14px;
	color: #454545;
	display: inline-block;
	vertical-align: top;
	width: 25%;
	box-sizing: border-box;
	padding-left: 2%;
}
.productinfo_box dd ul li span::before{
	content: "★";
	margin-right: 6px;
}
.productinfo_box dd table{
	width: 100%;
	background: #ebebeb;
	text-align: center;
	font-size: 14px;
}
.productinfo_box dd table tr{
	
}
.productinfo_box dd table th{
	width: 25%;
	border: 1px solid #fff;
	background: #ccdbed;
	color: #0049a3;
	padding: 13px 10px;
}
.productinfo_box dd table td{
	border: 1px solid #fff;
	padding: 13px 10px;
}
.productinfo_box dd img{
	width: auto;
	max-width: 100%;
	display: block;
	margin: 20px auto;
}



.about_box{
	
}
.about_box img{
	width: 100%;
	vertical-align: top;
	margin-bottom: 40px;
}
.about_box p{
	font-size: 14px;
	color: #333;
	line-height: 1.8;
	text-indent: 28px;
}



.qualification_box{

}
.qualification_box ul{
	margin-top: -30px;
}
.qualification_box ul li{
	float: left;
	width: 31%;
	margin-right: 3.5%;
	margin-top: 30px;
}
.qualification_box ul li:nth-of-type(3n){
	margin-right: 0;
}
.qualification_box ul li img{
	width: 100%;
}
.qualification_box ul li em{
	display: block;
	height: 260px;
	background: #003398;
}
.qualification_box ul li p{
	font-size: 14px;
	text-align: center;
	white-space: nowrap;
    text-overflow: ellipsis;
	overflow: hidden;
	margin-top: 14px;
}



.newsinfo_box{

}
.newsinfo_box h5{
	text-align: center;
	font-size: 18px;
	margin-bottom: 20px;
}
.newsinfo_box h5 small{
	display: block;
	font-size: 14px;
	color: #574c4d;
	margin-top: 10px;
}
.newsinfo_box p{
	font-size: 14px;
	color: #999;
	line-height: 1.8;
}
.newsinfo_box .ye_div{
	padding-top: 10px;
	margin-top: 40px;
	border-top: 1px solid #ccc;
}
.newsinfo_box .ye_div a{
	display: block;
	font-size: 14px;
	color: #999;
	line-height: 2.0;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
.newsinfo_box .ye_div a:hover{
	color: #003398;
}



.news_box{

}
.news_box ul{
	
}
.news_box ul li{
	margin-top: 20px;
}
.news_box ul li::after{
	content:".";
	display:block;
	height:0;
	visibility:hidden;
	clear:both;
}
.news_box ul li a{
	font-size: 0;
	display: block;
}
.news_box ul li span{
	float: left;
	width: 90px;
	text-align: center;
	height: 32px;
	line-height: 32px;
	background: #a7a7a7;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	position: relative;
}
.news_box ul li span::after{
	content: "";
	position: absolute;
	top: 16px;
	left: 100px;
	width: 30px;
	height: 1px;
	background: #ccc;
}
.news_box ul li span::before{
	content: "";
	position: absolute;
	width: 1px;
	height: 76px;
	background: #ccc;
	left: 45px;
	top: 42px;
}
.news_box ul li div{
	float: right;
	width: calc(100% - 140px);
	box-sizing: border-box;
	border: 1px solid #ccc;
	padding: 16px 30px;
}
.news_box ul li div h6{
	font-size: 14px;
	color: #333;
	font-weight: bold;
	margin-bottom: 8px;
	line-height: 1.6;
}
.news_box ul li div p{
	font-size: 14px;
	color: #333;
	height: 44px;
	overflow: hidden;
	line-height: 1.6;
} 



.contact_box{

}
.contact_box dl{
	
}
.contact_box dt{
	float: left;
	width: 50%;
	box-sizing: border-box;
	padding-right: 40px;
}
.contact_box dt h5{
	font-size: 24px;
	font-weight: bold;
}
.contact_box dt small{
	font-size: 12px;
	color: #999;
	display: block;
	margin-top: 8px;
	margin-bottom: 20px;
}
.contact_box dt p{
	font-size: 14px;
	color: #333;
	line-height: 2.0;
}
.contact_box dt .p2{
	color: #999;
	margin-top: 14px;
}
.contact_box dd{
	float: right;
	width: 50%;
}
.contact_box #map{
	width: 100%;
	height: 400px;
}
.contact_box ul{
	background: #e8e8e8;
	padding: 40px 0;
	margin-top: 40px;
}
.contact_box ul li{
	float: left;
	width: 33.33%;
	font-size: 14px;
	box-sizing: border-box;
	padding: 0 50px;
}
.contact_box ul li:nth-of-type(2){
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.contact_box ul li h6{
	color: #003398;
	font-weight: bold;
}
.contact_box ul li div{
	margin-top: 10px;
}
.contact_box ul li div span{
	display: inline-block;
	line-height: 2.0;
	margin-right: 40px;
}
.contact_box ul li div em{
	display: block;
	line-height: 2.0;
}



#menu{
	position: fixed;
	right: 20px;
	top: 50%;
	z-index: 7;
	transform: translateY(-50%);
}
#menu li{
	margin: 15px 0;
}
#menu li a{
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #003398;
	opacity: 0.2;
	transition: 0.5s;
    -webkit-transition: 0.5s;
}
#menu li.active a{
	opacity: 1;
}
#fullpage{

}
.section img{
	width: auto !important;
	height: auto !important;
}
#fullpage .fp-tableCell{
	display: block;
	position: relative;
}
#fullpage .bg_img{
	width: 100% !important;
	height: 100% !important;
	vertical-align: top;
}
#fullpage .m_img{
	width: 100% !important;
	height: 100% !important;
	vertical-align: top;
}
#fullpage .div2{
	
}
#fullpage .div2 ul{
	position: absolute;
	width: 54%;
	top: 50%;
	left: 23%;
	transform: translateY(-50%);
	font-size: 0;
	text-align: right;
}
#fullpage .div2 ul::before{
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	width: 161px;
	height: 215px;
	background: url(../img/01.png) no-repeat;
}
#fullpage .div2 ul li{
	display: inline-block;
	width: 32%;
	margin-right: 2%;
	margin-top: 20px;
}
#fullpage .div2 ul li a{
	display: block;
}
#fullpage .div2 ul li:nth-of-type(1),
#fullpage .div2 ul li:nth-of-type(3),
#fullpage .div2 ul li:nth-of-type(6){
	margin-right: 0;
}
#fullpage .div2 ul li img{
	width: 100% !important;
	vertical-align: top;
}
#fullpage .div3{

}
#fullpage .div3 ul{
	position: absolute;
	width: 54%;
	top: 50%;
	left: 23%;
	transform: translateY(-50%);
	font-size: 0;
}
#fullpage .div3 ul::before{
	content: "";
	position: absolute;
	top: 20px;
	right: 0;
	width: 172px;
	height: 215px;
	background: url(../img/02.png) no-repeat;
}
#fullpage .div3 ul li{
	display: inline-block;
	width: 32%;
	margin-left: 2%;
	margin-top: 20px;
}
#fullpage .div3 ul li a{
	display: block;
}
#fullpage .div3 ul li:nth-of-type(1),
#fullpage .div3 ul li:nth-of-type(2),
#fullpage .div3 ul li:nth-of-type(4){
	margin-left: 0;
}
#fullpage .div3 ul li em{
	display: block;
}
#fullpage .div3 ul li em img{
	width: 100% !important;
	vertical-align: top;
}
#fullpage .div3 ul li p{
    white-space: nowrap;
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    background: #e0e0e0;
}
#fullpage .div4 ul::before{
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	width: 170px;
	height: 215px;
	background: url(../img/03.png) no-repeat;
}
#fullpage .div5{

}
#fullpage .div5 ul{
	position: absolute;
	width: 54%;
	top: 50%;
	left: 23%;
	transform: translateY(-50%);
	font-size: 0;
	box-sizing: border-box;
	padding-right: 20%;
}
#fullpage .div5 ul::before{
	content: "";
	position: absolute;
	top: -30%;
	right: 0;
	width: 176px;
	height: 214px;
	background: url(../img/04.png) no-repeat;
}
#fullpage .div5 ul li{
	display: inline-block;
	width: 23.5%;
	margin-right: 2%;
	background: #fff;
	margin-top: 20px;
}
#fullpage .div5 ul li a{
	display: block;
	color: #333;
}
#fullpage .div5 ul li:nth-of-type(4n){
	margin-right: 0;
}
#fullpage .div5 ul li em{
	display: block;
    padding-bottom: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    position: relative;
}
#fullpage .div5 ul li em img{
	position: absolute;
    width: auto;
    height: auto;
    max-width: 94%;
    max-height: 94%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#fullpage .div5 ul li p{
	white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
    text-align: center;
    height: 36px;
    line-height: 36px;
    background: #f7f7f7;
}
#fullpage .div6{

}
#fullpage .div6 .ts_img{
	position: absolute;
	width: auto;
	max-width: 100%;
	top: 0;
	right: 0;
}
#fullpage .div6 dl{
	position: absolute;
	width: 54%;
	top: 65%;
	left: 23%;
	transform: translateY(-50%);
	font-size: 0;
	box-sizing: border-box;
}
#fullpage .div6 dl::before{
	content: "";
	position: absolute;
	top: -240px;
	left: 0;
	width: 172px;
	height: 215px;
	background: url(../img/05.png) no-repeat;
}
#fullpage .div6 dt{
	float: left;
    width: 40%;
}
#fullpage .div6 dt img{
	width: 150% !important;
    height: 360px !important;
    vertical-align: top;
}
#fullpage .div6 dd{
	float: right;
    width: 60%;
    height: 360px;
    background: #f4f4f4;
    margin-top: 78px;
    box-sizing: border-box;
    position: relative;
    padding: 44px 66px 44px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
#fullpage .div6 dd h6{
	font-size: 22px;
    color: #0055a9;
    font-weight: bold;
    margin-bottom: 20px;
}
#fullpage .div6 dd p{
	font-size: 14px;
    color: #767676;
    line-height: 2.0;
}
#fullpage .div6 dd a{
	width: 98px;
    height: 32px;
    background: #0055a9;
    color: #fff;
    text-align: center;
    line-height: 32px;
    font-size: 14px;
    display: block;
    margin-top: 20px;
}
#fullpage .div6 dd::after{
	content: "";
    position: absolute;
    width: 102px;
    height: 2px;
    background: #0055a9;
    bottom: 44px;
    left: -30px;
}
#fullpage .div7{

}
#fullpage .div7 .content_div{
	position: absolute;
	width: 54%;
	top: 50%;
	left: 23%;
	transform: translateY(-50%);
	font-size: 0;
	box-sizing: border-box;
}
#fullpage .div7 dl{

}
#fullpage .div7 dt{
	float: left;
	width: 40%;
	padding-right: 40px;
	box-sizing: border-box;
}
#fullpage .div7 dt a{
	display: block;
	position: relative;
}
#fullpage .div7 dt em{
	display: block;
}
#fullpage .div7 dt em img{
	width: 100% !important;
	vertical-align: top;
}
#fullpage .div7 dt span{
	position: absolute;
	text-align: center;
	top: 14px;
	right: 14px;
	background: #fff;
	padding: 4px;
	line-height: 1.5;
	font-size: 12px;
	color: #333;
	text-transform: uppercase;
}
#fullpage .div7 dt span i{
	display: block;
	font-size: 16px;
	display: block;
	font-weight: bold;
}
#fullpage .div7 dt span i::before{
	content: "";
	display: block;
	width: 50%;
	height: 1px;
	margin: 0 auto;
	background: #003398;
}
#fullpage .div7 dt span i::after{
	content: "";
	display: block;
	width: 50%;
	height: 1px;
	margin: 0 auto;
	background: #003398;
}
#fullpage .div7 dt div{
	margin-top: 14px;
}
#fullpage .div7 dt div h6{
	font-size: 14px;
	color: #333;
	font-weight: bold;
	margin-bottom: 8px;
}
#fullpage .div7 dt div p{
	font-size: 14px;
	color: #333;
	line-height: 1.5;
}
#fullpage .div7 dd{
	float: right;
	width: 60%;
	box-sizing: border-box;
}
#fullpage .div7 dd a{
	display: block;
	margin-bottom: 2px;
}
#fullpage .div7 dd a::after{
	content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}
#fullpage .div7 dd span{
	float: left;
    width: 90px;
    text-align: center;
    height: 32px;
    line-height: 32px;
    background: #a7a7a7;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    position: relative;
}
#fullpage .div7 dd span::after{
    content: "";
    position: absolute;
    top: 16px;
    left: 100px;
    width: 30px;
    height: 1px;
    background: #ccc;
}
#fullpage .div7 dd span::before{
	content: "";
    position: absolute;
    width: 1px;
    height: 76px;
    background: #ccc;
    left: 45px;
    top: 42px;
}
#fullpage .div7 dd div{
	float: right;
    width: calc(100% - 140px);
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 16px 30px;
}
#fullpage .div7 dd div h6{
	font-size: 14px;
    color: #333;
    font-weight: bold;
    margin-bottom:2px;
    line-height: 1.0;
}
#fullpage .div7 dd div p{
	font-size: 14px;
    color: #333;
    height: 44px;
    overflow: hidden;
    line-height: 1.6;
}



@media (max-width: 1200px) {
	.w1200{
		width: 92%;
	}
	.foot_box {
		border: none;
	}
	.foot_box dt{
		float: none;
	}
	.foot_box dd {
		float: none;
		margin-top: 20px;
	}
	.foot_box dd p{
		font-size: 14px;
		white-space: inherit;
	}
	.foot_box dt form{
		display: none;
	}
	.foot_box .gjc_div{
		display: none;
	}
	.foot_box dd h6{
		margin-top: 20px;
	}
	.product_dl dd p span{
		display: block;
	}
	.banner_box{
		height: 180px;
		position: relative;
	}
	.banner_box img{
		position: absolute;
		height: 180px;
		width: auto;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	.head_box .nav_ul li i{
		display: block;
		float: right;
	}
	.head_box{
		padding: 0 4%;
		height: 60px;
	}
	.head_box .logo_a,.index_body .head_box .logo_a{
		width: 140px;
		background-size: contain;
	}
	.head_box .dh_span{
		display: none;
	}
	.head_box .nav_ul{
		height: auto;
		border-top: 1px solid #ccc;
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background: #f7f7f7;
		z-index: 11;
		box-shadow: 0 3px 5px rgba(0,0,0,0.1);
	}
	.head_box .nav_ul li{
		padding: 0 4%;
		display: block;
		height: auto;
		border-bottom: 1px solid rgba(255,255,255,0.2);
	}
	.head_box .nav_ul li>a,.index_body .head_box .nav_ul li>a{
		display: block;
		height: 100%;
		color: #333;
		font-size: 16px;
		height: 40px;
		line-height: 40px;
		padding: 0;
		text-align: left;
	}
	.head_box .nav_ul li>a::after{
		display: none;
	}
	.head_box .nav_ul li div{
		display: none;
		position: static;
		padding: 0;
		background: none;
	}
	.head_box .nav_ul li div a{
		text-align: left;
		color: #333;
		line-height: 2.4;
	}
	.link_p{
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.pb{
		padding-bottom: 30px;
	}
	.product_dl dt{
		margin-bottom: 20px;
	}
	.head_box .menu_div{
		display: block;
	}
	.crumb_box{
		margin-bottom: 30px;
	}
	.title_h3{
		font-size: 24px;
		margin-bottom: 30px;
	}
	.case_box ul{
		margin-top: -20px;
	}
	.case_box ul li{
		width: 49%;
		margin-right: 2%;
		margin-top: 20px;
	}
	.case_box ul li:nth-of-type(2n){
		margin-right: 0;
	}
	.pagin_box{
		margin-top: 40px;
	}
	.contact_box dt{
		width: 100%;
		padding: 0;
		margin-bottom: 20px;
	}
	.contact_box dd{
		width: 100%;
	}
	.contact_box dt h5{
		font-size: 20px;
	}
	.contact_box #map{
		height: 180px;
	}
	.contact_box ul li{
		width: 100%;
		padding: 0 30px;
	}
	.contact_box ul li:nth-of-type(2) {
		border: none;
		margin: 20px 0;
	}
	.qualification_box ul li{
		width: 100%;
		margin-right: 0;
	}
	.news_box ul li span::before{
		display: none;
	}
	.news_box ul li span::after{
		display: none;
	}
	.news_box ul li span{
		margin-bottom: 6px;
		width: 100%;
	}
	.news_box ul li div{
		width: 100%;
		padding: 12px;
	}
	.product_box ul{
		margin-top: -20px;
	}
	.product_box ul li{
		width: 100%;
		margin-right: 0;
		margin-top: 20px;
	}
	.news_dl dt{
		margin-bottom: 20px;
	}
	.productinfo_box dd ul li{
		line-height: 1;
		padding: 6px 0;
	}
	.productinfo_box dd ul li span{
		width: 100%;
		line-height: 2.0;
	}
	.qualification_box ul li{
		margin-top: 20px;
	}
	.qualification_box ul{
		margin-top: -20px;
	}
	#fullpage .bg_img{
		display: none;
	}
	#fullpage .m_img{
		display: block;
	}
	#fullpage .div2 ul{
		width: 92%;
		left: 4%;
	}
	#fullpage .div2 ul::before{
		display: none;
	}
	#fullpage .div3 ul{
		width: 92%;
		left: 4%;
	}
	#fullpage .div3 ul::before{
		display: none;
	}
	#fullpage .div5 ul{
		width: 92%;
		left: 4%;
		padding-right: 0;
	}
	#fullpage .div5 ul::before{
		display: none;
	}
	#fullpage .div6 .ts_img{
		display: none;
	}
	#fullpage .div6 dl::before{
		display: none;
	}
	#fullpage .div6 dl{
		width: 92%;
		left: 4%;
		top: 50%;
		transform: translateY(-50%);
	}
	#fullpage .div6 dt{
		display: none;
	}
	#fullpage .div6 dt img{
		width: 100% !important;
	}
	#fullpage .div6 dd{
		width: 100%;
		padding: 16px;
		margin-top: 0;
		height: auto;
	}
	#fullpage .div7 .content_div{
		width: 92%;
		left: 4%;
	}
	#fullpage .div7 dd span{
		display: none;
	}
	#fullpage .div6 dd h6{
		margin-bottom: 10px;
	}
	#fullpage .div6 dd p{
		line-height: 1.5;
	}
	#fullpage .div6 dd::after{
		display: none;
	}
	#fullpage .div7 dt{
		display: none;
	}
	#fullpage .div7 dd{
		width: 100%;
	}
	#fullpage .div7 dd div{
		width: 100%;
	}
}

#fullpage .div2 ul li img:hover,#fullpage .div3 ul li em img:hover,

#fullpage .div5 ul li em img:hover{opacity: 0.5;}













