1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
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
ul, li{
    margin:0;
    padding:0;
}
li {
    list-style: none;
}
.lside{
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #F8F9FA;
    overflow: auto;
}
.lside a {
    text-decoration: none;
    color: #000;
}
.lside>ul{
    width: 100%;
    position:absolute;
    margin-bottom: 30px;
}
.lside>ul>li>a{
    display:block;
    color:black;
    font-size: 16px;
    padding:12px 5px;
    white-space: nowrap;
}
.lside>ul>li>ul{
    display:none;
    }
.lside>ul>li>ul>li>a{
    display:block;
    font-size: 14px;
    padding:10px 20px;
    white-space: nowrap;
}
.lside>ul>li>ul>li>ul{
    display:none;
}
.lside>ul>li>ul>li>ul>li>a{
    display:block;
    font-size: 12px;
    padding:10px 10px 10px 40px;
    white-space: nowrap;
}
 
.arrow{
    display: block;
    float: left;
    width:20px;
    height:20px;
    margin-left:10px;
    margin-right:10px;
    background:url(../image/arrow_u.png) no-repeat 3px 5px;
    background-color:black;
}
.down{
    display: block;
    float: left;
    width:20px;
    height:20px;
    margin-left:10px;
    margin-right:10px;
    background:url(../image/arrow_d.png) no-repeat 3px 6px;
    background-color:black;
}
 
.mark{
    display: block;
    float: left;
    font-size: 16px;
    width:20px;
    height:20px;
    margin-left:10px;
    margin-right:10px;
    text-align:center;
    line-height: 20px;
    color:white;
    background-color: black;
}
 
.lside>ul>li>ul>li>ul>li>a.active {
    background-color: #9bbaf3 !important;
}
a.fir:hover {
    background-color: #D9EEF7;
}
a.thr:hover {
    background-color: #D9EEF7;
}