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
| * {
| margin: 0;
| padding: 0;
| }
|
| body,
| html {
| height: 100%;
| min-width: 500px;
| font-family: "Microsoft YaHei";
| font-size: 16px;
| color: #333;
| }
|
| button,
| input,
| select,
| textarea {
| font-size: 100%;
| margin: 0;
| padding: 0;
| border: none;
| outline: none;
| }
|
| img {
| border: 0;
| }
|
| a,
| img {
| -webkit-touch-callout: none
| }
|
| a {
| text-decoration: none;
| }
|
| textarea {
| resize: none;
| outline: 0;
| white-space: pre-wrap;
| word-wrap: break-word;
| border: none;
| background: #fff;
| font-family: "Microsoft YaHei";
| }
|
| :focus {
| outline: none;
| }
|
| .clearfix {
| clear: both;
| content: "";
| display: block;
| overflow: hidden
| }
|
| .clear {
| clear: both;
| }
|
|