/* 人才理念页面样式 */
.talent-philosophy-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 50px 20px;
}

/* 对角线布局 */
.diagonal-layout {
    position: relative;
    display: flex;
    min-height: 500px;
    margin-bottom: 60px;
}

/* 图片区域 */
.image-section {
    flex: 0 0 50%;
    overflow: hidden;
    position: relative;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 文本区域 */
.text-section {
    flex: 0 0 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-section h2 {
    font-size: 2rem;
    color: #29292b;
    margin-bottom: 25px;
}

.philosophy-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* 对角线分隔线 */
.diagonal-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
    background: linear-gradient(to bottom, #2c6ecb 0%, #3498db 100%);
    left: 50%;
    transform: translateX(-50%);
}

/* 动画效果 */
@keyframes slideInDiagonalRight {
    from {
        opacity: 0;
        transform: translate3d(-50px, -50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDiagonalLeft {
    from {
        opacity: 0;
        transform: translate3d(50px, 50px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.slideInDiagonalRight {
    animation-name: slideInDiagonalRight;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.slideInDiagonalLeft {
    animation-name: slideInDiagonalLeft;
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

/* 响应式适配 */
@media (max-width: 992px) {
    .diagonal-layout {
        flex-direction: column;
        min-height: auto;
    }
    .image-section,
    .text-section {
        flex: none;
        width: 100%;
    }
    .image-section {
        height: 300px;
    }
    .text-section {
        padding: 40px;
    }
    .diagonal-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .text-section h2 {
        font-size: 1.8rem;
    }
    .text-section {
        padding: 30px 20px;
    }
}
