.header-body {
    position: fixed;
    padding: 0 12px;
    width: 100vw;
    height: 60px;
    z-index: 9999;
    display: flex;
    justify-content: center;
}
.header-wrap {
    position: fixed;
    top: 0;
    padding: 0 20px;
    width: calc(100vw - 24px);
    line-height: 24px;
    background-color: transparent;
    height: 60px;
    display: flex;
    justify-content: space-between;
    transition: all .3s ease;
    max-width: 1776px;
}
.header-left {
    display: flex;
    align-items: center;
}
.header-logo {
    cursor: pointer;
    display: inline-block;
    width: auto;
    height: 50px;
    margin-right: 60px;
}
.header-menu {
    background-color: transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    height: 60px;
    letter-spacing: 0;
    line-height: 24px;
    margin-right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-right {
    display: flex;
    align-items: center;
}
.m-button {
    align-items: center;
    border-style: solid;
    border-width: 1px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-flex;
    font-weight: 400;
    justify-content: center;
    outline: 0;
    padding-left: 11px;
    padding-right: 11px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;

    border-radius: 6px;
    font-size: 15px;
    height: 36px;
    min-width: 68px;
}
.m-button-text {
    background-color: transparent;
    border-color: transparent;
    color: #151b26;
}
.text-bright {
    color: #091221;
}
.m-button-primary {
    background-color: #2468f2;
    border-color: transparent;
    color: #fff;
}
.header-menu:hover, .text-bright:hover {
    color: #2468f2;
}
.m-button-primary:hover {
    background-color: #528eff;
}

.header-body:hover {
    background-color: #fff;
    transition: all .1s ease;
}
.header-wrap-scroll {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 42px 0 rgba(9, 18, 33, .08);
    color: #091221;
    position: fixed;
    top: 12px;
    transition: all .3s ease;
}
.header-body.header-hover-disable:hover {
    background-color: transparent;
}

.mobile-menu-root {
    position: relative;
    display: flex;
    align-items: center;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    height: 48px;
    letter-spacing: 0;
    line-height: 24px;
    margin-right: 16px;
}
.menu-parent-icon {
    display: flex;
    align-items: center;
}
.mobile-menu-popover {
    position: absolute;
    right: 0;
    top: 56px;
    border-radius: 8px;
    box-shadow: 0 8px 42px 0 rgba(9, 18, 33, .08);
    transition: all .3s ease-in-out;
    background-color: #fff;
    z-index: 2;
}
.menu-popover-box {
    padding: 10px 0;
}
.menu-popover-item {
    align-items: center;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    line-height: 20px;
    padding: 10px 20px;
    width: max-content;
}

@media screen and (max-width: 768px) {
    .header-body {
        padding: 8px 8px 0;
        position: absolute;
        width: 100vw;
        z-index: 99999;
    }
    .header-wrap {
        position: fixed;
        top: .5rem;
        width: calc(100vw - 16px);
        height: 48px;
        font-weight: 400;
        line-height: 24px;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header-logo {
        display: inline-block;
        height: 36px;
    }
    .header-menu {
        display: none;
    }
    .m-button {
        display: none;
    }
}
@media screen and (min-width: 768px) {
    .mobile-menu-root {
        display: none;
    }
}