/* =========================================
               PAGE: 进化史 (History)
   ========================================= */

/* 页面顶部标题区 */


/* 时间轴主容器 */
.timeline-container {
    max-width: 800px; /* 限制宽度，便于阅读 */
    margin: 0 auto 100px auto; /* 居中，底部留空 */
    padding: 0 20px;
    position: relative;
}

/* 每一个时间节点块 */
.timeline-item {
    position: relative;
    margin-bottom: 60px; /* 节点之间的间距 */
}

/* 年份数字 */
.timeline-year {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-shadow: 0 0 8px rgba(57, 197, 187, 0.3);
    line-height: 1;
}

/* 内容卡片 */
.timeline-content {
    background: rgba(255, 255, 255, 0.03); /* 极淡的背景 */
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* 细微边框 */
    border-radius: 4px; /* 硬朗一点的圆角 */
}

.timeline-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: white;
    font-family: 'Orbitron', sans-serif; /* 标题也用科技字体 */
    letter-spacing: 1px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.7;
    text-align: justify; /* 两端对齐，排版更整齐 */
    text-indent: 2em; /* 首行缩进 */
}

/* 强调人名/关键词 */
.timeline-content strong {
    color: var(--primary);
    font-weight: 700;
}

.timeline-content .teto{
    color: var(--secondary);
    font-weight: 700;
}

/* 特殊样式：高亮节点 (Highlight Item) */
.highlight-item .timeline-year {
    color: var(--secondary);
    text-shadow: 0 0 10px rgba(255, 0, 69, 0.4);
}
.highlight-item .timeline-content {
    border-left: 3px solid var(--secondary); /* 左侧加强边框 */
    background: linear-gradient(90deg, rgba(255, 0, 69, 0.05), transparent); /* 淡淡的红色渐变背景 */
}