4dfe89e4
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
|
.page{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.record-list{
background-color: #FFFFFF;
margin: 20rpx;
border-radius: 20rpx;
padding: 0 40rpx;
position: relative;
.list{
padding: 30rpx 0;
display: flex;
align-items: center;
border-bottom: 2rpx solid #edf0f4;
.title-date{
width: 30%;
.date{
text{
color: #909090;
}
}
}
.integral{
text{
font-size: 28rpx;
color: #3D3D3D;
}
}
}
.list:last-child{
border-bottom: 0;
}
.record-list-icon {
color: #d39d13;
height: 100rpx;
font-weight: bold;
text-align: right;
position: absolute;
right: 0;
}
}
.reconciliationdetail-img {
display: flex;
image {
width: 310rpx;
height: 210rpx;
border: 2rpx solid #1A988A;
margin-right: 20rpx;
}
}
|