.select-style {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.65);
    font-size: 12px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    position: relative;
    display: inline-block;
    outline: 0;
}

input.rc-select-search__field {
    color: #949393;
}

.select-style * {
    box-sizing: border-box;
}

.select-style ul, .select-style ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.select-style > ul > li > a {
    padding: 0;
    background-color: #fff;
}

.select-style .rc-select-arrow {
    display: inline-block;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -0.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    right: 11px;
    margin-top: -6px;
    color: rgba(0, 0, 0, 0.25);
    font-size: 12px;
    line-height: 1;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.select-style .rc-select-arrow > * {
    line-height: 1;
}

.select-style .rc-select-arrow svg {
    display: inline-block;
}

.select-style .rc-select-arrow::before {
    display: none;
}

.select-style .rc-select-arrow .rc-select-arrow-icon {
    display: block;
}

.select-style .rc-select-arrow .rc-select-arrow-icon svg {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.select-style .rc-select-selection {
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-top-width: 1.02px;
    border-radius: 4px;
    outline: none;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.select-style .rc-select-selection:hover {
    border-color: #40a9ff;
    border-right-width: 1px !important;
}

.select-style .rc-select-focused .rc-select-selection, .select-style .rc-select-selection:focus, .select-style .rc-select-selection:active {
    border-color: #40a9ff;
    border-right-width: 1px !important;
    outline: 0;
    -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.select-style .rc-select-selection__clear {
    position: absolute;
    top: 50%;
    right: 11px;
    z-index: 1;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    color: rgba(0, 0, 0, 0.25);
    font-size: 12px;
    font-style: normal;
    line-height: 12px;
    text-align: center;
    text-transform: none;
    background: #fff;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: color 0.3s ease, opacity 0.15s ease;
    transition: color 0.3s ease, opacity 0.15s ease;
    text-rendering: auto;
}

.select-style .rc-select-selection__clear::before {
    display: block;
}

.select-style .rc-select-selection__clear:hover {
    color: rgba(0, 0, 0, 0.45);
}
.select-style .rc-select-selection:hover .rc-select-selection__clear {
    opacity: 1;
}
.select-style .rc-select-selection-selected-value {
    float: left;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.select-style .rc-select-no-arrow .rc-select-selection-selected-value {
    padding-right: 0;
}
.select-style .rc-select-disabled {
    color: rgba(0, 0, 0, 0.25);
}
.select-style .rc-select-disabled .rc-select-selection {
    background: #f5f5f5;
    cursor: not-allowed;
}
.select-style .rc-select-disabled .rc-select-selection:hover, .select-style .rc-select-disabled .rc-select-selection:focus, .select-style .rc-select-disabled .rc-select-selection:active {
    border-color: #d9d9d9;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.select-style .rc-select-disabled .rc-select-selection__clear {
    display: none;
    visibility: hidden;
    pointer-events: none;
}
.select-style .rc-select-disabled .rc-select-selection--multiple .rc-select-selection__choice {
    padding-right: 10px;
    color: rgba(0, 0, 0, 0.33);
    background: #f5f5f5;
}
.select-style .rc-select-disabled .rc-select-selection--multiple .rc-select-selection__choice__remove {
    display: none;
}
.select-style .rc-select-selection--single {
    position: relative;
    height: 32px;
    cursor: pointer;
}
.select-style .rc-select-selection--single .rc-select-selection__rendered {
    margin-right: 24px;
}
.select-style .rc-select-no-arrow .rc-select-selection__rendered {
    margin-right: 11px;
}
.select-style .rc-select-selection__rendered {
    position: relative;
    display: block;
    margin-right: 11px;
    margin-left: 11px;
    line-height: 30px;
}
.select-style .rc-select-selection__rendered::after {
    display: inline-block;
    width: 0;
    visibility: hidden;
    content: '.';
    pointer-events: none;
}
.select-style.rc-select-lg {
    font-size: 16px;
}
.select-style.rc-select-lg .rc-select-selection--single {
    height: 40px;
}
.select-style.rc-select-lg .rc-select-selection__rendered {
    line-height: 38px;
}
.select-style.rc-select-lg .rc-select-selection--multiple {
    min-height: 40px;
}
.select-style.rc-select-lg .rc-select-selection--multiple .rc-select-selection__rendered li {
    height: 32px;
    line-height: 32px;
}
.select-style.rc-select-lg .rc-select-selection--multiple .rc-select-selection__clear, .select-style.rc-select-lg .rc-select-selection--multiple .rc-select-arrow {
    top: 20px;
}
.select-style.rc-select-sm .rc-select-selection--single {
    height: 24px;
}
.select-style.rc-select-sm .rc-select-selection__rendered {
    margin-left: 7px;
    line-height: 22px;
}
.select-style.rc-select-sm .rc-select-selection--multiple {
    min-height: 24px;
}
.select-style.rc-select-sm .rc-select-selection--multiple .rc-select-selection__rendered li {
    height: 16px;
    line-height: 14px;
}
.select-style.rc-select-sm .rc-select-selection--multiple .rc-select-selection__clear, .select-style.rc-select-sm .rc-select-selection--multiple .rc-select-arrow {
    top: 12px;
}
.select-style.rc-select-sm .rc-select-selection__clear, .select-style.rc-select-sm .rc-select-arrow {
    right: 8px;
}
.select-style.rc-select-disabled .rc-select-selection__choice__remove {
    color: rgba(0, 0, 0, 0.25);
    cursor: default;
}
.select-style.rc-select-disabled .rc-select-selection__choice__remove:hover {
    color: rgba(0, 0, 0, 0.25);
}
.select-style .rc-select-search__field__wrap {
    position: relative;
    display: inline-block;
}
.select-style .rc-select-selection__placeholder, .select-style .rc-select-search__field__placeholder {
    position: absolute;
    top: 50%;
    right: 9px;
    left: 0;
    max-width: 100%;
    height: 20px;
    margin-top: -10px;
    overflow: hidden;
    color: #bfbfbf;
    line-height: 20px;
    white-space: nowrap;
    text-align: left;
    text-overflow: ellipsis;
}
.select-style .rc-select-search__field__placeholder {
    left: 12px;
}
.select-style .rc-select-search__field__mirror {
    position: absolute;
    top: 0;
    left: 0;
    white-space: pre;
    opacity: 0;
    pointer-events: none;
}
.select-style .rc-select-search--inline {
    position: absolute;
    width: 100%;
    height: 100%;
}
.select-style .rc-select-search--inline .rc-select-search__field__wrap {
    width: 100%;
    height: 100%;
}
.select-style .rc-select-search--inline .rc-select-search__field {
    width: 100%;
    height: 100%;
    font-size: 100%;
    line-height: 1;
    background: transparent;
    border-width: 0;
    border-radius: 4px;
    outline: 0;
}
.select-style .rc-select-search--inline > i {
    float: right;
}
.select-style .rc-select-selection--multiple {
    min-height: 32px;
    padding-bottom: 3px;
    cursor: text;
    zoom: 1;
    background-color: #f0f1f4;
}
.select-style .rc-select-selection--multiple::before, .select-style .rc-select-selection--multiple::after {
    display: table;
    content: '';
}
.select-style .rc-select-selection--multiple::after {
    clear: both;
}
.select-style .rc-select-selection--multiple .rc-select-search--inline {
    position: static;
    float: left;
    width: auto;
    max-width: 100%;
    padding: 0;
}
.select-style .rc-select-selection--multiple .rc-select-search--inline .rc-select-search__field {
    width: 0.75em;
    max-width: 100%;
    padding: 1px;
}
.select-style .rc-select-selection--multiple .rc-select-selection__rendered {
    height: auto;
    margin-bottom: -3px;
    margin-left: 5px;
}
.select-style .rc-select-selection--multiple .rc-select-selection__placeholder {
    margin-left: 6px;
}
.select-style .rc-select-selection--multiple > ul > li, .select-style .rc-select-selection--multiple .rc-select-selection__rendered > ul > li {
    height: 24px;
    margin-top: 3px;
    line-height: 22px;
}
.select-style .rc-select-selection--multiple .rc-select-selection__choice {
    position: relative;
    float: left;
    max-width: 99%;
    margin-right: 4px;
    padding: 0 20px 0 10px;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.65);
    background-color: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 2px;
    cursor: default;
    -webkit-transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.select-style .rc-select-selection--multiple .rc-select-selection__choice__disabled {
    padding: 0 10px;
}
.select-style .rc-select-selection--multiple .rc-select-selection__choice__content {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -webkit-transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: margin 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.select-style .rc-select-selection--multiple .rc-select-selection__choice__remove {
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -0.125em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    right: 4px;
    color: rgba(0, 0, 0, 0.45);
    font-weight: bold;
    line-height: inherit;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: inline-block;
    font-size: 12px;
    -webkit-transform: scale(0.83333333) rotate(0deg);
    -ms-transform: scale(0.83333333) rotate(0deg);
    transform: scale(0.83333333) rotate(0deg);
}
.select-style .rc-select-selection--multiple .rc-select-selection__choice__remove > * {
    line-height: 1;
    font-style: normal;
}
.select-style .rc-select-selection--multiple .rc-select-selection__choice__remove svg {
    display: inline-block;
}
.select-style .rc-select-selection--multiple .rc-select-selection__choice__remove::before {
    display: none;
}
.select-style .rc-select-selection--multiple .rc-select-selection__choice__remove .rc-select-selection--multiple .rc-select-selection__choice__remove-icon {
    display: block;
}
.select-style :root .rc-select-selection--multiple .rc-select-selection__choice__remove {
    font-size: 12px;
}
.select-style .rc-select-selection--multiple .rc-select-selection__choice__remove:hover {
    color: rgba(0, 0, 0, 0.75);
}
.select-style .rc-select-selection--multiple .rc-select-selection__clear, .select-style .rc-select-selection--multiple .rc-select-arrow {
    top: 16px;
}
.select-style .rc-select-allow-clear .rc-select-selection--multiple .rc-select-selection__rendered, .select-style .rc-select-show-arrow .rc-select-selection--multiple .rc-select-selection__rendered {
    margin-right: 20px;
}
.select-style .rc-select-open .rc-select-arrow-icon svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.select-style .rc-select-open .rc-select-selection {
    border-color: #40a9ff;
    border-right-width: 1px !important;
    outline: 0;
    -webkit-box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}
.select-style .rc-select-combobox .rc-select-arrow {
    display: none;
}
.select-style .rc-select-combobox .rc-select-search--inline {
    float: none;
    width: 100%;
    height: 100%;
}
.select-style .rc-select-combobox .rc-select-search__field__wrap {
    width: 100%;
    height: 100%;
}
.select-style .rc-select-combobox .rc-select-search__field {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0s;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1), height 0s;
}
.select-style .rc-select-combobox.rc-select-allow-clear .rc-select-selection:hover .rc-select-selection__rendered, .select-style .rc-select-combobox.rc-select-show-arrow .rc-select-selection:hover .rc-select-selection__rendered {
    margin-right: 20px;
}
.select-style .rc-select-dropdown {
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.65);
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    position: absolute;
    top: -9999px;
    left: -9999px;
    z-index: 1050;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    font-variant: initial;
    background-color: #fff;
    border-radius: 4px;
    outline: none;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.select-style .rc-select-dropdown.slide-up-enter.slide-up-enter-active.rc-select-dropdown-placement-bottomLeft, .select-style .rc-select-dropdown.slide-up-appear.slide-up-appear-active.rc-select-dropdown-placement-bottomLeft {
    -webkit-animation-name: antSlideUpIn;
    animation-name: antSlideUpIn;
}
.select-style .rc-select-dropdown.slide-up-enter.slide-up-enter-active.rc-select-dropdown-placement-topLeft, .select-style .rc-select-dropdown.slide-up-appear.slide-up-appear-active.rc-select-dropdown-placement-topLeft {
    -webkit-animation-name: antSlideDownIn;
    animation-name: antSlideDownIn;
}
.select-style .rc-select-dropdown.slide-up-leave.slide-up-leave-active.rc-select-dropdown-placement-bottomLeft {
    -webkit-animation-name: antSlideUpOut;
    animation-name: antSlideUpOut;
}
.select-style .rc-select-dropdown.slide-up-leave.slide-up-leave-active.rc-select-dropdown-placement-topLeft {
    -webkit-animation-name: antSlideDownOut;
    animation-name: antSlideDownOut;
}
.select-style .rc-select-dropdown-hidden {
    display: none;
}
.select-style .rc-select-dropdown-menu {
    max-height: 250px;
    margin-bottom: 0;
    padding: 4px 0;
    padding-left: 0;
    overflow: auto;
    list-style: none;
    outline: none;
}
.select-style .rc-select-dropdown-menu-item-group-list {
    margin: 0;
    padding: 0;
}
.select-style .rc-select-dropdown-menu-item-group-list > .rc-select-dropdown-menu-item {
    padding-left: 20px;
}
.select-style .rc-select-dropdown-menu-item-group-title {
    height: 32px;
    padding: 0 12px;
    color: rgba(0, 0, 0, 0.45);
    font-size: 12px;
    line-height: 32px;
}
.select-style .rc-select-dropdown-menu-item-group-list .rc-select-dropdown-menu-item:first-child:not(:last-child), .select-style .rc-select-dropdown-menu-item-group:not(:last-child) .rc-select-dropdown-menu-item-group-list .rc-select-dropdown-menu-item:last-child {
    border-radius: 0;
}
.select-style .rc-select-dropdown-menu-item {
    position: relative;
    display: block;
    padding: 5px 12px;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.65);
    font-weight: normal;
    font-size: 14px;
    line-height: 22px;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
}
.select-style .rc-select-dropdown-menu-item:hover:not(.rc-select-dropdown-menu-item-disabled) {
    background-color: #e6f7ff;
}
.select-style .rc-select-dropdown-menu-item-selected {
    color: rgba(0, 0, 0, 0.65);
    font-weight: 600;
    background-color: #fafafa;
}
.select-style .rc-select-dropdown-menu-item-disabled {
    color: rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
}
.select-style .rc-select-dropdown-menu-item-disabled:hover {
    color: rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
}
.select-style .rc-select-dropdown-menu-item-active:not(.rc-select-dropdown-menu-item-disabled) {
    background-color: #e6f7ff;
}
.select-style .rc-select-dropdown-menu-item-divider {
    height: 1px;
    margin: 1px 0;
    overflow: hidden;
    line-height: 0;
    background-color: #e8e8e8;
}
.select-style .rc-select-dropdown.rc-select-dropdown--multiple .rc-select-dropdown-menu-item {
    padding-right: 32px;
}
.select-style .rc-select-dropdown.rc-select-dropdown--multiple .rc-select-dropdown-menu-item .rc-select-selected-icon {
    position: absolute;
    top: 50%;
    right: 12px;
    color: transparent;
    font-weight: bold;
    font-size: 12px;
    text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.select-style .rc-select-dropdown.rc-select-dropdown--multiple .rc-select-dropdown-menu-item:hover .rc-select-selected-icon {
    color: rgba(0, 0, 0, 0.87);
}
.select-style .rc-select-dropdown.rc-select-dropdown--multiple .rc-select-dropdown-menu-item-disabled .rc-select-selected-icon {
    display: none;
}
.select-style .rc-select-dropdown.rc-select-dropdown--multiple .rc-select-dropdown-menu-item-selected .rc-select-selected-icon, .select-style .rc-select-dropdown.rc-select-dropdown--multiple .rc-select-dropdown-menu-item-selected:hover .rc-select-selected-icon {
    display: inline-block;
    color: #1890ff;
}
.select-style .rc-select-dropdown--empty.rc-select-dropdown--multiple .rc-select-dropdown-menu-item {
    padding-right: 12px;
}
.select-style .rc-select-dropdown-container-open .rc-select-dropdown, .select-style .rc-select-dropdown-open .rc-select-dropdown {
    display: block;
}
