.lh-fuzzy-select-span {
  border: 1px solid @color_b5;
  border-radius: 2px;
  display: inline-block;
  width: 100%;
  height: 32px;
  line-height: 30px;
  padding: 0 10px 0 10px;
  background-color: white;
  color:@color_b1;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  &.mini {
    font-size: 12px;
    height: 24px;
    line-height: 22px;
    padding: 0 18px 0 8px;
  }
  //由于
  &.placeholder{
    color: @color_b4 !important;
  }
  &.disabled{
    color: @color_b4;
    background-color: @color_b7;
    border: solid 1px @color_b5;
    cursor: not-allowed;
    .dropdown-icon {
      color:@color_b4;
    }
  }
  .dropdown-icon {
    position: absolute;
    right: 8px;
    top: 0px;
    font-size:14px;
    color:@color_b4;
    transition: All 0.3s ease-in-out;
  }
  &:hover {
    border-color: @color_theme5;
  }
  &.active{
    border-color: @color_theme5 !important;
    .dropdown-icon {
      -webkit-transform:rotate(-180deg);
      transform:rotate(-180deg);
    }
  }

}
.lh-fuzzy-select-param {
  padding: 12px;
  .lh-button-primary {
    border-radius: 0 2px 2px 0;
    padding-left: 10px;
    padding-right: 10px;
    i.prefix-icon {
      margin-right: 0;
    }
  }
  .lh-input {
    width: -moz-calc(~"100% - 37px");
    width: -webkit-calc(~"100% - 37px");
    width: calc(~"100% - 37px");
  }
  &.mini {
    .lh-input {
      width: -moz-calc(~"100% - 35px");
      width: -webkit-calc(~"100% - 35px");
      width: calc(~"100% - 35px");
    }
  }
  &.no-search-btn {
    .lh-input {
      width: 100%;
    }
  }
}
.lh-fuzzy-select-content{
  position: relative;
  ul {
    display: block;
    z-index: 200;
    overflow-y: auto;
    color: #71787e;
    background-color: white;
    border-radius: 0 0 3px 3px;
    padding: 0px;
    margin-bottom: 4px;
    li
    {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      padding-right: 12px;
      padding-left: 12px;
      cursor: pointer;
      color: @color_b1;
      font-size: 14px;
      height: 32px;
      line-height: 32px;
      &:hover {
        background-color: @color_b7;
      }
      &.active {
        background-color: @color_theme1;
        font-weight: bold;
      }
      &.disabled {
        background-color: #fff;
        color: @color_b4;
        cursor: not-allowed;
      }
    }
  }
  &.mini {
    ul {
      li {
        font-size: 12px;
        height: 24px;
        line-height: 24px;
        padding-left: 6px;
        padding-right: 6px;
      }
    }
  }
  &.active {
    ul {
      display: block;
    }
  }
}
.lh-fuzzy-select-popover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
  overflow: hidden;
  border:none !important;
  border-radius: 2px;
  margin-top: -2px;
}
.lh-fuzzy-select-popover-mini {
  box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
  overflow: hidden;
  border:none !important;
  border-radius: 2px;
  margin-top: -2px;
}
