- nginx 安全加固 (CSP, HSTS, 缓存策略) - 共享 style.css - 138个页面全部接入 Co-authored-by: Hermes AI <agent@hermes>
34 lines
2.0 KiB
HTML
34 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body { width: 1200px; height: 675px; overflow: hidden; font-family: 'PingFang SC','Microsoft YaHei',sans-serif; background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%); display: flex; flex-direction: column; justify-content: center; padding: 60px; }
|
|
.tag { display: inline-block; background: rgba(88,166,255,0.15); color: #58a6ff; padding: 6px 16px; border-radius: 20px; font-size: 14px; margin-bottom: 20px; border: 1px solid rgba(88,166,255,0.3); }
|
|
h1 { font-size: 44px; font-weight: 700; color: #f0f6fc; line-height: 1.3; margin-bottom: 16px; }
|
|
.sub { font-size: 18px; color: #8b949e; margin-bottom: 30px; line-height: 1.5; }
|
|
.stats { display: flex; gap: 30px; margin-bottom: 20px; }
|
|
.stat { text-align: center; }
|
|
.stat-num { font-size: 32px; font-weight: 700; color: #58a6ff; }
|
|
.stat-lbl { font-size: 12px; color: #8b949e; margin-top: 4px; }
|
|
.meta { color: #484f58; font-size: 13px; margin-top: 10px; }
|
|
.line { width: 80px; height: 3px; background: linear-gradient(90deg, #58a6ff, #bc8cff); border-radius: 2px; margin-bottom: 24px; }
|
|
</style>
|
|
<link rel="stylesheet" href="/style.css">
|
|
</head>
|
|
<body>
|
|
<div class="tag">实战经验</div>
|
|
<div class="line"></div>
|
|
<h1>从聊天窗口到工作台</h1>
|
|
<div class="sub">一次完整的 Agent 系统升级实录<br>GAP-1 沙箱 · GAP-2 评测 · GAP-3 审计<br>GAP-4 调度 · GAP-5 定时任务 · GAP-7 工作台</div>
|
|
<div class="stats">
|
|
<div class="stat"><div class="stat-num">8</div><div class="stat-lbl">Profile 集群</div></div>
|
|
<div class="stat"><div class="stat-num">22</div><div class="stat-lbl">评测面板</div></div>
|
|
<div class="stat"><div class="stat-num">5</div><div class="stat-lbl">定时任务</div></div>
|
|
<div class="stat"><div class="stat-num">0</div><div class="stat-lbl">新增依赖</div></div>
|
|
</div>
|
|
<div class="meta">博海科技 · 2026-06-29</div>
|
|
</body>
|
|
</html>
|