.service-careers-container {
    padding: 10vh 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    position: relative;
    width: 100%;
}

.image-section {
    position: relative;
    height: 50vh;
    overflow: hidden;
    margin-bottom: -10vh;
    z-index: 1;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-section:hover .main-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.4)
    );
}

.image-caption {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    z-index: 2;
}

.image-caption h1 {
    font-size: 2.5rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.text-section {
    position: relative;
    background: white;
    padding: 5vh 3vw 5vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.text-card {
    margin-bottom: 2rem;
    padding: 2rem;
    border-left: 4px solid #165dff;
    background: rgba(255, 255, 255, 0.95);
    /* 添加3D效果基础属性 */
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.text-card p {
    font-size: 18px;
    line-height: 1.6;
}
.text-card:hover {
    /* 悬停时应用3D变换 */
    transform: perspective(1000px) rotateY(5deg) translateY(-10px);
    box-shadow: 0 20px 40px rgba(22, 93, 255, 0.15);
    border-left-color: #0e42d2;
}

/* 添加3D效果所需的伪元素 */
.text-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(22, 93, 255, 0.05) 0%,
        rgba(14, 66, 210, 0) 100%
    );
    transform: translateZ(-1px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
}

.text-card:hover::before {
    opacity: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .service-careers-container {
        padding: 5vh 5vw;
    }

    .image-section {
        height: 40vh;
        margin-bottom: -5vh;
    }

    .text-section {
        padding: 10vh 5vw 5vh;
    }
}
