refactor: 修复知识库和操作指引

This commit is contained in:
2026-03-13 14:32:37 +08:00
parent bbe8e60646
commit 58f42de9df
88 changed files with 3387 additions and 2472 deletions

View File

@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>步骤 5 - 完成</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
width: 100%;
height: 100%;
font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
padding: 24px;
background: white;
color: #0f172a;
overflow-y: auto;
}
.step-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 16px;
color: #0f172a;
}
.success-box {
background: #f0fdf4;
border: 1px solid #bbf7d0;
border-left: 4px solid #22c55e;
border-radius: 8px;
padding: 20px;
margin-bottom: 16px;
}
.success-box .check {
font-size: 20px;
color: #16a34a;
font-weight: bold;
margin-bottom: 12px;
}
.step-content {
font-size: 14px;
line-height: 1.6;
color: #475569;
}
.step-content ul { margin-left: 24px; margin-top: 12px; }
.step-content li { margin-bottom: 8px; }
</style>
</head>
<body>
<div class="step-title">步骤 5: 完成</div>
<div class="success-box">
<div class="check">&#10003; 水泄漏报警已成功处理!</div>
<div class="step-content">
<p>后续建议:</p>
<ul>
<li>记录漏水位置和处理方法</li>
<li>如果是管道问题,提交维护工单</li>
<li>增加该区域的巡检频率</li>
</ul>
</div>
</div>
</body>
</html>