/* 页面主体样式 */
.influence-main {
    margin-bottom: 50px;
}

/* 页面横幅样式 */
.page-banner {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 36px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 内容区域样式 */
.content-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* 影响领域导航样式 */
.influence-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-item i {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
    transition: all 0.3s;
}

.nav-item span {
    color: #666;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-item:hover i,
.nav-item.active i {
    opacity: 1;
    transform: scale(1.1);
}

.nav-item:hover span,
.nav-item.active span {
    color: #c41230;
}

/* 图标样式 */
.icon-art {
    background-image: url('../images/icon-art.png');
}

.icon-philosophy {
    background-image: url('../images/icon-philosophy.png');
}

.icon-lifestyle {
    background-image: url('../images/icon-lifestyle.png');
}

.icon-medicine {
    background-image: url('../images/icon-medicine.png');
}

.icon-education {
    background-image: url('../images/icon-education.png');
}

/* 影响内容区域样式 */
.influence-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.influence-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.influence-section h2 {
    color: #c41230;
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c41230;
}

.influence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.text-content {
    color: #333;
}

.text-content > p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.influence-list {
    display: grid;
    gap: 30px;
}

.influence-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.influence-item h3 {
    color: #c41230;
    margin-bottom: 15px;
    font-size: 18px;
}

.influence-item p {
    color: #666;
    line-height: 1.6;
}

.image-showcase {
    display: grid;
    gap: 20px;
}

.showcase-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.showcase-item p {
    padding: 15px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
    .influence-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 20px 10px;
        gap: 30px;
    }

    .nav-item i {
        width: 50px;
        height: 50px;
    }

    .nav-item span {
        font-size: 14px;
    }

    .influence-content {
        grid-template-columns: 1fr;
    }

    .showcase-item img {
        height: 200px;
    }
} 