financialRecord.wxss
958 字节
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
/* pages/financialRecord/financialRecord.wxss */
page{
line-height: 1;
}
.container{
width: 750rpx;
display: flex;
flex-flow: column;
}
.item{
display: flex;
flex-flow: column;
padding: 30rpx 0;
margin: 0 32rpx;
border-bottom: 1px solid #EBEBEB;
}
.item_top{
width: 100%;
display: flex;
justify-content: space-between;
}
.item_top_left{
font-size:32rpx;
font-family:PingFang-SC-Medium;
font-weight:500;
color:rgba(26,26,26,1);
}
.item_top_right{
font-size:32rpx;
font-family:Roboto-Regular;
font-weight:400;
color:rgba(255,170,0,1);
}
.item_bottom{
margin-top: 20rpx;
width: 100%;
display: flex;
justify-content: space-between;
}
.item_bottom_left{
font-size:24rpx;
font-family:PingFang-SC-Medium;
font-weight:500;
color:rgba(153,153,153,1);
}
.item_bottom_right{
font-size:26rpx;
font-family:PingFang-SC-Medium;
font-weight:500;
color:rgba(102,102,102,1);
}
.color_red{
color: #FF3B28;
}