﻿.navbar_box {
    display: flex;
    height: 358px;
    overflow-y: scroll;
}

/* 整体样式 */
.navbar_box::-webkit-scrollbar {
    background-color: white;
    width: 4px;
}

/*正常情况下滑块的样式*/
.navbar_box::-webkit-scrollbar-thumb {
    height: 192px;
    background: #DEDEDE;
    border-radius: 2px;
}

/*正常时候的主干部分*/
.navbar_box::-webkit-scrollbar-track {
    background-color: white;
}

.navbar_box .flex_box {
    display: flex;
    flex-direction: column;
}

.navbar_box .title {
    /* height: 16px; */
    font-size: 16px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #092AB7;
    line-height: 16px;
    padding-bottom: 15px;
    margin-bottom: 14px;
    width: 108px;
    border-bottom: 1px solid #EAEAEA;
}
.navbar_box .title_l{
    width: 626px;
}

.navbar_box .item {
    margin-bottom: 22px;
}

.navbar_box .item:last-child {
    margin-bottom: 0px;
}
.navbar_box .item a {
    display: block;
    height: 12px;
    font-size: 12px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #333333;
    line-height: 12px;
    margin-bottom: 20px;
}
.navbar_box .item a:hover{
    color: #092AB7 !important;
}

.navbar_box .flex-row {
    display: flex;
}

.navbar_box .flex-row div {
    flex: 1;
}