Files

124 lines
2.6 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>步骤 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;
}
.step-content {
font-size: 14px;
line-height: 1.6;
color: #475569;
margin-bottom: 24px;
}
.step-content p { margin-bottom: 12px; }
.contact-card {
background: #f0f9ff;
border: 1px solid #bae6fd;
border-radius: 8px;
padding: 16px 20px;
margin-bottom: 16px;
}
.contact-card h4 {
font-size: 15px;
font-weight: bold;
color: #0c4a6e;
margin-bottom: 12px;
}
.contact-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 0;
border-bottom: 1px solid #e0f2fe;
font-size: 14px;
color: #0369a1;
}
.contact-item:last-child { border-bottom: none; }
.contact-item strong {
min-width: 140px;
color: #0c4a6e;
}
.info-box {
background: #fefce8;
border: 1px solid #fde68a;
border-left: 4px solid #f59e0b;
border-radius: 4px;
padding: 16px;
}
.info-box h4 {
font-size: 14px;
font-weight: bold;
color: #92400e;
margin-bottom: 8px;
}
.info-box ul {
margin-left: 24px;
color: #a16207;
font-size: 13px;
}
.info-box li { margin-bottom: 6px; }
</style>
</head>
<body>
<div class="step-title">步骤 5: 联系维护人员</div>
<div class="step-content">
<p>如果以上步骤都无法解决问题,可能是阀门机械故障或控制系统故障。请联系维护人员。</p>
</div>
<div class="contact-card">
<h4>维护人员联系方式</h4>
<div class="contact-item">
<strong>真空系统负责人</strong>
<span>内线 1234</span>
</div>
<div class="contact-item">
<strong>控制系统负责人</strong>
<span>内线 5678</span>
</div>
</div>
<div class="info-box">
<h4>请记录以下信息以便维护人员排查:</h4>
<ul>
<li>故障时间</li>
<li>真空度读数</li>
<li>已执行的操作步骤</li>
</ul>
</div>
</body>
</html>