保誠-保戶業務員媒合平台
tomasysh
2025-01-02 4efb98f2b554b76270b12837db7a7f724e2ede89
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
@import "mixins/mixins";
@import "mixins/utils";
@import "common/var";
@import "./input.scss";
@import "./scrollbar.scss";
@import "./popper";
 
@include b(autocomplete) {
  position: relative;
  display: inline-block;
}
 
@include b(autocomplete-suggestion) {
  margin: 5px 0;
  box-shadow: $--box-shadow-light;
  border-radius: $--border-radius-base;
  border: 1px solid $--border-color-light;
  box-sizing: border-box;
  background-color: $--color-white;
 
  @include e(wrap) {
    max-height: 280px;
    padding: 10px 0;
    box-sizing: border-box;
  }
 
  @include e(list) {
    margin: 0;
    padding: 0;
  }
 
  & li {
    padding: 0 20px;
    margin: 0;
    line-height: 34px;
    cursor: pointer;
    color: $--color-text-regular;
    font-size: $--font-size-base;
    list-style: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
 
    &:hover {
      background-color: $--select-option-hover-background;
    }
 
    &.highlighted {
      background-color: $--select-option-hover-background;
    }
 
    &.divider {
      margin-top: 6px;
      border-top: 1px solid $--color-black;
    }
 
    &.divider:last-child {
      margin-bottom: -6px;
    }
  }
 
  @include when(loading) {
    li {
      text-align: center;
      height: 100px;
      line-height: 100px;
      font-size: 20px;
      color: #999;
      @include utils-vertical-center;
 
      &:hover {
        background-color: $--color-white;
      }
    }
 
    & .el-icon-loading {
      vertical-align: middle;
    }
  }
}