.banner {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
}

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

.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);
}
.team-talk{
    color: #162565;
}
.title-color {
    color: #162565; 
}
.talk {
    color: #000;
}

.sap-implementation {
    padding: 80px 15px; /* 上下留出80px的间距，左右留出15px的间距 */
    background-color: #F8F8F8;
}

.sap-implementation .container {
    max-width: 1200px; /* 设置最大宽度 */
    margin: 0 auto; /* 居中对齐 */
}

.team-talk {
    font-size: 24px; /* 调整标题大小 */
    font-weight: bold; /* 加粗 */
    margin-bottom: 20px; /* 标题下的间距 */
}

.sap-implementation p {
    font-size: 16px; /* 调整段落字体大小 */
    line-height: 1.6; /* 行高 */
    color: #333; /* 字体颜色 */
}

/* 新增图片样式 */
.sap-implementation img {
    /* width: 430px; PC 端宽度 */
    height: auto; /* 高度自适应 */
}

@media (max-width: 768px) {
    .sap-implementation img {
        width: 100%; /* 移动端宽度自适应 */
    }
}

.spa-overview {
    padding: 80px 15px; /* 上下留出80px的间距，左右留出15px的间距 */
}

.spa-overview h2 {
    font-size: 28px; /* 标题大小 */
    margin-bottom: 20px; /* 标题下的间距 */
}

.spa-overview img {
    max-width: 100%; /* 确保图片自适应 */
    height: auto; /* 高度自适应 */
}

.delivery-capability {
    padding: 80px 15px; /* 上下留出80px的间距，左右留出15px的间距 */
}

.delivery-capability h2 {
    font-size: 28px; /* 标题大小 */
    margin-bottom: 20px; /* 标题下的间距 */
}

.delivery-capability img {
    max-width: 100%; /* 确保图片自适应 */
    height: auto; /* 高度自适应 */
}

.delivery-capability h4 {
    margin-top: 15px; /* 标题上边距 */
    font-size: 20px; /* 标题字体大小 */
}

.small-modules {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.small-modules .container {
    max-width: 1200px;
}

.small-modules .row {
    margin: 0 -15px;
    justify-content: center;
}

.small-modules .col-md-4 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.small-modules .item {
    position: relative;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
    border: none;
}

.small-modules .item:hover {
    transform: none; /* 移除卡片上移效果 */
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15); /* 添加蓝色阴影效果 */
    border-bottom: 3px solid #0062cc; /* 添加蓝色底边 */
}

/* 顶部图标样式 */
.small-modules .icon-top {
    width: 50px;
    height: 50px;
    display: block;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* 内容区域包装，保留上移效果 */
.small-modules .content-wrapper {
    position: relative;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1); /* 恢复变换过渡 */
    z-index: 5;
    background-color: #fff;
    padding-top: 5px;
    height: calc(100% - 65px); /* 固定高度 */
}

/* 恢复内容上移效果 */
.small-modules .item:hover .content-wrapper {
    transform: translateY(-85px); /* 从-80px增加到-85px，给列表腾出更多空间 */
}

/* 标题与列表之间的分割线 */
.small-modules .title-section {
    position: relative;
    margin-bottom: 25px; /* 从30px减小到25px */
    text-align: left;
    padding-bottom: 12px; /* 从15px减小到12px */
}

.small-modules .title-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px; /* 分割线宽度 */
    height: 2px; /* 分割线高度 */
    background-color: #0062cc; /* 分割线颜色 */
    transition: width 0.4s ease; /* 添加过渡效果 */
}

.small-modules .item:hover .title-section::after {
    width: 100%; /* 悬停时分割线延伸 */
}

/* 标题样式 */
.small-modules .list-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-align: left;
    transition: all 0.4s ease;
}

.small-modules .text-muted {
    font-size: 14px;
    color: #999 !important;
    text-align: left;
}

/* 列表样式 */
.small-modules .list {
    height: 300px; /* 从280px增加到300px */
    padding: 0;
    margin-bottom: 15px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* 隐藏Chrome的滚动条 */
.small-modules .list::-webkit-scrollbar {
    display: none;
}

/* 进一步减小列表项间距 */
.small-modules .list li {
    margin-bottom: 4px; /* 从5px减小到4px */
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.2;
}

/* 更紧凑的悬停列表项 */
.small-modules .item:hover .list li,
.small-modules .list li.hover-item {
    margin-bottom: 4px !important; /* 强制使用更小的间距 */
    padding-left: 20px;
    font-size: 13px;
    line-height: 1.2;
}

/* 适应新行高的圆点位置 */
.small-modules .list li::before,
.small-modules .list li.hover-item::before {
    top: 4px; /* 根据新行高调整 */
    width: 5px; /* 更小的圆点 */
    height: 5px;
}

/* 确保卡片溢出内容隐藏 */
.small-modules .item {
    overflow: hidden; 
}

/* 底部箭头 */
.small-modules .item::after {
    content: '';
    position: absolute;
    right: 25px;
    bottom: 25px;
    width: 30px;
    height: 30px;
    background-image: url('../images/service/arrow-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    transition: all 0.3s ease;
    z-index: 3; /* 确保箭头始终在顶层 */
}

.small-modules .item:hover::after {
    opacity: 1;
    transform: translateX(5px);
}

/* 隐藏原来的top-right装饰图 */
.small-modules .top-right {
    display: none;
}

/* 鼠标悬停效果 */
.small-modules .item:hover .list-title {
    color: #0062cc;
}

/* 图标悬停效果 */
.small-modules .item:hover .icon-top {
    opacity: 0.2; /* 降低透明度 */
    filter: drop-shadow(0 0 5px rgba(0, 98, 204, 0.5));
}

.title-color {
    color: #333;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.title-color::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 60px;
    height: 3px;
    background-color: #0062cc;
    transform: translateX(-50%);
}

/* 响应式调整 */
@media (max-width: 991px) {
    .small-modules .col-md-4 {
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .small-modules .col-md-4 {
        width: 50%;
        max-width: 50%;
    }
}

.solutions-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.solutions-section .section-header {
    margin-bottom: 50px !important;
}

.solutions-section h2 {
    font-size: 32px;
    color: #162565;
    margin-bottom: 30px;
}

#solutionsCarousel {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px; /* 为左右箭头留出空间 */
    overflow: hidden; /* 确保整个轮播容器可见溢出内容 */
}

.carousel-container {
    width: 100%;
    overflow: hidden; /* 确保容器显示溢出内容 */
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    position: relative;
    margin: 0 -10px; /* 补偿卡片margin */
    overflow: visible;
}

.solution-card {
    flex: 0 0 calc(33.33% - 20px);
    margin: 0 10px;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
}

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

.solution-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 5px;
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #162565;
}

.solution-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.carousel-control-prev {
    left: 10px; /* 向内调整一点，确保可点击 */
    z-index: 20;
}

.carousel-control-next {
    right: 10px; /* 向内调整一点，确保可点击 */
    z-index: 20;
}

.carousel-control-prev img,
.carousel-control-next img {
    width: 40px;
    /* height: 40px; */
    transition: transform 0.3s ease;
}

.carousel-control-prev img.rotate-180 {
    transform: rotate(180deg);
}

.carousel-control-prev:hover img,
.carousel-control-next:hover img {
    opacity: 0.8;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: transparent;
}

@media (max-width: 768px) {
    .solutions-section h2 {
        font-size: 28px;
    }
    
    .solution-card {
        flex: 0 0 100%;
    }
    
    .solution-card h3 {
        font-size: 20px;
    }
    
    .solution-card p {
        font-size: 14px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev img,
    .carousel-control-next img {
        width: 30px;
        height: 30px;
    }
    .small-modules img.img-fluid{
        width: 40px;
        height: 40px;
    }
}