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
| .page-box{
| padding-bottom: 40rpx;
| .list{
| margin: 20rpx 32rpx;
| .list-item{
| padding: 24rpx;
| background-color: white;
| border-radius: 10rpx;
| margin-bottom: 20rpx;
| .top-title{
| display: flex;
| justify-content: space-between;
| align-items: center;
| font-size: 32rpx;
| margin-bottom: 28rpx;
| .status{
| font-size: 28rpx;
| color: #B4B9BF;
| }
| .status1{
| color: #FE7B32;
| }
| .status2{
| color: #3EB47A;
| }
| .status3{
| color: #1171E0;
| }
| .status4{
| color: #EB4746;
| }
| }
| .user-info{
| font-size: 28rpx;
| color: #4A4E60;
| display: flex;
| justify-content: flex-start;
| align-items: center;
| .driver{
| width: 2rpx;
| height: 20rpx;
| background: #F1F1F1;
| margin: 0 20rpx;
| }
| }
| .set-line{
| font-size: 26rpx;
| color: #4A4E60;
| margin-top: 12rpx;
| text{
| color: #C3C6CD;
| }
| }
| .line{
| border-bottom: 3rpx dashed #F4F4F4;
| margin: 24rpx 0;
| }
| .set-line1{
| font-size: 24rpx;
| color: #4A4E60;
| margin-top: 12rpx;
| text{
| color: #C3C6CD;
| }
| }
| .button{
| background-color: #1171E0;
| display: inline-block;
| color: white;
| padding: 10rpx 36rpx;
| border-radius: 10rpx;
| }
| .set-start{
| align-items: flex-end;
| }
| }
| }
| .down{
| position: fixed;
| background: white;
| width: 100%;
| bottom: 0;
| padding: 32rpx 22rpx 40rpx;
| text-align: center;
| box-sizing: border-box;
| .button{
| border-radius: 20rpx;
| border: 2rpx solid #ABD2FF;
| background: #F0F8FF;
| color: #1171E0;
| padding: 20rpx 0;
| }
| }
| .set-search{
| margin: 0 32rpx 0;
| padding-top: 26rpx;
|
| }
| .border{
| border-bottom: 2rpx solid #F6F6F6;
| margin: 20rpx 0 0;
| }
|
| }
|
|