/* 基础容器样式 */
.service-careers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
}

/* 波浪背景装饰 */
.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientTransform='rotate(90)'%3E%3Cstop offset='0%25' stop-color='%2385D8CE'/%3E%3Cstop offset='100%25' stop-color='%23085078'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpattern id='b' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/pattern%3E%3Crect width='100%25' height='100%25' fill='url(%23a)'/%3E%3Crect width='100%25' height='100%25' fill='url(%23b)' fill-opacity='0.1'/%3E%3C/svg%3E")
        no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
    border-radius: 20px;
}

/* 内容包装器 */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* 图片区域样式 */
.image-section {
    flex: 1;
    min-width: 300px;
    transition: transform 0.6s ease-in-out;
}
.image-section:hover {
    transform: translateY(-5px);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: filter 0.3s ease;
}

.image-container:hover .main-image {
    filter: brightness(1.05);
}

/* 图片装饰元素 */
.image-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 50% 0 0 0;
    z-index: 1;
}

/* 文本区域样式 */
.text-section {
    flex: 1;
    min-width: 300px;
}

.text-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.section-divider {
    height: 4px;
    width: 60px;
    background: #ff7e00;
    margin-bottom: 25px;
}

p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #666;
}

/* 职业特点列表 */
.career-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    background: #ff7e00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

/* 联系按钮 */
.contact-button {
    display: inline-block;
    padding: 15px 30px;
    background: #ff7e00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: #e67100;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 126, 0, 0.3);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .text-card {
        padding: 30px;
    }
}

/* 字母动画样式 */
.letter-animation span {
    opacity: 0;
    transform: translateY(20px);
}

/* 确保动画生效 */
.wow.animate__animated.animate__bounceIn {
    animation-name: bounceIn;
}
