logisticsBar.less
944 Bytes
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
@charset "UTF-8";
.logistics-bar {
background-color: #FFFFFF;
width: 100%;
height: auto;
.box {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 auto;
padding: 30rpx 0;
width: 690rpx;
height: auto;
.left-box {
display: flex;
justify-content: flex-start;
align-items: center;
.logo-box {
width: 80rpx;
height: 80rpx;
.logo-img {
display: block;
width: 80rpx;
height: 80rpx;
}
& + .info-box {
margin-left: 30rpx;
}
}
.info-box {
.state {
color: #333333;
font-size: 28rpx;
font-weight: 600;
}
.com-order-id {
color: #B4B4B4;
font-size: 24rpx;
font-weight: 400;
}
}
}
.right-box {
.btn {
&.btn-active-o {
color: #941305;
font-size: 26rpx;
font-weight: 500;
padding: 8rpx 22rpx;
border: 1px solid #941305;
border-radius: 30rpx;
}
}
}
}
}