king
2020-01-12 40f4c8f438295248600b90dcceb5fa0444d42f39
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
@import '../../assets/css/global.scss';
 
.header-container {
  position: fixed;
  z-index: 1060;
  left: 0;
  top: 0;
  font-weight: bold!important;
  width: 100%;
  height: 48px;
 
  .header-logo {
    float: left;
    width: 180px;
    line-height: 48px;
    text-align: center;
    padding-left: 5px;
    box-sizing: border-box;
    opacity: 1;
    transition: width 0.2s, opacity 0.15s;
    img {
      max-width: 100%;
      max-height: 40px;
    }
  }
  .header-logo.collapse {
    opacity: 0;
    width: 0px;
    padding-left: 0px;
  }
 
  .header-collapse {
    float: left;
    width: 80px;
    line-height: 48px;
    padding-left: 20px;
    cursor: pointer;
    transition: padding-left 0.15s;
    i {
      position: relative;
      top: 3px;
      font-size: 20px;
      color: #ffffff;
    }
  }
  .header-collapse.collapse {
    padding-left: 30px;
  }
  .header-menu {
    float: left;
    margin: 0;
    line-height: 48px;
    li {
      float: left;
      font-size: 1.3rem;
      cursor: pointer;
      span {
        padding: 0 10px;
        height: 42px;
        display: inline-block;
      }
 
      &:hover {
        color: #eeeeee;
        span {
          border-bottom: 4px solid #fafcfb;
        }
      }
      &.active {
        color: #ffffff;
        span {
          border-bottom: 4px solid #06b4f7;
        }
      }
    }
  }
  .header-setting {
    float: right;
    line-height: 48px;
    margin-right: 10px;
    img {
      width: 29px;
      height: 29px;
      border-radius: 30px;
      margin-right: 7px;
    }
    span {
      color: #ffffff;
      font-size: 0.95rem;
      .username {
        display: inline-block;
        height: 30px;
        max-width: 95px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
    }
  }
  .edit-check {
    font-size: 18px;
    margin-top: 14px;
    margin-left: 10px;
    cursor: pointer;
  }
}
.header-dropdown {
  li {
    padding: 5px 25px;
  }
}
.header-subSystem {
  min-width: 100px;
}
.edit-switch {
  margin-left: 10px;
}