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
| .StandardAddresList {
| &-rusticate {
| font-family: 'DingTalkRegular';
| color: #ff713d;
| font-weight: 400;
| }
| &-title {
| flex: 1;
| }
| &-flex {
| margin-bottom: 4px;
| display: flex;
| justify-content: space-between;
| &-r {
| width: 14px;
| height: 22px;
| display: flex;
| align-items: center;
| &-img {
| width: 100%;
| height: 14px;
| }
| }
| }
| &-address {
| font-size: 12px;
| line-height: 20px;
| color: rgba(23, 26, 29, 0.85);
| display: flex;
| &-img {
| width: 14px;
| height: 20px;
| margin-right: 4px;
| display: flex;
| align-items: center;
| &_1 {
| width: 14px;
| height: 14px;
| }
| }
| }
|
| &-active {
| box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
| border-radius: 5px;
| }
| &-bottom-l {
| font-size: 12px;
| line-height: 20px;
| padding: 8px 0;
| margin: 0 8px;
| display: flex;
| justify-content: center;
| align-items: center;
| color: rgba(23, 26, 29, 0.6);
| border-top: 0.5px solid rgba(126, 134, 142, 0.16);
| }
|
| &-top {
| &-flex {
| display: flex;
| justify-content: center;
| padding: 8px 0;
| margin: 0 8px;
| border-bottom: 0.5px solid rgba(126, 134, 142, 0.16);
| &-1 {
| display: flex;
| }
| &-img {
| width: 12px;
| height: 20px;
| display: flex;
| align-items: center;
| font-size: 12px;
| margin-right: 4px;
| & img {
| width: 12px;
| height: 12px;
| }
| }
| }
| }
|
| &-form-head {
| background-color: #f2f2f2;
| border-radius: 10px;
| padding: 12px 16px;
| margin: 0 12px;
| &-row {
| display: flex;
| padding-bottom: 4px;
| }
| &-col {
| flex: 1 1;
| &-top {
| color: rgba(0, 0, 0, 0.5);
| line-height: 22px;
| }
| &-bottom {
| margin: 4px 0;
| }
| }
| }
| }
|
|