#header{
    position: fixed;
    width: 100%;
    background: #fff;
    top: 0;
    left: 0;
    z-index: 9999;
	border-bottom: 1px solid #E6E6E6;
}
.header-logo {
    height: 90px;
    line-height: 90px;
	position: relative;
    z-index: 2;
}
.header-logo a{
    display: flex;
    align-items: center;
    height: 100%;
}
.header-logo img {
    max-height: 45px;
}
.header-menu>ul>li{
	float:left;
	position:relative;
	margin-left: 40px;
}
.header-menu>ul>li>a{
    display: inline-block;
	height: 90px;
    line-height: 90px;
    position: relative;
	font-family: PingFangSC-Semibold;
	font-size: 17px;
	font-weight: 600;
}
.header-menu>ul>li>a:after {
    content: '';
    position: absolute;
    bottom: -1px;
    height: 2px;
    overflow: hidden;
    background-color: #CC0073;
    left: 50%;
    right: 50%;
    transition: all 0.4s ease-out;
    -moz-transition: all 0.4s ease-out;
    -ms-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    -webkit-transition: all 0.4s ease-out;
}
.header-menu>ul>li:hover>a:after, .header-menu>ul>li.current-menu-item>a:after {
    left: 0;
    right: 0;
}
.sf-menu ul {
    position: absolute;
    display: none;
    z-index: 9999;
    top: 100%;
    padding: 0;
	width: 150%;
    min-width: 220px;
    background: #FFFFFF;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
    border-radius: 5px;
    overflow: hidden;
}
.sf-menu ul li{position:relative;}
.sf-menu ul li:after {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url(../images/arrow-right.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 15px;
    background-size: 16px 16px;
}
.sf-menu ul li:hover:after{
    background-image: url(../images/arrow-right-red.png);	
}
.sf-menu ul li a {
    display: block;
    font-family: PingFangSC-Regular;
    font-size: 16px;
    color: #333333;
    padding: 15px 15px;
    border-bottom: 1px solid #F0F0F0;
}
.sf-menu ul li a:hover {
    background-color: #F7F7F7;
	font-weight:600;
}
.sf-menu ul ul {
    top: 1px;
    left: 100%;
}
.sf-menu li li ul {
    margin-top: -1px;
}
.lang .box{
	cursor:pointer;
    border: 1px solid #E6E6E6;
    border-radius: 20px;
    padding: 10px;
	background-image:url(../images/arrow-down.png);
	background-size:14px 14px;
	background-repeat:no-repeat;
    background-position: 85px 15px;
}
.lang:hover .box{
	border: 1px solid #CC0073;
	background-image:url(../images/arrow-up-red.png);
}
.lang .box span{
    padding-right: 30px;
}
.lang .hide{
	display:none;
	width: 100%;
    text-align: center;
	position: absolute;
    top: 50px;
	background: #FFFFFF;
	box-shadow: 0 0 20px 0 rgba(0,0,0,0.05);
	border-radius: 20px;
	overflow:hidden;
}
.lang img{
	width:24px;
	height:auto;
	margin-right:8px;
}
.lang ul li a{
	display:block;
	font-family: PingFangSC-Regular;
	font-size: 16px;
	color: #333333;
	text-align: center;
	padding: 10px 0;
    border-bottom: 1px solid #F0F0F0;
}
.lang ul li:last-child a{border-bottom:none;}
.lang ul li a:hover{
	background: #F7F7F7;	
}