109 lines
2.5 KiB
HTML
109 lines
2.5 KiB
HTML
<!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: #fef2f2;
|
|
border-left: 4px solid #ef4444;
|
|
padding: 12px;
|
|
margin: 16px 0;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.warning-box strong {
|
|
color: #dc2626;
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="step-title">步骤 3: 尝试手动复位</div>
|
|
|
|
<div class="step-image-container">
|
|
<img src="images/valve-reset.jpg" alt="阀门复位操作" class="step-image"
|
|
onerror="this.style.display='none'">
|
|
|
|
<svg class="annotation-layer">
|
|
<rect class="annotation-box" x="40%" y="40%" width="18%" height="12%" stroke="#ef4444" />
|
|
<text class="annotation-label" x="41%" y="37%" fill="#ef4444">复位按钮</text>
|
|
</svg>
|
|
</div>
|
|
|
|
<div class="step-content">
|
|
<p>如果联锁状态异常,尝试手动复位:</p>
|
|
<ol>
|
|
<li>按下阀门控制面板上的"复位"按钮</li>
|
|
<li>等待 5 秒</li>
|
|
<li>再次尝试打开阀门</li>
|
|
</ol>
|
|
</div>
|
|
|
|
<div class="warning-box">
|
|
<strong>⚠️ 重要提醒</strong>
|
|
复位前必须确认真空度满足要求!在真空度不达标时强行复位可能导致设备损坏。
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|