//下拉选择集的样式
.go-btn-select {
    display: flex;
    justify-content: flex-start;
    height: @btnHeight;
    line-height: @btnHeight;
    padding: 0 13px;
    border: 1px solid @ctl-border-com-color;
    cursor: pointer;
    background-color: @whiteFFF;
    cursor: pointer;
    border-radius: 5px;
    color: @btn-font-color;
    transition: all 0.15s ease-in-out;

    &.disabled,
    &[disabled],
    fieldset[disabled] & {
        cursor: @cursor-disabled;
        .opacity(.65);
        .box-shadow(none);
    }

    &:hover {
        .button-color(tint(@btn-primary-color, 20%); tint(@btn-primary-bg, 20%); tint(@btn-primary-border, 20%));
        color: @whiteFFF;
        i {
            color: @whiteFFF;
        }
    }

    &.disabled:hover,
    &[disabled]:hover {
        .button-color(@btn-disable-color; @btn-disable-bg; @btn-disable-border);
    }

    &.primary {
        .button-color(tint(@btn-primary-color, 20%); tint(@btn-primary-bg, 20%); tint(@btn-primary-border, 20%));
        color: @whiteFFF;
    }

    &.circle {
        border-radius:50%;
    }
}
