85 lines
2.0 KiB
HTML
85 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>步骤 1 - 打开光子光闸 PS1</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; }
|
||
|
||
</style>
|
||
</head>
|
||
|
||
<body>
|
||
<div class="step-title">步骤 1: 打开光子光闸 PS1</div>
|
||
|
||
<div class="step-image-container">
|
||
<img src="images/ps1-panel.jpg" alt="PS1 控制面板" class="step-image"
|
||
onerror="this.style.display='none'">
|
||
|
||
<svg class="annotation-layer">
|
||
<rect class="annotation-box" x="20%" y="15%" width="30%" height="25%" stroke="#f59e0b" />
|
||
<text class="annotation-label" x="21%" y="12%" fill="#f59e0b">PS1 开关位置</text>
|
||
</svg>
|
||
</div>
|
||
|
||
<div class="step-content">
|
||
<p>首先需要打开光子光闸 PS1。请问安全光闸 SS1 是否能打开?如果 SS1 无法打开,需要先检查人员安全系统(PSS)状态。</p>
|
||
</div>
|
||
|
||
</body>
|
||
|
||
</html>
|