career.css
718 字节
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
/* 导航栏 */
.career_nav {
height: 55px;
border-bottom: 1px solid #eee;
}
.nav_single {
float: left;
font-size: 16px;
color: #34485e;
width: 104px;
line-height: 54px;
margin-right: 24px;
}
.nav_bottom {
border-bottom: 2px solid #409eff;
}
/* 推荐书籍 */
.career_book {
padding: 36px 0 36px 56px;
}
dl {
float: left;
margin-right: 32px;
margin-bottom: 50px;
}
dt {
width: 248px;
height: 146px;
}
dt img {
width: 100%;
height: 100%;
}
dd {
font-size: 16px;
color: #34485e;
margin-top: 14px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 248px;
}
dl:hover dd {
color: #409eff;
}