<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>龟山汉墓 - 西汉楚王陵墓的“活标本”</title>
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;700;900&family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
<style>
:root {
--han-red: #8B1A1A;
--han-red-dark: #5C0A0A;
--bronze-gold: #C5A059;
--paper-white: #F9F7F1;
--ink-black: #1A1A1A;
--stone-grey: #E5E5E5;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Noto Sans SC', sans-serif;
background-color: var(--paper-white);
color: var(--ink-black);
width: 1200px;
height: 3000px;
overflow: hidden;
}
.poster-container {
width: 100%;
height: 100%;
display: grid;
grid-template-rows: auto 1fr auto;
position: relative;
background-image:
linear-gradient(var(--paper-white) 2px, transparent 2px),
linear-gradient(90deg, var(--paper-white) 2px, transparent 2px),
linear-gradient(rgba(197, 160, 89, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(197, 160, 89, 0.1) 1px, transparent 1px);
background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
}
/* Header */
.header {
background: var(--han-red);
color: var(--bronze-gold);
padding: 60px 80px;
position: relative;
border-bottom: 12px solid var(--bronze-gold);
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5a059' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
opacity: 0.6;
}
.title-group {
z-index: 1;
}
.main-title {
font-family: 'Noto Serif SC', serif;
font-size: 100px;
font-weight: 900;
letter-spacing: 10px;
text-shadow: 4px 4px 0px var(--han-red-dark);
margin-bottom: 20px;
line-height: 1.1;
}
.sub-title {
font-size: 40px;
font-weight: 400;
letter-spacing: 4px;
opacity: 0.9;
border-left: 6px solid var(--bronze-gold);
padding-left: 30px;
}
.seal-stamp {
width: 180px;
height: 180px;
border: 6px solid var(--bronze-gold);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Noto Serif SC', serif;
font-size: 50px;
font-weight: bold;
color: var(--paper-white);
background: rgba(0,0,0,0.2);
transform: rotate(-5deg);
z-index: 1;
}
/* Main Content */
.content-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 60px;
padding: 60px 80px;
align-content: start;
}
.section-card {
background: white;
border: 2px solid var(--stone-grey);
border-radius: 20px;
padding: 50px;
position: relative;
box-shadow: 0 15px 40px rgba(139, 26, 26, 0.08);
overflow: hidden;
}
.section-card::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 8px;
height: 100%;
background: var(--han-red);
}
.section-card.full-width {
grid-column: span 2;
}
.section-title {
font-family: 'Noto Serif SC', serif;
font-size: 56px;
color: var(--han-red);
margin-bottom: 40px;
display: flex;
align-items: center;
font-weight: 700;
}
.section-title span {
background: var(--han-red);
color: var(--bronze-gold);
width: 70px;
height: 70px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
margin-right: 20px;
}
.section-content {
font-size: 32px;
line-height: 1.6;
color: #333;
}
.highlight-text {
color: var(--han-red);
font-weight: bold;
}
.highlight-box {
background: #FBF7F0;
border-left: 6px solid var(--bronze-gold);
padding: 25px;
margin: 20px 0;
font-style: italic;
}
/* Specific Section Styles */
/* History & Discovery */
.info-item {
margin-bottom: 25px;
display: flex;
gap: 20px;
}
.info-label {
font-weight: bold;
min-width: 160px;
color: var(--han-red-dark);
}
/* Structure Visualization */
.structure-viz {
display: flex;
justify-content: space-between;
align-items: center;
margin: 40px 0;
position: relative;
height: 400px;
background: #222;
border-radius: 15px;
padding: 40px;
color: white;
}
.tunnel-graphic {
width: 80%;
height: 200px;
position: relative;
margin: 0 auto;
}
.tunnel-line {
position: absolute;
width: 100%;
height: 40px;
background: linear-gradient(90deg, #555 0%, #999 50%, #555 100%);
border-top: 2px dashed var(--bronze-gold);
border-bottom: 2px dashed var(--bronze-gold);
}
.tunnel-line.top { top: 0; }
.tunnel-line.bottom { bottom: 0; }
.tunnel-label {
position: absolute;
font-size: 24px;
color: var(--bronze-gold);
}
.stat-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
margin-top: 30px;
}
.stat-item {
text-align: center;
background: rgba(139, 26, 26, 0.05);
padding: 25px;
border-radius: 15px;
}
.stat-number {
font-size: 56px;
font-weight: 900;
color: var(--han-red);
font-family: 'Noto Serif SC', serif;
display: block;
}
.stat-desc {
font-size: 24px;
color: #666;
}
/* Mysteries */
.mystery-list {
list-style: none;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
}
.mystery-item {
background: #FFF8F8;
border: 2px solid var(--han-red);
border-radius: 15px;
padding: 30px;
position: relative;
}
.mystery-item h4 {
color: var(--han-red-dark);
font-size: 36px;
margin-bottom: 15px;
font-family: 'Noto Serif SC', serif;
}
.mystery-icon {
position: absolute;
top: 20px;
right: 20px;
font-size: 40px;
color: var(--han-red);
opacity: 0.2;
font-weight: bold;
}
/* Artifacts */
.artifact-card {
display: flex;
gap: 30px;
margin-bottom: 30px;
align-items: center;
background: #F9F9F9;
padding: 20px;
border-radius: 15px;
}
.artifact-img-placeholder {
width: 200px;
height: 200px;
background: #E0D8C8;
border: 4px solid white;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
display: flex;
align-items: center;
justify-content: center;
color: #666;
font-size: 20px;
text-align: center;
font-family: 'Noto Serif SC', serif;
}
/* Footer */
.footer {
background: var(--ink-black);
color: var(--paper-white);
padding: 40px 80px;
text-align: center;
border-top: 8px solid var(--bronze-gold);
font-size: 28px;
}
.footer-info {
display: flex;
justify-content: space-around;
margin-top: 20px;
font-size: 24px;
opacity: 0.8;
}
/* Utility */
.divider {
height: 2px;
background: var(--stone-grey);
margin: 40px 0;
}
.tag {
display: inline-block;
background: var(--bronze-gold);
color: white;
padding: 5px 15px;
border-radius: 8px;
font-size: 24px;
margin-right: 10px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="poster-container">
<!-- Header -->
<header class="header">
<div class="title-group">
<h1 class="main-title">龟山汉墓</h1>
<div class="sub-title">西汉楚王陵墓的“活标本” · 工程精度堪称中华一绝</div>
</div>
<div class="seal-stamp">刘注<br>私印</div>
</header>
<!-- Main Grid -->
<div class="content-grid">
<!-- 1. History Background -->
<div class="section-card">
<div class="section-title"><span>01</span>历史背景</div>
<div class="section-content">
<div class="info-item">
<div class="info-label">墓主</div>
<div>西汉第六代楚王 <span class="highlight-text">刘注</span> 及夫人合葬墓</div>
</div>
<div class="info-item">
<div class="info-label">年代</div>
<div>汉武帝鼎盛时期(约公元前127年),历时13年建成</div>
</div>
<div class="info-item">
<div class="info-label">确认</div>
<div>1985年征集到 <span class="highlight-text">龟钮银印</span> 确认墓主身份</div>
</div>
<div class="highlight-box">
徐州唯一确定墓主的汉代楚王墓,体现“事死如事生”厚葬理念。
</div>
</div>
</div>
<!-- 2. Discovery -->
<div class="section-card">
<div class="section-title"><span>02</span>发现与发掘</div>
<div class="section-content">
<ul style="list-style: none; line-height: 2.2;">
<li><strong>1972年:</strong>发现1号墓(竖穴石坑)</li>
<li><strong>1981年:</strong>采石意外发现2号墓(主墓)</li>
<li><strong>1981-92年:</strong>南京博物院与徐州博物馆多次发掘</li>
<li><strong>1993年:</strong>原址建馆,现为国家AAAA级景区</li>
</ul>
<div style="margin-top: 20px; font-size: 28px; color: #666;">
<em>注:早年(魏晋)已被盗掘,随葬品极少,但塞石封堵痕迹仍存。</em>
</div>
</div>
</div>
<!-- 3. Structure & Engineering (Full Width) -->
<div class="section-card full-width">
<div class="section-title"><span>03</span>工程奇迹:几乎掏空整座山</div>
<div class="section-content">
<div class="structure-viz">
<div style="text-align: left; width: 30%;">
<h3 style="color: var(--bronze-gold); font-size: 40px; margin-bottom: 20px;">横穴崖洞式</h3>
<p style="font-size: 28px; line-height: 1.5;">两条平行甬道,各长56米,开口呈喇叭形,精度达1/10000。</p>
</div>
<div class="tunnel-graphic">
<div class="tunnel-line top">
<div class="tunnel-label" style="right: 10px; top: -40px;">刘注墓(南)</div>
</div>
<div style="position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--bronze-gold); font-size: 24px; border: 2px solid var(--bronze-gold); padding: 10px;">
间距19米
</div>
<div class="tunnel-line bottom">
<div class="tunnel-label" style="right: 10px; bottom: -40px;">夫人墓(北)</div>
</div>
<div style="position: absolute; left: -60px; top: 50%; color: #fff;">入</div>
<div style="position: absolute; right: -60px; top: 50%; color: #fff;">出</div>
</div>
<div style="text-align: right; width: 30%;">
<h3 style="color: var(--bronze-gold); font-size: 40px; margin-bottom: 20px;">15间墓室</h3>
<p style="font-size: 28px; line-height: 1.5;">前殿、棺室、乐舞厅、厨房...宛如地下宫殿。</p>
</div>
</div>
<div class="stat-grid">
<div class="stat-item">
<span class="stat-number">1/10000</span>
<span class="stat-desc">甬道最大偏差(5毫米)</span>
</div>
<div class="stat-item">
<span class="stat-number">6-7吨</span>
<span class="stat-desc">每块塞石重量</span>
</div>
<div class="stat-item">
<span class="stat-number">2600m³</span>
<span class="stat-desc">开凿容积</span>
</div>
</div>
</div>
</div>
<!-- 4. Artifacts -->
<div class="section-card">
<div class="section-title"><span>04</span>出土文物</div>
<div class="section-content">
<p style="margin-bottom: 20px; color: #666;">因早期盗掘,器物稀少,但件件珍贵:</p>
<div class="artifact-card">
<div class="artifact-img-placeholder">龟钮<br>银印</div>
<div>
<h4 style="color: var(--han-red);">镇馆之宝</h4>
<p>确认墓主身份的关键证据,刘注私印。</p>
</div>
</div>
<div class="artifact-card">
<div class="artifact-img-placeholder">第百<br>上石</div>
<div>
<h4 style="color: var(--han-red);">薄葬宣言</h4>
<p>刻石自白“墓中无金玉珠宝”,讽刺地未能防盗。</p>
</div>
</div>
</div>
</div>
<!-- 5. Mysteries -->
<div class="section-card">
<div class="section-title"><span>05</span>七大未解之谜</div>
<div class="section-content">
<ul class="mystery-list">
<li class="mystery-item">
<div class="mystery-icon">?</div>
<h4>精度之谜</h4>
<p>无现代仪器,如何打出1/10000精度的甬道?</p>
</li>
<li class="mystery-item">
<div class="mystery-icon">?</div>
<h4>测量之谜</h4>
<p>石柱如何正对龟山最高点?</p>
</li>
<li class="mystery-item">
<div class="mystery-icon">?</div>
<h4>塞石之谜</h4>
<p>6-7吨巨石何处来?如何运?</p>
</li>
<li class="mystery-item">
<div class="mystery-icon">?</div>
<h4>迎宾之谜</h4>
<p>北墙真人大小“影子”何来?</p>
</li>
<li class="mystery-item">
<div class="mystery-icon">?</div>
<h4>星宿之谜</h4>
<p>石包排列象征何意?</p>
</li>
<li class="mystery-item">
<div class="mystery-icon">?</div>
<h4>壶门之谜</h4>
<p>过道不规则是否误凿?</p>
</li>
</ul>
</div>
</div>
<!-- 6. Value (Bottom Banner Style) -->
<div class="section-card full-width" style="background: var(--han-red); color: white; border: none;">
<div class="section-title" style="color: white; margin-bottom: 20px;"><span style="background: var(--bronze-gold); color: var(--han-red);">06</span>文化与旅游价值</div>
<div class="section-content" style="color: rgba(255,255,255,0.9);">
<div style="display: flex; justify-content: space-between; align-items: center;">
<div style="width: 65%;">
<h3 style="font-size: 42px; color: var(--bronze-gold); margin-bottom: 20px;">徐州汉文化“活名片”</h3>
<p>全国重点文保单位,AAAA级景区。2024年接待游客超188万,数字化展厅与汉服打卡增强沉浸感。</p>
</div>
<div style="width: 30%; text-align: right;">
<div style="font-size: 24px; opacity: 0.8;">门票约80元</div>
<div style="font-size: 24px; opacity: 0.8;">开放 8:30-17:30</div>
<div style="font-size: 24px; opacity: 0.8; margin-top: 10px;">徐州鼓楼区襄王北路3号</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div>决策船长 · 历史文化深度解析系列</div>
<div class="footer-info">
<span>资料来源:维基百科 | 百度百科 | 官方考古报告</span>
<span>结论:龟山汉墓是连接古今的文化桥梁,汉代工匠智慧的见证</span>
</div>
</footer>
</div>
</body>
</html>