.index_tab_container::-webkit-scrollbar {
    display: none;
}
.index_tab_container {
    text-align: center;
    padding: 0 24px;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    background: #fafafa;
    // box-shadow: 0 0 0 0 #e6e7e8;
    // border-bottom: 1px solid #e4ebf0;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transition: transform .15s linear;
    &:after {
        border-bottom: 1px solid #e6e7e8;
    }
    .index_tab_item {
        line-height: 44px;
        font-size: 16px;
        color: #3a4247;
        text-align: center;
        display: inline-block;
        margin-right: 40px;
        position: relative;
        &.active {
            color:#1e80c7;
        }
        &:last-child {
            margin-right: 0;
        }
    }
    .tabitem_bottom {
        position: absolute;
        bottom: 0;
        height: 2px;
        background: #1695f0;
        transition: transform .3s;
    }
}

.index_tab_container.hidden {
    display:none;
}
