list.wxss
1.98 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@import "./template/editor/editor.wxss";
page { /* stylelint-disable-line */
display: block;
min-height: 100%;
background-color: #f0f0f0;
}
.container {
color: #444;
font-size: 28rpx;
padding-bottom: 100rpx;
}
.empty-address {
text-align: center;
padding-top: 240rpx;
}
.empty-address .empty-img {
width: 150rpx;
height: 150rpx;
display: block;
margin: 20rpx auto;
}
.addr-item {
background-color: #fff;
margin-bottom: 20rpx;
position: relative;
}
.addr-item .selected {
width: 0;
height: 0;
border-width: 34rpx;
border-style: solid;
border-color: red red transparent transparent;
position: absolute;
top: 0;
right: 0;
}
.addr-item .selected .iconfont {
color: #fff;
position: absolute;
top: -24rpx;
right: -30rpx;
z-index: 10;
font-weight: bold;
}
.addr-item .info {
padding: 30rpx;
}
.addr-item .name,
.addr-item .phone {
display: inline-block;
max-width: 40%;
overflow: hidden;
margin-right: 30rpx;
}
.addr-item .direction {
display: block;
color: #888;
margin-top: 10rpx;
word-break: break-all;
}
.addr-item .options {
font-size: 24rpx;
line-height: 70rpx;
padding: 0 30rpx;
border-top: 1px solid #e0e0e0;
}
.addr-item .options .iconfont {
font-size: 24rpx;
}
.addr-item .options .iconfont:before {
font-size: 28rpx;
vertical-align: middle;
position: relative;
top: 1rpx;
}
.addr-item .options .left-icon {
color: #555;
}
.addr-item .options .right-icon {
float: right;
color: #000;
margin-left: 50rpx;
}
.option-wrap {
width: 100%;
padding: 18rpx 30rpx;
background: #fff;
box-sizing: border-box;
position: fixed;
bottom: 0;
left: 0;
}
.option-wrap button {
width: 47%;
height: 60rpx;
line-height: 58rpx;
font-size: 28rpx;
color: #444;
border: 1rpx solid #444;
background: #fff;
display: inline-block;
vertical-align: middle;
}
.option-wrap button:after {
border: 0;
}
.option-wrap .wechat-address-btn {
float: right;
color: #34c538;
border-color: #34c538;
}