.ogs-v2-app-header {
    position: fixed;
    top: 0px;
    right: 0px;
    left: 0px;
    z-index: 99998;
    background-color: var(--COLOR_DEFAULT);
}

.ogs-v2-app-header-container {
    height: 74px;
    padding: 0 16px;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    box-sizing: border-box;
}

.ogs-v2-app-header-center-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ogs-v2-app-header .ogs-v2-app-header-center-item img {
    height: 40px;
    width: auto;
}

.ogs-v2-app-header-right-item {
    width: 100px;
    display: flex;
    justify-content: flex-end;
}

.ogs-v2-app-header-left-item {
    width: 100px;
    display: flex;
    justify-content: flex-start;
}

.ogs-v2-app-header-left-item>* {
    margin-right: 15px;
}

.ogs-v2-app-header-right-item>* {
    margin-left: 15px;
}

.ogs-v2-app-header-icon {
    width: 25px;
    height: 25px;
}

.ogs-v2-app-header-icon>* {
    width: 100%;
    height: 100%;
}

.ogs-v2-app-header-notice {
    position: absolute;
    top: -5px;
    right: -10px;
    width: 18px;
    height: 18px;
    background: var(--COLOR_DANGER);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--COLOR_HIGHTLIGHT);
    font-size: 12px;
    z-index: 1;
}

.ogs-v2-app-header-menu-button {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.ogs-v2-app-header-menu-button .fa-bars {
    display: block;
}

.ogs-v2-app-header-menu-button .fa-times {
    display: none;
}

.ogs-v2-app-header-menu-button.active .fa-bars {
    display: none;
}

.ogs-v2-app-header-menu-button.active .fa-times {
    display: block;
}

.ogs-v2-app-header-menu-button>div {
    width: 24px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--COLOR_PRIMARY);
    position: absolute;
}

.ogs-v2-app-header-menu-button>div:nth-child(1) {
    top: 4px;
}

.ogs-v2-app-header-menu-button>div:nth-child(2) {
    top: 11px;
}

.ogs-v2-app-header-menu-button>div:nth-child(3) {
    bottom: 4px;
}

.ogs-v2-app-header-menu-button.active>div:nth-child(1) {
    width: 27px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 11px;
}

.ogs-v2-app-header-menu-button.active>div:nth-child(2) {
    opacity: 0;
}

.ogs-v2-app-header-menu-button.active>div:nth-child(3) {
    width: 27px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    bottom: 11px;
}

@media screen and (min-width:1024px) {
    .ogs-v2-app-header .ogs-v2-app-header-center-item img {
        height: 48px;
        width: auto;
    }
}