body{
	min-height: 800px;
}
.header{
	width: 100%;
	height: 64px;
	background-color: #fff;
	border-bottom: 2px solid #0f5fda;
	position: relative;
}
.header .container{
	max-width: 1280px;
	width: 100%;
    padding: 0 22px;
	margin: 0 auto;
	height: 100%;
}
.header .header-content{
	height: 100%;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.header .header-nav{
    width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-between;
}
.header .logo{
	height: 100%;
}
.header .logo a{
	display: flex;
	height: 100%;
	align-items: center;
}
.header .logo a img{
/*	height: 65%;*/
	height: 35%;
	width: auto;
}
.header .menu{
	color: #333;
	height: 100%;
}
.header .menu > ul{
	height: 100%;
	display: flex;
	align-items: center;
}
.header .menu a{
	color: inherit;
}
.header .menu > ul > li a button{
	all: unset;
    box-sizing: border-box;
    display: none;
    width: 48px;
    height: 48px;
    margin-right: -16px;
}
.header .menu > ul > li a button svg{
	width: 20px;
	height: 20px;

}
.header .menu > ul > li a button svg path{
	fill:rgba(0, 0, 0, 0.8);
}
@media(min-width: 834px){
.header .menu > ul > li{
	font-size: 16px;
	position: relative;
}
.header .menu > ul > li > a{
	padding: 15px 20px;
	position: relative;
	display: flex;
    align-items: center;
}
.header .menu > ul > li > a::before{
    position: absolute;
    content: "";
    margin: 0 auto;
    width: 0;
    height: 2px;
    transition: all .3s ease;
    right: 0;
    left: 0;
    bottom: 0;
    pointer-events: none;
    background-color: #0f5fda;
}
.header .menu > ul > li:hover > a{
	color: #0f5fda;
}
.header .menu > ul > li:hover > a::before{
	width: 100%;
}
.header .menu > ul > li.menu-item-has-children:not(.menu-item-lang) > a::after{
	display: inline;
	margin-left: 6px;
	font-family: "iconfont";
	content: "\eb04";
	font-style: normal; 
    font-weight: 900; 
    text-decoration: inherit; 
}
.header .menu > ul > li.menu-item-has-children .sub-menu{
	position: absolute;
    z-index: 10;
    top: 52px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease,visibility 0.2s ease,transform 0.2s ease;
    padding: 0;
    display: block;
    box-shadow: 0px 10px 20px rgba(41, 51, 61, 0.1);
    border-radius: 2px;
    background-color: #fff;
    transform: translate3d(0,10px,0);
    padding-bottom: 10px;
	font-size: 16px;
    width: 230px;
}
.header .menu > ul > li.menu-item-has-children .sub-menu > li{
	padding: 0 20px;
	position: relative;
}
.header .menu > ul > li.menu-item-has-children .sub-menu > li > a{
	display: block;
	height: 46px;
	line-height: 46px;
}
.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
}
.header .menu > ul > li.menu-item-has-children .sub-menu > li{
	border-bottom: 1px dashed rgb(224,233,236);
	transition: border 0.2s ease;
}
.header .menu > ul > li.menu-item-has-children .sub-menu > li:hover{
	border-bottom: 1px solid #0f5fda;
}
.header .menu > ul > li.menu-item-has-children .sub-menu > li:hover a{
	color: #0f5fda;
}

	
}
.wap-trigger{
	display: none;
}
.header .wap-trigger button {
    all: unset;
    box-sizing: border-box;
}
.header .wap-trigger button {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    color: rgba(0, 0, 0, .8);
}
.header-menutrigger-button .line {
	transform-box: fill-box;
	transform-origin: center;
	transition: all .3s ease;
}

.header-menutrigger-button.open .line-1 {
	transform: translateY(4px) rotate(45deg);
}

.header-menutrigger-button.open .line-2 {
	transform: translateY(-4px) rotate(-45deg);
}
@media only screen and (max-width: 1439px){
}
@media only screen and (max-width: 1068px){
}
@media only screen and (max-width: 833px){
	.header{
		height: 48px;
		border-bottom: none;
	}
	.header .container{
        height: 100%;
        position: absolute;
        z-index: 99;
        top: 0;
        left: 0;
        transition: none;
        /*transition: height 0.24s ease-in-out, background 466ms cubic-bezier(.4, 0, .6, 1) 80ms;*/
        transition: height 0.24s ease-in-out, cubic-bezier(.4, 0, .6, 1) 200ms;
	}
	.header.open .container{
		z-index: 9999;
        height: 100vh;
        overflow-y: scroll;
        background: rgb(250, 250, 252);
	}
	html.header-no-scroll, body.header-no-scroll {
        overflow: hidden !important;
        position: relative;
        height: 100% !important;
    }
	.header .logo{
		padding: 0 16px;
		z-index: 100;
	}
	.header .logo a img{
		height: 17px;
	}
	.header .container{
		padding: 0;
	}
	.wap-trigger{
		display: block;
		z-index: 100;
	}
	.header .menu{
		display: contents;
	}
	.header .menu > ul{
		display: flex;
	    flex-direction: column;
	    width: 100%;
	    padding: 50px 16px 100px;
	    position: absolute;
	    width: 100%;
	    left: 0;
	    top: 0;
	    pointer-events: none;
	    opacity: 0;
	    height: auto;
	    align-items: unset;
	}
	.header.open .menu > ul{
		opacity: 1;
		pointer-events: auto
	}
	.header .header-content{
		height: 48px;
	}
	.header .menu > ul > li{
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		font-size: 16px;
	}
	.header .menu > ul > li a{
		display: flex;
		height: 48px;
        align-items: center;
        justify-content: space-between;
	}
	.header .menu > ul > li a button{
		display: flex;
        justify-content: center;
        align-items: center;
	}
	.header .menu > ul > li.menu-item-has-children .sub-menu{
		display: none;
	}
	.header .menu > ul > li.menu-item-has-children.active .sub-menu{
		display: block;
	}
}
@media only screen and (max-width: 734px){
}
@media only screen and (max-width: 508px){
}
@media only screen and (max-width: 430px){
}
