abd11604
monkeyhouyi
物业缴费
|
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
|
.page{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
padding: 24rpx 24rpx 0;
}
.content {
width: 100%;
background-color: #fff;
padding: 0 34rpx;
border-radius: 16rpx;
margin-bottom: 20rpx;
.form-item {
display: flex;
align-items: center;
justify-content: space-between;
line-height: 50rpx;
padding: 6rpx 0;
.left {
color: #808080;
}
}
:last-child {
border-bottom: unset;
}
.list-info {
width: 100%;
display: flex;
align-items: center;
padding: 26rpx 0;
border-bottom: #f6f6f6 solid 1rpx;
.img {
width: 80rpx;
height: 80rpx;
border-radius: 50%;
overflow: hidden;
image {
width: 100%;
height: 100%;
}
}
.info-items {
width: calc(100% - 100rpx);
margin-left: 20rpx;
font-size: 24rpx;
.info-item {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
// line-height: 50rpx;
padding: 8rpx 10rpx;
.price {
color: #0FBB59;
}
}
}
}
}
|