.header {
    background: url("/static/img/headbg.png");
}

.user-info {
    margin-left: 5px;
    color: #000000;
    cursor: pointer;
}

.icon-user-fill, .icon-category {
    color: #000000;
}

.icon-user-fill {
    font-size: 20px;
}

.icon-category {
    font-size: 26px;
    margin-right: 5px;
}

.logout {
    margin-left: 5px;
    color: #000000 !important;
}

.container {
}

.header .container {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 1200px;
}

.login-wrapper {
    position: absolute;
    right: 0;
    top: 20px;
    display: flex;
    align-items: center;
}

.login-wrapper .el-link--inner {
    color: #ffffff;
    font-size: 18px;
}

.nav {
    background: var(--theme-color-dynamic);
}

.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item {
    flex: 1;
    height: 50px;
    color: #ffffff;
    position: relative;
}

.nav-pull-down-list {
    position: absolute;
    width: 100%;
    z-index: 999;
}

.nav-pull-down-item {
    background: #ffffff;
}

.nav-handle {
    height: 50px;
    text-align: center;
    line-height: 50px;

    cursor: pointer;
}

.nav-pull-down-item > .nav-handle {
    color: #ffffff;
    background-color: #19b9a8;
}

.nav-pull-down-item > .nav-handle:hover {
    background-color: #19b1a0;
}

.collapse-transition {
    transition: .1s height ease-in-out,.08s padding-top ease-in-out,.08s padding-bottom  ease-in-out;
}

.suspend {
    position: fixed;
    top: 240px;
    left: 240px;
    width: 80px;
    height: 80px;
    background: var(--theme-color-dynamic);
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    z-index: 999999;
}

@media (max-width:480px){
    .logo {
        position: absolute;
        width: 340px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .header .container {
        height: 50px;
        justify-content: space-between;
        padding: 0 10px;
    }
    .login-wrapper {
        position: unset;
    }

    .suspend {
        bottom: 20px;
        right: 20px;
        top: unset;
        left: unset;
        width: 60px;
        height: 60px;
        font-size: 12px;
    }
}