Files

92 lines
2.0 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;
}
.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/backdoor-safety.jpg" alt="后门安全区域" class="step-image"
onerror="this.style.display='none'">
</div>
<div class="step-content">
<p>从后门进入需要额外的安全确认:</p>
<ol>
<li>确认后门区域无人员</li>
<li>检查后门联锁状态</li>
<li>通知控制室操作人员</li>
</ol>
</div>
<div class="warning-box">
<strong>&#9888;&#65039; 注意</strong>
后门路径需要额外安全授权,请确保已通知控制室后再进入。
</div>
</body>
</html>