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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
.page{
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
/* 记录列表 */
.record-list{
margin: 20rpx;
.list{
display: flex;
align-items: center;
justify-content: space-between;
background-color: #FFFFFF;
border-radius: 20rpx;
padding: 20rpx 30rpx;
margin-bottom: 20rpx;
.title-date{
.date{
margin: 14rpx 0;
text{
color:#3D3D3D;
}
.yellow {
color: #d4a11d;
font-weight: bold;
}
.green {
color: #139b1e;
font-weight: bold;
}
}
}
.integral{
text{
font-size: 28rpx;
color: #3D3D3D;
}
image {
width: 22rpx;
height: 22rpx;
}
}
}
}
.screen-list {
display: flex;
align-items: center;
width: 100%;
margin: 30rpx 25rpx;
.list {
display: flex;
justify-content: space-between;
align-items: center;
width: 75%;
height: 100%;
background-color: #fff;
padding: 20rpx;
border-radius: 10rpx;
margin-left: 30rpx;
text {
font-size: 26rpx;
color: #555555;
}
image {
width: 30rpx;
height: 30rpx;
margin-left: 10rpx;
}
}
.action {
text {
color: $base;
}
}
}
|