.tab_container{height:100px;background-color: #fff;min-height: calc(100vh - 340px);display:flex;margin-top: 20px;}
.mt16{margin-top: 16px;}
.tab_left{width: 199px;height:100%;border-right: 1px solid #EBEBEB;}
.tab_right{width: calc(100% - 199px);overflow: auto;box-sizing: border-box;padding: 30px;}
.tab_item{height: 50px;}
.jus_sb{justify-content: space-between;}
.alc{align-items: center;}
.tab_item{box-sizing: border-box;padding: 15px 8px 15px 20px;}
.tab_label{cursor: pointer;}
.tab_item.active .tab_label{color: #0078FF;}
.tab_item.active .tab_icon{
    width: 0;
    height: 0;
    border-top: 5px solid transparent; /* 上边框透明 */
    border-bottom: 5px solid transparent; /* 下边框透明 */
    border-left: 5px solid #0078FF; /* 左边框设置颜色，形成三角形 */
}
.tab_icon {
    width: 0;
    height: 0;
    border-top: 5px solid transparent; /* 上边框透明 */
    border-bottom: 5px solid transparent; /* 下边框透明 */
    border-left: 5px solid rgb(108, 106, 106); /* 左边框设置颜色，形成三角形 */
}
.flex{display: flex;}
.none{display: none!important;}