.header-box {
    max-width: 1920px;
    width: 100%;
    height: 70px;
    padding: 17px 8.3% 13px;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(50, 65, 110, 0.27);
    z-index: 1201;
    position: fixed;
    top: 0;
    /* display: flex; */
}

.header-box-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left {
    width: 10.8%;
    cursor: pointer;
}

.phone-header {
    display: none;
}

.right {
    height: 40px;
    flex: 1;
    color: #333;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}

.right>div {
    margin-left: 3.1%;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}



img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.right>div::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #004DA1;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease-in-out;
}

.right>div:hover::after {
    transform: scaleX(1);
}

.right>div.active {
    color: #004DA1;
}

.right>div.active::after {
    transform: scaleX(1);
}

.right>div:hover ul {
    /* display: block; */
    opacity: 1;
    height: auto;
    padding: 10px 0;
    box-sizing: border-box;
    opacity: 1;
    overflow: auto;
}

.right>div ul {
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 250%;
    text-align: center;
    transition: opacity 1s ease;
    background: #004DA1;
}

.right>div ul li {
    padding: 12px 18.7%;
    box-sizing: border-box;
    /* background: rgba(0, 77, 161, 0.5); */
    background: #004DA1;
    color: #fff;
    font-weight: normal;
}

/* .right>div ul li:first-child {
    padding-top: 20px;
}

.right>div ul li:last-child {
    padding-bottom: 20px;
} */

.right>div ul li:hover {
    background: rgba(15, 100, 192, 1);
}

.phone-menu {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: #fff;
    padding-top: 55px;
    z-index: 1200;
}

.phone-menu>ul>li {
    padding: 0 8.3%;
    line-height: 3;
    font-size: 15px;
    border-bottom: 1px solid rgba(5, 51, 51, 15%)
}

.phone-menu>ul>li>a {
    display: block;
    width: 100%;
    font-weight: 600;
}

.phone-menu>ul>li>ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.phone-menu>ul>li>ul>li {
    margin-right: 15px;
    line-height: 1.5;
}

.phone-menu.active {
    display: block;
}

@media only screen and (max-width: 1200px) {
    .header-box {
        height: 80px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .header-box-content {
        display: none;
    }

    .phone-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        /* padding: 10px 0; */
    }

    .left {
        width: 25%;
    }

    .phone-right {
        width: 25px;
        height: 25px;
        position: relative;
    }

    .phone-right img {
        position: absolute;
        width: 100%;
        height: auto;
    }

    .phone-right img:last-child {
        opacity: 0;
    }

    .phone-right.active img:first-child {
        opacity: 0;
    }

    .phone-right.active img:last-child {
        opacity: 1;
    }

    .header-box {
        width: 100%;
        height: 50px;
        padding-top: 0;
        padding-bottom: 0;
        /* background: rgba(0, 0, 0, 0.4); */
        /* background: rgba(0, 0, 0, 0.4); */
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .phone-menu {}
}