address_list.wxss
1.22 KB
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
page {
margin-bottom: 200rpx;
}
.address-box {
background-color: white;
padding: 25rpx 0 25rpx 25rpx;
font-size: 28rpx;
border-bottom: 3rpx #f8f8f8 solid;
}
.address-user {
box-sizing: border-box;
float: left;
width: 150rpx;
}
.user-name {
font-size: 30rpx;
padding-bottom: 20rpx;
word-break: keep-all;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.default {
color: white;
background-color: red;
padding: 4rpx;
width: fit-content;
border-radius: 6rpx;
}
.address-info {
box-sizing: border-box;
float: left;
width: 480rpx;
padding-left: 10rpx;
}
.mobile {
padding-bottom: 25rpx;
}
.address {
height: 70rpx;
overflow: hidden;
}
.address-edit {
box-sizing: border-box;
width: 95rpx;
float: left;
text-align: center;
padding-top: 32rpx;
}
.address-edit>image {
width: 36rpx;
height: 42rpx;
}
.address-create {
width: 50%;
text-align: center;
position: fixed;
bottom: 80rpx;
left: 25%;
}
.create-btn {
font-size: 28rpx;
color: white;
background-color: #f23030;
border-radius: 10rpx;
text-align: center;
line-height: 80rpx;
display: block;
}