safety-eval-service-frontend/src/pages/Container/MonitorManage/RiskCenter/index.less

126 lines
2.1 KiB
Plaintext
Raw Normal View History

2026-07-15 14:26:05 +08:00
.risk-center {
2026-07-14 10:09:08 +08:00
// 统计卡片网格
2026-07-15 14:26:05 +08:00
.stat-grid.cols-4 {
2026-07-14 10:09:08 +08:00
display: grid;
2026-07-15 14:26:05 +08:00
grid-template-columns: repeat(4, 1fr);
2026-07-14 10:09:08 +08:00
gap: 16px;
margin-bottom: 10px;
}
// 统计卡片
.stat-card {
background: #fff;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 12px;
display: flex;
justify-content: space-between;
.stat-info {
.stat-label {
font-size: 0.82rem;
color: #64748b;
}
.stat-value {
font-size: 1.75rem;
font-weight: 700;
line-height: 1.15;
margin-top: 6px;
}
2026-07-15 14:26:05 +08:00
.stat-value--high {
color: #dc2626;
}
.stat-value--mid {
color: #d97706;
}
.stat-value--ok {
color: #059669;
}
2026-07-14 10:09:08 +08:00
.stat-hint {
font-size: 0.75rem;
color: #64748b;
margin-top: 4px;
}
}
.stat-icon {
width: 38px;
height: 38px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
flex-shrink: 0;
}
}
2026-07-15 14:26:05 +08:00
// 来源说明/规则提示
2026-07-14 10:09:08 +08:00
.source-note {
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 8px;
padding: 8px 14px;
font-size: 0.82rem;
color: #64748b;
margin-bottom: 10px;
display: flex;
2026-07-15 14:26:05 +08:00
align-items: center;
gap: 6px;
2026-07-14 10:09:08 +08:00
flex-wrap: wrap;
2026-07-15 14:26:05 +08:00
strong {
color: #1e293b;
2026-07-14 10:09:08 +08:00
}
}
// 来源字段药丸
.source-pill {
display: inline-flex;
align-items: center;
gap: 2px;
padding: 2px 7px;
border-radius: 999px;
background: #f1f5f9;
color: #475569;
font-size: 0.68rem;
white-space: nowrap;
}
2026-07-15 14:26:05 +08:00
// 工具条
.risk-toolbar {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
2026-07-14 10:09:08 +08:00
2026-07-15 14:26:05 +08:00
.risk-toolbar-left {
.risk-toolbar-desc {
font-size: 0.85rem;
color: #64748b;
}
2026-07-14 10:09:08 +08:00
}
2026-07-15 14:26:05 +08:00
.risk-toolbar-right {
display: flex;
gap: 8px;
2026-07-14 10:09:08 +08:00
}
2026-07-15 14:26:05 +08:00
}
2026-07-14 10:09:08 +08:00
2026-07-15 14:26:05 +08:00
.btn-ghost {
background: transparent;
color: #64748b;
border: 1px solid #e2e8f0;
2026-07-14 10:09:08 +08:00
2026-07-15 14:26:05 +08:00
&:hover {
background: #f1f5f9;
color: #1e293b;
2026-07-14 10:09:08 +08:00
}
}
}