@charset "utf-8";

#header{
	width: 90%;
	min-width: 1300px;
	top: 0;
	position: fixed;
	z-index: 11111;
	left: 50%;
	transform: translate(-50%,0);
	transition: all 0.2s ease-in-out;
	height: 100px;
	background-color: rgba(255,255,255,1);
	box-shadow: 0 0 25px rgba(0,0,0,0.05);
	border-radius: 0 0 50px 50px;
}

#header.top{
	top: 0 !important;
}
#header:hover,
#header.on{
	background-color: rgba(255,255,255,1);
	box-shadow: 0 0 25px rgba(0,0,0,0.05);
}

#header .headerBox{
	padding-top: 0px;
	width: 100%;
	margin: 0 auto;
}
#header .logo {
	position: absolute;
	z-index: 12;
	top: 50%;
	transform: translate(0 ,-50%);
	left: 50px;
}
#header .logo a{
	display: block;
	position: relative;
	width: 220px;
	height: 60px;
	background: url(../img/logo.png) no-repeat center center;
	background-size: 100%;
	z-index: 9;
	transition: all 0.2s ease-in-out;
}
#header .logo .icon-logo{
	display: none;
}


#header .menu{
	position: absolute;
	z-index: 11;
	top: 0;
	right: 0;
	width: 100%;
}
#header .menu-box{
	padding: 0;
	height: 100px;
	text-align: center;
}

#header .menu-con>ul{
	margin: 0px;
	display: inline-block;
}
#header .menu-con>ul>li{
	float: left;
	position: relative;
}
#header .menu-con>ul>li>a{
	display: block;
	margin: 0;
	z-index: 3;
	transition: all 0.2s ease-in-out;
}
#header .menu-con>ul>li>a>span.cn{
	display: block;
	color: #000;
	opacity: 1;
	height: 100px;
	line-height: 100px;
	margin: 0 .35rem;
	font-weight: bold;
	overflow: hidden;
	text-align: center;
	font-size: 17px;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
	top: 0;
	transition: all 0.2s ease-in-out;
}
#header.on .menu-con>ul>li>a>span.cn{
	color: #000;
}
#header .menu-con>ul>li>a>span.cn::before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -8px;
	width: 100%;
	height: 6px;
	border-radius: 5px 5px 0 0;
	background-color: #36439B;
	transition: all 0.4s ease-in-out;
	transform: translate(-50%, 0);
}
#header .menu-con>ul>li:hover>a>span.cn::before{
	bottom: 0;
	color: #36439B;
}


/* 二级菜单 */

#header .menu-con>ul>li .navCon{
	position: absolute;
	width: 100%;
	z-index: 1;
	top: 100px;
	height: 0;
	overflow: hidden;
	left: 50%;
	background-color: #fff;
	transform: translate(-50%,0);
	transition: all 0.4s;
}
#header .menu-con>ul>li:hover .navCon{
	height: 170px;
	opacity: 1;
	box-shadow: 0 3px 3px rgba(0,0,0,0.05);
	padding-top: 5px;
	border-radius: 0 0 10px 10px;
}

#header .menu-con>ul>li .navCon a{
	display: block;
	position: relative;
	height: 40px;
	text-align: center;
	line-height: 40px;
}
#header .menu-con>ul>li .navCon a:hover{
	color: #36439B;
	font-weight: bold;
}
#header .menu-con>ul>li.nav3:hover .navCon{
	height: 130px;
}
#header .menu-con>ul>li.nav4:hover .navCon,
#header .menu-con>ul>li.nav5:hover .navCon{
	height: 90px;
}


#header .headerBox>.con{
	position: absolute;
	height: 38px;
	top: 50%;
	transform: translate(0,-50%);
	right: 50px;
	z-index: 11;
	transition: all 0.4s ease-in-out;
}

#header .search-btn{
	width: 38px;
	height: 38px;
	display: block !important;
	position: absolute;
	right: 100px;
	top: 0;
	cursor: pointer;
	background: url(../img/search-hover.png) no-repeat center center;
	background-size: 22px;
}
#header.on .search-btn,
#header .search-btn:hover{
	background-image: url(../img/search-hover.png);
}
#header .con .search:hover .search,
#header .search.open{
	top: 22px;
}

#header .search{
	top: 0;
	right: 0;
	position: absolute;
	z-index: 999;
	transition: all 0.3s ease-in-out;
}
#header .search input{
	width: 220px;
	padding-left: 15px;
	height: 38px;
	font-size: 14px;
	border: 1px solid #e8e8e8;
	color: #000;
	background: #f6f6f6;
	border-radius: 20px;
	transition: all 0.2s ease-in-out;    
	position: absolute;
	right: 0;
}
#header .con input::placeholder{
	color: #888;
}
#header .search input:focus{
	width: 300px;
	padding-left: 18px;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
#header .con input:focus::placeholder{
	color: #333;
}
#header .con button{
	position: absolute;
	right: 10px;
	top: 2px;
	font-size: 14px;
	width: 32px;
	height: 32px;
	text-indent: -999em;
	background: #f6f6f6 url(../img/search.png) no-repeat 6px center;
	background-size: 20px;
	border-radius: 2px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	opacity: .5;
}
#header .con .search:hover button{
	opacity: 1;
}
#header .con button:hover{
	background-image: url(../img/search-hover.png);
}
#header .search .search-close{
	height: 80px;
	line-height: 80px;
	padding-left: 10px;
	color: #888;
}
#header .con .language{
	position: relative;
	right: 0px;
	top: 0;
}
#header .con .language a{
	display: block;
	width: 50px;
	height: 80px;
	font-size: 14px;
	line-height: 80px;
	padding-left: 5px;
	background: url(../img/language-hover.png) no-repeat center center;
}
#header .con .language .iconfont{
	position: relative;
	top: 1px;
	margin-left: 2px;
}

#header.on .con .language a{
	color: #000;
	background: url(../img/language-hover.png) no-repeat center center;
}
#header .con .language a:hover{
	color: #13284A;
	background: url(../img/language-hover.png) no-repeat center center;
}



#header .con .link{
	position: absolute;
	right: 150px;
	line-height: 80px;
}
#header .con .link a{
	display: block;
	width: 6em;
	height: 80px;
	font-size: 17px;
	line-height: 80px;
	color: #000;
	font-weight: bold;
}
#header.on .con .link a{
	color: #000;
}
#header .con .link a:hover{
	color: #13284A;
	font-weight: bold;
}



@media screen and (max-width: 1480px) {
	#header .menu-con>ul>li>a>span.cn{margin: 0 18px;}
	#header .headerBox>.con{right: 20px;}
	#header .con .link{	right: 150px;}
	#header .menu-con>ul>li>a>span.cn{
		margin: 0 15px;
		font-size: 15px;
	}
}


@media screen and (max-width: 1024px) {
	body.open{overflow: hidden;}
	.top-box{
		display: none;
	}
	#header {
		position: fixed;
		left: 0;
		top: 0 !important;
		z-index: 99;
		height: 50px;
		width: 100%;
		min-width: 100%;
		border-radius: 0;
		transform: translate(0,0);
	}
	#header.on{
		top: 0 !important;
		border-bottom: 0;
	}
	#header .headerBox{
		width: 100%;
		max-width: 100%;
		min-width:100%;
		height: 50px;
		margin:0 auto;
		position: relative;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	.header-block{
		height: 50px;
		transition: all 0.2s ease-in-out;
	}
	#header .link{
		display: none;
	}
	#header .headerBox > .con {
		position: absolute;
		z-index: 12;
		display: block;
		top: 0px;
		height: 50px;
		width: 100%;
		left: auto;
		right: 0;
	}
	#header .search-btn{
		width: 50px;
		height: 50px;
		position: absolute;
		right: 50px;
		top: 0;
		background: url(../img/search-footer.png) no-repeat center center;
		background-size: 20px;
	}
	#header .search{
		right: 0%;
		top:-50px;
		width:100%;
		display: flex;
		position: relative;
		height: 50px;
		padding: 5px 10px;
		transition: all 0.4s ease-in-out;
	}
	#header .con.open{
		z-index: 13;
		background-color: #fff;
	}
	#header .search.open{
		right: 0;
		top: 0px;
	}
	#header .search form{
		flex: 1;
		position: relative;
	}
	#header .con input,
	#header .search input:focus{
		width: 100%;
		padding-left: 15px;
		height: 40px;
		font-size: 14px;
		line-height: 30px;
		border-radius: 30px;
		color: #888;
		border: 1px solid #f1f1f1;
		background: rgba(255,255,255,1);
		font-size: 14px;
	}
	#header .con button{
		position: absolute;
		right: 10px;
		top: 0;
		font-size: 14px;
		width: 40px;
		height: 40px;
		border-radius: 100%;
		text-indent: -999em;
		background: url(../img/search-hover.png) no-repeat center center;
		background-size: 20px;
		cursor: pointer;
		opacity: 1;
	}
	#header .search .search-close{
		height: 40px;
		line-height: 40px;
		padding-left: 5px;
		color: #999;
	}
	#header .search .search-close .iconfont{
		font-size: 24px;
		color: #888;
	}
	#header.on .search-btn, #header .search-btn:hover{
		background: url(../img/search-footer.png) no-repeat center center;
		background-size: 20px;
	}
	
	#header .qr{
		display: none;
	}
	
	#header .logo{
		position: absolute;
		left: 50%;
		width: 110px;
		top: 50%;
		left: 15px;
		transform: translate(0,-50%);
		z-index: 13;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	#header .logo a{
		width: 100%;
		height: 50px;
		background-position: center;
	}

	#header .menu{
		position: absolute;
		background: none;
		width: 50px;
		height: 50px;
		right: 0px;
		top: 0px;
		z-index: 13;
		-webkit-transition: all 0.2s ease-out;
		-moz-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;	
	}

	#header .menu-box{
		width: auto;
		min-width: auto;
		max-width: auto;
		padding: 0;
		height: auto;
		float: none;
	}

	#header .menu .icon-menu-btn {display: block; width: 40px; z-index: 12; height: 40px; margin-top: 5px; position: relative;}
		.icon-menu-btn:before, .icon-menu-btn:after { content: ""; display: block; width: 20px; height: 2px; background: #36439B; border-radius: 4px; position: absolute; left: 0; -webkit-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; }
		.icon-menu-btn:before { top: 11px; left: 10px; box-shadow: 0 8px #36439B; }
		.icon-menu-btn:after { bottom: 11px;  left: 10px;}
		.icon-menu-btn.open:before { top: 19px; left: 8px; width: 23px; height: 2px; background: #36439B; -webkit-transform: rotate(45deg); transform: rotate(45deg);  box-shadow: none;}
		.icon-menu-btn.open:after { bottom: 19px; left: 8px; width: 23px; height: 2px; background: #36439B; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); }
	#header .menu .menu-con-bg{
		display: none;
		opacity: 1;
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		background-color: rgba(0,0,0,0.85);
	}
	#header .menu .menu-con{
		position: fixed;
		z-index: 11;
		right: -100%;
		top: 0;
		width: 80%;
		height: 100vh;
		background: #fff;
		padding: 0;
		-webkit-transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		transition: all 0.4s ease-in-out;	
	}
	#header .menu .menu-con.open{
		right: 0%;
	}
	#header .menu .menu-title{
		text-indent: -999em;
		font-size: 22px;
		font-weight: 200;
		color: #888;
		height: 50px;
		box-sizing: border-box;
		padding: 10px 0 0 20px;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	#header .menu ul{
		margin: 0 20px 20px 20px;
		border-top: 1px dashed #dbd6d8;
		display: block;
		height: 100%;
		padding-bottom: 160px;
		overflow: auto;
	}
	#header .menu ul li{
		display: block;
		float: none;
		margin: 0;
		position: relative;
		border-bottom: 1px solid #f1f1f1;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	#header .menu-con>ul>li{
		float: none;
		width: 100%;
	}
	#header .menu-con > ul > li > a{
		padding: 0;
	}
	#header .menu ul li a span.cn{
		position: relative;
		display: block;
		color: #36439B;
		font-weight: bold;
		padding: 8px 0 8px 0px;
		line-height: 33px;
		height: auto;
		overflow: visible;
		text-align: left;
		font-size: 16px;
		margin: 0;
	}
	#header .menu-con > ul > li:hover > a > span.cn{
		color: #36439B;
		border-bottom: 0 !important;
	}
	#header .menu-con>ul>li:hover>a{
		border-bottom:0;
	}
	#header .menu-con>ul>li>a>span.cn::before{
		display: none;
	}
	#header .menu ul li .navCon{
		position: relative;
		z-index: 0;
		top: 0;
		padding:  0;
		margin-top: -8px;
		width: 100%;
		background: #FFF;
		border-radius:0;
		display: block;
		padding-bottom: 10px;
		height: auto;
		opacity: 1;
		overflow: hidden;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	#header .menu-con > ul > li > a{
		background: none !important;
		padding: 8px 0;
		border: 0;
		height: auto;
	}
	#header .menu-con > ul > li:hover > a{
		border: 0;
	}
	#header .menu-con > ul > li .navCon a:hover{
		color: #000;
	}
	
	#header .menu-con ul li:hover .navCon a{
		line-height: 32px;
	}
	#header .menu ul li .navCon a:hover{
		background: #fff;
		line-height: 32px;
	}
	
	#header .menu-con>ul>li:hover .navCon{
		height: auto;
		border-bottom: 0;
		box-shadow: none;
	}
	#header .menu-con>ul>li .navCon a{
		font-size: 14px;
		display: block;
		padding: 8px 0;
		line-height: 16px;
		text-align: left;
		height: auto;
		float: left;
        width: 50%;
	}
	#header .menu-con>ul>li:hover .navCon a{
		font-size: 14px;
		display: block;
		padding: 8px 0;
		line-height: 16px;
	}
	#header .menu-con>ul>li:hover .navCon{
		height: auto;
	}
	#header .menu-con>ul>li.nav3:hover .navCon{
		height: auto;
	}
	#header .menu-con>ul>li.nav4:hover .navCon,
	#header .menu-con>ul>li.nav5:hover .navCon{
		height: auto;
	}

	
}