body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,input,button,textarea,p,th,td,span,a,b,i,strong{margin:0; padding:0; box-sizing: border-box;}
body {font-size:62.5%; line-height: 1.5; color: #333; background: #fff;font-family: "Microsoft YaHei","PingHei","PingFang SC","STHeitiSC-Light","Helvetica Neue","Helvetica","Arial",sans-serif;overflow-x: hidden;}
img{border:0;display: block;max-width: 100%;}
table {border-collapse: collapse;} 
input{border: none;}
button{outline: none;border: none;}
a{text-decoration: none;background: none ;color: inherit;font-size: inherit;}
ul, li, ol{ list-style: none; }
h1,h2,h3,h4,h5,h6{font-weight: normal;font-size: 100%;}
:focus{ outline:none;}
.clearfloat:after{display:block;clear:both;content:"";visibility:hidden;height:0}
.clearfix{ clear: both; content: ""; display: block; overflow: hidden }
.clear{clear: both;}
.fl{ float: left; }
.fr{float: right;}
:root {--primary-color: #414a9a;--vice-color: #fff;}
.txt_ellipsis{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.txt_ellipsis_two{overflow: hidden;text-overflow: ellipsis;display: -webkit-box; -webkit-box-orient: vertical;-webkit-line-clamp: 2;}
.bgCover{width: 100%;height: 100%;background-position: center;background-size: cover;background-repeat: no-repeat;transition: all .3s ease-out;}
.wrapper{width: 1300px;margin: 0 auto;}
.swiper-pagination-bullet-active{background-color: var(--primary-color);}
.color_primary{color: var(--primary-color);}

.pager-list{ text-align:center; margin: 60px 0;}
.pager-list ul{ display:inline-block;display: inline-flex;}
.pager-list li{ padding:0 8px;}
.pager-list li> *{ display:inline-block; padding: 5px 14px;border: 1px solid #eee !important;}
.pager-list li a:hover{ background: var(--primary-color) !important; color:#fff !important; border:1px solid var(--primary-color);}
.pager-list li.active> *{ color:#fff !important; background:var(--primary-color) !important; border:1px solid #ddd;}
.pager-list li.disabled> *{ cursor:auto;}
.pager-list li.active> span:hover, 
.pager-list li.active> a:hover{ background:var(--primary-color) !important; border-color: var(--primary-color); color: #fff !important;}


.header{
	padding: 50px 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header .nav{
	display: flex;
}
.header .nav> li{
	position: relative;
	/* margin-right: 40px; */
	padding: 10px 20px;
}
.header .nav> li> a{
	display: block;
	font-size: 1.8em;
	line-height: 37px;
	position: relative;
}
/* .header .nav> li> a::after{
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: all .3s ease-out;
} */
.header .nav> li:last-child> a{
	margin-right: 0;
}
/* .header .nav> li.on> a,
.header .nav> li a:hover{
	color: var(--primary-color);
} */

/* .header .nav> li> a:hover::after{
	width: 100%;
} */

.header .search{
	position: relative;
}
.header .search i{
	display: block;
	width: 38px;
	height: 38px;
	background: url(../images/ico_search.png) no-repeat center/20px;
	cursor: pointer;
}
.header .search .form{
	display: none;
}
.header .search form{
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	height: 30px;
	border: 1px solid #dcdcdc;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
}
.header .search form .txt{
	width: 140px;
	height: 100%;
	padding-left: 12px;
}
.header .search form .submit{
	width: 34px;
	height: 100%;
	background: #fff url(../images/ico_search.png) no-repeat center/16px;
	cursor: pointer;
}
.header .lang{
	border: 1px solid #dcdcdc;
	border-radius: 18px;
	position: relative;
}
.header .lang li a{
	height: 35px;
	line-height: 35px;
	padding: 0 10px;
	display: flex;
	align-items: center;
	font-size: 1.4em;
	color: #999;
}
.header .lang li a i{
	margin-right: 4px;
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.header .lang li:first-child i{
	display: block;
	width: 18px;
	height: 18px;
	background-image: url(../images/ico_lang_zh.png);
}
.header .lang li a:hover{
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.header .tel{
	background: url(../images/ico_tel.png) no-repeat center left/22px;
	padding-left: 30px;
	font-size: 2.4em;
	color: var(--primary-color);
}
.header .menu_btn{
	width: 26px;
	height: 22px;
	cursor: pointer;
	display: none;
	position: relative;
}
.header .menu_btn span {
	display: inline-block;
	width: 100%;
	height: 3px;
	background-color: var(--primary-color);;
	position: absolute;
	transition: all .3s linear;
}
.header .menu_btn span:first-child {
	top: 0;
}
.header .menu_btn span:nth-child(2) {
	top: 10px;
}
.header .menu_btn span:last-child {
	top: 20px;
	width: 70%;
}
.header.toggle .menu_btn span:first-child {
	top: 11px;
	transform: rotate(45deg);
}
.header.toggle .menu_btn span:nth-child(2) {
	opacity: 0;
}
.header.toggle .menu_btn span:last-child {
	top: 11px;
	width: 100%;
	transform: rotate(-45deg);
}

.footer{
	background-color: var(--primary-color);
	color: #fff;
}
.footer .section{
	padding: 50px 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .section .title{
	font-size: 1.8em;
}
.footer .section .title::after{
	content: '';
	display: block;
	width: 2em;
	height: 2px;
	background-color: #fff;
	margin: 5px 0 10px;
}
.footer .section .proList ul{
	width: 350px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer .section .proList ul li{
	width: 35%;
	font-size: 1.4em;
	margin-top: 10px;
}
.footer .section .proList ul li:nth-of-type(odd){
	width: 60%;
}
.footer .section .proList ul li a:hover{
	text-decoration: underline;
}
.footer .section .contact{
	border-left: 2px solid rgba(255, 255, 255, .2);
	border-right: 2px solid rgba(255, 255, 255, .2);
	padding: 0 30px;
	margin: 0 30px;
	
}
.footer .section .contact p{
	font-size: 1.4em;
	margin-top: 8px;
}
.footer .section .right{
	display: flex;
	justify-content: flex-end;
}
.footer .section .right .tel{
	text-align: right;
	padding: 0 30px;
}
.footer .section .right .tel p.num{
	font-size: 4.5em;
	white-space: nowrap;
}
.footer .section .right .online{
	display: inline-block;
	width: 120px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #fff;
	color: var(--primary-color);
	letter-spacing: 1px;
	cursor: pointer;
	transition: all .3s ease-out;
}
.footer .section .right .online:hover{
	border-radius: 6px;
	background-color: var(--primary-color);
	color: #fff;
	box-shadow: #fff 0 0 6px;
}
.footer .section .right .wechatBtn{
	display: inline-block;
	background-image: url(../images/ico_wechat.png);
	background-color: #fff;
	color: #333;
	font-size: 1.4em;
}
.footer .section .right .wechatBtn:hover{
	box-shadow: #fff 0 0 6px;
}
.footer .section .right .ewm p{
	text-align: center;
	margin-top: 15px;
}
.footer .btm{
	border-top: 2px solid rgba(255, 255, 255, .1);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px 0;
	font-size: 1.4em;
}

.m_footer{
	display: none;
}

@media screen and (min-width: 1300px){
	html,
	body{
		width: 100%;
		overflow-x: hidden;
	}
	.header .nav> li> ul{
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 5;
		/* background-color: rgba(255, 255, 255, .9); */
		background: var(--primary-color);
		color: var(--vice-color);
		min-width: 150px;
		box-shadow: 0 0 4px #837ad8;
		transform: scaleY(0);
		transform-origin: top;
		transition: all .2s ease-out;
	}
	.header .nav> li> ul> li{
		position: relative;
	}
	.header .nav> li> ul> li> a{
		display: block;
		font-size: 1.5em;
		/* color: #555; */
		/* margin-top: 15px; */
		line-height: 2.4;
		white-space: nowrap;
		position: relative;
		left: 0;
		padding: 5px 15px;
		transition: all .2s ease-out;
	}
	.header .nav> li> ul ul{
		position: absolute;
		left: 100%;
		top: 0;
		width: 0;
		background: var(--primary-color);
		overflow: hidden;
	}
	.header .nav> li> ul ul li a{
		display: block;
		white-space: nowrap;
		font-size: 1.5em;
		padding: 8px 10px;
	}
	.header .nav> li> ul ul li a:hover{
		background-color: #fff;
		color: var(--primary-color);
	}
	.header .nav> li> ul> li:hover ul{
		width: auto;
		padding: 10px;
		border-left: 1px solid #656ba5;
	}
	.header .nav> li.on{
		background: var(--primary-color);
		color: var(--vice-color);
	}
	.header .nav> li> ul> li:hover{
		background: #656ba5;
	}
	.header .nav> li.on> a::after{
		width: 100%;
	}
	.header .nav> li:hover> ul{
		transform: scaleY(1);
	}
	.header .nav> li> ul> li> a:hover{
		left: 2px;
	}
}

@media screen and (max-width: 1300px){
	*{-webkit-tap-highlight-color: transparent;}
	.wrapper{width: 100%;padding-left: 4% !important;padding-right: 4% !important;}
	
	.header{
		height: 60px;
		padding: 0;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .logo{
		width: 60%;
	}
	.header .nav{
		position: fixed;
		top: 60px;
		left: 0;
		width: 100%;
		height: 0;
		overflow: hidden;
		background-color: #fff;
		z-index: 998;
		box-shadow: 0 0 3px #dcdcdc;
		overflow-y: auto;
		transition: all .3s ease-out;
		display: block;
	}
	.header .nav> li.on> a,
	.header .nav> li a:hover{
		color: var(--primary-color);
	}
	.header.toggle{
		background-color: #fff;
		position: fixed;
		z-index: 9999;
	}
	.header.toggle .nav{
		height: calc(100vh - 60px);
		padding: 80px 4vw 30px;
	}
	.header .nav> li> a::after{
		top: 90%;
	}
	.header .nav> li{
		margin-right: 0;
		border-bottom: 1px dashed #eee;
	}
	.header .nav> li:last-child{
		border: none;
	}
	.header .nav> li> a{
		width: 100%;
		font-weight: bold;
		text-align: center;
		padding: 5px 0;
		
	}
	.header .nav> li ul li a{
		font-weight: normal;
		display: block;
		color: #555;
		font-size: 1.5em;
		letter-spacing: 1px;
		text-align: center;
		padding: 5px;
	}
	.header .nav> li ul li:last-child{
		margin-bottom: 10px;
	}
	.header .nav> li> ul ul{
		display: none;
	}
	.header .search{
		position: absolute;
		right: calc(4% + 50px);
	}
	.header .search form{
		left: auto;
		right: 0;
	}
	.header .lang{
		display: none;
	}
	.header.toggle .lang{
		display: block;
		position: fixed;
		top: 80px;
		right: 4vw;
		z-index: 999;
	}
	.header .tel{
		display: none;
	}
	.header .menu_btn {
	    display: block;
	}
	
	.footer{
		margin-bottom: 50px;
	}
	.footer .section{
		flex-wrap: wrap;
		padding: 30px 0 15px;
	}
	.footer .proList{
		display: none;
	}
	.footer .section .contact{
		width: 100%;
		border: 0;
		margin: 0;
		padding: 0;
	}
	.footer .section .right{
		width: 100%;
		margin-top: 20px;
		display: flex;
		justify-content: space-between;
	}
	.footer .section .right .tel p.num{
		font-size: 3em;
	}
	.footer .section .right .tel{
		text-align: left;
		padding: 0;
	}
	.footer .section .right .ewm img{
		width: 100px;
	}

	.m_footer{
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 50px;
		line-height: 50px;
		display: block;
		box-shadow: 0 0 10px rgba(255, 255, 255, .2);
	}
	.m_footer ul{
		display: flex;
		justify-content: space-between;
	}
	.m_footer ul li{
		width: calc(50% - 1px);
	}
	.m_footer ul li a{
		display: block;
		text-align: center;
		background-color: var(--primary-color);
		font-size: 1.5em;
		color: #fff;
	}

	.pager-list li{padding: 0 2px;}
	.pager-list li> *{padding: 3px 10px;font-size: 1.2em;}
}

@media screen and (max-width: 1024px){
	
}