新增:深国际改革方案系列报告索引页 + 更新wiki卡片为系列入口
This commit is contained in:
@@ -0,0 +1,144 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>深国际综合改革方案 — 系列报告</title>
|
||||
<style>
|
||||
:root {
|
||||
--primary: #1a3a5c; --accent: #c8102e; --bg: #f0f2f5;
|
||||
--card: #fff; --text: #2d3436; --muted: #636e72; --border: #dfe6e9;
|
||||
}
|
||||
* { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
body {
|
||||
font-family: "PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
|
||||
background: var(--bg); color: var(--text); line-height: 1.7;
|
||||
}
|
||||
.hero {
|
||||
background: linear-gradient(135deg, var(--primary) 0%, #2c5f8a 100%);
|
||||
color: #fff; padding: 64px 40px 48px; text-align: center;
|
||||
}
|
||||
.hero .tag {
|
||||
display: inline-block; background: var(--accent); padding: 4px 18px;
|
||||
border-radius: 16px; font-size: 12px; letter-spacing: 2px; margin-bottom: 16px;
|
||||
}
|
||||
.hero h1 { font-size: 30px; font-weight: 700; margin-bottom: 8px; }
|
||||
.hero .sub { font-size: 15px; opacity: 0.85; margin-bottom: 24px; }
|
||||
.hero .meta { font-size: 12px; opacity: 0.6; }
|
||||
.hero .meta span { margin: 0 10px; }
|
||||
|
||||
.container { max-width: 960px; margin: 0 auto; padding: 32px 20px; }
|
||||
|
||||
.card {
|
||||
display: flex; gap: 24px; background: var(--card); border-radius: 10px;
|
||||
padding: 28px 32px; margin-bottom: 20px; text-decoration: none;
|
||||
box-shadow: 0 2px 8px rgba(0,0,0,0.05); border: 1px solid var(--border);
|
||||
transition: all 0.2s; color: inherit;
|
||||
}
|
||||
.card:hover { box-shadow: 0 4px 20px rgba(26,58,92,0.12); transform: translateY(-2px); }
|
||||
.card-icon { font-size: 40px; flex-shrink: 0; width: 56px; text-align: center; }
|
||||
.card-body { flex: 1; }
|
||||
.card-body h3 { font-size: 20px; color: var(--primary); margin-bottom: 6px; }
|
||||
.card-body p { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
|
||||
.card-tags { display: flex; gap: 8px; flex-wrap: wrap; }
|
||||
.tag-item {
|
||||
display: inline-block; padding: 2px 10px; border-radius: 10px;
|
||||
font-size: 11px; font-weight: 500;
|
||||
}
|
||||
.tag-strategy { background: #e8f0fe; color: #1a3a5c; }
|
||||
.tag-exec { background: #fff3cd; color: #856404; }
|
||||
.tag-data { background: #e6f4ea; color: #137333; }
|
||||
.tag-policy { background: #fce8e6; color: #c5221f; }
|
||||
|
||||
.stats { display: flex; gap: 24px; margin: 32px 0; flex-wrap: wrap; }
|
||||
.stat-item {
|
||||
flex: 1; min-width: 160px; background: var(--card); border-radius: 8px;
|
||||
padding: 20px 24px; text-align: center; box-shadow: 0 1px 4px rgba(0,0,0,0.04);
|
||||
}
|
||||
.stat-num { font-size: 32px; font-weight: 700; color: var(--primary); }
|
||||
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }
|
||||
|
||||
.footer { text-align: center; padding: 32px 0; color: var(--muted); font-size: 12px; }
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.hero { padding: 36px 20px 32px; }
|
||||
.hero h1 { font-size: 22px; }
|
||||
.card { flex-direction: column; gap: 12px; padding: 20px 24px; }
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="hero">
|
||||
<div class="tag">深 圳 国 际 · 战 略 研 究</div>
|
||||
<h1>深国际向物流综合服务商转型<br>综合改革方案系列报告</h1>
|
||||
<div class="sub">以综合改革为抓手,自上而下谋篇布局 · 基于 Dify 知识库 223 份内部文档</div>
|
||||
<div class="meta">
|
||||
<span>编制:改革办公室(筹)</span>
|
||||
<span>版本:V2.0</span>
|
||||
<span>日期:2026年6月</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="stats">
|
||||
<div class="stat-item">
|
||||
<div class="stat-num">2</div>
|
||||
<div class="stat-label">系列报告</div>
|
||||
</div>
|
||||
<div class="stat-item">
|
||||
<div class="stat-num">223</div>
|
||||
<div class="stat-label">知识库文档</div>
|
||||
</div>
|
||||
<div class="stat-item">
|
||||
<div class="stat-num">50+</div>
|
||||
<div class="stat-label">原始文献出处</div>
|
||||
</div>
|
||||
<div class="stat-item">
|
||||
<div class="stat-num">5</div>
|
||||
<div class="stat-label">领域专家</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h2 style="font-size:18px;color:var(--primary);margin-bottom:16px;padding-left:12px;border-left:4px solid var(--accent);">报告列表</h2>
|
||||
|
||||
<!-- 报告一 -->
|
||||
<a class="card" href="报告/深圳国际综合改革方案.html">
|
||||
<div class="card-icon">📋</div>
|
||||
<div class="card-body">
|
||||
<h3>深圳国际控股有限公司向物流综合服务商转型综合改革方案</h3>
|
||||
<p>总纲报告 —— 基于"12345"战略框架,六大改革举措(对标调研/考核机制/容错纠错/薪酬激励/授权体系/协同机制),含转型基础、对标研究、数字化绿色转型、国资改革政策融合、实施路线图与保障机制,附 50+ 原始文献出处。</p>
|
||||
<div class="card-tags">
|
||||
<span class="tag-item tag-strategy">战略框架</span>
|
||||
<span class="tag-item tag-policy">改革方案</span>
|
||||
<span class="tag-item tag-data">对标研究</span>
|
||||
<span class="tag-item tag-exec">路线图</span>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<!-- 报告二 -->
|
||||
<a class="card" href="报告/深国际改革方案_专家头脑风暴.html">
|
||||
<div class="card-icon">🧠</div>
|
||||
<div class="card-body">
|
||||
<h3>专家头脑风暴:增强可执行性专题研讨</h3>
|
||||
<p>执行落地报告 —— 五位领域专家(国企改革/物流战略/组织变革/财务资本/数字化转型)结构化研讨,输出5个速赢项目、制度设计量化参数、REITs三阶段财务路线、数字化分阶段方案、10项P0-P3行动清单。</p>
|
||||
<div class="card-tags">
|
||||
<span class="tag-item tag-exec">速赢项目</span>
|
||||
<span class="tag-item tag-data">量化参数</span>
|
||||
<span class="tag-item tag-strategy">三阶段路线</span>
|
||||
<span class="tag-item tag-policy">行动清单</span>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
深圳国际控股有限公司 · 改革办公室(筹) · 内部参考<br>
|
||||
基于 Dify 智能知识库平台 · 二二三个文档深度分析
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user