commoncss.css
1.24 KB
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
63
64
/********************************************初始化样式*/
/********************************************公共样式*/
html,body{
background-color: #f6f7fb;
min-width: 1200px;
}
ul,li{
list-style: none;
}
.float-left{
float: left;
}
.float-right{
float: right;
}
.cursorpointer{
cursor: pointer;
}
/********************************************头部公共样式*/
header{
width: 100%;
height: 90px;
line-height: 90px;
background-color: #fff;
box-shadow: 0 2px 15px rgba(0,0,0,.1);
}
.nav-bar-wrap{
width: 1200px;
margin: 0 auto;
}
.login-name{
font-size: 34px;
color: #4886ff;
}
.login-name span:nth-of-type(2){
font-size: 14px;
color: rgba(0,0,0,.5);
}
.nav-bar-container li{
float: left;
width: 80px;
height: 90px;
line-height: 90px;
border-bottom: 4px solid #fff;
margin-right: 80px;
display: inline-block;
text-align: center;
}
.nav-bar-container li a{
font-size: 16px;
color: #363d5d;
}
.nav-bar-container li.navbar-active{
border-bottom: 4px solid #4886ff;
}
.nav-bar-container li.navbar-active a{
color:#4886ff ;
}
/********************************************内容公共样式*/
.main-con{
width: 1200px;
margin: 30px auto;
}