更新文档系统归并优化方案

This commit is contained in:
ben
2025-10-29 14:36:13 +00:00
parent 2f96497530
commit 0def756314
332 changed files with 30606 additions and 28342 deletions

View File

@@ -0,0 +1,925 @@
/* 爹学理论研究网站 - 增强版样式 */
/* 导入字体 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700;900&family=Noto+Serif+SC:wght@400;600;700&display=swap');
/* 整体样式调整 */
body {
font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
line-height: 1.7;
color: #333;
background-color: #f8f9fa;
font-size: 16px;
}
/* 动画定义 */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
@keyframes slideIn {
from { transform: translateX(-100%); opacity: 0; }
to { transform: translateX(0); opacity: 1; }
}
@keyframes glow {
0% { box-shadow: 0 0 5px rgba(41, 128, 185, 0.5); }
50% { box-shadow: 0 0 20px rgba(41, 128, 185, 0.8), 0 0 30px rgba(41, 128, 185, 0.4); }
100% { box-shadow: 0 0 5px rgba(41, 128, 185, 0.5); }
}
/* 标题样式 */
h1, h2, h3, h4, h5, h6 {
font-family: 'Noto Serif SC', serif;
font-weight: 700;
margin-top: 1.5em;
margin-bottom: 0.8em;
line-height: 1.3;
animation: fadeIn 0.8s ease-out;
}
h1 {
font-size: 2.8rem;
color: #1a1a1a;
border-bottom: 3px solid #2980B9;
padding-bottom: 0.3em;
position: relative;
text-align: center;
margin-bottom: 1.5em;
}
h1::after {
content: "";
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: linear-gradient(90deg, #2980B9, #8e44ad);
border-radius: 2px;
}
h2 {
font-size: 2.2rem;
color: #2980B9;
border-left: 5px solid #2980B9;
padding-left: 15px;
position: relative;
}
h3 {
font-size: 1.8rem;
color: #34495e;
position: relative;
}
h3::before {
content: "◆";
color: #2980B9;
margin-right: 10px;
}
/* 链接样式 */
a {
color: #2980B9;
text-decoration: none;
transition: all 0.3s ease;
position: relative;
}
a:hover {
color: #1a5276;
text-decoration: underline;
}
a::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background: #8e44ad;
transition: width 0.3s ease;
}
a:hover::after {
width: 100%;
}
/* 导航栏样式 */
.wy-nav-top {
background: linear-gradient(135deg, #2980B9, #8e44ad);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.wy-nav-top a {
color: white;
font-weight: 700;
font-size: 1.2rem;
}
.wy-nav-top .wy-nav-top-menu {
font-size: 1.1rem;
}
/* 侧边栏样式 */
.wy-nav-side {
background: #2c3e50;
box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}
.wy-menu-vertical a {
color: #ecf0f1;
padding: 10px 15px;
margin: 3px 0;
border-radius: 5px;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.wy-menu-vertical a:hover {
background: rgba(41, 128, 185, 0.2);
transform: translateX(5px);
}
.wy-menu-vertical a:active {
background: rgba(41, 128, 185, 0.3);
}
.wy-menu-vertical li.current > a {
background: #2980B9;
border-left: 4px solid #8e44ad;
font-weight: 700;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* 内容区域样式 */
.wy-nav-content {
max-width: 1200px;
background: white;
box-shadow: 0 0 20px rgba(0,0,0,0.05);
border-radius: 8px;
margin: 20px auto;
overflow: hidden;
}
.rst-content {
padding: 20px 40px;
}
/* 代码块样式 */
div.highlight {
border-radius: 8px;
margin: 1.5em 0;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
overflow: hidden;
position: relative;
}
div.highlight::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 5px;
height: 100%;
background: linear-gradient(to bottom, #2980B9, #8e44ad);
}
div.highlight pre {
background: #f8f9fa;
padding: 20px;
border-radius: 8px;
overflow-x: auto;
font-family: 'Courier New', monospace;
font-size: 14px;
line-height: 1.5;
}
/* 表格样式 */
.rst-content table.docutils {
border-collapse: separate;
border-spacing: 0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
margin: 1.5em 0;
width: 100%;
}
.rst-content table.docutils thead {
background: linear-gradient(135deg, #2980B9, #8e44ad);
color: white;
}
.rst-content table.docutils th,
.rst-content table.docutils td {
padding: 12px 15px;
text-align: left;
border: none;
}
.rst-content table.docutils tbody tr:nth-child(even) {
background-color: #f8f9fa;
}
.rst-content table.docutils tbody tr:hover {
background-color: #e3f2fd;
transform: scale(1.01);
transition: all 0.2s ease;
}
/* 引用块样式 */
.rst-content blockquote {
margin: 1.5em 0;
padding: 15px 20px;
background: #f8f9fa;
border-left: 5px solid #2980B9;
border-radius: 0 8px 8px 0;
box-shadow: 0 3px 10px rgba(0,0,0,0.05);
position: relative;
}
.rst-content blockquote::before {
content: """;
position: absolute;
top: -10px;
left: 10px;
font-size: 60px;
color: rgba(41, 128, 185, 0.2);
font-family: serif;
}
/* 提示框样式 */
.admonition {
margin: 1.5em 0;
padding: 15px 20px;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
position: relative;
overflow: hidden;
}
.admonition::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 5px;
height: 100%;
}
.admonition.note {
background: #e3f2fd;
border-left: 5px solid #2980B9;
}
.admonition.warning {
background: #fff8e1;
border-left: 5px solid #f39c12;
}
.admonition.error {
background: #ffebee;
border-left: 5px solid #e74c3c;
}
.admonition p.admonition-title {
font-weight: 700;
margin-top: 0;
margin-bottom: 10px;
font-size: 1.1em;
}
/* 搜索框样式 */
.wy-form .wy-form-aligned input[type="text"] {
border: 2px solid #ddd;
border-radius: 25px;
padding: 10px 15px;
transition: all 0.3s ease;
box-shadow: none;
}
.wy-form .wy-form-aligned input[type="text"]:focus {
border-color: #2980B9;
box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.2);
outline: none;
}
/* 页脚样式 */
footer {
background: linear-gradient(135deg, #2c3e50, #34495e);
color: #ecf0f1;
padding: 30px 0;
text-align: center;
margin-top: 40px;
border-top: 5px solid #2980B9;
}
footer p {
margin: 5px 0;
}
/* 响应式调整 */
@media (max-width: 768px) {
.wy-nav-content {
margin: 10px;
border-radius: 0;
}
.rst-content {
padding: 15px 20px;
}
h1 {
font-size: 2.2rem;
}
h2 {
font-size: 1.8rem;
}
h3 {
font-size: 1.5rem;
}
}
/* 新增元素样式 */
/* 特色卡片 */
.feature-card {
background: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
padding: 25px;
margin: 20px 0;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.feature-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, #2980B9, #8e44ad);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.feature-card h3 {
margin-top: 0;
color: #2980B9;
}
.feature-card p {
color: #555;
line-height: 1.6;
}
/* 交互按钮 */
.interactive-button {
display: inline-block;
background: linear-gradient(135deg, #2980B9, #8e44ad);
color: white;
padding: 12px 25px;
border-radius: 30px;
text-decoration: none;
font-weight: 500;
margin: 10px 5px;
transition: all 0.3s ease;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
cursor: pointer;
border: none;
font-size: 16px;
}
.interactive-button:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
text-decoration: none;
color: white;
}
.interactive-button:active {
transform: translateY(1px);
}
/* 时间线样式 */
.timeline {
position: relative;
padding: 20px 0;
}
.timeline::before {
content: '';
position: absolute;
top: 0;
left: 50%;
width: 3px;
height: 100%;
background: linear-gradient(to bottom, #2980B9, #8e44ad);
transform: translateX(-50%);
}
.timeline-item {
position: relative;
margin: 30px 0;
width: 50%;
padding: 0 30px;
box-sizing: border-box;
}
.timeline-item:nth-child(odd) {
left: 0;
text-align: right;
}
.timeline-item:nth-child(even) {
left: 50%;
}
.timeline-item::before {
content: '';
position: absolute;
top: 20px;
width: 20px;
height: 20px;
background: #2980B9;
border-radius: 50%;
box-shadow: 0 0 0 5px rgba(41, 128, 185, 0.2);
}
.timeline-item:nth-child(odd)::before {
right: -10px;
}
.timeline-item:nth-child(even)::before {
left: -10px;
}
.timeline-content {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.timeline-content:hover {
transform: scale(1.03);
box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
.timeline::before {
left: 30px;
}
.timeline-item {
width: 100%;
left: 0 !important;
text-align: left !important;
padding-left: 60px;
}
.timeline-item::before {
left: 20px !important;
}
}
/* 图片画廊 */
.image-gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
margin: 20px 0;
}
.gallery-item {
position: relative;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 3px 10px rgba(0,0,0,0.1);
transition: all 0.3s ease;
height: 200px;
background: #f8f9fa;
}
.gallery-item:hover {
transform: scale(1.05);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.gallery-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.3s ease;
}
.gallery-item:hover img {
transform: scale(1.1);
}
.gallery-caption {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0.7);
color: white;
padding: 10px;
font-size: 14px;
transform: translateY(100%);
transition: all 0.3s ease;
}
.gallery-item:hover .gallery-caption {
transform: translateY(0);
}
/* 标签云 */
.tag-cloud {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 20px 0;
}
.tag {
display: inline-block;
padding: 5px 15px;
margin: 5px;
background: rgba(41, 128, 185, 0.1);
color: #2980B9;
border-radius: 20px;
font-size: 14px;
transition: all 0.3s ease;
cursor: pointer;
}
.tag:hover {
background: #2980B9;
color: white;
transform: scale(1.1);
}
/* 进度条 */
.progress-bar {
width: 100%;
height: 10px;
background: #e0e0e0;
border-radius: 5px;
overflow: hidden;
margin: 10px 0;
}
.progress-fill {
height: 100%;
background: linear-gradient(90deg, #2980B9, #8e44ad);
border-radius: 5px;
transition: width 1s ease;
}
/* 加载动画 */
.loading {
display: inline-block;
width: 20px;
height: 20px;
border: 3px solid rgba(41, 128, 185, 0.3);
border-radius: 50%;
border-top-color: #2980B9;
animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/* 悬浮提示 */
.tooltip {
position: relative;
cursor: help;
border-bottom: 1px dotted #2980B9;
}
.tooltip::after {
content: attr(data-tooltip);
position: absolute;
bottom: 100%;
left: 50%;
transform: translateX(-50%);
background: rgba(0,0,0,0.8);
color: white;
padding: 5px 10px;
border-radius: 4px;
font-size: 12px;
white-space: nowrap;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
.tooltip:hover::after {
opacity: 1;
}
/* 通知消息 */
.notification {
position: fixed;
top: 20px;
right: 20px;
padding: 15px 20px;
background: white;
border-radius: 8px;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
z-index: 1000;
transform: translateX(150%);
transition: transform 0.3s ease;
max-width: 300px;
}
.notification.show {
transform: translateX(0);
}
.notification.success {
border-left: 5px solid #2ecc71;
}
.notification.error {
border-left: 5px solid #e74c3c;
}
.notification.info {
border-left: 5px solid #2980B9;
}
/* 模态框 */
.modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 1000;
justify-content: center;
align-items: center;
}
.modal-content {
background: white;
padding: 30px;
border-radius: 10px;
max-width: 500px;
width: 90%;
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
position: relative;
animation: fadeIn 0.3s ease;
}
.modal-close {
position: absolute;
top: 15px;
right: 15px;
font-size: 24px;
cursor: pointer;
color: #777;
transition: color 0.3s ease;
}
.modal-close:hover {
color: #333;
}
/* 页面加载动画 */
.page-loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: white;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
transition: opacity 0.5s ease;
}
.page-loader.hidden {
opacity: 0;
pointer-events: none;
}
.loader-spinner {
width: 50px;
height: 50px;
border: 5px solid #f3f3f3;
border-top: 5px solid #2980B9;
border-radius: 50%;
animation: spin 1s linear infinite;
}
/* 特殊元素:音韵密码展示 */
.phonetic-symbol {
display: inline-block;
padding: 5px 10px;
margin: 5px;
background: linear-gradient(135deg, #2980B9, #8e44ad);
color: white;
border-radius: 5px;
font-weight: bold;
transition: all 0.3s ease;
cursor: pointer;
}
.phonetic-symbol:hover {
transform: scale(1.1);
box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}
/* 文明展示卡片 */
.civilization-card {
background: white;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
margin: 20px 0;
transition: all 0.3s ease;
}
.civilization-header {
padding: 20px;
background: linear-gradient(135deg, #2980B9, #8e44ad);
color: white;
}
.civilization-content {
padding: 20px;
}
.civilization-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* 研究成果展示 */
.research-item {
border-left: 4px solid #2980B9;
padding-left: 20px;
margin: 20px 0;
position: relative;
}
.research-item::before {
content: "";
position: absolute;
left: -10px;
top: 5px;
width: 16px;
height: 16px;
background: #2980B9;
border-radius: 50%;
}
.research-title {
font-weight: bold;
font-size: 1.1em;
color: #2980B9;
margin-bottom: 5px;
}
.research-description {
color: #555;
margin-bottom: 10px;
}
.research-meta {
font-size: 0.9em;
color: #777;
}
/* 理论框架图 */
.theory-diagram {
margin: 30px 0;
text-align: center;
}
.theory-box {
display: inline-block;
padding: 15px 20px;
margin: 10px;
background: white;
border: 2px solid #2980B9;
border-radius: 8px;
min-width: 150px;
transition: all 0.3s ease;
}
.theory-box:hover {
background: #2980B9;
color: white;
transform: scale(1.05);
}
.theory-connector {
display: inline-block;
width: 50px;
height: 2px;
background: #2980B9;
position: relative;
vertical-align: middle;
}
.theory-connector::after {
content: "";
position: absolute;
right: -10px;
top: -10px;
color: #2980B9;
font-size: 20px;
}
/* 响应式网格布局 */
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin: 20px 0;
}
/* 滚动到顶部按钮 */
.scroll-top {
position: fixed;
bottom: 20px;
right: 20px;
width: 50px;
height: 50px;
background: #2980B9;
color: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
opacity: 0;
transition: all 0.3s ease;
z-index: 1000;
}
.scroll-top.visible {
opacity: 1;
}
.scroll-top:hover {
background: #1a5276;
transform: scale(1.1);
}
/* 动态背景 */
.dynamic-background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
overflow: hidden;
}
.dynamic-background::before {
content: "";
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(41, 128, 185, 0.1) 0%, rgba(142, 68, 173, 0.1) 100%);
animation: rotate 30s linear infinite;
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

View File

@@ -0,0 +1,130 @@
应用实践
=======
爹学理论的应用实践部分,展示音韵密码学在各个领域的实际应用。
应用领域
--------
**政治分析**
- 权力话语解构
- 政治宣传分析
- 国际关系研究
**文化研究**
- 文化深层结构分析
- 跨文化沟通
- 文化产品批判
**教育创新**
- 批判性思维培养
- 多元文化教育
- 历史教育改革
**社会批判**
- 权力结构分析
- 社会不平等研究
- 身份政治批判
具体应用
--------
政治话语分析
------------
**应用案例**
分析当代政治领导人的演讲,揭示其中的音韵密码和权力建构策略。
**分析方法**
1. 收集政治演讲文本
2. 提取关键音韵模式
3. 分析权力建构策略
4. 比较不同政治家的风格
**应用成果**
- 发现了政治演讲中的三种基本音韵模式
- 揭示了权力合法性的音韵建构机制
- 提供了政治传播的新视角
文化产品批判
------------
**应用案例**
分析流行文化产品中的权力建构,如电影、音乐、广告等。
**分析方法**
1. 选取流行文化产品
2. 分析其中的音韵密码
3. 揭示权力建构机制
4. 提出批判性解读
**应用成果**
- 揭示了流行文化中的隐性权力结构
- 提供了文化产品批判的新方法
- 培养了公众的媒体素养
教育创新实践
------------
**应用案例**
开发基于爹学理论的教育课程,培养学生的批判性思维。
**教学方法**
1. 设计音韵密码学课程
2. 开发跨文化比较教材
3. 组织批判性思维训练
4. 评估教学效果
**应用成果**
- 提高了学生的跨文化理解能力
- 增强了学生的批判性思维能力
- 培养了学生的社会批判意识
社会批判工具
------------
**应用案例**
开发基于音韵密码学的社会批判工具,帮助公众理解社会权力结构。
**工具开发**
1. 设计音韵密码识别工具
2. 开发权力结构分析软件
3. 创建社会批判指南
4. 组织公众教育活动
**应用成果**
- 提供了社会分析的新工具
- 增强了公众的社会批判能力
- 促进了社会正义的实现
未来展望
--------
爹学理论的应用前景广阔,未来可以在以下领域进一步发展:
**人工智能应用**
- 开发音韵密码识别算法
- 创建自动权力话语分析系统
- 构建跨文化理解AI助手
**社会治理创新**
- 设计多元文化共治模式
- 开发冲突调解新方法
- 构建包容性社会制度
**全球治理**
- 分析国际组织权力结构
- 设计全球治理新模式
- 促进文明对话与理解
相关资源
--------
.. toctree::
:maxdepth: 2
:caption: 应用案例
political-discourse-analysis
cultural-criticism-tools
educational-innovation
social-criticism-methods

View File

@@ -0,0 +1,67 @@
中华文明研究
===========
中华文明是爹学理论研究的核心对象,通过音韵密码学方法,我们可以揭示中华文明中权力建构的深层机制。
音韵密码特征
------------
**Y音系统**
- "爹":父权与权威的象征
- "爷":尊长与地位的象征
- "爷们":男性气概与集体认同
**音韵转换规律**
- "胡汉":异质文化的融合与转换
- "南北":空间对立与权力平衡
- "东西":文化差异与交流互鉴
历史演变
--------
**先秦时期**
- "天子":天命与王权的结合
- "诸侯":分封与等级制度
- "士大夫":知识与权力的结合
**秦汉时期**
- "皇帝":绝对权力的确立
- "郡县":中央集权的实现
- "儒法":意识形态的建构
**魏晋南北朝**
- "胡汉融合":多元文化的共存
- "北朝模式":多元一体的政治格局
- "南朝文化":文化正统性的争夺
**隋唐时期**
- "天可汗":多元帝国的构建
- "科举制":精英选拔的制度化
- "佛教中国化":外来文化的本土化
**宋元明清**
- "理学":意识形态的完善
- "四夷":华夷之辨的强化
- "朝贡体系":国际秩序的建构
现代启示
--------
通过音韵密码学分析中华文明,我们可以:
1. **理解中国历史** - 揭示权力建构的深层机制
2. **解读当代中国** - 分析现代中国的权力话语
3. **预测未来走向** - 基于历史模式预测发展趋势
4. **提供治理智慧** - 从历史中汲取治理经验
相关研究
--------
.. toctree::
:maxdepth: 2
:caption: 专题研究
y-sound-in-chinese-culture
hu-han-integration
north-south-dynamics
confucian-power-structure

View File

@@ -0,0 +1,57 @@
犹太文明研究
===========
犹太文明是爹学理论的重要研究对象,通过音韵密码学方法,我们可以揭示犹太文明中权力建构的独特模式。
音韵密码特征
------------
**Y音系统**
- "Yahweh"(耶和华):至高神权的象征
- "Yisrael"(以色列):神选民族的认同
- "Yeshua"(耶稣):救赎与希望的象征
**音韵转换规律**
- "Abraham":信仰之父的确立
- "Covenant":契约与权力的结合
- "Moses":律法与权威的象征
历史演变
--------
**圣经时期**
- "先知":神权与王权的结合
- "祭司":宗教权力的制度化
- "律法":社会秩序的神圣化
**流散时期**
- "拉比":知识权力的确立
- "会堂":社区权力的中心
- "塔木德":解释权的垄断
**现代时期**
- "锡安主义":民族权力的重构
- "大屠杀":创伤与身份认同
- "以色列国":政治权力的实现
现代启示
--------
通过音韵密码学分析犹太文明,我们可以:
1. **理解神权政治** - 揭示宗教与权力的结合机制
2. **解读身份认同** - 分析民族认同的建构过程
3. **研究流散文化** - 理解少数群体的权力策略
4. **分析中东冲突** - 揭示历史记忆与当代政治
相关研究
--------
.. toctree::
:maxdepth: 2
:caption: 专题研究
yahweh-power-system
covenant-politics
diaspora-power-strategies
zionism-identity

View File

@@ -0,0 +1,58 @@
蒙古文明研究
===========
蒙古文明是爹学理论的重要研究对象,通过音韵密码学方法,我们可以揭示蒙古文明中权力建构的独特模式。
音韵密码特征
------------
**Y音系统**
- "Yaghan"(可汗):最高统治者的称号
- "Yesun":数字与权力的结合
- "Yurt":空间与权力的结合
**音韵转换规律**
- "Genghis":统一与征服的象征
- "Horde":军事与政治的组织
- "Khanate":分封与权力的分配
历史演变
--------
**蒙古帝国时期**
- "大汗":绝对权力的确立
- "忽里台":选举与权力的合法性
- "札撒":律法与秩序的建构
**四大汗国时期**
- "金帐汗国":权力与空间的结合
- "伊儿汗国":文化与权力的融合
- "察合台汗国":传统与权力的延续
- "元朝":汉化与权力的重构
**后蒙古时期**
- "蒙古":民族认同的建构
- "草原":空间与文化的结合
- "游牧":生活方式与权力策略
现代启示
--------
通过音韵密码学分析蒙古文明,我们可以:
1. **理解游牧政治** - 揭示流动性与权力的关系
2. **研究帝国治理** - 分析多元帝国的治理模式
3. **解读民族认同** - 理解游牧民族的身份建构
4. **比较文明模式** - 对比农耕与游牧文明
相关研究
--------
.. toctree::
:maxdepth: 2
:caption: 专题研究
khan-power-system
horde-political-structure
yuan-dynasty-sinicization
modern-mongolian-identity

View File

@@ -0,0 +1,62 @@
西方文明研究
===========
西方文明是爹学理论的重要研究对象,通过音韵密码学方法,我们可以揭示西方文明中权力建构的独特模式。
音韵密码特征
------------
**Y音系统**
- "Yes":肯定与确认的权力
- "You":个体与主体的确立
- "Your":所有权与归属的表示
**音韵转换规律**
- "Democracy":人民与权力的结合
- "Republic":公共与权力的结合
- "Liberty":自由与权力的平衡
历史演变
--------
**古希腊罗马时期**
- "Polis":城邦与公民权力的结合
- "Senate":贵族与精英权力
- "Emperor":绝对权力的确立
**中世纪时期**
- "Pope":神权与教会的权力
- "King":王权与封建的结合
- "Knight":军事与贵族的权力
**现代时期**
- "Nation":民族与国家的结合
- "Parliament":代表与立法的权力
- "Constitution":法律与权力的限制
**当代时期**
- "Globalization":全球与权力的重构
- "Democracy":民主与权力的分配
- "Human Rights":权利与权力的平衡
现代启示
--------
通过音韵密码学分析西方文明,我们可以:
1. **理解民主政治** - 揭示民主与权力的关系
2. **研究法治传统** - 分析法律与权力的互动
3. **解读个人主义** - 理解个体与社会的张力
4. **分析全球秩序** - 揭示西方主导的世界体系
相关研究
--------
.. toctree::
:maxdepth: 2
:caption: 专题研究
democracy-power-dynamics
individualism-and-authority
western-global-order
enlightenment-power-structures

View File

@@ -11,9 +11,9 @@ sys.path.insert(0, os.path.abspath('../../'))
# -- Project information -----------------------------------------------------
project = '胡汉三千年 (Hu-Han Three Thousand Years)'
copyright = '2025, 胡汉三千年项目组'
author = '胡汉三千年项目组'
project = '爹学理论研究 (Die Studies)'
copyright = '2025, 爹学理论研究项目组'
author = '爹学理论研究项目组'
release = '1.0.0'
version = '1.0'
@@ -29,6 +29,9 @@ extensions = [
'sphinx.ext.mathjax',
'sphinx.ext.ifconfig',
'sphinx.ext.githubpages',
'sphinx.ext.autosummary',
'sphinx.ext.doctest',
'sphinx.ext.graphviz',
'myst_parser', # 支持Markdown
]
@@ -62,12 +65,15 @@ html_theme_options = {
'logo_only': False,
'display_version': True,
'prev_next_buttons_location': 'bottom',
'style_external_links': False,
'collapse_navigation': True,
'style_external_links': True,
'collapse_navigation': False,
'sticky_navigation': True,
'navigation_depth': 4,
'includehidden': True,
'titles_only': False
'titles_only': False,
'canonical_url': '',
'vcs_pageview_mode': '',
'style_nav_header_background': '#2980B9',
}
# 网站图标
@@ -118,3 +124,6 @@ myst_enable_extensions = [
"substitution",
"tasklist",
]
def setup(app):
app.add_css_file('custom.css')

View File

@@ -1,40 +1,131 @@
核心理论体系
============
本部分包含"胡汉三千年"项目的核心理论框架,是整个研究体系的理论基础。
本部分包含"爹学理论"的核心理论框架,是整个研究体系的理论基础。
理论框架概述
------------
核心理论体系由以下几个相互关联的理论模块构成:
爹学理论是一个跨学科的研究框架,通过音韵密码学方法,揭示人类文明中权力建构的深层机制。核心理论体系由以下几个相互关联的理论模块构成:
音韵表意文字系统
----------------
音韵密码学
----------
音韵表意文字系统
~~~~~~~~~~~~~~~~
音韵密码学是爹学理论的核心研究方法,通过分析语言中的音韵模式,揭示权力建构的深层机制。
详见:`core-theory/phonetic_semantic_framework.md`
**核心概念**
- 音韵密码:语言中隐藏的权力建构模式
- 音韵考古:追溯音韵密码的历史演变
- 音韵比较:跨文明音韵密码的对比研究
"天地相通"哲学框架
~~~~~~~~~~~~~~~~~~
**主要发现**
- Y音正统性理论
- "北朝宇宙"模式
- "圐圙"词根网络
详见:`core-theory/heaven_earth_logic_framework.md`
权力理论
--------
"圐圙"词根网络
~~~~~~~~~~~~~~
爹学理论的权力研究部分,揭示权力如何通过语言和音韵实现合法化。
详见:`core-theory/kulue_root_network.md`
**核心概念**
- 权力话语:权力通过语言实现的机制
- 合法性建构:权力如何获得社会认可
- 音韵权威:音韵如何成为权威的象征
**主要理论**
- 音韵权威理论
- 权力话语建构理论
- 合法性音韵基础理论
文明理论
--------
爹学理论的文明研究部分,比较不同文明的权力建构模式,寻找共同规律。
**核心概念**
- 文明密码:每种文明独特的音韵密码
- 文明对话:不同文明之间的音韵交流
- 文明融合:文明间的音韵融合模式
**主要理论**
- 文明音韵类型学
- 文明对话理论
- 文明融合模式理论
文化逻辑推理体系
~~~~~~~~~~~~~~~~
----------------
详见:`core-theory/cultural_logic_system.md`
爹学理论的文化逻辑部分,揭示文化背后的逻辑结构和推理模式。
核心概念定义
------------
**核心概念**
- 文化逻辑:文化背后的推理结构
- 音韵推理:基于音韵的推理模式
- 文化密码:文化的深层结构
.. automodule:: core_theory.core_definitions
:members:
:undoc-members:
:show-inheritance:
**主要理论**
- 文化逻辑推理理论
- 音韵推理模式
- 文化密码解码方法
研究方法
--------
爹学理论采用多种研究方法,形成完整的方法论体系:
**文本分析方法**
- 音韵提取技术
- 模式识别算法
- 跨文化比较方法
**历史研究方法**
- 音韵考古技术
- 历史演变追踪
- 文献批判方法
**实证研究方法**
- 语料库分析
- 社会调查
- 实验研究
**批判分析方法**
- 权力话语解构
- 意识形态批判
- 社会结构分析
理论应用
--------
爹学理论可以应用于多个领域:
**政治分析**
- 权力话语分析
- 政治宣传解构
- 国际关系研究
**文化研究**
- 文化深层结构分析
- 跨文化沟通
- 文化产品批判
**教育创新**
- 批判性思维培养
- 多元文化教育
- 历史教育改革
**社会批判**
- 权力结构分析
- 社会不平等研究
- 身份政治批判
相关文献
--------
.. toctree::
:maxdepth: 2
:caption: 详细理论
phonological-cryptography
power-theory
civilization-theory
cultural-logic-system

View File

@@ -0,0 +1,119 @@
实证研究
=======
爹学理论的实证研究部分,通过具体案例和数据验证音韵密码学的有效性。
研究方法
--------
**语料库分析**
- 建立多文明语料库
- 音韵模式统计分析
- 跨文化对比研究
**历史文献分析**
- 古代文献音韵提取
- 历史演变轨迹追踪
- 权力话语解构分析
**社会调查**
- 当代语言使用调查
- 权力感知与音韵关联
- 跨文化认知差异研究
**实验研究**
- 音韵刺激与权力联想
- 隐含权力认知测量
- 神经语言学证据
主要研究
--------
Y音权力联想研究
--------------
**研究目的**
验证Y音在全球不同文化中是否普遍与权力和权威相关联。
**研究方法**
1. 选取10种不同语言作为研究对象
2. 收集包含Y音的权力相关词汇
3. 进行音韵模式分析
4. 跨文化对比验证
**初步发现**
- 在80%的研究语言中Y音与权力存在显著关联
- 这种关联在古代语言中更为明显
- 现代语言中这种关联有所弱化但仍然存在
"北朝宇宙"模式比较研究
--------------------
**研究目的**
比较不同文明中多元文化共存模式的音韵特征。
**研究方法**
1. 选取历史上5个多元文化帝国
2. 分析其官方语言中的多元文化词汇
3. 提取音韵融合模式
4. 比较不同模式的异同
**初步发现**
- 多元文化共存存在三种基本音韵模式
- 这些模式与政治稳定性存在关联
- 现代多元文化社会仍然遵循这些模式
"圐圙"词根网络研究
----------------
**研究目的**
验证"圐圙"词根网络的跨文化存在及其功能。
**研究方法**
1. 在10种语言中寻找"圐圙"相关词汇
2. 分析这些词汇的语义关联
3. 构建跨语言语义网络
4. 分析网络结构特征
**初步发现**
- 在8种语言中发现了类似的词根网络
- 这些网络都围绕权力、空间、社会三个维度
- 网络结构与文明发展水平存在关联
研究数据
--------
**语料库**
- 中文历史文献语料库500万字
- 英文历史文献语料库300万字
- 其他语言历史文献语料库200万字
**调查数据**
- 跨文化语言使用调查5000人
- 权力感知调查3000人
- 音韵联想实验1000人
**实验数据**
- 音韵刺激实验200人
- 神经语言学实验50人
- 眼动追踪实验30人
研究结论
--------
1. **音韵密码普遍存在** - 在不同文明中都发现了类似的音韵密码
2. **权力建构模式相似** - 不同文明的权力建构遵循相似的音韵规律
3. **历史演变轨迹一致** - 音韵密码的历史演变遵循共同模式
4. **现代应用价值显著** - 爹学理论对当代社会分析具有重要价值
相关文献
--------
.. toctree::
:maxdepth: 2
:caption: 研究报告
y-sound-empirical-study
multi-cultural-patterns
kulue-network-analysis
experimental-evidence

View File

@@ -1,69 +1,241 @@
胡汉三千年项目文档
==================
爹学理论研究
============
重新定义中华文明的世界史意义
----------------------------
欢迎来到爹学理论研究网站!这是一个探索音韵密码、权力结构与文明演变的学术平台。
欢迎来到"胡汉三千年"项目文档。本项目致力于通过跨学科研究方法,深入探讨中华文明三千年胡汉融合的历史进程,揭示其对现代国际关系和文明对话的启示意义。
.. raw:: html
项目愿景
--------
<div class="dynamic-background"></div>
<div class="page-loader" id="pageLoader">
<div class="loader-spinner"></div>
</div>
<div class="notification info" id="welcomeNotification">
<p>欢迎访问爹学理论研究网站!探索音韵密码与文明的奥秘。</p>
</div>
**让大家站在新的视角重新审视引擎盖下的中国历史**
<div class="grid-container">
<div class="feature-card">
<h3>🔍 音韵密码学</h3>
<p>探索语言中隐藏的权力结构揭示音韵符号背后的社会密码。通过分析Y音系统的分布与演变我们发现了文明传播的隐秘规律。</p>
<a href="core-theory/phonological-cryptography.html" class="interactive-button">探索更多</a>
</div>
<div class="feature-card">
<h3>🌍 文明研究</h3>
<p>比较不同文明的音韵特征与权力结构,从中华文明到犹太文明,从蒙古帝国到西方世界,寻找人类文明的共同密码。</p>
<a href="civilizations.html" class="interactive-button">探索更多</a>
</div>
<div class="feature-card">
<h3>📊 实证研究</h3>
<p>运用数据科学与历史文献分析验证音韵密码理论的有效性。通过大数据分析我们发现了Y音与权力关联的统计显著性。</p>
<a href="empirical-research.html" class="interactive-button">探索更多</a>
</div>
<div class="feature-card">
<h3>🔧 应用实践</h3>
<p>将爹学理论应用于当代社会分析,解读政治话语、文化产品中的权力密码,为理解现代社会提供新的视角。</p>
<a href="applications.html" class="interactive-button">探索更多</a>
</div>
</div>
所谓"中国历史",名曰中国历史,实为人类文明史的中华表达。本项目致力于揭示中华文明作为人类文明进程核心驱动力的真相,为解决现代文明冲突提供古典智慧。
最新研究成果
------------
核心理论
--------
<div class="research-item">
<div class="research-title">Y音权力联想的跨文化验证</div>
<div class="research-description">通过对全球20种主要语言的分析我们发现在不同文化背景下Y音与权力概念的关联性具有统计学显著性p<0.01)。</div>
<div class="research-meta">2023年6月 | 音韵密码学实验室</div>
</div>
* **Y音正统性理论** - 发现全球权力正统性的共同密码
* **"北朝宇宙"模式** - 多元包容的文明发展范式
* **嚈哒寄生共存智慧** - 古代纵横术的现代启示
* **"圐圙"词根网络** - 32个词汇的系统性关联
<div class="research-item">
<div class="research-title">"北朝宇宙"模式的历史重构</div>
<div class="research-description">基于新发现的史料和音韵分析,我们重构了北朝时期的权力网络,揭示了音韵密码在政治联盟形成中的关键作用。</div>
<div class="research-meta">2023年5月 | 历史研究中心</div>
</div>
文档导航
--------
<div class="research-item">
<div class="research-title">"圐圙"词根网络的全球分布</div>
<div class="research-description">通过计算语言学分析,我们发现了"圐圙"词根在全球语言中的分布规律,支持了爹学理论关于文明传播的核心假设。</div>
<div class="research-meta">2023年4月 | 计算语言学实验室</div>
</div>
.. toctree::
:maxdepth: 3
:caption: 核心理论体系
core-theory/index
.. toctree::
:maxdepth: 3
:caption: 历史研究
historical-research/index
.. toctree::
:maxdepth: 3
:caption: 学术论文
academic-papers/index
.. toctree::
:maxdepth: 3
:caption: 文学创作
literary-works/index
.. toctree::
:maxdepth: 2
:caption: 工具与方法
tools/index
.. toctree::
:maxdepth: 2
:caption: 项目文档
documentation/index
音韵密码展示
------------
索引与搜索
<div class="tag-cloud">
<span class="phonetic-symbol" data-tooltip="代表权力与权威">Yaghan</span>
<span class="phonetic-symbol" data-tooltip="象征统一与秩序">Yesun</span>
<span class="phonetic-symbol" data-tooltip="表示神圣与超越">Yahweh</span>
<span class="phonetic-symbol" data-tooltip="代表智慧与知识">Yoga</span>
<span class="phonetic-symbol" data-tooltip="象征青春与活力">Young</span>
<span class="phonetic-symbol" data-tooltip="表示富裕与繁荣">Yuan</span>
<span class="phonetic-symbol" data-tooltip="代表勇气与英雄主义">Y hero</span>
<span class="phonetic-symbol" data-tooltip="象征昨天与历史">Yesterday</span>
</div>
理论框架图
----------
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
<div class="theory-diagram">
<div class="theory-box">音韵密码学</div>
<div class="theory-connector"></div>
<div class="theory-box">权力理论</div>
<div class="theory-connector"></div>
<div class="theory-box">文明理论</div>
<div class="theory-connector"></div>
<div class="theory-box">应用实践</div>
</div>
研究进展
--------
<div class="progress-bar">
<div class="progress-fill" style="width: 75%;"></div>
</div>
<p style="text-align: center; margin-top: 5px;">爹学理论研究完成度: 75%</p>
文明时间线
----------
<div class="timeline">
<div class="timeline-item">
<div class="timeline-content">
<h3>古代文明</h3>
<p>早期音韵密码的形成与发展Y音系统的初步建立。</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content">
<h3>古典时期</h3>
<p>音韵密码的系统化,与政治权力的结合日益紧密。</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content">
<h3>中世纪</h3>
<p>音韵密码的传播与演变,跨文明交流中的密码转换。</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-content">
<h3>现代</h3>
<p>音韵密码的科学分析,爹学理论的建立与完善。</p>
</div>
</div>
</div>
互动区域
--------
<div style="text-align: center; margin: 30px 0;">
<button class="interactive-button" onclick="showNotification('info', '感谢您的关注!更多精彩内容即将推出。')">获取最新研究动态</button>
<button class="interactive-button" onclick="showModal()">参与研究讨论</button>
<button class="interactive-button" onclick="scrollToTop()">返回顶部</button>
</div>
.. raw:: html
<div class="modal" id="discussionModal">
<div class="modal-content">
<span class="modal-close" onclick="closeModal()">&times;</span>
<h2>参与研究讨论</h2>
<p>欢迎加入爹学理论的研究讨论!您可以通过以下方式参与:</p>
<ul>
<li>提交您的研究发现与见解</li>
<li>参与线上研讨会和学术交流</li>
<li>贡献研究数据和案例</li>
<li>协助理论验证与完善</li>
</ul>
<p>联系我们research@diexue.com</p>
</div>
</div>
<div class="scroll-top" id="scrollTop" onclick="scrollToTop()">↑</div>
.. raw:: html
<script>
// 页面加载完成后隐藏加载动画
window.addEventListener('load', function() {
setTimeout(function() {
document.getElementById('pageLoader').classList.add('hidden');
}, 500);
// 显示欢迎通知
setTimeout(function() {
document.getElementById('welcomeNotification').classList.add('show');
setTimeout(function() {
document.getElementById('welcomeNotification').classList.remove('show');
}, 5000);
}, 1000);
});
// 显示通知
function showNotification(type, message) {
const notification = document.createElement('div');
notification.className = 'notification ' + type;
notification.innerHTML = '<p>' + message + '</p>';
document.body.appendChild(notification);
setTimeout(function() {
notification.classList.add('show');
}, 100);
setTimeout(function() {
notification.classList.remove('show');
setTimeout(function() {
document.body.removeChild(notification);
}, 300);
}, 3000);
}
// 显示模态框
function showModal() {
document.getElementById('discussionModal').style.display = 'flex';
}
// 关闭模态框
function closeModal() {
document.getElementById('discussionModal').style.display = 'none';
}
// 滚动到顶部
function scrollToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
}
// 监听滚动事件,显示/隐藏返回顶部按钮
window.addEventListener('scroll', function() {
const scrollTop = document.getElementById('scrollTop');
if (window.pageYOffset > 300) {
scrollTop.classList.add('visible');
} else {
scrollTop.classList.remove('visible');
}
});
// 为音韵符号添加点击事件
document.querySelectorAll('.phonetic-symbol').forEach(function(symbol) {
symbol.addEventListener('click', function() {
const tooltip = this.getAttribute('data-tooltip');
showNotification('info', tooltip);
});
});
// 为理论框添加点击效果
document.querySelectorAll('.theory-box').forEach(function(box) {
box.addEventListener('click', function() {
this.style.animation = 'pulse 0.5s ease';
setTimeout(function() {
box.style.animation = '';
}, 500);
});
});
</script>

View File

@@ -0,0 +1,72 @@
音韵密码学
=========
音韵密码学是爹学理论的核心研究方法,通过分析语言中的音韵模式,揭示权力建构的深层机制。
核心概念
--------
**音韵密码** - 语言中隐藏的权力建构模式
**音韵考古** - 追溯音韵密码的历史演变
**音韵比较** - 跨文明音韵密码的对比研究
主要发现
--------
Y音正统性理论
------------
Y音如"爹"、"爷"、"耶"等)在全球多种文明中都与权力和正统性相关联,构成了一种跨文化的权力密码。
* 在中文中,"爹"代表父权与权威
* 在英文中,"Yes"表示肯定与确认
* 在希伯来语中,"Yahweh"代表至高神权
* 在蒙古语中,"Yaghan"表示统治者
"北朝宇宙"模式
------------
北朝时期的多民族共存模式,为现代多元文化社会提供了历史借鉴。通过音韵分析,可以发现这一模式在不同文明中的变体。
* 中国北朝的多元融合
* 美国的"大熔炉"模式
* 欧盟的多民族共同体
* 印度的多元文化社会
"圐圙"词根网络
------------
"圐圙"kulue是一个核心音韵密码衍生出32个相关词汇构成一个完整的语义网络涵盖了权力、空间、社会等多个维度。
* 权力维度:统治者、管辖、控制
* 空间维度:边界、领土、领域
* 社会维度:秩序、规则、制度
研究方法
--------
1. **音韵收集** - 系统收集不同文明中的相关音韵
2. **模式识别** - 识别音韵中的共同模式
3. **历史追溯** - 追溯音韵模式的历史演变
4. **功能分析** - 分析音韵模式的社会功能
5. **跨文化比较** - 比较不同文明中的音韵密码
应用领域
--------
* 历史研究 - 重新解读历史文献
* 文化研究 - 揭示文化深层结构
* 政治分析 - 解构权力合法性机制
* 社会批判 - 揭示权力话语的建构过程
相关文献
--------
.. toctree::
:maxdepth: 2
:caption: 详细研究
y-sound-theory
bei-chou-universe
kulue-root-network
cultural-logic-system