index.scss
1.58 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
.group-box {
.title {
font-family: PingFang-SC-Medium;
font-size: 40px;
color: #000;
text-align: left;
margin-top: 60px;
line-height: 56px;
margin-bottom: 20px;
}
.group {
width: 710px;
box-sizing: border-box;
white-space: nowrap;
}
.group-item {
display: inline-block;
margin-right: 20px;
width: auto;
height: auto;
overflow: hidden;
text-overflow: ellipsis;
}
.group-img {
width: 140px;
.img {
width: 140px;
height: 70px;
filter: gray;
filter: grayscale(100%);
opacity: 0.5;
}
.text {
font-family: SFProText-Regular;
font-size: 20px;
color: #ccc;
text-align: center;
}
&.actived {
.img {
opacity: 1;
filter: none;
}
.text {
color: #000;
}
}
}
.group-text {
width: 200px;
height: 80px;
line-height: 80px;
background: #F5F5F5;
font-family: SFProText-Regular;
font-size: 28px;
color: #000;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
text-overflow: ellipsis;
&.actived {
background: #08304B;
color: #fff;
}
}
.square {
// margin-right: 20px;
width: 100px;
height: 100px;
}
}