// @import "~antd/dist/antd.css";

.global {
    color: inherit;
}

#ComplexPicker {
    .ant-tabs,
    .ant-tabs-content {
        height: 100%;
    }
    .ant-tabs-top {
        // 自定义tab顶部+返回按钮
        .customTabBar {
            display: flex;
            height: 46px;
            border-bottom: 1px solid #e9e9e9;
            .iconBack {
                font-size: 12px;
                color: #757b82;
                cursor: pointer;
                align-self: center;
                margin: 0 16px 0 16px;
            }
            .ant-tabs-nav {
                flex: 1;
            }
        }
        // 自定义高度+去除下边框
        .ant-tabs-nav {
            height: 46px;
            &::before {
                border-bottom: none !important;
            }
        }
        // 每个tab样式
        .ant-tabs-tab {
            font-size: 14px;
            .ant-tabs-tab-btn,
            .ant-tabs-tab-btn:focus {
                color: #1f2227;
            }
            &.ant-tabs-tab-active {
                .ant-tabs-tab-btn {
                    font-weight: 500;
                }
            }
        }
        // 激活底部蓝边
        .ant-tabs-ink-bar {
            background-color: #286cfb;
        }
    }

    .ant-select-multiple .ant-select-selection-item-remove:hover {
        color: #286cfb;
    }

    .ant-input {
        border-color: #e6e6e7;
        &:hover {
            border-color: #286cfb;
        }
    }
    ::-webkit-scrollbar-thumb {
        min-height: 40px;
    }
}
