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
page {
height: auto;
}
.OrderDetail {
padding: 0 32px;
.OrderDetail-title {
margin-top: 42px;
display: flex;
justify-content: center;
font-size: 28px;
.OrderDetail-icon {
width: 42px;
height: 36px;
margin-right: 16px;
}
}
.OrderDetail-price {
margin-top: 10px;
margin-bottom: 30px;
text-align: center;
font-size: 48px;
}
.OrderDetail-payinfo {
display: flex;
height: 60px;
line-height: 60px;
justify-content: space-between;
font-size: 28px;
color: #333;
.deduction {
color: #ff1010;
}
}
.OrderDetail-line {
margin: 10px auto;
width: 686px;
border: 1px dotted #eee;
}
}