/* 
    EOL 组件

    eol column_tab
*/

.column_tab {
    position: relative;
    display: flex;
    margin: 30px 0 20px;
    border-bottom: 2px solid #cdcdcd;
    font-size: 16px;
}

.column_tab-item {
    padding: 0 10px 10px;
    margin-right: 10px;
    margin-bottom: -2px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    font-size: 18px;
    cursor: pointer;
    color: #333;
}

.column_tab-item.on {
    border-bottom-color: #004eb3;
    color: #004eb3;
}

/* .column_tab-item.column_tab-area.on { border-bottom-color: #0a2461; color: #0a2461; font-weight: bold; } */
.column_tab-item span {
    position: relative;
}

.column_tab-item:not(:last-child) span:before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 15px);
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: #cdcdcd;
}

/* 右侧箭头 */
.column_tab::before {
    content: '';
    position: absolute;
    top: 0;
    right: 10px;
    width: 21px;
    height: 26px;
    background: url(/e_images/index/2022/index/columnMore.png) no-repeat center;
}