/* 页面头部样式 */
.page-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(rgba(196, 18, 48, 0.1), rgba(196, 18, 48, 0.05));
    border-radius: 8px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 36px;
    color: #c41230;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

/* 概览统计样式 */
.influence-overview {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.overview-card {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #c41230;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

/* 全���影响力地图样式 */
.global-influence {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.global-influence h2 {
    text-align: center;
    color: #c41230;
    font-size: 28px;
    margin-bottom: 30px;
}

.influence-map {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.influence-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255,255,255,0.9);
    padding: 15px;
    border-radius: 8px;
}

.influence-legend h3 {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
}

.influence-legend ul {
    list-style: none;
}

.influence-legend li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.legend-bar {
    width: 30px;
    height: 8px;
    border-radius: 4px;
}

.legend-bar.high { background-color: #c41230; }
.legend-bar.medium { background-color: #f4511e; }
.legend-bar.low { background-color: #ff9800; }

/* 影响领域样式 */
.influence-areas {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.influence-areas h2 {
    text-align: center;
    color: #c41230;
    font-size: 28px;
    margin-bottom: 30px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.area-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.area-content {
    padding: 20px;
}

.area-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.area-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.influence-examples {
    list-style: none;
}

.influence-examples li {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
}

.influence-examples li::before {
    content: "•";
    color: #c41230;
    position: absolute;
    left: 0;
}

/* 现代传承与创新样式 */
.modern-innovation {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.modern-innovation h2 {
    text-align: center;
    color: #c41230;
    font-size: 28px;
    margin-bottom: 30px;
}

.innovation-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.innovation-case {
    display: flex;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.case-image {
    flex: 1;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    flex: 1;
    padding: 20px;
}

.case-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.case-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.case-stats {
    display: flex;
    gap: 20px;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #c41230;
    margin-bottom: 5px;
}

.stat .label {
    font-size: 14px;
    color: #666;
}

/* 文化交流活动样式 */
.cultural-exchange {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cultural-exchange h2 {
    text-align: center;
    color: #c41230;
    font-size: 28px;
    margin-bottom: 30px;
}

.exchange-timeline {
    position: relative;
    padding-left: 50px;
}

.exchange-timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #c41230;
}

.exchange-event {
    position: relative;
    margin-bottom: 40px;
}

.exchange-event::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #c41230;
    border-radius: 50%;
    border: 4px solid white;
}

.event-date {
    font-size: 18px;
    font-weight: bold;
    color: #c41230;
    margin-bottom: 10px;
}

.event-content {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
}

.event-content h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.event-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .innovation-showcase {
        grid-template-columns: 1fr;
    }

    .innovation-case {
        flex-direction: column;
    }

    .case-image {
        height: 200px;
    }

    .influence-map {
        height: 300px;
    }

    .exchange-timeline {
        padding-left: 30px;
    }

    .exchange-timeline::before {
        left: 10px;
    }

    .exchange-event::before {
        left: -30px;
    }
} 