refactor: 修复知识库和操作指引
This commit is contained in:
94
public/guides/how-to-use-beam/step-5.html
Normal file
94
public/guides/how-to-use-beam/step-5.html
Normal file
@@ -0,0 +1,94 @@
|
||||
<!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;
|
||||
}
|
||||
|
||||
.success-box {
|
||||
background: #f0fdf4;
|
||||
border: 1px solid #bbf7d0;
|
||||
border-left: 4px solid #22c55e;
|
||||
border-radius: 8px;
|
||||
padding: 20px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.success-box .check {
|
||||
font-size: 20px;
|
||||
color: #16a34a;
|
||||
font-weight: bold;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.step-content {
|
||||
font-size: 14px;
|
||||
line-height: 1.6;
|
||||
color: #475569;
|
||||
}
|
||||
|
||||
.step-content ul { margin-left: 24px; margin-top: 12px; }
|
||||
.step-content li { margin-bottom: 8px; }
|
||||
|
||||
.param-table {
|
||||
width: 100%;
|
||||
border-collapse: collapse;
|
||||
margin-top: 16px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.param-table td {
|
||||
padding: 8px 12px;
|
||||
border-bottom: 1px solid #e2e8f0;
|
||||
}
|
||||
|
||||
.param-table td:first-child {
|
||||
font-weight: bold;
|
||||
color: #0f172a;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
.param-table td:last-child {
|
||||
color: #475569;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="step-title">步骤 5: 完成</div>
|
||||
|
||||
<div class="success-box">
|
||||
<div class="check">✓ 光束已成功送达实验站!</div>
|
||||
<div class="step-content">
|
||||
<p>当前光束参数:</p>
|
||||
<table class="param-table">
|
||||
<tr><td>能量</td><td>12.66 keV</td></tr>
|
||||
<tr><td>通量</td><td>1.2×10¹² ph/s</td></tr>
|
||||
<tr><td>光斑尺寸</td><td>0.15×0.08 mm²</td></tr>
|
||||
</table>
|
||||
<p style="margin-top: 16px;">您现在可以开始实验了。</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user