1
mayisheng
2022-08-15 81f54040c2cb65537c6c6e1db8358a39a57dea0d
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
.layout-container {
    width: 100%;
    height: 100%;
    scrollbar-width: thin;
 
    ::-webkit-scrollbar {
        border-radius: 3px;
        width: 6px;
        background-color: #EEEEEE;
        height: 6px;
    }
 
    ::-webkit-scrollbar-thumb {
        border-radius: 3px;
        opacity: 0.6;
        background: #999999;
    }
 
    ::-webkit-scrollbar-thumb:hover {
        opacity: 0.66;
        background: #666666;
    }
 
    .el-container {
        width: 100%;
        height: 100%;
 
        .el-header,
        .el-main {
            padding: 0;
            overflow: hidden;
        }
 
        .el-header {
            position: relative;
            display: flex;
            background: #2196f3;
            align-items: center;
 
            img {
                margin-top: 4px;
                margin-left: 10px;
                margin-right: 10px;
                height: 38px;
            }
 
            .header-title {
                margin-right: 10px;
                position: relative;
                text-indent: 0.1em;
                font-size: 18px;
                color: #fff;
            }
 
            .out-home {
                position: absolute;
                top: 0;
                left: auto;
                right: 0;
                bottom: 0;
                margin: auto;
                width: 88px;
                line-height: 60px;
            }
 
            .el-menu {
 
                li {
                    font-size: 16px !important;
                }
 
                li.el-menu-item {
                    border: 0px !important;
                }
 
                li.el-menu-item.is-active {
                    border: 0px !important;
                    background: rgba(1, 64, 112, 0.494) !important;
                }
 
                li:hover {
                    border: 0px !important;
                    background: #1A78C2 !important;
                }
            }
        }
 
        .el-main {
            height: calc(100% - 60px);
        }
 
    }
}
 
.el-menu--horizontal {
    .el-menu-item {
        font-size: 12px !important;
        text-align: center;
        background: transparent !important;
 
    }
 
    .el-menu-item:hover {
        background: transparent !important;
        color: #fff !important;
    }
}
 
 
.el-menu--collapse .el-menu .el-submenu,
.el-menu--popup {
    min-width: 132px !important;
}
 
.el-submenu__title {
 
    font-size: 16px !important;
 
    i {
        color: #fff;
    }
}
 
.dialog-fade-enter-active .el-dialog.way {
    animation: anim-open 1.5s;
}
 
.dialog-fade-leave-active .el-dialog.way {
    animation: anim-close 1.5s;
}
 
@keyframes dialog-fade-in {
    0% {
        transform: scale(0.1) translate3d(0, 0, 0);
        opacity: 0;
    }
 
    100% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
}
 
@keyframes dialog-fade-out {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
 
    100% {
        transform: scale(0.1) translate3d(0, 0, 0);
        opacity: 0;
    }
}
 
@keyframes anim-open {
    0% {
        transform: scale(0.1) translate3d(0, 0%, 0);
        opacity: 0;
    }
 
    100% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
}
 
@keyframes anim-close {
    0% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
 
    100% {
        transform: scale(0.1) translate3d(0, 0%, 0);
        opacity: 0;
    }
}