king
2019-07-16 68ba2dfa35789cda9908fc0bc65336dde17a0d29
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
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
html {
    font-size: 100px;
    height: 100%;
}
 
body {
    width: 100%;
    font-size: 14px;
    background: #ffffff;
    height: 100%;
    overflow-x: hidden;
}
 
ul,
ol,
li {
    list-style: none;
}
 
a {
    text-decoration: none;
    color: black;
}
 
img {
    max-width: 100%;
    border: 0;
    vertical-align: middle;
}
 
p {
    -webkit-box-orient: vertical;
}
 
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}