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
| @charset "UTF-8";
| .breadcrumb{
| padding: 8px 0;
| list-style: none;
| background-color: #f5f5f5;
| border-radius: 4px;
| margin: 0;
| font-size: 12px;
| }
| .breadcrumb > li {
| display: inline-block;
| }
| .breadcrumb > li + li:before {
| padding: 0 5px;
| color: #ccc;
| font-weight: bold;
| content: "/";
| }
| .breadcrumb a{
| text-decoration: none;
| color: #6952F6;
| }
| .breadcrumb .active{
| color: #1F1E1E;
| }
| .breadcrumb .active:hover {
| color: #1F1E1E;
| }
|
|