/* Banner 样式 */
.banner {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* 企业SAP培训页面样式 */

.section-padding {
    padding: 80px 0;
}

.section-title {
    color: #0163B8;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    text-align: left;
}
.text-block{
    color: #000 !important;
}

/* Banner样式 */
.banner-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 60px;
}

.banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 企业服务内容样式 */
.service-desc {
    color: #555 !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
}

.service-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* SAP系统使用问题样式 */
.problems-section {
    background-color: #f8f9fa;
}

.problems-icons {
    margin-bottom: 40px;
}

.problem-item {
    padding: 20px 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    margin-bottom: 20px;
}

.problem-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.problem-title {
    color: #162565;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.problem-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.process-steps img {
    max-width: 100%;
    margin: 0 auto;
}

/* 培训服务与解决方案样式 */
.solution-image {
    position: relative;
    margin-bottom: 30px;
}

.solution-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.solution-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.solution-text p {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
}

/* 项目准备过程样式 */
.preparation-item, .efficiency-item {
    margin-bottom: 30px;
}

.item-title {
    display: inline-block;
    color: #fff;
    padding: 10px 30px;
    /* border-radius: 4px; */
    font-size: 20px;
    background-color: #0C87E2;
    /* font-weight: 600; */
    /* margin-bottom: 15px; */
}

.item-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.preparation-image img, .efficiency-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 人才梯队样式 */
.talent-desc {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    margin: 30px auto 0;
}

/* 能力评估服务样式 */
.assessment-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.assessment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    color: #162565;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* 响应式调整 */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-image, .preparation-image, .efficiency-image {
        margin-top: 30px;
    }
    
    .problem-icon img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .banner-section {
        margin-top: 56px;
    }
    
    .problem-item {
        padding: 15px 5px;
    }
    
    .problem-title {
        font-size: 16px;
    }
    
    .problem-desc {
        font-size: 12px;
    }
    
    .card-image img {
        height: 180px;
    }
} 