@import './common/variable.scss';
@import './common/color.scss';

.input-select {
  background-color: $white;
  .el-icon-arrow-down {
    padding: 6.5px 6.5px 5.5px 6.5px;
  }
  .options {
    position: absolute;
    top: 32px;
    right: 0;
    z-index: 6;
    overflow: scroll;
    transition: all .3s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    will-change: transform;
    max-height: 258px;
    box-shadow: 0px 2px 7px 3px rgba(35,19,74,0.12);
    transform-origin: center top;
    transform: scaleY(1);
    opacity: 1;
    &.options-hide {
      box-shadow: none;
      transform: scaleY(0);
      opacity: 0;
    }
    li {
      background-color: $white;
      // height: 30px;
      line-height: 24px;
      min-width: 146px;
      padding-left: 10px;
      padding-top: 3px;
      padding-bottom: 3px;
      box-sizing: border-box;
      font-size: 14px;
      color: $black-solid;
      cursor: pointer;
      &:hover {
        background-color: $gray-bg-select;
      }
      &.active {
        background-color: $gray-bg-select;
      }
    }
  }
  // .wrap {
  //   position: relative;
  // }
}
