.header {
	height: 0.8rem;
	background-color: #fff;
	position: fixed;
	width: 100%;
	top: 0%;
	left: 0%;
	z-index: 99;
}
.header_logo {
	max-width: 2.62rem;
}
.header .main > .flex_box1 {
	flex: 0 0 20%;
}
.header .main > .flex_box2 {
	flex: 0 0 68%;
}
.header .main >.flex_box3 {
	flex: 0 0 12%;
	padding-left: 0.2rem;
}
.header_nav {
	justify-content: space-between;
}
.header_nav .level1 {
	position: relative;
}
.header_nav .level1 .level1_a{
	line-height: 0.8rem;
	position: relative;
	transition: var(--tran_03);
}
.header_nav .level1 .level1_a::after {
	content: '';
	width: 0%;
	height: 0.01rem;
	display: block;
	background-color: var(--c);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	transition: var(--tran_03);
	bottom: 0%;
}
.header_nav .level1 .level1_a:hover::after,
.header_nav .level1 .level1_a.active::after {
	width: 100%;
}
.header_nav .level1 .level1_a:hover, 
.header_nav .level1 .level1_a.active {
	color: var(--c);
}
.header_nav .level2_list {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background-color: #ffffffcc;
	height: 0%;
	transition: var(--tran_03);
	overflow: hidden;
}
.header_nav .level2_list .level2_a {
	white-space: nowrap;
	line-height: 0.4rem;
	padding: 0 0.3rem;
	transition: var(--tran_03);
}
.header_nav .level2_list .level2_a:hover,
.header_nav .level2_list .level2_a.active {
	background-color: var(--c);
	color: #fff;
}
.header .search {
	width: 0.18rem;
	filter: invert(1);
}
.header .lang {
	text-align: right;
	font-size: 0.14rem;
} 
.header .lang img {
	max-width: 0.18rem;
	display: inline-block;
	vertical-align: middle;
	margin-right: 0.06rem;
}
.header .main .flex_box3 .flex_box {
	justify-content: end;
}
.header .main .flex_box3 .flex_box1 {
    border-left: 0.01rem solid rgba(51, 51, 51, 1);
	border-right: 0.01rem solid rgba(51, 51, 51, 1);
	flex: 0 0 auto;
	padding-right: 0.2rem;
	padding-left: 0.2rem;
}
.header .main .flex_box3 .flex_box2 {
	padding-left: 0.2rem;
	flex: 0 0 auto;
}
.header .header_search {
	border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
	overflow: hidden;
	flex-wrap: nowrap;
	padding: 0.5rem;
	background-color: rgba(255,255,255,0.6);
	display: none;
}
.header .header_search .search_input {
	height: 0.4rem;
	background-color: #FAFAFA;
	border: 0.01rem solid #E1E1E1;
	border-radius: 0.05rem 0 0 0.05rem;
	width: calc(100% - 0.7rem);
}
.header .search_img {
	background: var(--c);
	width: 0.7rem;
	height: 0.4rem;
}
.header .search_img_a {
	display: flex;
	width: 100%;
	height: 100%;
	align-content: center;
	align-items: center;
	justify-content: center;
	color: #fff;
}


.common-phone-header,
.side-wrap{
    display: none;
}
@media only screen and (max-width: 1024px) {
    .header-wrap {
        display: none;
    }
    .common-phone-header {
        display: block !important;
    }
    .side-wrap {
        display: block !important;
    }
    .common-phone-header {
        position: fixed;
        z-index: 10000;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
    }
    .common-phone-header-inner {
        display: flex;
        height: 50px;
        border-bottom: 1px solid #eee;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
    }
    .header-menu-phone{
        height: 30px;
        width: auto;
    }
    .header-logo-phone {
        height: 30px;
        width: auto;
    }
    .header-search-phone {
        height: 30px;
        width: auto;
    }
    .header-search-box-phone {
        display: none;
    }
    .header-search-input-phone {
        border-radius: 20px;
        height: 35px;
        border-width: 1px;
        border: 1px solid #333;
        padding: 0 10px;
        font-size: 14px;
    }
    .side-modal {
        display: none;
        position: fixed;
        z-index: 99999;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100vw;
        background:rgba(0, 0, 0, .5);
    }
    .side-container {
        display: none;
        position: fixed;
        z-index: 100000;
        left: 0;
        top: 0;
        height: 100vh;
        width: 6.4rem;
        background-color: #fff;
        color: #000;
        border-left: 1px solid #eee;
        animation: ani_side 1s;
    }
    .side-container.shown {
        display: block;
    }
    @keyframes ani_side{
        from {
            display: none;
            width: 3rem;
        }
        to {
            display: block;
            width: 100%;
        }
    }
    .side-wrap {
        width: 100%;
    }
    .side-top {
        display: flex;
        height: 60px;
        padding: 0 20px 0 30px;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #eee;
    }
    .side-logo {
        height: 30px;
        width: auto;
    }
    .side-close {
        width:.48rem;
    }
    .side-bottom {
        padding:  0 .48rem 0 .72rem;
    }
    .nav-item-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .27rem 0 .27rem 0;
        border-bottom: 1px solid #eee;
    }
    .nav-item-inner span{
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    .nav-item-inner img{
        width: .4rem;
    }
    .side-nav-list .nav-item a{
        color: #000;
        font-size: .26rem;
        width: 100%;
        display: inline-block !important;
    }
    .side-nav-list .side-local-img {
        width: .3rem;
        margin-right: .2rem;
        vertical-align: text-bottom;
    }   
    .side-nav-list-sub {
        display: none;
    }
    .side-nav-list-sub  .side-back-img {
        width: .3rem;
        margin-right: .2rem;
        vertical-align: text-bottom;
    }
    .side-container{
        width: 100%;
    }
}