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
| @CHARSET "UTF-8";
|
| body {
| overflow: hidden;
| }
|
| .header {
| position: absolute;
| height: 45px;
| left: 0px;
| right: 0px;
| top: 0px;
| background-color: #222;
| font: 15px 微软雅黑;
| }
|
| .header-button {
| float: left;
| width: 8%;
| height: 44px;
| line-height: 44px;
| color: white;
| text-align: center;
| cursor: pointer;
| }
|
| .header-button:HOVER {
| background-color: #9f7b7b;
| }
|
| .content {
| position: absolute;
| top: 45px;
| left: 0px;
| bottom: 0px;
| right: 0px;
| font: 13px;
| }
|
|