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
.el-menu--popup-bottom-start {
    margin-top: 2px !important;
}
 
.el-menu--horizontal {
    .el-menu {
        padding: 0px !important;
        background: #fff !important;
        border-radius: 2px;
 
        .el-menu-item {
            color: #fff !important;
            border-bottom: 1px solid #e5e5e5 !important;
            background: #2196f3 !important;
        }
 
        .el-menu-item:last-child {
            border-bottom: none !important;
        }
 
 
 
        .el-menu-item:hover {
            background: #1A78C2 !important;
        }
    }
}
 
.layout-container {
 
    .el-container {
 
        .el-header {
            position: fixed;
            top: 0;
            left: 0;
            height: 60px;
            width: 100%;
            z-index: 9999;
 
            .el-menu {
 
                .el-menu-item {
                    font-size: 16px !important;
                }
            }
 
 
        }
 
        .el-main {
            position: fixed;
            top: 60px;
            left: 0;
            height: calc(100% - 60px);
            width: 100%;
            z-index: 10;
 
        }
 
    }
}
 
.el-image-viewer__wrapper {
    background: #000;
}
 
#viewer-container {
 
    .el-icon-my-path {
        background: url(/img/icon/path.png) center no-repeat;
        background-size: 14px 14px;
    }
 
    .el-icon-my-path:before {
        content: "替";
        font-size: 16px;
        visibility: hidden;
    }
 
    .el-icon-my-search {
        background: url(/img/icon/search.png) center no-repeat;
        background-size: 14px 14px;
    }
 
    .el-icon-my-search:before {
        content: "替";
        font-size: 16px;
        visibility: hidden;
    }
}
 
.el-message {
    top: 146px !important;
}
 
.el-image-viewer__wrapper {
    z-index: 111111 !important;
}
 
.el-menu--horizontal.only-life-box {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: auto !important;
    padding: 10px !important;
    background: #2195f394;
    width: 720px;
    height: 258px;
    border-radius: 10px;
    overflow: hidden;
 
 
    ul {
        width: 100%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        border-top: 1px solid #e5e5e5 !important;
        border-right: 1px solid #e5e5e5 !important;
        border-radius: 10px !important;
        overflow: hidden;
 
        li {
            width: 180px !important;
            height: 86px !important;
            line-height: 86px !important;
            // border-top: 1px solid #e5e5e5 !important;
            border-left: 1px solid #e5e5e5 !important;
            box-sizing: border-box;
        }
 
        li:nth-child(1) {
            border-top-left-radius: 10px
        }
 
        li:nth-child(4) {
            border-top-right-radius: 10px
        }
 
        li:nth-child(9) {
            border-bottom-left-radius: 10px
        }
 
        li:nth-child(12) {
            border-bottom-right-radius: 10px;
        }
 
        li:nth-child(12).el-menu-item {
            border-bottom: 1px solid #e5e5e5 !important;
        }
 
 
    }
}