add_address.wxss
1.05 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
page {
background: white;
}
.item {
float: left;
padding: 0 30rpx;
width: 100%;
box-sizing: border-box;
font-size: 30rpx;
border-bottom: 1rpx #f5f5f5 solid;
line-height: 100rpx;
height: 100rpx;
position: relative;
}
.item-name {
float: left;
}
.item-input {
float: left;
height: 100rpx;
width: 450rpx;
margin-left: 20rpx;
word-break: keep-all;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.item-switch {
float: right;
}
.arrow {
position: absolute;
right: 30rpx;
width: 32rpx;
height: 32rpx;
padding-top: 30rpx;
}
.address-btns {
position: absolute;
bottom: 80rpx;
float: left;
width: 100%;
padding: 10rpx 0;
}
.delete-btn {
float: left;
width: 40%;
margin: 0 10% 0 5%;
border-radius: 10rpx;
color: #999;
border: 1px solid #f2f2f2;
}
.submit-btn {
float: left;
width: 40%;
background-color: #e30000;
color: white;
border-radius: 10rpx;
}
@import "../../../utils/regions/regions.wxss";