.sn-select-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    .el-select {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        .el-select__tags {
            display: none;
        }
        .el-input {
            height: 100%;
            .el-input__inner {
                height: 100%;
                line-height: 1;
                padding-left: 10px;
                font-size: 14px;
                border: 1px solid @border-color-2;
                border-radius: 3px;
            }
            .el-select__caret {
                height: 30px;
                line-height: 30px;
            }
        }
    }
    &.right-icon-form-item {
        .el-select {
            .el-input {
                .el-select__caret {
                    display: none;
                }
            }
        }
    }
    .sn-select-tags {
        position: absolute;
        display: flex;
        align-items: center;
        height: 100%;
        pointer-events: none;
        .sn-select-tag {
            display: flex;
            align-items: center;
            height: 75%;
            margin-left: 10px;
            padding: 0px 5px;
            border-radius: 2px;
            background: @body-color-2;
            font-size: 12px;
            color: @text-color-2;
            pointer-events: auto;
        }
    }
}   


.el-select-dropdown {
    &.is-multiple {
        .el-select-dropdown__item {
            display: flex;
            &.selected {
                &::after {
                    display: none;
                }
            }
            .sn-checkbox {
                margin-right: 10px;
                .sn-checkbox-icon {
                    font-size: 14px;
                }
            }
        }
    }
}