lxw
2020-07-11 9db52f2f2dd3665fe9da1ae5657e0167c3a34d40
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
body {
    padding: 0;
    margin: 0;
    padding-bottom: 32px;
}
.scroll-bar {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 999;
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-size: 12px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.scroll-bar a {
    text-decoration: none;
    color: #000;
}
.scroll-bar .scroll-content {
    white-space: nowrap;
    overflow: hidden;
}
 
.scroll-bar .scroll-content .scroll-list {
    display: inline-block;
}
.scroll-bar .scroll-list a{
    position: relative;
    display: inline-block;
    margin: 0;
    padding:0;
    margin-right:-8px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 12px;
    padding-bottom: 0;
}
.scroll-bar .scroll-list a:hover {
    color: #0069D9;
    text-decoration: underline;
}
.scroll-bar .scroll-list a.new:before {
    position: absolute;
    top: 0;
    left: 16px;
    display: table;
    content: "";
    width: 35px;
    height: 15px;
    background-image: url(../image/new.gif);
    background-repeat: no-repeat;
    
}
.scroll-bar .scroll-list a.no-content-scroll {
    width: 10px;
    height: 12px;
    background-color: none;
}
.scroll-bar .scroll-list.list-one {
    background-color: #ECECF6;
}