distributor.scss
784 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
@import '../../assets/scss/mixins';
@import '../../assets/scss/utils';
$contentWidth:690px;
.page {
$contentWidth: 690px;
.bgc {
background-color: #f8f8f8;
}
.bg {}
.main {
.top-space {
height: 40px;
}
.content {
position: relative;
.list {
position: relative;
width: $contentWidth;
margin: 24px auto 0;
&-item {
@extend .bb;
padding: 30px 36px;
display: flex;
justify-content: flex-start;
align-items: center;
margin-bottom: 40px;
.icon {
width: 86px;
}
.tit {
color: #333333;
font-size: 42px;
padding-left: 48px;
}
}
}
}
}
}