/* 文化影响页面样式 */
.impact-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 概览部分 */
.impact-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.overview-text h3 {
    color: #1661AB;
    font-size: 24px;
    margin-bottom: 20px;
}

.overview-text p {
    color: #666;
    line-height: 1.6;
}

.overview-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* 国内影响部分 */
.impact-domestic {
    margin-bottom: 40px;
}

.impact-domestic h3 {
    color: #1661AB;
    font-size: 24px;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #1661AB;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.impact-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.impact-card h4 {
    color: #1661AB;
    font-size: 20px;
    margin-bottom: 15px;
}

.impact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.impact-list {
    list-style: none;
    padding: 0;
}

.impact-list li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.impact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #1661AB;
    border-radius: 50%;
}

/* 国际传播部分 */
.impact-international {
    margin-bottom: 40px;
}

.impact-international h3 {
    color: #1661AB;
    font-size: 24px;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #1661AB;
}

.world-map {
    position: relative;
    margin-bottom: 30px;
}

.world-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.map-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.region-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.region-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    opacity: 0.7;
    transition: all 0.3s;
}

.region-card.active {
    opacity: 1;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.region-card h4 {
    color: #1661AB;
    font-size: 20px;
    margin-bottom: 15px;
}

.region-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.region-card ul {
    list-style: none;
    padding: 0;
}

.region-card li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.region-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #1661AB;
    border-radius: 50%;
}

/* 现代传承部分 */
.impact-modern {
    margin-bottom: 40px;
}

.impact-modern h3 {
    color: #1661AB;
    font-size: 24px;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #1661AB;
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.modern-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.modern-item:hover img {
    transform: scale(1.05);
}

.item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.item-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.item-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: #1661AB;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.read-more:hover {
    background-color: #114B7D;
}

/* 未来展望部分 */
.impact-future {
    margin-bottom: 40px;
}

.impact-future h3 {
    color: #1661AB;
    font-size: 24px;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid #1661AB;
}

.future-content {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.future-text {
    margin-bottom: 30px;
}

.future-text p {
    color: #666;
    line-height: 1.6;
}

.future-goals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.goal-item {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.goal-item h4 {
    color: #1661AB;
    font-size: 18px;
    margin-bottom: 10px;
}

.goal-item p {
    color: #666;
    line-height: 1.6;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .impact-overview {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .region-details {
        grid-template-columns: 1fr;
    }

    .modern-grid {
        grid-template-columns: 1fr;
    }

    .future-goals {
        grid-template-columns: 1fr;
    }
} 