1 * {
2 margin: 0;
3 padding: 0;
4 }
5
6 ul {
7 list-style-type: none;
8 }
9
10 li {
11 list-style-type: none;
12 }
13
14 a {
15 text-decoration: none;
16 color: #000;
17 -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
18 -webkit-user-select: none;
19 -moz-user-focus: none;
20 -moz-user-select: none;
21 }
22
23 a:hover {
24 color: #ffffff;
25 }
26
27 em,
28 b,
29 i,
30 h1,
31 h2,
32 h3,
33 h4,
34 h5,
35 h6 {
36 font-style: normal;
37 font-weight: normal;
38 }
39
40 .clear {
41 clear: both;
42 }
43
44 .block {
45 display: block;
46 }
47
48 body,
49 html {
50 font-family:Helvetica;
51 font-size: 14px;
52 max-width: 750px;
53 min-width: 320px;
54 margin: 0 auto;
55 }
56
57 .wl_ellipsis {
58 overflow: hidden;
59 text-overflow: ellipsis;
60 white-space: nowrap;
61 }