_logistic.scss
2.7 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
$logistic_gray: #f0f0f0;
$border_color_strong: #e3e3e3;
$border_color_light: #eee;
@mixin set-singleBorder($side, $c) {
border-#{$side}: 1px solid $c;
}
.logistic-page {
background-color: $logistic_gray;
@include set-singleBorder("bottom", $border_color_light);
.overview {
height: 120rem / $pxConvertRem;
line-height: 120rem / $pxConvertRem;
width: 100%;
margin-bottom: 40rem / $pxConvertRem;
background-color: #fff;
color: #464646;
@include set-singleBorder("bottom", $border_color_strong);
.left {
width: 19%;
float: left;
text-align: center;
height: 100%;
.icon {
width: 88rem / $pxConvertRem;
height: 88rem / $pxConvertRem;
margin: 0 auto;
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
margin-top: 16rem / $pxConvertRem;
}
}
.right {
width: 81%;
float: left;
padding-top: 20rem / $pxConvertRem;
padding-bottom: 20rem / $pxConvertRem;
height: 80rem / $pxConvertRem;
div {
height: 40rem / $pxConvertRem;
line-height: 44rem / $pxConvertRem;
color: #595959;
font-size: 24rem / $pxConvertRem;
}
}
.info {
padding-right: 4rem / $pxConvertRem;
}
}
.title {
height: 112rem / $pxConvertRem;
line-height: 112rem / $pxConvertRem;
background-color: #fff;
padding-left: 40rem / $pxConvertRem;
font-size: 40rem / $pxConvertRem;
color: #4f4f4f;
@include set-singleBorder("top", $border_color_strong);
@include set-singleBorder("bottom", $border_color_light);
}
.detail {
background-color: #fff;
padding-left: 80rem / $pxConvertRem;
}
.timeline-box {
@include set-singleBorder("left", $border_color_strong);
position: relative;
padding-left: 52rem / $pxConvertRem;
}
.timeline-node {
position: absolute;
top: 32rem / $pxConvertRem;
left: -9.04444rem / $pxConvertRem;
display: inline-block;
width: 16.4rem / $pxConvertRem;
height: 16.4rem / $pxConvertRem;
background-color: $border_color_strong;
border-radius: 100%;
}
.timeline-box:first-child {
.timeline-node {
background-color: #989898;
}
.timeline-info-row {
color: #606060;
}
}
.timeline-info {
padding: (20rem / $pxConvertRem) 0;
@include set-singleBorder("bottom", $border_color_light);
}
.timeline-box:last-child {
.timeline-info {
border: none;
}
}
.timeline-info-row {
min-height: 40rem / $pxConvertRem;
line-height: 40rem / $pxConvertRem;
font-size: 28rem / $pxConvertRem;
color: #bababa;
padding-right: 32rem / $pxConvertRem;
}
}