amountInfo.ttss
732 Bytes
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
.formulas{
width: 100%;
background: white;
margin-top: 20rpx;
padding-top: 20rpx;
padding-bottom: 20rpx;
box-sizing: border-box;
}
.space {
width: 96%;
margin-left: 4%;
height: 1rpx;
background-color: #f0f0f0;
}
.invoiceCell {
width: 100%;
padding-left: 4%;
padding-right: 4%;
background: white;
box-sizing: border-box;
align-items: center;
display: flex;
flex-direction: row;
}
.invoiceCell .invoiceCellName {
color: #444444;
font-family: PingFang SC;
font-size: 28rpx;
background-color: white;
text-align: left;
}
.invoiceCell .price {
text-align: right;
font-family: PingFang SC;
font-size: 28rpx;
color: #D0021B;
background-color: white;
flex-grow: 1;
}