common.css
929 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* html {
-webkit-overflow-scrolling: touch;
} */
body {
font-family: PingFangSC-Regular, STXihei, Verdana, Calibri, Helvetica, Arial, sans-serif;
background-color: #fff;
line-height: 1.62;
max-width: 750px;
margin: 0 auto;
font-size: 16px;
padding: 20px 18px;
color: #222222;
text-align: justify;
}
/* li {
list-style: none;
} */
p,
div {
word-break: break-all;
}
a {
color: #ff9800;
/* color: #2196f3; */
text-decoration: unset;
}
h1,
h2,
h3 {
margin: 0 0 20px;
}
h1 {
font-size: 18px;
text-align: center;
}
h2 {
font-size: 16px;
}
h3 {
font-size: 14px;
}
ol {
padding-left: 30px;
margin-bottom: 20px;
}
.dark_cover {
position:fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #000000;
opacity: 0.2;
z-index: 998;
pointer-events: none; /* 阻止蒙层上的点击事件 */
}