/* body{
    padding-top: 1rem!important;
} */
.header_top{
    position: fixed;
    width: 100%;
    height: 1rem;
    /*padding: 0.1rem 0;*/
    top: 0;
    left: 0;
    background: rgb(238,238,238);
    box-shadow: 0 0.05rem 0.06rem 0.01rem
    rgba(0, 0, 0, .1);
    z-index: 99;
}
.header_center{
    width: 14rem;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_logo{
    height: 100%;
    display: flex;
    align-items: center;
    
}
.logo_img{
    width: 1.2rem;
    /*height: 0.8rem;*/
    margin-right: 0.1rem;
    display: block;
}
.logo_img img{
    width: 100%;
    height: 100%;
}
.logo_txt{
    color: #333;
    font-size: 0.28rem;
    font-weight: bold;
    white-space: nowrap;
}
.logo_txt_en {
    color: #333;
    font-size: 0.14rem;
    letter-spacing: -0.7px;
    /*white-space: nowrap;*/
    height: 0.19rem;
    text-align: justify;
}
.logo_txt_en p {
    display: inline-block;
    width: 100%;
}
.header_nav{
    display: flex;
    align-items: center;
}
.header_nav_items{
    /*margin-left: 0.6rem;*/
    margin-left: 0.2rem;
    color: #333; 
    font-size: 0.16rem;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    /*line-height: 1rem;*/
}
.header_nav_items::after{
    content: '';
    display: block;
    width: 0;
    height: 0.04rem;
    background: #0853A9;
    border-radius: 0.05rem;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .25s;
}
.header_nav_items:hover{
    color: #0853A9;
    font-weight: bold;
}
.header_nav_items:hover::after{
    width: 100%;
}
/*9.11新增搜索框*/
.header_center .header_search {
    display: flex;
}
.header_center .header_search .search_ipt {
    width: 1.2rem;
    height: 0.35rem;
    padding-left: 0.1rem;
    border-radius: 20px;
    font-size: 0.12rem;
}
.header_center .header_search .search_img {
    width: 0.3rem;
    /*height: 0.4rem;*/
    margin-left: 0.1rem;
    object-fit: contain;
}
.header_center .header_search .language {
    margin-right: 0.2rem;
    /*line-height: 0.4rem;*/
    display: flex;
    align-items: center;
}
.header_center .header_search .language a {
    font-size: 0.16rem;
    color: #333 ;
    font-weight: 400;
}
.header_center .header_search .language .red_line {
    width: 0.02rem;
    height: 0.25rem;
    margin: 0 0.03rem;
    background-color: #333 ;
}



/*二级*/
.header_top .level1{
    position: relative;
    padding:0.42rem 0rem;
}
.header_top .level1:hover .level2_list {
   height: fit-content;
}

 .level2_list {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background-color: #0853A9;
	height: 0%;
	transition: var(--tran_03);
	overflow: hidden;
	height: 0%;
	top:1rem;
}

.header_nav .level2_list .level2_a {
	white-space: nowrap;
	line-height: 0.4rem;
	padding: 0 0.3rem;
	transition: var(--tran_03);
	color:#fff !important;
	font-size: 0.16rem;
}
.header_nav .level2_list .level2_a:hover{
      text-decoration-line: underline;
}



/* 移动适配 */
.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;
}
.header-logo-phone {
    height: 30px;
}
.header-search-phone {
    height: 30px;
}

.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: 100%;
    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 {
    width: 1rem;
}
.side-close {
    width:.48rem;
}

.side-bottom {
    padding:  0 .48rem 0 .72rem;
height: calc(100vh - 60px);
    overflow: auto;
}


.nav-item-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: .27rem .48rem .27rem .72rem; */
    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: .48rem; */
    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-nav-list-main .nav-item:first-child{
    /*display: none;*/
}
.side-nav-list-main .nav-item:last-child{
    /* display: none; */
}
}



@media only screen and (max-width:1024px){
    .header_top{
        display: none;
    }
}