// @import '../_utils.scss';
.#{$select-dropdown-prefix-cls} {
  width: inherit;
  // max-height: $max-height;
  // overflow: auto;
  margin: $selectDropdown-margin;
  // padding: 5px 0;
  background-color: $selectDropdown-background-color;
  box-sizing: border-box;
  //border: 1px solid @border-color-split;
  border-radius: $btn-border-radius;
  //box-shadow: 0 1px 3px rgba(0,0,0,.2);
  box-shadow: $shadow-base;
  position: absolute;
  z-index: $zindex-select;
  font-size: $font-size-small;
  @include theme-background-color($__select-dropdown_background-color);
  @include theme-box-shadow($__select-dropdown_box-shadow);
  @include theme-border($__select-dropdown_border);
  @include theme-font-color($__select-dropdown_font-color);

  &-transfer {
    z-index: $zindex-transfer;
  }

  &-inpoptip {
    z-index: $zindex-inpoptip;
  }
  &.#{$transfer-no-max-height} {
    max-height: none;
  }
}
.#{$modal-prefix-cls} {
  .#{$select-dropdown-prefix-cls} {
    position: absolute !important;
  }
}

// 为了解决样式覆盖问题放在这里
.#{$date-picker-prefix-cls} {
  &-transfer {
    z-index: $zindex-transfer;
    max-height: none;
    width: auto;
  }
}