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,109 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>步骤 3 - 定位并处理漏水点</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;
}
.step-image-container {
position: relative;
margin-bottom: 16px;
}
.step-image {
max-width: 100%;
height: auto;
border: 1px solid #e2e8f0;
border-radius: 8px;
display: block;
}
.annotation-layer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
.annotation-box { stroke-width: 3; fill: none; }
.annotation-label { font-weight: bold; font-size: 16px; }
.step-content {
font-size: 14px;
line-height: 1.6;
color: #475569;
margin-bottom: 24px;
}
.step-content p { margin-bottom: 12px; }
.step-content ol { margin-left: 24px; margin-top: 12px; }
.step-content li { margin-bottom: 8px; }
.warning-box {
background: #fef3c7;
border-left: 4px solid #f59e0b;
padding: 12px;
margin: 16px 0;
border-radius: 4px;
}
.warning-box strong {
color: #d97706;
display: block;
margin-bottom: 8px;
}
</style>
</head>
<body>
<div class="step-title">步骤 3: 定位并处理漏水点</div>
<div class="step-image-container">
<img src="images/leak-detection-cable.jpg" alt="漏水检测线缆" class="step-image"
onerror="this.style.display='none'">
<svg class="annotation-layer">
<rect class="annotation-box" x="25%" y="40%" width="50%" height="30%" stroke="#f59e0b" />
<text class="annotation-label" x="26%" y="37%" fill="#f59e0b">检查此区域</text>
</svg>
</div>
<div class="step-content">
<p>找到对应编号的线缆后,沿线缆检查漏水点:</p>
<ol>
<li>查看线缆周围是否有水渍</li>
<li>检查附近的冷却水管接头</li>
<li>用干布擦干水渍</li>
<li>如果是管道漏水,需要关闭该区域冷却水阀门并通知维护人员</li>
</ol>
</div>
<div class="warning-box">
<strong>&#9888;&#65039; 注意</strong>
如果是管道漏水,应立即关闭该区域冷却水阀门,并联系维护人员处理。
</div>
</body>
</html>