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
| @CHARSET "UTF-8";
| * {
|
| padding: 0px;
| margin: 0px;
| }
|
|
| ul {
| display: none;
| }
|
| .menu div {
|
| width: 138px;
| height: 35px;
| line-height: 35px;
| background: #C6E2FF;
| color: #000000;
| font-size: 16px;
| padding-left: 15px;
| transition: all 0.3s ease;
| cursor: pointer;
| position: relative;
| font-weight: bold;
| overflow: hidden;
| border-bottom: 12px ;
| margin-bottom:4px;
| text-align: left;
| cursor: pointer;
| border-radius:8px;
| /* outline: none; */
|
| background-color:#5CADFE;
| box-shadow: 0 8px 16px 0 rgba(0,0,0,0), 0 6px 5px 0 rgba(0,0,0,0.19);
|
|
|
| }
|
| .menu {
| width: 138px;
| height: 33px;
| line-height: 25px;
|
| color: #000000;
| font-size: 16px;
| padding-left: 15px;
| padding-right: 2px;
|
|
|
| }
|
| ul {
| height: auto;
| margin: 1px auto;
| text-align: center;
| }
|
| ul li {
|
| height: 28px;
| line-height: 30px;
| background: gray;
| color: #000000;
| padding-left: 36px;
| cursor: pointer;
| overflow: hidden;
| text-align: left;
| border-radius:8px;
| /* outline: none; */
|
| background: #5CADFE;
| box-shadow: 0 8px 16px 0 rgba(0,0,0,0), 0 6px 5px 0 rgba(0,0,0,0.19);
| }
|
| ul li:hover {
| background:#5CADFE ;
| color: #ffffff;
| }
|
| ul li a {
| text-decoration: none;
| color: #000000;
| font-size: 14px;
| }
| ul li a:hover {
|
| color: #ffffff;
| }
|
| .item_divider {
| width: 118px;
| height: 0px;
| /* background-color: white;
| opacity: 0.8; */
| margin-bottom:2px;
| }
| .item a{
| width: 138px;
| height: 35px;
| display: block;
| text-decoration: none;
| color: white;
| font-size: 14px;
| text-decoration: none;
| }
|
| .menu_title {
| width: 138px;
| height: 35px;
| line-height: 35px;
| background: #fafafa;
| color: gray;
| font-size: 16px;
| padding-left: 15px;
| transition: all 0.3s ease;
| cursor: pointer;
| position: relative;
| font-weight: bold;
| overflow: hidden;
|
| }
|
| .menu_title:hover {
| /* background: #dedede; */
| color: #ffffff;
| }
|
| .indicator {
| display: block;
| width: 50px;
| height: 35px;
| font-weight: bold;
| position: absolute;
| right: 0px;
| top: 0px;
| transition: all 0.3s ease;
| text-align: center;
| }
|
|