wanshenmean
2026-03-19 c493779a8504fe1eb548c865ff268a7f7436ec01
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
:root {
  --bg-page: #edf2f7;
  --bg-panel: #ffffff;
  --bg-soft: #f8fafc;
  --text-main: #0f172a;
  --text-sub: #64748b;
  --border-main: #dbe2ea;
  --brand-main: #0b5cab;
  --brand-soft: #e8f2ff;
  --ok: #16a34a;
  --warn: #d97706;
  --danger: #dc2626;
  font-family: 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', sans-serif;
}
 
* {
  box-sizing: border-box;
}
 
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  background:
    radial-gradient(circle at 0% 0%, #f6faff 0%, transparent 35%),
    radial-gradient(circle at 100% 0%, #eef6ff 0%, transparent 38%),
    var(--bg-page);
}
 
#app {
  min-height: 100vh;
}
 
.admin-page {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--border-main);
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
 
.page-header h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 20px;
}
 
.text-muted {
  margin: 4px 0 0 0;
  color: var(--text-sub);
  font-size: 13px;
}
 
.panel-card {
  border-radius: 12px;
  border: 1px solid var(--border-main);
  overflow: hidden;
}
 
.section-block {
  border: 1px solid var(--border-main);
  border-radius: 12px;
  background: var(--bg-panel);
  overflow: hidden;
}
 
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid #e6edf4;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
}
 
.section-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}
 
.section-desc {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--text-sub);
}
 
.section-body {
  padding: 12px 14px;
}
 
.status-stopped {
  border-left: 4px solid #94a3b8;
}
 
.status-starting {
  border-left: 4px solid var(--brand-main);
}
 
.status-running {
  border-left: 4px solid var(--ok);
}
 
.status-stopping {
  border-left: 4px solid var(--warn);
}
 
.status-error {
  border-left: 4px solid var(--danger);
}
 
.loading-container {
  text-align: center;
  padding: 60px 0;
  color: var(--text-sub);
}
 
.loading-icon,
.spin-icon {
  animation: spin 1s linear infinite;
}
 
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
 
.el-card {
  transition: all 0.2s ease;
}
 
.el-card:hover {
  transform: translateY(-1px);
}
 
.el-table {
  --el-table-header-bg-color: #f3f7fb;
}
 
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
 
::-webkit-scrollbar-track {
  background: #eef2f6;
}
 
::-webkit-scrollbar-thumb {
  background: #b4beca;
  border-radius: 4px;
}
 
::-webkit-scrollbar-thumb:hover {
  background: #8f9cab;
}