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
| .cl-search {
| display: flex;
| align-items: center;
| box-sizing: border-box;
|
| &__input {
| display: flex;
| align-items: center;
| flex: 1;
| position: relative;
| background-color: #fff;
| border: $cl-border-width solid #dcdfe6;
| border-radius: 100rpx;
|
| cl-input,
| .cl-input {
| flex: 1;
| border: 0;
| }
| }
|
| &__inner {
| height: 100%;
| flex: 1;
|
| .cl-icon-search {
| font-size: 30rpx;
| }
| }
|
| &__btn {
| .cl-button {
| height: 56rpx;
| margin: 0 4rpx 0 0;
| padding: 0 34rpx;
| }
| }
|
| &__prepend,
| &__append {
| display: flex;
| justify-content: center;
| align-items: center;
| }
|
| &__prepend {
| margin-right: 20rpx;
| }
|
| &__append {
| margin-left: 20rpx;
| }
| }
|
|