order-list.css
1.5 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
.content {
min-height: 100vh;
background-color: #f7f8fa;
}
.topList {
display: flex;
justify-content: space-around;
align-items: center;
}
.tabItem {
font-size: 28rpx;
color: #323233;
padding: 24rpx 0;
}
.active {
border-bottom: 4rpx solid #FF2F2F;
color: #FF2F2F;
}
/* 订单 */
.orderItem {
margin-top: 18rpx;
padding: 32rpx;
box-sizing: border-box;
background-color: #fff;
}
.itemTop {
display: flex;
justify-content: space-between;
}
..itemTops {
display: flex;
}
.imageBox {
margin-right: 32rpx;
}
.imageBox image {
width: 120rpx;
height: 120rpx;
border-radius: 8rpx;
}
.titleBox {
width: 354rpx;
font-size: 26rpx;
color: #000;
}
.status {
font-size: 26rpx;
color: #FF2F2F;
text-align: right;
}
.price {
font-size: 24rpx;
margin-top: 10rpx;
margin-right:-4rpx;
text-align: right;
}
.num {
font-size: 26rpx;
color: #969799;
text-align: right;
}
.btnBox {
display: flex;
justify-content: flex-end;
margin-top: 10rpx;
}
.btnBox>view {
padding: 12rpx 26rpx;
box-sizing: border-box;
border: 2rpx solid #c8c9cc;
border-radius: 8rpx;
font-size: 26rpx;
color: #323233;
margin-left: 30rpx;
text-align: center;
line-height: 40rpx;
}
.moreImg{
width: 120rpx;
height: 120rpx;
margin-right: 10rpx;
border-radius: 8rpx;
}
.noDataBox{
padding-top: 50rpx;
box-sizing: border-box;
text-align: center;
}
.noDataImg{
width: 200rpx;
height: 200rpx;
}
.noData{
font-size: 28rpx;
color: #c6c7c9;
width: 100%;
text-align: center;
margin-top: 40rpx;
}