@font-face{
	font-family: "BEBAS";
	src: url('../font/BEBAS.ttf'),url('../font/BEBAS.eot');
	font-weight: normal; 
	font-style: normal;
}

/** 清除内外边距 **/
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","PingFangSC-Regular","Source Han Sans CN","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 { color: #333; 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; }
strong { font-weight: normal; }

/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车：让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; outline: none; border: none; background: none;} /* 使得表单元素在 ie 下能继承字体大小 */
button, input[type="button"] { cursor: pointer;-webkit-appearance: none;}
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;
}
img{
	vertical-align: top;
	image-rendering: -webkit-optimize-contrast;
  	image-rendering: crisp-edges;
	/* -ms-interpolation-mode: nearest-neighbor;
    image-rendering: pixelated; */
}

html{
	font-size: 100px;
}
body{
	color: #333;
	overflow-x: hidden;
	background-color: #fff;
}
.clear_both::after{
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	clear: both;
}
.w72{
	width: 72.8%;
	max-width: 1400px;
	display: block;
	margin: 0 auto;
	box-sizing: border-box;
}

.swiper-button-prev{
	width: 0.5rem;
	height: 0.5rem;
	text-align: center;
	line-height: 0.5rem;
	border-radius: 50%;
	background: rgba(0,0,200,0.4);
	color: #fff;
	margin-top: -0.25rem;
	left: 0.2rem;
	outline: none;
	transition: all 0.3s;
}
.swiper-button-prev::after{
	content: "\eb15";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	font-size: 0.18rem;
}
.swiper-button-next{
	width: 0.5rem;
	height: 0.5rem;
	text-align: center;
	line-height: 0.5rem;
	border-radius: 50%;
	background: rgba(0,0,200,0.4);
	color: #fff;
	margin-top: -0.25rem;
	right: 0.2rem;
	outline: none;
	transition: all 0.3s;
}
.swiper-button-next::after{
	content: "\eb16";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	font-size: 0.18rem;
}

.head_box{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	width: 100%;
	height: 0.9rem;
	background-color: #fff;
	font-size: 0;
	box-sizing: border-box;
	padding-left: 0.8rem;
	box-shadow: 0px 0.08rem 0.16rem 0px rgba(0,0,0,0.16);
	transition: all 0.3s;
}
.head_box .logo_a{
	display: inline-flex;
	vertical-align: top;
	width: 174px;
	height: 100%;
	align-items: center;
}
.head_box .logo_a img{
	width: 100%;
}
.head_box .nav_ul{
	display: inline-block;
	vertical-align: top;
	font-size: 0;
	margin-left: 10%;
}
.head_box .nav_ul li{
	display: inline-block;
	vertical-align: top;
	margin-right: 0.38rem;
	position: relative;
}
.head_box .nav_ul li:last-of-type{
	margin-right: 0;
}
.head_box .nav_ul li a{
	display: block;
	font-size: 0.16rem;
	height: 0.9rem;
	line-height: 0.9rem;
	transition: all 0.3s;
}
.head_box .nav_ul li::after{
	content: "";
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	top: calc(50% + 0.2rem);
	width: 0;
	height: 3px;
	background-color: #0000c8;
	opacity: 0;
	transition: all 0.3s;
}
.head_box .nav_ul li.active a{
	color: #0000c8;
}
.head_box .nav_ul li.active::after{
	width: 100%;
	opacity: 1;
}
.head_box .search_a{
	float: right;
	width: 0.9rem;
	text-align: center;
	line-height: 0.88rem;
	height: 100%;
	background-color: #0000c8;
	cursor: pointer;
	transition: all 0.3s;
}
.head_box .search_a::after{
	content: "\eafe";
	font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	font-size: 0.34rem;
	color: #fff;
}
.head_box .language_dl{
	float: right;
	height: 100%;
	margin-right: 0.5rem;
}
.head_box .language_dl dt{
	height: 0.24rem;
	margin-top: 0.33rem;
	overflow: hidden;
	position: relative;
	padding-right: 0.24rem;
	transition: all 0.3s;
}
.head_box .language_dl dt a{
	display: block;
	font-size: 0.18rem;
	line-height: 0.24rem;
	transition: all 0.3s;
}
.head_box .language_dl dt::after{
	content: "\eb17";
	font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	position: absolute;
	right: 0;
	top: 0.03rem;
	font-size: 0.16rem;
	transition: all 0.3s;
}

.heads_box{
	height: 0.8rem;
}
.heads_box .nav_ul li a{
	height: 0.8rem;
	line-height: 0.8rem;
}
.heads_box .language_dl dt{
	margin-top: 0.28rem;
}
.heads_box .search_a{
	width: 0.8rem;
	line-height: 0.78rem;
}

.menu_box {
    display: none;
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    top: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    background-color: #0000c8;
    cursor: pointer;
    z-index: 12;
    transition: all 0.5s ease;
}
.menu_box dt {
    width: 25px;
    font-size: 0;
    text-align: right;
}
.menu_box dt i {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 2px;
    background-color: #e1e1e1;
    margin: 3px 0;
    transition: all 0.5s ease;
}
.menu_active {}
.menu_active dt i:nth-of-type(1) {
    transform: rotate(45deg) translate(5.5px, 6px);
}
.menu_active dt i:nth-of-type(2) {
    opacity: 0;
}

.men_active dt i:nth-of-type(3) {
    transform: rotate(-45deg) translate(5.5px, -6px);
}


.banner_box{
	position: fixed;
	width: 100%;
	top: 0.9rem;
	height: 26.5vw;
	background-size: cover;
	background-position: center;
	transition: all 0.3s;
}
.banners_box{
	top: 0.8rem;
}
.banner_box .w72{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
}
.banner_box h5{
	position: relative;
}
.banner_box h5 span{
	position: relative;
	z-index: 3;
	font-size: 0.4rem;
}
.banner_box h5 strong{
	position: absolute;
	top: -0.36rem;
	left: 0;
	font-size: 1.0rem;
	opacity: 0.1;
	font-family: "BEBAS";
}
.banner_box h5::after{
	content: "";
	display: block;
	width: 0.5rem;
	height: 6px;
	background-color: #fff;
	margin-top: 0.2rem;
}
.banner_box p{
	font-size: 0;
	margin-top: 0.4rem;
}
.banner_box p a{
	display: inline-block;
	vertical-align: top;
	color: #fff;
	font-size: 0.14rem;
}
.banner_box p a::after{
	content: "\eb16";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	margin: 0 0.08rem;
}
.banner_box p a:last-of-type:after{
	display: none;
}


.box{
    position: relative;
    z-index: 3;
    margin-top: calc(26.5vw + 0.9rem);
    background-color: #f5f5f5;
}
.box::before{
	content: "";
	display: block;
	height: 1px;
	width: 100%;
}

.pd{
	padding: 0.76rem 0;
}

.title_h4{
	text-align: center;
	margin-bottom: 0.5rem;
	font-size: 0.38rem;
}
.title_h4::after{
	content: "";
	display: block;
	width: 0.5rem;
	height: 6px;
	background-color: #0000c8;
	margin: 0.18rem auto 0;
}
.title_h4s{
	text-align: left;
}
.title_h4s::after{
	margin: 0.18rem 0 0;
}

.paging_div{
	font-size: 0;
	text-align: center;
	margin-top: 0.56rem;
}
.paging_div a{
	display: inline-block;
	vertical-align: top;
	width: 0.34rem;
	height: 0.34rem;
	border: 1px solid #dedede;
	background-color: #fff;
	text-align: center;
	line-height: 0.34rem;
	font-size: 0.14rem;
	color: #666;
	margin-right: 0.1rem;
	transition: all 0.3s;
}
.paging_div a:last-of-type{
	margin-right: 0;
}
.paging_div a.first{
	 
}
.paging_div a.first::before{
	content: "\eb0d";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	display: inline-block;
	vertical-align: top;
	font-size: 0.18rem;
}
.paging_div a.last{
	 
}
.paging_div a.last::after{
	content: "\eb0a";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	display: inline-block;
	vertical-align: top;
	font-size: 0.18rem;
}
.paging_div a.prev::before{
	content: "\eb15";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	display: inline-block;
	vertical-align: top;
	font-size: 0.18rem;
}
.paging_div a.next::before{
	content: "\eb16";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	display: inline-block;
	vertical-align: top;
	font-size: 0.18rem;
}
.paging_div a.active{
	background-color: #0000c8;
	border-color: #0000c8;
	color: #fff;
}


.foot_box{
	position: relative;
	z-index: 3;
	background-color: #181777;
	color: #fff;
}
.foot_box .div1{
	padding: 0.6rem 0;
}
.foot_box .div1 .a{
	display: block;
	width: 183px;
	margin: 0 auto 0.5rem;
}
.foot_box .div1 .a img{
	width: 100%;
}
.foot_box .div1 .h6{
	display: flex;
	justify-content: space-between;
}
.foot_box .div1 .h6 a{
	font-size: 0.18rem;
	color: #fff;
	transition: all 0.3s;
}

.foot_box .div1 .dl{
	margin-top: 0.34rem;
	padding-top: 0.54rem;
	border-top: 1px solid rgba(255,255,255,0.2);
	display: flex;
	justify-content: space-between;
}
.foot_box .div1 .dl h6{
	font-size: 0.16rem;
	margin-bottom: 0.24rem;
}

.foot_box .div1 .dd1{

}
.foot_box .div1 .dd1 ul{
	display: flex;
}
.foot_box .div1 .dd1 ul li{
	margin-right: 0.3rem;
}
.foot_box .div1 .dd1 ul li:last-of-type{
	margin-right: 0;
}
.foot_box .div1 .dd1 ul li p{
	white-space: nowrap;
	font-size: 0.14rem;
	opacity: 0.6;
	line-height: 0.24rem;
}

.foot_box .div1 .dd2{
	margin: 0 5%;
}
.foot_box .div1 .dd2 h6{
	margin-bottom: 0.38rem;
}
.foot_box .div1 .dd2 .bdsharebuttonbox{
	font-size: 0;
	white-space: nowrap;
}
.foot_box .div1 .dd2 .bdsharebuttonbox a{
	float: none;
	display: inline-block;
	vertical-align: top;
	padding: 0;
	margin: 0;
	width: 0.34rem;
	height: 0.34rem;
	background-size: 100% 100%;
	margin-right: 0.16rem;
}
.foot_box .div1 .dd2 .bdsharebuttonbox a.wx_a{
	background-image: url(../img/tb3.png);
	margin-right: 0;
}
.foot_box .div1 .dd2 .bdsharebuttonbox a.wb_a{
	background-image: url(../img/tb2.png);
}
.foot_box .div1 .dd2 .bdsharebuttonbox a.qq_a{
	background-image: url(../img/tb1.png);
}

.foot_box .div1 .dd3{
	flex: 1;
}
.foot_box .div1 .dd3 div{
	width: 100%;
	height: 0.48rem;
	line-height: 0.5rem;
	background-color: #0b0a56;
	font-size: 0;
	position: relative;
}
.foot_box .div1 .dd3 div strong{
	display: inline-flex;
	vertical-align: top;
	justify-content: space-between;
	height: 100%;
	width: calc(100% - 0.48rem);
	font-size: 0.14rem;
	color: #fff;
	box-sizing: border-box;
	padding: 0 0.18rem;
	cursor: pointer;
}
.foot_box .div1 .dd3 div strong::after{
	content: "\eb17";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    vertical-align: top;
}
.foot_box .div1 .dd3 div span{
	display: inline-block;
	vertical-align: top;
	height: 100%;
	width: 0.48rem;
	background-color: #fff;
	text-align: center;
	font-size: 0.16rem;
	color: #181777;
	font-weight: bold;
}
.foot_box .div1 .dd3 div p{
	position: absolute;
	left: 0;
	bottom: 100%;
	background-color: #fff;
	width: calc(100% - 0.48rem);
	padding: 0.1rem 0;
	display: none;
}
.foot_box .div1 .dd3 div p a{
	display: block;
	line-height: 2.2;
	font-size: 0.14rem;
	padding: 0 0.18rem;
	transition: all 0.3s;
}

.foot_box .div2{
	background-color: #0b0a56;
	padding: 0.18rem 0;
}
.foot_box .div2 h6{
	display: flex;
	justify-content: space-between;
	font-size: 0.14rem;
	line-height: 1.6;
}
.foot_box .div2 h6 p{
	color: rgba(255,255,255,0.4);
}
.foot_box .div2 h6 p a{
	color: rgba(255,255,255,0.4);
	margin-left: 0.3rem;
	transition: all 0.3s;
}
.foot_box .div2 h6 p.p2 a:last-of-type{
	margin-left: 0.03rem;
}


.more_a{
	display: flex;
    width: 1.4rem;
    font-size: 0.14rem;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.1rem;
    border-bottom: 2px solid #dedede;
	position: relative;
    transition: all 0.3s;
}
.more_a::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: #0000c8;
	opacity: 0;
	transition: all 0.3s;
}
.more_a::after{
	content: "\eb08";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 0.22rem;
}



.problem_box{

}
.problem_box .div1{
	margin-top: -0.3rem;
}
.problem_box .div1 li{
	float: left;
	width: 23.5%;
	margin-right: 2%;
	margin-top: 0.3rem;
	background-color: #fff;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
}
.problem_box .div1 li:nth-of-type(4n){
	margin-right: 0;
}
.problem_box .div1 li a{
	display: block;
}
.problem_box .div1 li em{
	display: block;
	width: 100%;
	padding-bottom: 60%;
	overflow: hidden;
	position: relative;
}
.problem_box .div1 li em i{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-size: cover;
	background-position: center;
	transition: all 0.3s;
}
.problem_box .div1 li div{
	padding: 0.22rem 0.18rem 0;
}
.problem_box .div1 li div h6{
	font-size: 0.2rem;
	line-height: 1.4;
	height: 0.56rem;
	overflow: hidden;
	transition: all 0.3s;
}
.problem_box .div1 li div p{
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
	margin: 0.2rem 0;
	height: 0.75rem;
	overflow: hidden;
}
.problem_box .div1 li div span{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 0.5rem;
	border-top: 1px solid #dedede;
	font-size: 0.14rem;
	color: #999;
}
.problem_box .div1 li div span::after{
	content: "\eb08";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	font-size: 0.22rem;
	transition: all 0.3s;
}

.problem_box .type_h5{
	font-size: 0;
	text-align: center;
	margin-bottom: 0.5rem;
}
.problem_box .type_h5 a{
	display: inline-block;
	vertical-align: top;
	width: 1.6rem;
	height: 0.48rem;
	line-height: 0.48rem;
	font-size: 0.16rem;
	margin: 0 0.1rem;
	background-color: #fff;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
	transition: all 0.3s;
}
.problem_box .type_h5 a.active{
	background-color: #0000c8;
	color: #fff;
}
.problem_box .type_h5 a.on{
	background-color: #0000c8;
	color: #fff;
}


.probleminfo_box{
	background-color: #fff;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
	padding: 0.4rem;
}
.probleminfo_box .div1{
	padding-right: 1.0rem;
	position: relative;
	padding-top: 0.14rem;
	padding-bottom: 0.3rem;
	border-bottom: 1px solid #dedede;
}
.probleminfo_box .div1 h6{
	font-size: 0.3rem;
	line-height: 1.2;
}
.probleminfo_box .div1 span{
	display: inline-block;
	vertical-align: top;
	margin-top: 0.24rem;
	font-size: 0.16rem;
	color: #999;
}
.probleminfo_box .div1 dl{
	position: absolute;
	top: 0;
	right: 0;
	text-align: center;
	border-top-right-radius: 0.2rem;
	padding: 0.14rem 0.12rem 0.12rem;
	background-color: #0000c8;
}
.probleminfo_box .div1 dl dt{
	font-size: 0.36rem;
	font-family: "BEBAS";
	color: #fff;
}
.probleminfo_box .div1 dl dd{
	font-size: 0.16rem;
	color: #fff;
	opacity: 0.6;
	margin-top: 0.14rem;
}

.probleminfo_box .div2{
	margin: 0.34rem 0;
}
.probleminfo_box .div2 p{
	font-size: 0.16rem;
	line-height: 1.8;
	color: #666;
	text-indent: 0.32rem;
}
.probleminfo_box .div2 p img{
	display: block;
	width: auto;
	max-width: 100%;
	margin: 0.2rem auto;
}

.probleminfo_box .div3{
	padding-top: 0.34rem;
	border-top: 1px solid #dedede;
	display: flex;
}
.probleminfo_box .div3 .return{
	flex-shrink: 0;
	width: 1.6rem;
	height: 0.6rem;
	line-height: 0.6rem;
	background-color: #0000c8;
	color: #fff;
	font-size: 0.16rem;
	text-align: center;
}
.probleminfo_box .div3 .return::before{
	content: "\eb15";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
  	margin-right: 0.1rem;
}
.probleminfo_box .div3 .link{
	flex: 1;
	height: 0.6rem;
	line-height: 0.6rem;
	background-color: #f5f5f5;
	margin-left: 0.2rem;
	box-sizing: border-box;
	padding: 0 0.2rem;
	font-size: 0.16rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: all 0.3s;
}



.customized_box{

}
.customized_box .div1{
	background-color: #fff;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
	padding: 0.4rem;
	font-size: 0;
}
.customized_box .div1 label{
	display: inline-block;
	vertical-align: top;
	width: calc(50% - 0.2rem);
	margin-right: 0.4rem;
	margin-bottom: 0.3rem;
}
.customized_box .div1 label:nth-of-type(2n){
	margin-right: 0;
}
.customized_box .div1 label span{
	display: block;
	font-size: 0.18rem;
	margin-bottom: 0.16rem;
}
.customized_box .div1 label span::after{
	content: "*";
	color: #df3c3d;
}
.customized_box .div1 label input{
	width: 100%;
	height: 0.6rem;
	background-color: #f5f5f5;
	border-radius: 4px;
	border: none;
	box-sizing: border-box;
	padding: 0 0.18rem;
	font-size: 0.16rem;
}
.customized_box .div1 label:last-of-type{
	width: 100%;
	margin-right: 0;
}
.customized_box .div1 label textarea{
	width: 100%;
	height: 2.2rem;
	background-color: #f5f5f5;
	border-radius: 4px;
	border: none;
	resize: none;
	line-height: 1.6;
	box-sizing: border-box;
	padding: 0.16rem 0.18rem;
	font-size: 0.16rem;
}
.customized_box .div1 button{
	display: block;
	margin: 0 auto;
	width: 1.6rem;
	height: 0.5rem;
	background-color: #0000c8;
	color: #fff;
	border: none;
	font-size: 0.16rem;
}



.solution_box{

}
.solution_box .div1{
	
}
.solution_box .div1 dl{
	display: flex;
	align-items: center;
	background-color: #fff;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
	margin-bottom: 0.5rem;
	height: 3.6rem;
	background-image: url(../img/logo4.png);
	background-size: 3.69rem;
	background-repeat: no-repeat;
	background-position: right 4% bottom 0.34rem;
}
.solution_box .div1 dl:nth-of-type(2n){
	flex-direction: row-reverse;
	background-position: left 4% bottom 0.34rem;
}
.solution_box .div1 dl:last-of-type{
	margin-bottom: 0;
}
.solution_box .div1 dl dt{
	flex-shrink: 0;
	width: 42.8%;
	height: 100%;
	background-size: cover;
	background-position: center;
}
.solution_box .div1 dl dd{
	flex-shrink: 0;
	width: 57.2%;
	box-sizing: border-box;
	padding: 0 4%;
}
.solution_box .div1 dl dd h6{
	font-size: 0.24rem;
	line-height: 1.4;
	margin-bottom: 0.2rem;
}
.solution_box .div1 dl dd h6 a{
	font-size: 0.24rem;
	line-height: 1.4;
	margin-bottom: 0.2rem;
}
.solution_box .div1 dl dd h6 a:hover{
	color:#0000c8
}
.solution_box .div1 dl dd p{
	font-size: 0.16rem;
	line-height: 1.6;
	color: #999;
}



.contact_box{

}
.contact_box .div1{
	display: flex;
	justify-content: space-between;
}
.contact_box .div1 li{
	flex-shrink: 0;
	width: 32%;
	background-color: #fff;
	box-sizing: border-box;
	padding: 0.3rem 0.1rem;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
	text-align: center;
}
.contact_box .div1 li img{
	width: 0.6rem;
}
.contact_box .div1 li h6{
	font-size: 0.18rem;
	margin: 0.16rem 0;
}
.contact_box .div1 li p{
	font-size: 0.16rem;
	color: #666;
}

.contact_box .div2{
	margin-top: 0.5rem;
}
.contact_box .div2 dl{
	margin-bottom: 0.1rem;
	background-color: #fff;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
}
.contact_box .div2 dl:last-of-type{
	margin-bottom: 0;
}
.contact_box .div2 dl dt{
	height: 0.8rem;
	display: flex;
	align-items: center;
	padding: 0 0.6rem;
	font-size: 0;
	position: relative;
	background-color: #fff;
	cursor: pointer;
	transition: all 0.3s;
}
.contact_box .div2 dl dt h6{
	font-size: 0.2rem;
}
.contact_box .div2 dl dt p{
	margin-left: 14%;
}
.contact_box .div2 dl dt p span{
	font-size: 0.18rem;
	color: #666;
	display: inline-block;
	vertical-align: top;
	height: 0.3rem;
	line-height: 0.3rem;
	transition: all 0.3s;
}
.contact_box .div2 dl dt p span:nth-of-type(1){
	width: 1.74rem;
	border-right: 1px solid #ccc;
	margin-right: 0.8rem;
}
.contact_box .div2 dl dt i{
	position: absolute;
	right: 0.6rem;
	top: 0.2rem;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background-color: #0000c8;
	font-size: 0.2rem;
	color: #fff;
	text-align: center;
	line-height: 0.4rem;
	transition: all 0.3s;
}
.contact_box .div2 dl dt i::after{
	content: "\eb16";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}
.contact_box .div2 dl dd{
	display: none;
	padding: 0.4rem  0.6rem;
}
.contact_box .div2 dl dd h6{
	font-size: 0.18rem;
	margin-bottom: 0.2rem;
}
.contact_box .div2 dl dd p{
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
	margin-top: 0.06rem;
	padding-left: 0.28rem;
	background-image: url(../img/tb7.png);
	background-size: 0.16rem;
	background-repeat: no-repeat;
	background-position: 0 0.05rem;
}

.contact_box .div2 dl dt.active i{
	background-color: #fff;
	color: #0000c8;
	transform: rotate(90deg);
}
.contact_box .div2 dl dt.active p span{
	color: #fff;
}
.contact_box .div2 dl dt.active{
	background-color: #0000c8;
	color: #fff;
}



.product_box{

}
.product_box .dl{
	display: flex;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}
.product_box .dl:last-of-type{
	margin-bottom: 0;
}
.product_box .dl dt{
	flex-shrink: 0;
	width: 20%;
	position: relative;
}
.product_box .dl dt h6{
	font-size: 0.2rem;
	margin-bottom: 0.2rem;
}
.product_box .dl dt p{
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
	max-height: 1.25rem;
	text-align: justify;
	overflow: hidden;
}
.product_box .dl dt a{
	position: absolute;
	left: 0;
	bottom: 0;
}
.product_box .dl dd{
	flex-shrink: 0;
	width: 76%;
	display: flex;
	justify-content: space-between;
}
.product_box .dl dd a{
	flex-shrink: 0;
	width: 31%;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
}
.product_box .dl dd a em{
	display: block;
    width: 100%;
    padding-bottom: 106%;
    overflow: hidden;
    position: relative;
}
.product_box .dl dd a em i{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.3s;
}
.product_box .dl dd a em::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #0000c8;
	opacity: 0;
	transition: all 0.3s;
}
.product_box .dl dd a h6{
	height: 0.6rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0.2rem;
	background-color: #fff;
	font-size: 0.18rem;
	transition: all 0.3s;
}
.product_box .dl dd a h6::after{
	content: "\eb08";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	font-size: 0.26rem;
}



.productlist_box{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.productlist_box .left_div{
	flex-shrink: 0;
	width: 22.8%;
}
.productlist_box .left_div .h5{
	height: 1.0rem;
	font-size: 0.32rem;
	color: #fff;
	padding: 0 0.32rem;
	line-height: 1.0rem;
	background-image: url(../img/tp3.jpg);
	background-size: cover;
	background-position: center;
}
.productlist_box .left_div dl{
	margin-top: 2px;
}
.productlist_box .left_div dl dt{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 0.6rem;
	background-color: #0000c8;
	color: #fff;
	font-size: 0.18rem;
	box-sizing: border-box;
	padding: 0 0.32rem;
	cursor: pointer;
}
.productlist_box .left_div dl dt::after{
	content: "\eb16";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	font-size: 0.2rem;
	transition: all 0.3s;
}
.productlist_box .left_div dl dd{
	background-color: #fff;
	padding: 0.22rem 0;
	display: none;
}
.productlist_box .left_div dl dd a{
	display: block;
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 0.14rem;
	padding: 0 0.32rem;
	transition: all 0.3s;
}
.productlist_box .left_div dl dd a:last-of-type{
	margin-bottom: 0;
}
.productlist_box .left_div dl dt.active::after{
	transform: rotate(90deg);
}

.productlist_box .right_div{
	flex: 1;
	margin-left: 0.4rem;
}
.productlist_box .ul{
	margin-top: -0.26rem;
}
.productlist_box .ul li{
	float: left;
	width: 23.5%;
	margin-right: 2%;
	margin-top: 0.26rem;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
}
.productlist_box .ul li:nth-of-type(4n){
	margin-right: 0;
}
.productlist_box .ul li a{
	display: block;
}
.productlist_box .ul li em{
	display: block;
    width: 100%;
    padding-bottom: 106%;
    overflow: hidden;
    position: relative;
}
.productlist_box .ul li em i{
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.3s;
}
.productlist_box .ul li em::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #0000c8;
	opacity: 0;
	transition: all 0.3s;
}
.productlist_box .ul li h6{
	height: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0.2rem;
	background-color: #fff;
	font-size: 0.16rem;
	transition: all 0.3s;
}
.productlist_box .ul li h6::after{
	content: "\eb08";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	font-size: 0.22rem;
}

.productlist_box .paging_div{
	text-align: left;
}



.video_box{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 15;
	background-color: rgba(0,0,0,0.7);
	display: none;
}
.video_box div{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 60%;
}
.video_box div i{
	position: absolute;
	z-index: 3;
	right: 0;
	top: 0;
	width: 0.4rem;
	height: 0.4rem;
	background-color: #0000c8;
	font-size: 0.24rem;
	text-align: center;
	color: #fff;
	line-height: 0.4rem;
	cursor: pointer;
}
.video_box div video{
	width: 100%;
	outline: none;
}



.probleminfo_box .h4{
	margin-bottom: 0.36rem;
	padding-bottom: 0.3rem;
	border-bottom: 1px solid #dedede;
	display: flex;
	align-items: center;
}
.probleminfo_box .h4 a{
	font-size: 0.24rem;
	transition: all 0.3s;
	font-weight: bold;
}
.probleminfo_box .h4 i{
	margin: 0 0.1rem;
}
.probleminfo_box .h4 i::after{
	content: "\eb16";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
	font-size: 0.24rem;
}

.probleminfo_box .div4{
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.36rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #dedede;
}
.probleminfo_box .div4 .swiper-container{
	flex-shrink: 0;
	width: 42.8%;
	box-sizing: border-box;
	border: 1px solid #dedede;
}
.probleminfo_box .div4 .swiper-slide{
	padding-bottom: 60%;
}
.probleminfo_box .div4 .swiper-slide i{
	position: absolute;
	top: 0.1rem;
	left: 0.1rem;
	width: calc(100% - 0.2rem);
	height: calc(100% - 0.2rem);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.probleminfo_box .div4 .video_slide{
	cursor: pointer;
}
.probleminfo_box .div4 .video_slide::after{
	content: "";
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	margin: -0.4rem 0 0 -0.4rem;
	width: 0.8rem;
	height: 0.8rem;
	background-image: url(../img/tb8h.png);
	background-size: 100% 100%;
}

.probleminfo_box .div4 .dl{
	flex: 1;
	margin-left: 0.4rem;
}
.probleminfo_box .div4 .dl dt{

}
.probleminfo_box .div4 .dl dt p{
	font-size: 0.18rem;
	line-height: 1.4;
	margin-bottom: 0.1rem;
	font-weight: bold;
}
.probleminfo_box .div4 .dl dd{

}
.probleminfo_box .div4 .dl dd p{
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
}

.probleminfo_box .div5{
	margin-bottom: 0.7rem;
}
.probleminfo_box .div5 .h6{
	font-size: 0.18rem;
	margin-bottom: 0.3rem;
	font-weight: bold;
}
.probleminfo_box .div5 img{
	width: auto;
	max-width: 100%;
}

.probleminfo_box .div5 p{
	font-size:0.14rem;
	line-height:1.8em;
}

.about_box{

}

.about_box .div1{
	
}
.about_box .div1 .dl{
	position: relative;
}
.about_box .div1 dt{
	position: relative;
	z-index: 3;
	width: 50%;
}
.about_box .div1 .div{
	border-top-right-radius: 0.4rem;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
	padding: 0.54rem 0.34rem 0.5rem;
	background-color: #fff;
	background-image: url(../img/logo3.png);
	background-repeat: no-repeat;
	background-position: right 0.34rem bottom 0.34rem;
	background-size: 5.27rem;
}
.about_box .div1 .div .h6{
	font-size: 0.24rem;
}
.about_box .div1 .div .h6::after{
	content: "";
	display: block;
    width: 0.4rem;
    height: 4px;
    background-color: #0000c8;
	margin: 0.16rem 0 0;
}
.about_box .div1 .div p{
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
	margin-top: 0.2rem;
}
.about_box .div1 dd{
	position: absolute;
	top: 0;
	right: 0;
	width: 57%;
	height: calc(100% - 1.12rem);
	background-size: cover;
	background-position: center;
}

.about_box .div2{
	background-color: #fff;
}
.about_box .div2 .ul{
	
}
.about_box .div2 .ul li{
	display: flex;
	align-items: center;
	height: 3.0rem;
	background-color: #f5f5f5;
	margin-bottom: 0.2rem;
}
.about_box .div2 .ul li:nth-of-type(2n){
	flex-direction: row-reverse;
}
.about_box .div2 .ul li:last-of-type{
	margin-bottom: 0;
}
.about_box .div2 .ul li em{
	flex-shrink: 0;
	width: 64%;
	height: 100%;
	background-size: cover;
	background-position: center;
}
.about_box .div2 .ul li div{
	flex-shrink: 0;
	width: 36%;
	box-sizing: border-box;
	padding: 0 0.54rem;
}
.about_box .div2 .ul li div .h6{
	position: relative;
}
.about_box .div2 .ul li div .h6 strong{
	display: block;
	font-size: 0.6rem;
	color: #e0e0e0;
	font-family: "BEBAS";
}
.about_box .div2 .ul li div .h6 span{
	position: absolute;
	left: 0;
	top: 0.24rem;
	font-size: 0.24rem;
}
.about_box .div2 .ul li div .h6::after{
	content: "";
    display: block;
    width: 0.4rem;
    height: 4px;
    background-color: #0000c8;
    margin: 0.12rem 0 0;
}
.about_box .div2 .ul li div p{
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
	margin: 0.16rem 0;
}
.about_box .div2 .ul li div img{
	width: 0.48rem;
}

.about_box .div3{

}
.about_box .div3 .ul{
	
}
.about_box .div3 .ul li{
	background-color: #fff;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
	margin-bottom: 0.2rem;
	height: 1.0rem;
	display: flex;
	align-items: center;
	padding: 0 0.26rem;
}
.about_box .div3 .ul li:last-of-type{
	margin-bottom: 0;
}
.about_box .div3 .ul li i{
	flex-shrink: 0;
	width: 0.4rem;
	height: 0.4rem;
	text-align: center;
	line-height: 0.42rem;
	border-radius: 50%;
	background-color: #0000c8;
	color: #fff;
	font-size: 0.16rem;
}
.about_box .div3 .ul li p{
	flex: 1;
	line-height: 1.6;
	margin-left: 0.26rem;
	font-size: 0.16rem;
	color: #666;
}

.about_box .div4{
	background-color: #fff;
}
.about_box .div4 .h6{
	display: flex;
	justify-content: space-between;
}
.about_box .div4 .h6 img{
	width: 48.5%;
}

.about_box .div5{

}
.about_box .div5 .dl1{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 0.5rem;
}
.about_box .div5 .dl1 dt{
	flex-shrink: 0;
	width: 60%;
}
.about_box .div5 .dl1 dt p{
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
}
.about_box .div5 .dl1 dd{
	font-size: 0;
}
.about_box .div5 .dl1 dd span{
	display: inline-block;
	vertical-align: top;
	position: static;
	margin-top: 0;
	margin-left: 0.2rem;
}

.about_box .div5 .swiper-container{
	margin-bottom: 0.76rem;
}
.about_box .div5 .swiper-slide img{
	width: 100%;
}

.about_box .div5 .dl2{
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #fff;
	padding: 0.26rem 0.56rem;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
}
.about_box .div5 .dl2 dt{
	
}
.about_box .div5 .dl2 dt h6{
	font-size: 0.24rem;
}
.about_box .div5 .dl2 dt p{
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
	margin: 0.14rem 0;
}
.about_box .div5 .dl2 dt a{
	display: block;
	width: 0.32rem;
	height: 0.32rem;
	background-image: url(../img/tb12.png);
	background-size: 100% 100%;
}
.about_box .div5 .dl2 dd{
	flex-shrink: 0;
	width: 5.0rem;
	height: 1.4rem;
	text-align: center;
	line-height: 1.4rem;
	background-color: #00589b;
	border-radius: 0.1rem;
}
.about_box .div5 .dl2 dd img{
	width: 3.85rem;
	vertical-align: middle;
}



.swiper_box{
	position: fixed;
	top: 0.9rem;
	left: 0;
	width: 100%;
	height: calc(100vh - 0.9rem);
	transition: all 0.3s;
}
.swipers_box{
	top: 0.8rem;
}
.swiper_box .swiper-slide{
	background-size: cover;
	background-position: center;
}
.swiper_box .swiper-slide .w72{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.swiper_box .swiper-slide .title_h4{
	color: #fff;
	margin-bottom: 0.4rem;
	opacity: 0;
	transform: translateY(1.0rem);
    transition: all 0.5s 0.1s;
}
.swiper_box .swiper-slide .title_h4::after{
	background-color: #fff;
}
.swiper_box .swiper-slide h6{
	font-size: 0.34rem;
	line-height: 1.4;
	color: #fff;
	margin-bottom: 0.34rem;
	opacity: 0;
	transform: translateY(1.0rem);
    transition: all 0.5s 0.2s;
}
.swiper_box .swiper-slide .more_a{
	color: #fff;
	border-color: #fff;
	opacity: 0;
	transform: translateY(1.0rem);
    transition: all 0.5s 0.3s;
}
.swiper_box .swiper-slide .more_a::before{
	display: none;
}

.swiper_box .active-slide .title_h4{
	opacity: 1;
	transform: translateY(0);
}
.swiper_box .active-slide h6{
	opacity: 1;
	transform: translateY(0);
}
.swiper_box .active-slide .more_a{
	opacity: 1;
	transform: translateY(0);
}



.index_box{
	position: relative;
    z-index: 3;
	width: 100%;
	overflow-x: hidden;
    margin-top: 100vh;
    background-color: #fff;
}
.index_box .div1{
	padding: 0.7rem 0 0.5rem;
	position: relative;
}
.index_box .div1 .div{
	position: absolute;
	width: 22.8%;
	height: calc(100% - 1.4rem);
	top: 0.7rem;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.index_box .div1 .div dl{
	
}
.index_box .div1 .div dl dt{
	font-size: 0;
}
.index_box .div1 .div dl dt span{
	display: inline-block;
	vertical-align: top;
	position: static;
	margin-top: 0;
	margin-right: 0.2rem;
}
.index_box .div1 .div dl dd{
	margin-top: 0.6rem;
}
.index_box .div1 .swiper-container{
	width: 100%;
	margin-left: 22.8%;
}
.index_box .div1 .swiper-slide{
	padding-bottom: 0.2rem;
}
.index_box .div1 .swiper-slide a{
	position: relative;
	z-index: 3;
	display: block;
	margin-left: 0.2rem;
	width: calc(100% - 0.2rem);
	color: #fff;
}
.index_box .div1 .swiper-slide a::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #0000c8;
	opacity: 0;
	border-top-right-radius: 0.4rem;
	transition: all 0.3s;
}
.index_box .div1 .swiper-slide a em{
	display: block;
	width: 100%;
	padding-bottom: 132%;
	position: relative;
	overflow: hidden;
	transition: all 0.3s;
}
.index_box .div1 .swiper-slide a em i{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: all 0.3s;
}
.index_box .div1 .swiper-slide a em::after{
	content: "";
	position: absolute;
	z-index: 3;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 34%;
	background-image: url(../img/tp2.png);
	background-size: 100% 100%;
}
.index_box .div1 .swiper-slide a h6{
	position: absolute;
	z-index: 4;
	width: 100%;
	left: 0;
	bottom: 0.26rem;
	box-sizing: border-box;
	padding: 0 0.26rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.index_box .div1 .swiper-slide a h6 span{
	flex: 1;
	margin-right: 0.1rem;
	min-width: 0;
	font-size: 0.18rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.index_box .div1 .swiper-slide a h6::after{
	content: "\eb08";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 0.24rem;
}
.index_box .div1 .swiper-slide a strong{
	position: absolute;
	left: -0.2rem;
	top: 0.4rem;
	z-index: 3;
	width: 0.4rem;
	text-align: center;
	box-sizing: border-box;
	padding: 0.2rem 0.1rem;
	background-color: #0000c8;
	font-size: 0.16rem;
	line-height: 1.2;
	border-top-right-radius: 0.1rem;
}

.index_box .div2{
	background-image: url(../img/tp26.jpg);
	background-size: 100%;
	background-attachment: fixed;
	background-position: left center;
}
.index_box .div2 .div{
	width: 6.0rem;
	background-color: #fff;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
	box-sizing: border-box;
	padding: 0.6rem 0.36rem;
	border-top-right-radius: 0.5rem;
}

.index_box .div2 .swiper-container{

}
.index_box .div2 .swiper-slide{

}
.index_box .div2 .swiper-slide a{
	display: block;
	margin-bottom: 0.16rem;
	position: relative;
	padding-right: 0.5rem;
}
.index_box .div2 .swiper-slide a:last-of-type{
	margin-bottom: 0;
}
.index_box .div2 .swiper-slide a::after{
	content: "\eb08";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 0.24rem;
	position: absolute;
	right: 0.1rem;
	top: 50%;
	margin-top: -0.12rem;
	opacity: 0;
	transition: all 0.3s;
}
.index_box .div2 .swiper-slide a h6{
	font-size: 0.2rem;
	color: #666;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: all 0.3s;
}
.index_box .div2 .swiper-slide a p{
	font-size: 0.16rem;
	color: #999;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-top: 0.06rem;
	opacity: 0;
	transition: all 0.3s;
}

.index_box .div2 .div .dl{
	margin-top: 0.3rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.index_box .div2 .div .dl dt{
	
}
.index_box .div2 .div .dl dd{
	font-size: 0;
}
.index_box .div2 .div .dl dd span{
	display: inline-block;
    vertical-align: top;
    position: static;
    margin-top: 0;
    margin-left: 0.2rem;
}

.index_box .div3{

}
.index_box .div3 .top_div{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 0.5rem
}
.index_box .div3 .top_div .title_h4{
	margin-bottom: 0;
}
.index_box .div3 .top_div h6{
	font-size: 0;
}
.index_box .div3 .top_div h6 a{
	display: inline-block;
	vertical-align: top;
	margin-left: 0.36rem;
	font-size: 0.16rem;
	color: #666;
	padding-bottom: 0.14rem;
	position: relative;
	transition: all 0.3s;
}
.index_box .div3 .top_div h6 a::after{
	content: "";
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	background-color: #0000c8;
	opacity: 0;
	transition: all 0.3s;
}

.index_box .div3 .bottom_div{
	display: flex;
	height: 4.8rem;
}
.index_box .div3 .bottom_div dl.time_dl{
	display: inline-block;
	vertical-align: top;
	text-align: center;
    border-top-right-radius: 0.2rem;
    padding: 0.14rem 0.12rem 0.12rem;
    background-color: #0000c8;
	white-space: nowrap;
}
.index_box .div3 .bottom_div dl.time_dl dt{
	font-size: 0.36rem;
    font-family: "BEBAS";
    color: #fff;
}
.index_box .div3 .bottom_div dl.time_dl dd{
	font-size: 0.16rem;
    color: #fff;
	opacity: 0.6;
    margin-top: 0.14rem;
}
.index_box .div3 .swiper-container{
	flex-shrink: 0;
	width: 42.8%;
	height: 100%;
}
.index_box .div3 .swiper-slide{
	overflow: hidden;
}
.index_box .div3 .swiper-slide::after{
	content: "";
	position: absolute;
	z-index: 3;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 32%;
	background-image: url(../img/tp2.png);
	background-size: 100% 100%;
}
.index_box .div3 .swiper-slide em{
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: all 0.3s;
}
.index_box .div3 .swiper-slide dl.time_dl{
	position: absolute;
	z-index: 3;
	top: 0.26rem;
	left: 0.26rem;
}
.index_box .div3 .swiper-slide h6{
	position: absolute;
    z-index: 4;
    width: calc(100% - 1.0rem);
    left: 0.26rem;
    bottom: 0.36rem;
    box-sizing: border-box;
	font-size: 0.22rem;
	color: #fff;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.index_box .div3 .swiper-pagination{
	width: auto;
	left: auto;
	bottom: 0.4rem;
	right: 0.2rem;
}
.index_box .div3 .swiper-pagination span{
	width: 0.1rem;
	height: 0.1rem;
	background-color: #fff;
}

.index_box .div3 .div{
	flex: 1;
	margin-left: 0.3rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.index_box .div3 .div a{
	flex: 1;
	margin-bottom: 0.2rem;
	background-color: #fff;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	padding: 0 0.3rem;
}
.index_box .div3 .div a:last-of-type{
	margin-bottom: 0;
}
.index_box .div3 .div a dl.time_dl{
	background-color: #c4c4c4;
	transition: all 0.3s;
}
.index_box .div3 .div a div{
	flex: 1;
	min-width: 0;
	margin-left: 0.3rem;
}
.index_box .div3 .div a div h6{
	font-size: 0.22rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	line-height: 1.4;
	transition: all 0.3s;
}
.index_box .div3 .div a div p{
	font-size: 0.16rem;
	color: #666;
	line-height: 1.6;
	overflow: hidden;
	height: 0.5rem;
	margin-top: 0.1rem;
}



.search_box{

}
.search_box .form{
	padding: 0.5rem;
	background-color: #fff;
	box-sizing: border-box;
	display: flex;
	box-shadow: 0px 0px 0.3rem 0px rgba(1,0,67,0.07);
}
.search_box .form input{
	flex-shrink: 0;
	width: calc(100% - 1.0rem);
	height: 0.6rem;
	border: none;
	padding: 0 0.2rem;
	font-size: 0.16rem;
	box-sizing: border-box;
	background-color: #f5f5f5;
}
.search_box .form button{
	flex-shrink: 0;
	width: 1.0rem;
	height: 0.6rem;
	background-color: #0000c8;
}
.search_box .form button::after{
	content: "\eafe";
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    font-size: 0.34rem;
	color: #fff;
}
.search_box .h6{
    font-size: 0.18rem;
	font-weight: bold;
    border-bottom: 1px solid #dedede;
    margin-bottom: 0.2rem;
	margin-top: 0.5rem;
	padding-bottom: 0.2rem;
}
.search_box .div1{

}
.search_box .div1 li{
	height: 0.56rem;
    line-height: 0.56rem;
    border-bottom: 1px solid #dedede;
}
.search_box .div1 li a{
	display: block;
	transition: all 0.3s;
}




@media (min-width: 992px) {
	.swiper-button-prev:hover{
		background: rgba(0,0,200,1);
	}
	.swiper-button-next:hover{
		background: rgba(0,0,200,1);
	}
	.search_box .div1 li a:hover{
		color: #0000c8;
	}
	.foot_box .div1 .h6 a:hover{
		color: #5f5fc7;
	}
	.index_box .div3 .swiper-slide:hover em{
		transform: scale(1.1);
	}
	.index_box .div3 .div a:hover dl.time_dl{
		background-color: #0000c8;
	}
	.index_box .div3 .div a:hover div h6{
		color: #0000c8;
	}
	.index_box .div3 .top_div h6 a:hover{
		color: #0000c8;
	}
	.index_box .div3 .top_div h6 a:hover::after{
		opacity: 1;
		width: 100%;
	}
	.index_box .div2 .swiper-slide a:hover::after{
		color: #0000c8;
		right: 0;
		opacity: 1;
	}
	.index_box .div2 .swiper-slide a:hover h6{
		color: #0000c8;
	}
	.index_box .div2 .swiper-slide a:hover p{
		opacity: 1;
	}
	.index_box .div1 .swiper-slide a:hover em{
		border-top-right-radius: 0.4rem;
	}
	.index_box .div1 .swiper-slide a:hover em i{
		transform: scale(1.1);
	}
	.index_box .div1 .swiper-slide a:hover::before{
		top: 0.2rem;
		left: 0.2rem;
		opacity: 1;
	}
	.probleminfo_box .h4 a:hover{
		color: #0000c8;
	}
	.productlist_box .ul li:hover h6{
		background-color: #0000c8;
		color: #fff;
	}
	.productlist_box .ul li:hover em i{
		transform: scale(1.1);
	}
	.productlist_box .ul li:hover em::after{
		opacity: 0.3;
	}
	.productlist_box .left_div dl dd a:hover{
		color: #0000c8;
	}
	.more_a:hover{
		color: #0000c8;
	}
	.more_a:hover::before{
		width: 100%;
		opacity: 1;
	}
	.product_box .dl dd a:hover h6{
		background-color: #0000c8;
		color: #fff;
	}
	.product_box .dl dd a:hover em i{
		transform: scale(1.1);
	}
	.product_box .dl dd a:hover em::after{
		opacity: 0.3;
	}
	.contact_box .div2 dl dt:hover i{
		background-color: #fff;
		color: #0000c8;
	}
	.contact_box .div2 dl dt:hover p span{
		color: #fff;
	}
	.contact_box .div2 dl dt:hover{
		background-color: #0000c8;
		color: #fff;
	}
	.problem_box .type_h5 a:hover{
		background-color: #0000c8;
		color: #fff;
	}
	.probleminfo_box .div3 .link:hover{
		background-color: #0000c8;
		color: #fff;
	}
	.problem_box .div1 li:hover div span::after{
		color: #0000c8;
	}
	.problem_box .div1 li:hover div h6{
		color: #0000c8;
	}
	.problem_box .div1 li:hover em i{
		transform: scale(1.1);
	}
	.foot_box .div2 h6 p a:hover{
		color: rgba(255,255,255,1);
	}
	.foot_box .div1 .dd3 div p a:hover{
		color: #0000c8;
	}
	.paging_div a:hover{
		background-color: #0000c8;
		border-color: #0000c8;
		color: #fff;
	}
	.head_box .language_dl dt:hover{
		height: 0.48rem;
	}
	.head_box .language_dl dt:hover::after{
		transform: rotate(-90deg);
		color: #0000c8;
	}
	.head_box .language_dl dt a:hover{
		color: #0000c8;
	}
	.head_box .nav_ul li:hover a{
		color: #0000c8;
	}
	.head_box .nav_ul li:hover::after{
		width: 100%;
		opacity: 1;
	}
	
	
}

@media (max-width: 1600px) {
	html{
		font-size: 90px;
	}
	
}

@media (max-width: 1500px) {
	
}

@media (max-width: 1400px) {
	html {
		font-size: 80px;
	}
	.foot_box .div1 .dd2{
		margin: 0 3%;
	}
	.foot_box .div1 .dd1 ul li{
		margin-right: 0.2rem;
	}
}

@media (max-width: 1200px) {
	body{
		padding-top: 0.7rem;
	}
	.w72{
		width: 92%;
	}
	.pd{
		padding: 0.5rem 0;
	}
	.box{
		margin-top: 0;
	}
	.title_h4{
		margin-bottom: 0.44rem;
	}
	
	.head_box{
		padding-left: 4%;
		padding-right: 0.7rem;
		height: 0.7rem;
	}
	.head_box .logo_a{
		width: 1.4rem;
	}
	.head_box .search_a{
		width: 0.7rem;
		background-color: #fff;
		line-height: 0.7rem;
		border-left: 1px solid #dedede;
	}
	.head_box .search_a::after{
		color: #333;
	}
	.head_box .language_dl{
		margin-right: 0;
		width: 0.7rem;
		text-align: center;
	}
	.head_box .language_dl dt{
		padding: 0;
		margin-top: 0;
		height: 100%;
	}
	.head_box .language_dl dt::after{
		display: none;
	}
	.head_box .language_dl dt a{
		display: none;
		line-height: 0.7rem;
		font-size: 0.22rem;
	}
	.head_box .language_dl dt a:nth-of-type(1){
		display: block;
	}
	.head_box .nav_ul{
        display: none;
        position: absolute;
        background-color: #fff;
        border-top: 1px solid #e5e5e5;
        width: 100%;
        top: 100%;
        left: 0;
        margin-right: 0;
        box-sizing: border-box;
        padding: 0.1rem 4%;
		margin-left: 0;
        box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2);
    }
    .head_box .nav_ul li{
        display: block;
        padding: 0;
        border-bottom: 1px solid #e5e5e5;
        margin-right: 0;
    }
    .head_box .nav_ul li:last-of-type{
        border-bottom: none;
    }
    .head_box .nav_ul li a{
        line-height: 0.54rem;
        height: 0.54rem;
        font-size: 0.18rem;
        color: #333;
    }
	.head_box .nav_ul li::after{
		top: auto;
		bottom: 0;
	}

	.menu_box{
		display: flex;
	}

	.banner_box{
		position: relative;
		top: 0;
		left: 0;
		height: 50vw;
	}
	.banner_box h5 strong{
		display: none;
	}

	.foot_box .div1{
		padding: 0.4rem 0;
	}
	.foot_box .div1 .a{
		margin: 0 auto 0.4rem;
	}
	.foot_box .div1 .dl{
		padding-top: 0.4rem;
		margin-top: 0;
	}
	.foot_box .div1 .dl{
		display: block;
	}
	.foot_box .div1 .dd1 ul{
		display: block;
	}
	.foot_box .div1 .dd2{
		margin: 0;
		margin-top: 0.3rem;
	}
	.foot_box .div1 .dd3{
		display: none;
	}
	.foot_box .div1 .h6{
		display: none;
	}
	.foot_box .div1 .dl h6{
		font-size: 0.2rem;
		margin-bottom: 0.2rem;
	}
	.foot_box .div1 .dd1 ul li{
		margin-right: 0;
		margin-top: 0.14rem;
	}
	.foot_box .div1 .dd1 ul li p{
		font-size: 0.16rem;
	}
	.foot_box .div2 h6{
		display: block;
	}
	.foot_box .div2 h6 p a{
		margin-left: 0;
	}

	.paging_div{
		margin-top: 0.5rem;
	}

	.search_box .form{
		padding: 0.2rem 0.3rem;
	}

	.contact_box .div1{
		display: block;
	}
	.contact_box .div1 li{
		width: 100%;
		margin-right: 0;
		margin-bottom: 0.14rem;
	}
	.contact_box .div2 dl dt{
		padding: 0 0.3rem;
	}
	.contact_box .div2 dl dt p{
		display: none;
	}
	.contact_box .div2 dl dt i{
		right: 0.3rem;
	}
	.contact_box .div2 dl dd{
		padding: 0.3rem 0.3rem;
	}
	
	.customized_box .div1{
		padding: 0.3rem;
	}
	.customized_box .div1 label{
		width: 100%;
		margin-right: 0;
	}
	.customized_box .div1 label input{
		height: 0.5rem;
	}
	.customized_box .div1 label textarea{
		height: 1.8rem;
	}
	.customized_box .div1 button{
		width: 100%;
	}

	.problem_box .div1 li{
		width: 100%;
		margin-right: 0;
	}
	.problem_box .div1 li div h6{
		height: auto;
	}
	.problem_box .div1 li div p{
		height: auto;
	}

	.probleminfo_box{
		padding: 0.3rem;
	}
	.probleminfo_box .div1{
		padding-right: 0;
		padding-top: 0;
	}
	.probleminfo_box .div1 dl{
		position: static;
		background-color: #fff;
		padding: 0;
		display: flex;
		align-items: center;
		margin-top: 0.2rem;
	}
	.probleminfo_box .div1 dl dt{
		color: #333;
		font-size: 0.22rem;
		margin-right: 0.1rem;
	}
	.probleminfo_box .div1 dl dd{
		color: #333;
		opacity: 1;
		font-size: 0.22rem;
		margin-top: 0;
		font-family: "BEBAS";
	}
	.probleminfo_box .div3 .return{
		width: 100%;
	}
	.probleminfo_box .div3 .link{
		display: none;
	}

	.problem_box .type_h5 a{
		width: 1.1rem;
	}
	.problem_box .type_h5{
		margin-bottom: 0.44rem;
	}

	.solution_box .div1 dl{
		display: block;
		height: auto;
		margin-bottom: 0.3rem;
	}
	.solution_box .div1 dl dt{
		width: 100%;
		height: 50vw;
	}
	.solution_box .div1 dl dd{
		width: 100%;
		padding: 0.2rem;
	}

	.about_box .div1 dt{
		width: 100%;
	}
	.about_box .div1 .div{
		width: 100%;
		box-sizing: border-box;
		padding: 0.4rem 0.3rem;
	}
	.about_box .div1 dd{
		position: static;
		width: 100%;
		height: 50vw;
	}
	.about_box .div2 .ul li{
		display: block;
		height: auto;
	}
	.about_box .div2 .ul li em{
		display: block;
		width: 100%;
		height: 50vw;
	}
	.about_box .div2 .ul li div{
		width: 100%;
		padding: 0.3rem;
	}
	.about_box .div3 .ul li{
		height: auto;
		padding: 0.2rem 0.3rem;
	}
	.about_box .div4 .h6{
		display: block;
	}
	.about_box .div4 .h6 img{
		width: 100%;
		margin-bottom: 0.12rem;
	}
	.about_box .div4 .h6 img:last-of-type{
		margin-bottom: 0;
	}
	.about_box .div5 .swiper-container{
		margin-bottom: 0.5rem;
	}
	.about_box .div5 .dl1{
		display: block;
		margin-bottom: 0.3rem;
	}
	.about_box .div5 .dl1 dt{
		width: 100%;
	}
	.about_box .div5 .dl1 dd{
		margin-top: 0.4rem;
	}
	.about_box .div5 .dl1 dd span{
		margin-left: 0;
		margin-right: 0.2rem;
	}
	.about_box .div5 .dl2{
		display: block;
		padding: 0.3rem;
	}
	.about_box .div5 .dl2 dd{
		margin-top: 0.3rem;
		width: 100%;
		height: auto;
		line-height: 1;
		box-sizing: border-box;
		padding: 0.2rem;
	}
	.about_box .div5 .dl2 dd img{
		width: 100%;
	}

	.product_box .dl{
		display: block;
	}
	.product_box .dl dt{
		width: 100%;
	}
	.product_box .dl dt a{
		position: static;
		margin-top: 0.24rem;
	}
	.product_box .dl dd{
		width: 100%;
		margin-top: 0.3rem;
		justify-content: flex-start;
		overflow-x: auto;
	}
	.product_box .dl dd a{
		width: 43%;
		margin-right: 0.2rem;
	}
	.product_box .dl dd a:last-of-type{
		margin-right: 0;
	}

	.productlist_box{
		display: block;
	}
	.productlist_box .left_div{
		width: 100%;
	}
	.productlist_box .right_div{
		width: 100%;
		margin-left: 0;
	}
	.productlist_box .paging_div{
		text-align: center;
	}
	.productlist_box .ul{
		margin-top: 0;
	}
	.productlist_box .ul li{
		width: 48%;
		margin-right: 4%;
	}
	.productlist_box .ul li:nth-of-type(2n){
		margin-right: 0;
	}

	.video_box div{
		width: 100%;
	}

	.probleminfo_box .div4{
		display: block;
	}
	.probleminfo_box .div4 .swiper-container{
		width: 100%;
	}
	.probleminfo_box .div4 .dl{
		width: 100%;
		margin-left: 0;
		margin-top: 0.3rem;
	}

	.swiper_box{
		position: relative;
		top: 0;
		left: 0;
		height: 60vw;
	}
	.swiper_box .swiper-slide h6{
		display: none;
	}
	.swiper_box .swiper-button-next{
		display: none;
	}
	.swiper_box .swiper-button-prev{
		display: none;
	}

	.index_box{
		margin-top: 0;
	}
	.index_box .div1{
		padding: 0.5rem 0;
	}
	.index_box .div1 .div{
		position: static;
		width: 100%;
	}
	.index_box .div1 .div dl{
		display: flex;
		align-items: center;
		flex-direction: row-reverse;
		justify-content: space-between;
		margin-bottom: 0.4rem;
	}
	.index_box .div1 .div dl dt span{
		margin-right: 0;
		margin-left: 0.2rem;
	}
	.index_box .div1 .div dl dd{
		margin-top: 0;
	}
	.index_box .div1 .swiper-container{
		margin-left: 0;
	}
	.index_box .div1 .swiper-slide a h6{
		padding: 0 0.2rem;
		bottom: 0.2rem;
	}
	.index_box .div2 .div{
		width: 100%;
		padding: 0.4rem 0.3rem;
	}

	.index_box .div3 .top_div{
		display: block;
		margin-bottom: 0.4rem;
	}
	.index_box .div3 .top_div .title_h4{
		margin-bottom: 0.44rem;
	}
	.index_box .div3 .top_div h6 a{
		margin-left: 0;
		margin-right: 0.2rem;
	}
	.index_box .div3 .bottom_div{
		display: block;
		height: auto;
	}
	.index_box .div3 .swiper-container{
		width: 100%;
		height: 60vw;
	}
	.index_box .div3 .div{
		width: 100%;
		height: auto;
		display: block;
		margin-top: 0.3rem;
		margin-left: 0;
	}
	.index_box .div3 .div a{
		padding: 0.2rem;
	}
	.index_box .div3 .div a div{
		margin-left: 0.2rem;
	}
	






}

@media (max-width: 380px){
	/* html {
		font-size: 70px;
	} */
}












































































