faq.scss
622 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
@import '@/styles/_support.scss';
.container {
// margin-top: -48px;
.title {
text-align: center;
font-size: $articleTitleLarge;
font-weight: bold;
}
.title:lang(zh) {
letter-spacing: 3.65px;
}
.desc {
margin-top: 28px;
font-size: 22px;
&-item {
@extend .bb;
padding: 40px 0 42px;
border-bottom: solid 2px #eaebeb;
.question {
font-weight: bold;
}
.answer {
margin-top: 12px;
}
}
&-item:lang(zh) {
letter-spacing: 2.2px;
}
}
}
@media (max-width: 1200px) {
.container {
width: 92vw;
}
}