init: sxbh.ltd 官网初始提交

- nginx 安全加固 (CSP, HSTS, 缓存策略)
- 共享 style.css
- 138个页面全部接入

Co-authored-by: Hermes AI <agent@hermes>
This commit is contained in:
Hermes CI Fix
2026-07-11 17:29:24 +08:00
co-authored by Hermes AI
commit e1a9b25afa
177 changed files with 21447 additions and 0 deletions
+97
View File
@@ -0,0 +1,97 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
.cover {
width: 1200px; height: 675px;
background: linear-gradient(135deg, #0a1525 0%, #162d4a 40%, #1a4a7a 100%);
display: flex; flex-direction: column; justify-content: center;
padding: 60px 70px;
position: relative; overflow: hidden;
font-family: -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
}
.cover::before {
content: ''; position: absolute; top: -180px; right: -180px;
width: 550px; height: 550px;
background: radial-gradient(circle, rgba(45,106,159,0.2) 0%, transparent 70%);
border-radius: 50%;
}
.cover::after {
content: '🔗'; position: absolute; right: 50px; bottom: 50px;
font-size: 100px; opacity: 0.05;
}
.badge {
display: inline-block; align-self: flex-start;
background: rgba(45,106,159,0.3);
border: 1px solid rgba(45,106,159,0.5);
color: #6a9ad8; padding: 6px 16px; border-radius: 20px;
font-size: 13px; letter-spacing: 2px; margin-bottom: 20px;
}
h1 {
font-size: 40px; font-weight: 700; color: #fff;
line-height: 1.3; margin-bottom: 14px;
max-width: 850px;
}
h1 em {
background: linear-gradient(135deg, #4a8ad8, #8ab8f0);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
font-style: normal;
}
.subtitle {
font-size: 15px; color: rgba(255,255,255,0.55);
line-height: 1.6; margin-bottom: 28px;
max-width: 750px;
}
.stats {
display: flex; gap: 20px; margin-top: auto;
}
.stat-card {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 8px; padding: 12px 18px;
}
.stat-card .num {
font-size: 22px; font-weight: 700; color: #6a9ad8;
}
.stat-card .label {
font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px;
}
.bottom {
margin-top: 32px;
display: flex; justify-content: space-between; align-items: flex-end;
border-top: 1px solid rgba(255,255,255,0.08);
padding-top: 16px;
}
.bottom .left { font-size: 11px; color: rgba(255,255,255,0.35); }
.bottom .right { font-size: 11px; color: rgba(255,255,255,0.35); }
</style>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div class="cover">
<div class="badge">🔗 Agent基础设施 · 行业拐点</div>
<h1>ARD协议落地,Agent拐点到了!<br>但比追风口更重要的,是<em>知道什么不该做</em></h1>
<div class="subtitle">谷歌·微软·英伟达等十几家公司联合发ARD · MCP+A2A+ARD三层协议合围<br>Gartner预测企业Agent嵌入率一年翻8倍,但落地才是真考验</div>
<div class="stats">
<div class="stat-card">
<div class="num">8x</div>
<div class="label">企业Agent普及率年增长</div>
</div>
<div class="stat-card">
<div class="num">3</div>
<div class="label">协议层合围(MCP/A2A/ARD</div>
</div>
<div class="stat-card">
<div class="num">50%</div>
<div class="label">年复合增长率</div>
</div>
</div>
<div class="bottom">
<div class="left">📅 2026年7月5日</div>
<div class="right">一切皆如 · 编辑</div>
</div>
</div>
</body>
</html>