order-detail.wxss
2.8 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/* pages/order/order-detail/order-detail.wxss */
.state-box {
display: flex;
align-items: center;
justify-content: space-between;
padding: 60rpx 52rpx 40rpx 52rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border-top: 20rpx solid #f2f2f2;
border-bottom: 20rpx solid #f2f2f2;
position: relative;
}
.state-box .state1, .state2, .state3 {
display: flex;
flex-direction: column;
align-items: center;
color:#333;
font-size: 24rpx;
}
.state-box .circle {
width: 46rpx;
height: 46rpx;
border-radius: 50%;
margin-bottom: 10rpx;
background-color: #DEDEDE;
}
/*.state3 .circle {*/
/*background-color: #E1C8AF;*/
/*}*/
.state-box .change {
background-color: #E1C8AF;
}
/*.state3 text {*/
/*color: #999999;*/
/*}*/
.state-box .change-text {
color: #999999;
}
.state-box .line {
z-index:-5;
width: 572rpx;
height: 2rpx;
background-color: #DEDEDE;
position: absolute;
top:45%;
left:50%;
transform: translate(-50%,-50%);
}
.order-info {
display: flex;
flex-direction: column;
padding: 40rpx 20rpx 0 20rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.order-info .top {
display: flex;
align-items: center;
}
.top image {
width: 40rpx;
height: 40rpx;
border-radius: 50%;
margin-right: 10rpx;
}
.top .name {
font-size: 22rpx;
color: #333333;
}
.address, .time {
font-size: 24rpx;
color: #666666;
}
.address {
padding: 28rpx 0 32rpx 0;
}
.time {
border-bottom: 1rpx solid #f2f2f2;
padding-bottom: 40rpx;
}
.order-detail {
margin-top: 108rpx;
padding: 0 20rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: flex;
flex-direction: column;
}
.order-detail text {
font-size: 24rpx;
color: #666666;
margin-bottom: 42rpx;
}
.bottom {
width: 100%;
position: fixed;
bottom:0;
left:0;
display: flex;
align-items: center;
justify-content: space-between;
}
.bottom text {
width: 50%;
height: 98rpx;
line-height: 98rpx;
text-align: center;
background-color: #323232;
font-size: 30rpx;
}
.cancel-btn {
color: #999999;
border-right: 1rpx solid #E1C8AF;
}
.confirm-btn {
color: #E1C8AF;
}
.complain {
z-index:10;
padding: 0 20rpx;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
position: absolute;
right:20rpx;
top:10rpx;
margin-bottom:20rpx;
}
.complain text {
width: 80rpx;
height: 50rpx;
line-height: 50rpx;
text-align:center;
font-size: 24rpx;
color: #E1C8AF;
background-color: #323232;
padding: 6rpx 10rpx;
border-radius: 6rpx;
}