_order.css
1.22 KB
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
.installment-order-page {
background: #f0f0f0;
.header {
text-align: center;
height: 90px;
border-bottom: 1px solid #e1e1e1;
background: #fff;
position: fixed;
width: 100%;
li {
display: inline-block;
min-width: 120px;
height: 90px;
line-height: 90px;
}
}
.order-list {
border-top: 1px solid #e1e1e1;
margin-top: 120px;
background: #fff;
li {
padding: 20px 30px;
height: 160px;
border-bottom: 1px solid #e1e1e1;
.image-box,
.title-box,
.date-box {
float: left;
}
.title-box {
margin-left: 22px;
width: 220px;
overflow: hidden;
}
.date-box {
margin-top: 20px;
color: #b1b1b1;
font-size: 24px;
}
img {
width: 90px;
height: 120px;
}
.right-box {
float: right;
font-size: 27px;
text-align: right;
}
}
}
}