/* 英雄区域样式 */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 50px;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 80%;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 24px;
}

/* 文化传播地图样式 */
.influence-map {
    padding: 50px;
    background: #f9f9f9;
}

.influence-map h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

.influence-map h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c41230;
    margin: 15px auto;
}

.map-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container img {
    width: 100%;
    height: auto;
}

.map-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
}

.point {
    display: block;
    width: 16px;
    height: 16px;
    background: #c41230;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    animation: pulse 2s infinite;
}

.point-info {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.map-point:hover .point-info {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.point-info h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 5px;
}

.point-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(196, 18, 48, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(196, 18, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(196, 18, 48, 0);
    }
}

/* 影响领域样式 */
.influence-areas {
    padding: 50px;
}

.influence-areas h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

.influence-areas h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c41230;
    margin: 15px auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.area-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.area-item:hover {
    transform: translateY(-5px);
}

.area-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.area-content {
    padding: 20px;
}

.area-content h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.area-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.area-content ul {
    list-style: none;
    padding: 0;
}

.area-content ul li {
    color: #333;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.area-content ul li::before {
    content: '•';
    color: #c41230;
    position: absolute;
    left: 0;
}

/* 当代影响样式 */
.modern-influence {
    padding: 50px;
    background: #f9f9f9;
}

.modern-influence h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}

.modern-influence h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c41230;
    margin: 15px auto;
}

.modern-content {
    max-width: 1200px;
    margin: 0 auto;
}

.modern-text {
    text-align: center;
    margin-bottom: 40px;
}

.modern-text h3 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.modern-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modern-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .hero-section {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .influence-map,
    .influence-areas,
    .modern-influence {
        padding: 30px 20px;
    }

    .point-info {
        width: 150px;
    }

    .modern-features {
        grid-template-columns: 1fr;
    }
} 