index.scss
1.06 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
.classify-page {
width: 750px;
.tabs {
width: 670px;
border: 1px solid #000;
height: 72px;
margin: 0 40px;
box-sizing: border-box;
.tab-item {
width: 50%;
font-family: PingFang-SC-Medium;
font-size: 28px;
color: #000;
text-align: center;
height: 70px;
line-height: 70px;
float: left;
}
.actived {
background: #000;
color: #fff;
}
}
.brand-list {
padding: 0 40px;
margin-top: 52px;
}
.brand-item {
width: 223px;
height: 168px;
border-right: 1px solid #ddd;
float: left;
box-sizing: border-box;
display: flex;
align-items: center;
justify-content: center;
&:nth-child(3n) {
border-right: none;
}
&.border {
border-bottom: 1px solid #ddd;
}
.brand-img {
width: 160px;
height: 80px;
}
}
}