.headBg {
    width: 100%;
    height:60px;
    margin: 0 auto;
	background: #FFFFFF;
	/* overflow: hidden; */
	
}
.header {
    width: 1200px;
    height: 60px;
    margin: 0 auto;
	line-height: 60px;
	position: initial;
	/* position: absolute;
	top: 0;
	left: 50%; */
	/* margin-left: -600px; */
	
}
.headerC {
    width: 100%;
    margin: 0 auto;
	position: fixed;
	top: 0;
	z-index: 1000;
	
}
.logo{
	margin-top: 20px;
}
.headCon{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
}
.nav {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.nav li a {
	display: inline-block;
	color: inherit;
}

.nav li.muli {
	float: left;
	text-align: center;

}

.nav li.muli>a {
	display: block;
	height: 40px;
	line-height: 40px;
	font-size: 16px;
	color: #333333;
	margin: 0 25px;
	padding: 0 10px;
	position: relative;
	/* position: absolute; */
	cursor: pointer;
	/* border-bottom: 2px solid transparent; */
	transition: color .5s;
	 top:50%;
	 margin-top: 40px;
	 left: 50%;
	 transform: translate(-50%, -50%);
	 display: block;
}

/* .current {
	color: #333333;
	border-bottom: 2px solid #00348F;
} */

/* .nav li.muli a:hover {
	color: #ffffff;
	border-bottom: 2px solid #ffffff;
} */
.nav li.muli a.current::before {
    content: "";
    position: absolute;
    left: 25%;
    bottom: 0;
    width: 50%;
    transform: scaleX(0);
    height: 3px;
    background: #00348F;
    z-index: -1;
    transition: all .5s;
}
.nav li.muli a.current::before {
    transform: scaleX(1);
}
.nav li.muli a::before {
    content: "";
    position: absolute;
    left: 25%;
    bottom: 0;
    width: 50%;
    transform: scaleX(0);
    height: 3px;
    background: #00348F;
    z-index: -1;
    transition: all .5s;
}

.nav li.muli a:hover::before {
    transform: scaleX(1);
}