@charset "utf-8";

#header{
	width: 100%;
	top: 0;
	position: relative;
	z-index: 10;
	height: 100px;
	left: 0;
	background-color: #fff;
	transition: all 0.2s ease-in-out;
}
#header .headerBox{
	padding-top: 0px;
	width: 100%;
	max-width: 1600px;
	min-width:1200px;
	margin: 0 auto;
	height: 100px;
	padding: 15px 0;
	position: relative;
}

#header .logo {
	position: absolute;
	top: 30px;
}
#header .logo a{
	display: block;
	position: relative;
	width: 129px;
	height: 42px;
	background: url(../images/logo.png) no-repeat;
	background-size: 100%;
	z-index: 9;
	transition: all 0.2s ease-in-out;
}
#header .logo .icon-logo{
	display: none;
}


#header .menu{
	position: relative;
	z-index: 11;
	height: 70px;
	background-color: rgba(0,0,0,0.8);
}
#header .menu-box{
	width: 100%;
	max-width: 1600px;
	min-width:1200px;
	margin: 0 auto;
	position: relative;
}
#header .menu-con>ul{
	margin: 0px;
}
#header .menu-con>ul>li{
	display: block;
	position: relative;
	float: left;
	width: 13%;
}
#header .menu-con>ul>li>a{
	display: block;
	margin: 0;
	position: relative;
	z-index: 3;
	height: 70px;
	border-right: 1px solid rgba(255,255,255,0.05);
	transition: all 0.2s ease-in-out;
}
#header .menu-con>ul>li:hover>a{
	background-color: #D70021;
}
#header .menu-con>ul>li>a>span.cn{
	display: block;
	color: #fff;
	height: 70px;
	line-height: 70px;
	overflow: hidden;
	text-align: center;
	font-size: 16px;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
	margin: 0;
	top: 0;
}
#header .menu-con>ul>li:hover>a{}
#header .menu-con>ul>li:hover>a>span.cn{
	color: #fff;
}
#header .menu-con>ul>li.nav1{
	width: 9%;
}
#header .menu-con>ul>li.nav1>a{
	border-left: 1px solid rgba(255,255,255,0.05);
}
/* 二级菜单 */
#header .menu-con>ul>li .navCon{
	position: absolute;
	z-index: 0;
	top: 70px;
	padding: 5px 0;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.8);
	display: none;
	opacity: 0;
	overflow: hidden;
	/* transition: all 0.2s ease-in-out; */
}
#header .menu-con>ul>li:hover .navCon{
	display: block;
	opacity: 1;
}
#header .menu-con>ul>li.cur>a>span.cn{color: #E60012;}
#header .menu-con>ul>li .navCon a{
	font-size: 14px;
	display: block;
	line-height: 0px;
	text-align: center;
	color: #fff;
	padding: 0;
	transition: all 0.2s ease-in-out;
}
#header .menu-con>ul>li:hover .navCon a{
	line-height: 40px;
}
#header .menu-con>ul>li .navCon a:hover{
	color: #fff;
	background-color: #000000;
}

#header .con{
	position: absolute;
	top: 30px;
	right: 0;
	z-index: 11;
}

#header .link{
	display: inline-block;
}
#header .link a{
	display: inline-block;
	margin-right: 25px;
	transition: all 0.2s ease-in-out;
}
#header .link a span{
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
	border: 1px solid #333;
	width: 38px;
	height: 38px;
	border-radius: 100%;
	background-repeat: no-repeat;
	background-position: center;
}
#header .link a b{
	font-weight: normal;
}
#header .link a:hover b{
	color: #D70021;
}
#header .link a:hover{
	/* transform: scale(1.1); */
}
#header .search{
	display: inline-block;
	position: relative;
}
#header .search input{
	width: 200px;
	padding-left: 15px;
	height: 38px;
	height: 38px;
	font-size: 14px;
	border: 1px solid #333;
	color: #000;
	background: #fff;
	border-radius: 20px;
	transition: all 0.2s ease-in-out;
}
#header .con input::placeholder{
	color: #666;
}
#header .search input:focus{
	width: 280px;
}
#header .con input:focus::placeholder{
	color: #333;
}
#header .con button{
	position: absolute;
	right: 6px;
	top: 3px;
	font-size: 14px;
	width: 32px;
	height: 32px;
	text-indent: -999em;
	background: url(../images/search.png) no-repeat 6px center;
	border-radius: 2px;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
}
#header .con button:hover{
	background-image: url(../images/search-cur.png);
}

#header.on{
	border-bottom: 1px solid #f1f1f1;
}
#header.on{
	height: 100px;
}
#header.on .logo{
	width: 100px;
	height: 100px;
	top: 8px;
}
#header.on .logo a{
	height: 100px;
}
#header.on .menu{
	top: 15px;
	left: 120px;
}
#header.on .menu-con>ul>li>a>span.cn{
	transition: all 0.2s ease-in-out;
}
#header.on .con{
	top: 28px;
}

@media screen and (max-width: 1660px) {
	#header .logo{
		left: 30px;
	}
	#header .con{
		right: 30px;
	}
}
@media screen and (max-width: 768px) {
	body.open{overflow: hidden;}
	.top-box{
		display: none;
	}
	#header {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 99;
		height: 50px;
		border-bottom: 1px solid #f1f1f1;
	}
	#header.on{
		top: 0;
		border-bottom: 1px solid #f1f1f1;
	}
	#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 .con {
		position: absolute;
		z-index: 0;
		display: block;
		top: 0px;
		height: 50px;
		width: auto;
		left: auto;
		right: 0;
	}
	#header .con.open{
		z-index: 9;
	}
	#header .search-btn{
		width: 50px;
		height: 50px;
		position: absolute;
		right: 2px;
		top: 0;
		background: url(../images/search.png) no-repeat center center;
		background-size: 20px;
	}
	#header .search{
		right: -110%;
		display: flex;
		position: relative;
		background-color: #fff;
		top: 5px;
		padding: 0 10px;
		transition: all 0.4s ease-in-out;
	}
	#header .search.open{
		right: 0;
	}
	#header .search form{
		flex: 1;
		position: relative;
	}
	#header .search .search-btn-close{
		font-size: 14px;
		width: 40px;
		line-height: 40px;
		text-align: right;
		color: #888;
	}
	#header .con input,
	#header .search input:focus{
		width: 5.5rem;
		padding-left: 15px;
		height: 40px;
		font-size: 14px;
		line-height: 30px;
		border-radius: 30px;
		color: #333;
		border: 1px solid #888;
		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(../images/search-cur.png) no-repeat center center;
		background-size: 20px;
		cursor: pointer;
	}
	#header .search .search-close{
		height: 40px;
		line-height: 40px;
		padding-left: 10px;
		color: #888;
	}
	
	
	#header .qr{
		display: none;
	}
	
	#header .logo{
		position: absolute;
		left: 50%;
		width: 70px;
		background: url(../images/head-logo.png) no-repeat left center;
		background-size: 100%;
		top: 15px;
		left: 50%;
		transform: translate(-50%,0);
		z-index: 9;
		-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;
	}

	#header .menu{
		position: absolute;
		background: none;
		width: 50px;
		height: 50px;
		left: 10px;
		top: 0px;
		z-index: 11;
		-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;
	}

	#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: #000; 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 #000; }
				.icon-menu-btn:after { bottom: 11px;  left: 10px;}
				.icon-menu-btn.open:before { top: 19px; left: 8px; width: 23px; height: 2px; background: #000; -webkit-transform: rotate(45deg); transform: rotate(45deg);  box-shadow: none;}
				.icon-menu-btn.open:after { bottom: 19px; left: 8px; width: 23px; height: 2px; background: #000; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); }
	#header .menu .menu-con-bg{
		display: none;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-color: rgba(0,0,0,0.85);
	}
	#header .menu .menu-con{
		position: fixed;
		z-index: 11;
		left: -100%;
		top: 0;
		width: 80%;
		height: 100%;
		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{
		left: 0%;
		/* overflow: auto; */
	}
	#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 0 20px 20px;
		border-top: 1px dashed #dbd6d8;
		display: block;
		height: 100%;
		padding-bottom: 60px;
		overflow: auto;
		padding-right: 20px;
	}
	#header .menu ul li{
		display: block;
		float: none;
		margin: 0;
		position: relative;
		border-bottom: 1px dashed #dbd6d8;
		-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.nav1{
		width: 100%;
	}
	#header .menu-con>ul>li.nav1>a{
		border-left: 0;
	}
	#header .menu ul li a span.cn{
		position: relative;
		display: block;
		color: #E60012;
		padding: 8px 0 8px 10px;
		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: #E60012;
	}
	#header .menu-con>ul>li:hover>a{
		border-bottom:0;
	}
	#header .menu ul li a:hover span.cn{
	}
	#header .menu-con>ul>li>a>span.cn::after{
		content: '';
		position: absolute;
		width: 3px;
		height: 15px;
		background-color: #E60012;
		bottom: 16px;
		left: 0;
		margin-left: 0;
	}
	#header .menu ul li .navCon{
		position: relative;
		z-index: 0;
		top: 0;
		padding:  0;
		margin-top: -8px;
		left: 0;
		width: 100%;
		background: #FFF;
		border-radius:0;
		display: block;
		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 ul li .navCon ul{
		margin: 0;
		padding: 0 0 10px 10px;
		overflow: hidden;
		border: 0;
	}
	#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 ul li .navCon li{
		float: left;
		width: 50%;
		border: 0;
	}
	#header .menu ul li .navCon a{
		font-size: 14px;
		display: block;
		line-height: 32px;
		color: #666;
		text-align: left;
		transition: all 0.2s ease-in-out;
	}
	#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.nav4 .navCon{
		width: 100%;
	}
}