common.css
699 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
body{
position: relative;
background-color: #eef1f5;
}
body,html{
overflow: hidden;
width: 100%;
height: 100%;
}
ul,li,ol{
padding-left: 0;
margin-bottom: 0!important;
list-style: none;
}
/*头部--------------------------------------------------*/
header{
height: 80px;
width: 100%;
background-color: #fff;
}
/*左侧栏--------------------------------------------------*/
nav{
position: fixed;
width: 200px;
height: 100%;
left: 0;
top:0;
padding-top: 80px;
}
.nav-ul{
background-color: #fff;
height: 100%;
}
/*内容--------------------------------------------------*/
section{
width: 100%;
padding-left: 200px;
}