/* 基础容器样式 */
.talent-philosophy-container {
    padding: 5vh 0;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 分栏布局 */
.diagonal-layout {
    width: 100%;
    display: flex;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* 图片区域样式 */
.image-section {
    width: 50%;
    height: 600px;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-section:hover img {
    transform: scale(1.05);
}

/* 文字区域样式 */
.text-section {
    width: 50%;
    padding: 60px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.text-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #3498db;
}
@media (max-width: 768px) {
    .philosophy-content {
        padding: 0 20px;
    }
}
.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* 装饰性垂直线 */
.diagonal-line {
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #3498db, transparent);
    transform: translateX(-50%);
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.image-section.animate-on-scroll {
    animation-delay: 0.2s;
}

.text-section.animate-on-scroll {
    animation-delay: 0.5s;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .diagonal-layout {
        flex-direction: column;
    }

    .image-section,
    .text-section {
        width: 100%;
    }

    .image-section {
        height: 300px;
    }

    .text-section {
        padding: 40px 5px;
    }

    .diagonal-line {
        display: none;
    }
}
