logisticsListCom.less
1.52 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
@charset "UTF-8";
.logistics-list-com {
background-color: #FFFFFF;
width: 100%;
height: auto;
.box {
margin: 0 auto;
padding: 42rpx 0 82rpx 0;
width: 690rpx;
height: auto;
.item {
display: flex;
justify-content: flex-start;
align-items: flex-start;
width: 100%;
height: auto;
.time-box {
width: 96rpx;
text-align: right;
.date {
color: #333333;
font-size: 24rpx;
font-weight: 400;
}
.time {
color: #B4B4B4;
font-size: 20rpx;
font-weight: 400;
}
}
.line-box {
position: relative;
margin: 0 42rpx 0 32rpx;
width: 0;
height: 100%;
min-height: 230rpx;
border-left: 1px solid #DCDCDC;
.dot {
position: absolute;
top: 18rpx;
left: -6rpx;
z-index: 1;
background-color: #DCDCDC;
width: 10rpx;
height: 10rpx;
border-radius: 50%;
}
}
.content-box {
width: 515rpx;
.value {
color: #B4B4B4;
font-size: 24rpx;
font-weight: 400;
}
}
&.active {
.line-box {
.dot {
position: absolute;
top: 8rpx;
left: -14rpx;
z-index: 1;
background-color: #941305;
width: 26rpx;
height: 26rpx;
border-radius: 50%;
}
}
.content-box {
.value {
color: #333333;
font-weight: 600;
}
}
}
}
.order-address-box {
.item {
.line-box {
border-left: 1px dashed #DCDCDC;
}
.content-box {
.value {
color: #333333;
font-weight: 600;
}
}
}
}
}
}