/* 文化影响页面样式 */
.influence-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 世界地图互动区样式 */
.world-map {
    margin-bottom: 40px;
}

.world-map h2 {
    text-align: center;
    color: #8B0000;
    margin-bottom: 30px;
}

.map-container {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#map {
    width: 100%;
    height: 500px;
}

.map-legend {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255,255,255,0.9);
    padding: 15px;
    border-radius: 10px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.legend-item .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.dot.early { background: #FFD700; }
.dot.middle { background: #FF4500; }
.dot.modern { background: #8B0000; }

/* 时间轴历程样式 */
.timeline-section {
    margin-bottom: 40px;
}

.timeline-section h2 {
    text-align: center;
    color: #8B0000;
    margin-bottom: 30px;
}

.timeline-container {
    position: relative;
    padding: 20px 0;
}



.timeline-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 40px;
}

.time-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px;
}

.time-point span {
    color: #8B0000;
    font-weight: bold;
    margin-bottom: 10px;
}

.time-point .dot {
    width: 16px;
    height: 16px;
    background: #FFD700;
    border: 3px solid #CC0000;
    border-radius: 50%;
}

.timeline-item .content {
    width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-item .content h3 {
    color: #8B0000;
    margin-bottom: 10px;
}

.timeline-item .content p {
    color: #666;
    line-height: 1.6;
}

/* 主容器布局 */
.main-container {
    display: flex;
    gap: 30px;
}

/* 分类影响展示样式 */
.influence-categories {
    flex: 1;
}

.influence-categories h2 {
    color: #8B0000;
    margin-bottom: 30px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-card h3 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 15px;
}

.category-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.influence-list {
    list-style: none;
    padding: 0;
}

.influence-list li {
    color: #333;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.influence-list li:last-child {
    border-bottom: none;
}

/* 现代传承案例样式 */
.modern-cases {
    width: 300px;
}

.modern-cases h2 {
    color: #8B0000;
    margin-bottom: 30px;
}

.case-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.case-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.case-info {
    padding: 20px;
}

.case-info h3 {
    color: #8B0000;
    margin-bottom: 10px;
}

.case-info p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: #8B0000;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
} 