fishBone.css
2.9 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
.fishBone *{
margin: 0;
padding: 0;
}
.fishBone ul{
overflow: visible!important;
}
.fishBone ul,li{
list-style: none;
line-height: 2em
}
.fishBone{
color: #767676;
width: 100%;
height: 100%;
white-space:nowrap;
position: relative;
font-size: 12px;
}
.fishBone .wrapper{
padding: 0 10px;
margin: auto;
overflow: hidden;
}
.fishBone .wrapper .bd {
overflow: hidden;
}
.fishBone .item{
position: relative;
width: 150px;
height: 350px;
display: inline-block;
margin-left:130px;
}
.fishBone .item .first{
line-height:2em;
}
.fishBone .item .title{
border-left:none;
}
.fishBone .item .title .title-left{
display:inline-block;
width:15px;
line-height: 2.1em;
background: url("../img/title.png") no-repeat 0 0;
font-size: 14px;
}
.fishBone .item .title .title-center{
display:inline-block;
background: url("../img/title.png") repeat-x 0 -600px;
font-size: 15px;
font-weight:bold;
font-family:'微软雅黑';
line-height: 2.1em;
color: white;
}
.fishBone .item .title .title-right{
display:inline-block;
width:15px;
line-height: 2.1em;
background: url("../img/title.png") no-repeat 0 -1200px;
font-size: 14px;
}
.fishBone .item .title{
display: block;
position: relative;
left: -33px;
background: url(../img/line-point.png) no-repeat 12px -212px;
}
.fishBone .item.top .title{
}
.fishBone .item.bottom .title{
bottom: 0;
}
.fishBone .item .content{
padding-left: 13px;
position: absolute;
}
.fishBone .item.top .content{
padding-top: 5px;
top: 10px;
padding-bottom: 13px;
}
.fishBone .item.bottom .content{
bottom: 7px;
padding-top: 10px;
padding-bottom: 5px;
}
.fishBone .item.bottom{
}
.fishBone .item .content ul{}
.fishBone .item .content ul li{
padding-left:13px;
}
.fishBone .item .content ul li.line-first{
position: relative;
padding-left: 19px;
left: -4px;
border-left: 0!important;
background: url(../img/line-first.png) no-repeat 0px 0px;
font-size: 14px;
font-family:'微软雅黑';
font-weight: 550;
}
.fishBone .item .content ul li.line-last{
border-left:none;
}
.fishBone .item.top .content ul li .name{}
.fishBone .item.top .content ul li .text{}
/**prev next*/
.fishBone .prev {
position: absolute;
top: 154px;
left: 0;
display: inline-block;
width: 20px;
height: 40px;
/* background: url(../img/arrow.png) no-repeat -1px 13px; */
}
.fishBone .prev:hover{
cursor: pointer;
background-position-y: -28px;
}
.fishBone .next:hover{
cursor: pointer;
background-position-y: -28px;
}
.fishBone .next {
position: absolute;
top: 154px;
right: 0;
display: inline-block;
width: 20px;
height: 40px;
background: url(../img/arrow.png) no-repeat -19px 13px;
}
/**line**/
.fishBone .line {
position: absolute;
top: 175px;
height: 1px;
width: 100%;
border-bottom: 2px dashed #7E899D;
z-index: -1;
}
.fishBone .item .line-point {
position: absolute;
left: 4px;
bottom: -4px;
display: block;
height: 18px;
width: 18px;
background: url(../img/line-point.png) no-repeat 0px 0px;
}
.fishBone .item.bottom .line-point {
top: -6px
}