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
| /* pages/module_consult/consultsearch/consultsearch.wxss */
| .page__hd {
| /* background-color: white; */
| padding: 10px;
| display: flex;
| align-items: center;
| }
|
| .page__bd {
| padding-left: 10px;
| padding-right: 10px;
| }
|
| .search-bar {
| flex: 1;
| position: relative;
| min-width: 50vw;
| padding: 6px 8px;
| font-size: 12px;
| line-height: 24px;
| color: var(--fyui-text-color_2);
| text-align: left;
| background-color: white;
| border-radius: 20px;
| border: 2px solid #57E4CB;
| display: flex;
| align-items: center;
| }
|
| .search-bar .weui-icon-clear {
| /* position: absolute;
| top: 50%;
| right: 0;
| margin-top: -16px; */
| padding-left: 8px;
| width: 16px;
| height: 16px;
| -webkit-mask-size: 16px;
| mask-size: 16px;
| /* display: block; */
| }
|
| .search-bar .search-bar__input {
| width: 100%;
| border: 0;
| font-size: 14px;
| line-height: 20px;
| box-sizing: content-box;
| background: transparent;
| caret-color: var(--weui-BRAND);
| color: var(--weui-FG-0);
| }
|
| .btn {
| border-radius: 20px;
| line-height: 20px;
| font-size: 14px;
| width: 70px;
| background: linear-gradient(to top right, #42E4D5, #94DBF2);
| padding: 4px 2px;
| text-align: center;
| color: white;
| margin-left: 4px;
| }
|
|