*
L
2026-01-12 a2e922b654f7ae2f420d384c1a305b37d2098f74
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
179
180
 
/* 许可证横幅样式 - 修改原有样式 */
.license-banner {
    position: fixed; /* 改为 fixed 定位,固定在最上方 */
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999; /* 确保在最上层 */
    font-size: 20px;
    font-weight: bold;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px); /* 毛玻璃效果 */
}
 
.license-banner.expired {
    background: linear-gradient(135deg, rgba(255, 65, 108, 0.95), rgba(255, 75, 43, 0.95));
    color: white;
    border-bottom: 3px solid #ff0000;
    animation: pulse 1s infinite, shake 0.5s infinite;
}
 
.license-banner.urgent {
    background: linear-gradient(135deg, rgba(255, 153, 102, 0.95), rgba(255, 94, 98, 0.95));
    color: white;
    border-bottom: 3px solid #ff9800;
    animation: pulse 1.5s infinite;
}
 
.license-banner.warning {
    background: linear-gradient(135deg, rgba(246, 211, 101, 0.95), rgba(253, 160, 133, 0.95));
    color: #333;
    border-bottom: 3px solid #ffc107;
    animation: pulse 2s infinite;
}
 
.license-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}
 
.license-content i {
    font-size: 24px;
    animation: iconPulse 2s infinite;
}
 
.license-text {
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}
 
.license-days {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
 
/* 动画效果 */
@keyframes pulse {
    0% {
        opacity: 0.9;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    }
    100% {
        opacity: 0.9;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }
}
 
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-3px); }
    20%, 40%, 60%, 80% { transform: translateX(3px); }
}
 
@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
 
/* 为过期的添加更强烈的动画 */
.license-banner.expired i {
    animation: iconPulse 0.8s infinite alternate;
}
 
.license-banner.urgent i {
    animation: iconPulse 1s infinite alternate;
}
 
/* 调整主体布局,为横幅腾出空间 */
#app {
    margin-top: 60px; /* 为横幅预留高度 */
    height: calc(100vh - 60px); /* 调整高度 */
    overflow: auto; /* 如果需要滚动 */
}
 
/* 如果原有 header 还在使用,也需要调整 */
header {
    position: relative;
    z-index: 1;
    margin-top: 60px; /* 如果有 header,也要下移 */
}
 
/* 确保横幅不会影响其他元素的点击事件 */
.license-banner {
    pointer-events: auto; /* 允许横幅本身的交互 */
}
 
.license-banner * {
    pointer-events: auto;
}
 
/* 响应式调整 */
@media (max-width: 768px) {
    .license-banner {
        height: 50px;
        font-size: 16px;
    }
 
    .license-text {
        font-size: 16px;
    }
 
    .license-days {
        font-size: 14px;
        padding: 3px 8px;
    }
 
    .license-content i {
        font-size: 20px;
    }
 
    #app {
        margin-top: 50px;
        height: calc(100vh - 50px);
    }
}
.task-bar-right1 {
    position: fixed;
    top: 5%;
    width: 25%;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    z-index: 1000; /* 修改这一行 */
}
 
/* 新增样式 - 确保任务栏在最上层 */
.task-bar-left,
.task-bar-left1,
.task-bar-right,
.task-bar-right1 {
    z-index: 10000 !important;
}
 
.task-bar-div1 {
    z-index: 10001 !important;
}
 
.el-table {
    z-index: 10002 !important;
    position: relative;
}