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
.address-item{
display: flex;
justify-content: space-between;
padding: 15px;
border-bottom: 1px solid rgba(239, 239, 239, 1);
background: #ffffff;
}
.address-box > .address-item:first-child{
border-radius: 6px 6px 0 0;
}
.address-box > .address-item:last-child{
border-radius: 0 0 6px 6px;
}
.sub-checkbox{
display: flex;
justify-content: space-between;
}
.address-phone{
color: rgba(0, 0, 0, 1) !important;
}
.sub-title{
padding: 10px;
border-bottom: 1px solid rgba(239, 239, 239, 1);
}
.address-loading{
background: #ffffff;
border-bottom: 1px solid rgba(239, 239, 239, 1);
}
.icon-unchecked{
transition: transform 350ms;
}
.icon-checked{
transform: rotate(90deg);
transition: transform 350ms;
}
.address-item-box .address-item{
padding: 15px 40px;
}
.address-empty{
display: flex;
justify-content: center;
padding: 15px;
border-bottom: 1px solid rgba(239, 239, 239, 1);
background: #ffffff;
}
.address-title{
font-weight: bold;
}