智云SRM-LAYUI(夏宝服务器版本)
YL
2021-12-29 7954ab99ee59f28561ff4e172a35d9164436ec20
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
  .select-wrapper{
    font: normal 14px '\5FAE\8F6F\96C5\9ED1';
    /*width: 240px;
    height: 34px;*/
    position: relative;
    cursor: pointer;
    display: inline-block;
    *display: inline;
    *float: left;
    /**margin-right: 10px;*/
    /*background: #fff;*/
    border-radius: 3px;
    border: 1px solid #e3e3e3;
    margin-left:20px;
  }
  .select-wrapper.focus{
    border: 1px solid #61b988;
  }
  .select-button{
    font: normal 14px '\5FAE\8F6F\96C5\9ED1';
    border: 0;
    border-radius: 3px;
    /*background: #fff;*/
    cursor: pointer;
    /*padding: 0 26px 0 10px;*/
    overflow: hidden;
    text-align: left;
    outline: none;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
  }
  .select-down{
    position: absolute;
    top: 21px;
    right: 12px;
    height:0;
    width:0;
    overflow: hidden;
    font-size: 0;
    border-color: #333 transparent transparent transparent;
    border-style: solid;
    border-width: 6px;
  }  
  .disabled{
    color: #cccccc;
  }
  .select-list{
    width: 238px;
    background: #F5F5F5; 
    /* browsers that don't support rgba */
    /*background:    #f8f8f8;*/
    border: 1px solid #e8e8e8;
    box-shadow: 0 0 3px #ddd;
    border-radius: 3px;
    display: none;
    z-index: 2;
    position: absolute;
    left: -1px;
    top: 35px;
    overflow: hidden;
  }
  .select-list ul{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 34px;
    max-height: 240px;
  }
  .select-list ul li{
    width: auto;
    height: 34px;
    padding-left: 10px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    word-break: keep-all;
    text-overflow: ellipsis;
  }
  .select-list ul li.selected,
  .select-list ul li:hover{
    color: #696969;
    background: #61b988;
  }
  
  /* 下拉列表不可用样式 */
  .select-button-disable{
    color: #ccc;
    width: 238px;
    height: 34px;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    background: #F5F5F5;
    cursor: pointer;
    padding-left: 10px;
    overflow: hidden;
    text-align: left;
    outline: none;
  }
  .select-down-disable{
   color: #ccc;
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 10px;
   line-height: 34px;
  }