.header-contain {
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 200px;
    background: #FFFFFF;
    box-shadow: 0px 6px 10px 0px rgba(196, 196, 196, 0.24);
}

.header-left {
    width: 80%;
    display: flex;
    align-items: center;
}

.header-left .header-logo {
    height: 30px !important;
    width: auto !important;
    /*width: 60px;*/
    /*height: 60px;*/
    object-fit: cover;
}

.header-logo img {
    /*width: 100%;*/
    height: 100%;
}

.header-left .header-left-text {
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #434343;
    /*margin-left: 10px;*/
    padding: 10px;
}

.header-left .header-text {
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #434343;
    padding: 10px;
    border-left: 2px solid #E0E0E0;
}

.header-right {
    display: flex;
    height: 33px;
    background: #F8F7FA;
    border-radius: 16px;
    cursor: pointer;
}

.header-language {
    flex: 1;
    padding: 0px 10px;
    text-align: center;
    line-height: 30px;
    background: #F8F7FA;
    color: #333333;
    font-size: 16px;
    border: 1px solid #2C7EED;
    font-family: PingFang SC;
}

.header-language:first-child {
    border-radius: 16px 0 0 16px;
}

.header-language:last-child {
    border-radius: 0 16px 16px 0;

}

.header-contain-phone {
    display: none;
}

.lang-active {
    background: #2C7EED;
    /*border-radius: 16px;*/
    color: #ffffff;
    border: 1px solid #2C7EED;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2),
    -10px -10px 30px rgba(255, 255, 255, 1);
    transition: all .2s ease-out;
}

.lang-active:hover {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2),
    0 0 0 rgba(255, 255, 255, 0.8),
    inset 18px 18px 30px rgba(0, 0, 0, 0.1),
    inset -18px -18px 30px rgb(199 186 186 / 42%);
}

#localLanguageen {
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2),
    0 0 0 rgba(255, 255, 255, 1);
    transition: all .2s ease-out;
}


#localLanguageen:hover {
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2),
    0 0 0 rgba(255, 255, 255, 0.8),
    inset 18px 18px 30px rgba(0, 0, 0, 0.1),
    inset -18px -18px 30px rgba(255, 255, 255, 1);
}

.header-center {
    background: #2C7EED;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2),
    -10px -10px 30px rgba(255, 255, 255, 1);
    transition: all .2s ease-out;
}

.header-center:hover {
    cursor: pointer;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2),
    0 0 0 rgba(255, 255, 255, 0.8),
    inset 18px 18px 30px rgba(0, 0, 0, 0.1),
    inset -18px -18px 30px rgb(199 186 186 / 42%);
}

@media only screen and (max-width: 700px) {
    .header-contain {
        display: none;
    }

    .header-contain-phone {
        display: flex;
        /*background: url("../img/bg_phone.png") no-repeat 50% 30%/100%;*/
        background-size: cover;
        /*overflow: hidden;*/
        height: 25vh;
        position: relative;
        font-weight: bold;
        text-align: center;
        font-size: 18px;
        /*color: #FFFFFF;*/
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .header-contain-phone img {
        width: 150px;
        max-width: 80%;
        height: auto;
    }

    .header-contain-phone div {
        margin-top: 15px;
    }
}