@font-face {
    font-family: 'Noto Serif SC';
    src: url(../../css/lib/fonts/NotoSerifSC-Regular.otf);
}

@font-face {
    font-family: 'NotoSansSC-Black';
    src: url(../../css/lib/fonts/NotoSansSC-Black.otf);
}

@font-face {
    font-family: 'NotoSansSC-Bold';
    src: url(../../css/lib/fonts/NotoSansSC-Bold.otf);
}


.header_block{
    width: 100%;
    height: 80px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    border-bottom: 0.4px solid #000000;
    cursor: pointer;
}

.layout-logo{
    width: 300px;
    height: 80px;    
    margin-left: 80px;
    display: flex;
    align-items: center;
}

.sys_name{
    line-height: 100px;
    font-family: 'Noto Serif SC';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    color: #000000;
}

.layout-logo img{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.menu-block{
    width: auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    margin-right: 80px;
}

.menu_normal{
    width: auto;
    height: auto;
    font-family: 'Noto Serif SC';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #000000;
    margin: 0 40px;
    min-width: 80px;
}

.menu_active{
    width: auto;
    height: auto;
    font-family: 'Noto Serif SC';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    letter-spacing: 0.05em;
    color: #B02E26;
    position: relative;
    margin: 0 40px;
    min-width: 80px;
}

.menu_active::after{
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #B02e26;
    top: 30px;
    left: 25px;
}

.user-block{
    width: 100px;
    height: auto;
    text-align: center;
    cursor: pointer;
}

.user-block img{
    width: 24px;
    height: 24px;
}

.ivu-notice-icon-success {
    color: #141339 !important;
}

.ivu-notice-icon-error {
    color: #C01A1A !important;
}

@media (max-width: 950px) {
    .sys_name{
       display: none;
    }

    .menu-block {
        margin-right: 10px;
    }

    .menu_active {
        margin: 0 10px;
    }

    .menu_normal {
        margin: 0 10px;
    }

    .user-block {
        width: 60px;
    }

    .layout-logo {
        width: 100px;
    }
}