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
| @charset "UTF-8";
| /* 页面左右间距 */
| /* 文字尺寸 */
| /*文字颜色*/
| /* 边框颜色 */
| /* 图片加载中颜色 */
| /* 行为相关颜色 */
| page {
| padding-bottom: 120rpx;
| }
| .content {
| position: relative;
| }
| .list {
| display: flex;
| align-items: center;
| padding: 20rpx 30rpx;
| background: #fff;
| position: relative;
| }
| .wrapper {
| display: flex;
| flex-direction: column;
| flex: 1;
| }
| .address-box {
| display: flex;
| align-items: center;
| }
| .address-box .tag {
| font-size: 24rpx;
| color: #fa436a;
| margin-right: 10rpx;
| background: #fffafb;
| border: 1px solid #ffb4c7;
| border-radius: 4rpx;
| padding: 4rpx 10rpx;
| line-height: 1;
| }
| .address-box .address {
| font-size: 28rpx;
| color: #909399;
| }
| .u-box {
| font-size: 30rpx;
| color: #303133;
| margin-top: 16rpx;
| }
| .u-box .name {
| margin-right: 30rpx;
| }
| .icon-bianji {
| display: flex;
| align-items: center;
| height: 80rpx;
| font-size: 40rpx;
| color: #909399;
| padding-left: 30rpx;
| }
| .add-btn {
| position: fixed;
| left: 30rpx;
| right: 30rpx;
| bottom: 16rpx;
| z-index: 95;
| display: flex;
| align-items: center;
| justify-content: center;
| width: 690rpx;
| height: 80rpx;
| font-size: 32rpx;
| color: #fff;
| background-color: #fa436a;
| border-radius: 10rpx;
| box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
| }
|
|