闫增涛
2024-02-23 fdfb3ca757ecd6c396632ed276ff354671d3a7e5
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
page {
  background: #f5f5f5;
  height: 100%;
}
.address-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: calc(env(safe-area-inset-bottom) + 172rpx);
}
.address-container .address-list {
  font-size: 24rpx;
  background-color: #ffffff;
  -webkit-overflow-scrolling: touch;
}
.address-list .no-address {
  width: 750rpx;
  padding-top: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.address-list .no-address__icon {
  width: 224rpx;
  height: 224rpx;
}
.address-list .no-address__text {
  font-size: 28rpx;
  line-height: 40rpx;
  color: #999999;
  margin-top: 24rpx;
}
.address-container .bottom-fixed {
  border-top: 1rpx solid #e5e5e5;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 12rpx 32rpx calc(env(safe-area-inset-bottom) + 12rpx) 32rpx;
}
.address-container .btn-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 32rpx;
  font-weight: bold;
}
.address-container .btn-wrap .location-btn {
  width: 332rpx;
  height: 88rpx;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  color: #333;
  position: relative;
}
.address-container .btn-wrap .location-btn::after {
  content: '';
  position: absolute; /* 把父视图设置为relative,方便定位*/
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  transform: scale(0.5);
  transform-origin: 0 0;
  box-sizing: border-box;
  border-radius: 88rpx;
  border: #dddddd 2rpx solid;
}
.address-container .btn-wrap .address-btn {
  width: 332rpx;
  height: 88rpx;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fa4126;
  border-radius: 44rpx;
  color: #fff;
}
.address-container .btn-wrap .btn-default {
  background: #c6c6c6;
}
.address-container .bottom-fixed .footer {
  margin-top: 10rpx;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 24rpx;
  font-weight: 400;
  color: #ff2525;
  line-height: 60rpx;
  height: 60rpx;
}
.address-container .message {
  margin-top: 48rpx;
}
.address-container .custom-class {
  margin-right: 12rpx;
  font-weight: normal;
}