faq.scss
1.21 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
.container {
// margin-top: -48px;
font-size: $fontSize-M2;
.title {
text-align: center;
font-size: $articleTitleLarge;
font-weight: bold;
}
.title:lang(zh) {
letter-spacing: 3.65px;
}
.desc {
margin-top: 28px;
&-item {
@extend .bb;
padding: 40px 0 42px;
border-bottom: solid 2px #eaebeb;
cursor: pointer;
// 问题
.question {
// font-weight: bold;
margin-bottom: 12px;
}
// 答案
.answer {}
table {
width: 100%;
text-align: center;
margin: 24px auto;
border-collapse: collapse;
tr {
border-left: solid 2px #eaebeb;
th {
background-color: #eaebeb;
border-right: solid 2px #d7d9d9;
&:last-child {
border-right: solid 2px #eaebeb;
}
}
td {
border-bottom: solid 2px #eaebeb;
border-right: solid 2px #eaebeb;
}
th,
td {
padding: 12px 0;
}
}
}
}
&-item:lang(zh) {
letter-spacing: 2.2px;
}
}
}
@media (max-width: 1200px) {
.container {
width: 92vw;
}
}