.header_wrap {
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.header .logo {
    width: 2.32rem;
    height: .85rem;
}


.header_right {
    display: flex;
    align-items: center;
    justify-content: end;
}

.header_right ul {
    display: flex;
    gap: 0 0.89rem;
    margin-right: .75rem;
}

.header_navBtn {
    font-size: 0.18rem;
    line-height: .85rem;
    color: #202020;
    transition: 0.3s;
    position: relative;
    font-family: Sans-SemiBold;
}

.header_navBtn:hover {
    color: #005DAB;
}

.header_active {
    color: #005DAB;
}

.header_active::after {
    width: 100%;
    height: 4px;
    background-color: #005DAB;
    display: block;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
}

.header_navBtn:hover::after {
    width: 100%;
    height: 4px;
    background-color: #005DAB;
    display: block;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
}

.header_img1 {
    width: 0.19rem;
    height: 0.19rem;
    transition: 0.3s;
}

.header_img2 {
    width: 0.19rem;
    height: 0.19rem;
    margin-left: .4rem;
    
    display: none;

}

.down,
.down1 {
    width: 100%;
    background: #fff;
    position: absolute;
    top: .85rem;
    left: 0;
    height: 0;
    overflow: hidden;
    transition: 0.5s;
}

.down .main,
.down1 .main {
    padding-top: 0.54rem;
    display: flex;
    justify-content: space-between;
}

.down_left {
    width: 95%;
}

.down_left_body {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.44rem;
    justify-content: end;
}

.down_left_body_box {
    max-width: 2.58rem;
    width: 25%;
    position: relative;
}

.down_left_body_box p {
    font-size: 0.18rem;
    color: #202020;
    transition: 0.3s;
    text-align: center;
    margin-top: .2rem;
    
    font-family: Sans-SemiBold;
}

.down_left_body_box .imgbg {
    width: 2rem;
    height: 2rem;
    border-radius: .2rem;
    margin: 0 auto;

}


.header_li:hover .down {
    height: 3.8rem;
}

.down:hover {
    height: 3.8rem;
}

.header_li:hover .down1 {
    height: 1.43rem;
    border-top: 1px solid #eee;

}

.down1:hover {
    height: 1.43rem;
}

.down_right {
    width: 92%;
    display: flex;
    /*justify-content: right;*/
    
     margin-left: 54%;

}

.down_right a {
    font-size: 0.18rem;
    color: #202020;
    max-width: 1.5rem;
    text-align: center;
    
    
    font-family: Sans-SemiBold;
}