addressEditer.wxss
2.83 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
.addressEditerContainer {
position: absolute;
top: 0;
left: 0;
min-height: 100%;
background-color: #fff;
}
.addressEditerContainer .address-title {
margin-left: 40rpx;
font-family: PingFang-SC-Semibold;
color: #000;
font-size: 68rpx;
font-weight: bold;
}
.addressEditerContainer .page-container {
margin-top: 50rpx;
}
.addressEditerContainer .page-container .cell-container {
margin-left: 40rpx;
margin-right: 40rpx;
width: 670rpx;
}
.addressEditerContainer .cell-bottom-border {
border-bottom: 1rpx solid #eeeeee;
margin-bottom: 34rpx;
}
.addressEditerContainer .page-container .cell-container .cell-title {
font-family: PingFang-SC-Medium;
font-size: 36rpx;
font-weight: 500;
color: black;
}
.addressEditerContainer .page-container .cell-container .cell-content {
display: flex;
align-items: center;
}
.addressEditerContainer .page-container .cell-container .cell-input {
margin-top: 15rpx;
margin-right: 30rpx;
margin-bottom:30rpx;
font-size: 28rpx;
font-family: SFProText-Regular;
color: black;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.addressEditerContainer .page-container .cell-container .cell-placeholder {
font-size: 28rpx;
color: #CCCCCC;
}
.addressEditerContainer .page-container .cell-container .select-area {
margin-top: 5rpx;
height: 54rpx;
text-align: left;
padding-left: 0;
width: 620rpx;
border-radius: 0;
background-color: white;
}
button::after {
border-radius: 0;
border-style: none;
}
.addressEditerContainer .page-container .cell-container .black {
color: black;
}
.addressEditerContainer .page-container .cell-container .right-arrow {
float: right;
width: 48rpx;
height: 48rpx;
margin-bottom: 24rpx;
}
.addressEditerContainer .operation {
margin-top: 30rpx;
margin-left: 40rpx;
margin-right: 40rpx;
display: flex;
align-items: center;
justify-content: space-between;
}
.addressEditerContainer .operation .left {
display: flex;
align-items: center;
}
.addressEditerContainer .operation .select-image {
width: 40rpx;
height: 40rpx;
}
.addressEditerContainer .operation .opt-text {
margin-left: 20rpx;
font-family: PingFang-SC-Regular;
font-size: 26rpx;
color: black;
}
.addressEditerContainer .operation .delete-btn {
color: #CD001A;
font-family: PingFang-SC-Regular;
font-size: 26rpx;
}
.addressEditerContainer .submit-btn {
position: absolute;
margin-left: 40rpx;
margin-right: 40rpx;
bottom: 40rpx;
height: 120rpx;
width: 670rpx;
display: flex;
justify-content: center;
align-items: center;
color: white;
background-color: #CCCCCC;
font-size: 32rpx;
font-family: PingFang-SC-Regular;
border-radius: 0;
}
.addressEditerContainer .enabled {
background-color: #002B47;
}
.addressEditerContainer .picker-view {
position: fixed;
left: 0;
bottom: 0;
}