.fulu-wrapper {
    .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab {
        border-color: @borderColor;
        background: #f8f8f8;
        color: @fontColor;
        border-radius: 0;
        &:before {
            position: absolute;
            content: '';
            height: 4px;
            width: 100%;
            left: 0;
            background: transparent;
        }
        &.ant-tabs-tab-active {
            background: #fff;
            &:before {
                background: @primaryColor;
            }
        }
    }
    .ant-tabs-nav {
        .ant-tabs-tab {
            padding: 9px 0;
            &::before {
                border-radius: 0 !important;
            }
        }
        .ant-tabs-tab-active {
            font-weight: 600;
        }
    }
}