/* 保险数字化平台专用样式 */

/* 全局样式重置和优化 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 70px; /* 统一为固定导航栏预留空间，与header高度保持一致 */
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* 轮播图样式 - 垂直布局，在header下方占满剩余高度 */
.banner-swipe {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px); /* 减去header固定高度70px */
    margin-top: 70px; /* 与header高度相同，确保在header下方 */
    overflow: hidden;
    z-index: 1;
}

.swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* 保持原始宽高比，避免变形 */
    object-position: center center; /* 居中显示关键内容 */
}

/* 强制修复轮播图图片拉伸问题 - 最高优先级 */
.banner-swipe .swiper-slide img,
#bannerSwipe .swiper-slide img,
.banner-swiper .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important; /* 重要：使用cover保持比例 */
    object-position: center center !important; /* 重要：居中显示 */
    max-width: none !important;
    max-height: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
}

/* 确保轮播图容器正确设置 */
.banner-swipe .swiper-slide,
#bannerSwipe .swiper-slide,
.banner-swiper .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
}

/* 轮播指示器样式 - 确保可见 */
.swiper-pagination {
    position: absolute;
    bottom: 50px; /* 增加底部距离，避免被遮挡 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 100; /* 提高层级确保可见 */
    display: flex;
    gap: 12px;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8); /* 增加透明度 */
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); /* 增强阴影效果 */
    border: 2px solid rgba(255, 255, 255, 0.3); /* 添加边框 */
}

.swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

/* 轮播导航按钮样式 */
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4); /* 增加背景透明度 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100; /* 提高层级 */
    color: white;
    font-size: 20px;
    font-weight: bold;
    backdrop-filter: blur(5px); /* 添加模糊背景效果 */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-next {
    right: 30px;
}

.swiper-button-prev {
    left: 30px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: "";
    font-size: 20px;
}

/* Banner区域样式调整 - 解决底部空白问题 */
.banner {
    position: relative;
    z-index: 2;
    background: transparent;
}

.banner .container {
    position: relative;
    z-index: 3;
}

/* 响应式设计 - 轮播图布局调整 */
@media screen and (max-width: 768px) {
    .banner-swipe {
        height: calc(100vh - 60px); /* 移动端header高度较小 */
        margin-top: 60px; /* 对应调整顶部外边距 */
    }
    
    body {
        padding-top: 60px; /* 移动端调整body padding */
    }
    
    .banner {
        margin-top: -60px;
        padding-top: 60px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .swiper-button-next {
        right: 15px;
    }
    
    .swiper-button-prev {
        left: 15px;
    }
    
    .swiper-pagination {
        bottom: 20px;
    }
    
    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }
}

@media screen and (max-width: 480px) {
    .banner-swipe {
        height: calc(100vh - 60px); /* 小屏幕保持一致的header偏移 */
        margin-top: 60px;
    }
    
    body {
        padding-top: 60px; /* 小屏幕调整body padding */
    }
    
    .banner {
        margin-top: -60px;
        padding-top: 60px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none; /* 小屏幕隐藏导航按钮 */
    }
    
    .swiper-pagination {
        bottom: 15px;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
    
    .swiper-slide img {
        object-position: center center; /* 移动端保持居中 */
    }
}

/* 修复body默认margin和padding导致的空白 */
body {
    margin: 0;
    padding: 0;
}

/* 确保html和body占满整个视口 */
html, body {
    height: 100%;
    overflow-x: hidden; /* 防止横向滚动 */
}

/* Banner区域样式 - 调整为与about-section一致 */
.banner {
    padding: 30px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner .container {
    position: relative;
    z-index: 3;
}

.banner-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0;
}

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

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
}

.banner-text {
    flex: 1;
    max-width: 600px;
}

.banner-text h1,
.banner .section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.banner-text h2 {
    font-size: 28px;
    color: #3498db;
    margin-bottom: 25px;
    font-weight: 600;
}

.banner-text p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.8;
}

.banner .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.banner .section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.banner .cert-item {
    text-align: center;
    padding: 20px 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner .cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.banner .cert-item .number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.banner .cert-item .label {
    display: block;
    font-size: 15px;
    color: #3498db;
    font-weight: 600;
}

.banner-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
}

.btn-primary {
    background: #3498db;
    color: #ffffff;
    border: 2px solid #3498db;
}

.btn-primary:hover {
    background: #2980b9;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-secondary:hover {
    background: #3498db;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.banner-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    min-width: 280px;
    height: fit-content;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-item .number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

/* 通用区块样式 - 添加安全间距 */
.section {
    padding: 30px 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
}

.section .banner-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0;
}

.section .banner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.section .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 60px;
}

.section .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.section .section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.section .section-header p {
    font-size: 18px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.8;
}

/* 关于我们区域 */
.about-section {
    padding: 30px 0;
    background: #f8f9fa;
    /* min-height: calc(100vh - 70px); */
    display: flex;
    align-items: center;
}

.about-section .banner-card {
    margin: 0;
}

.about-section .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.about-section .section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-section .company-info {
    max-width: 600px;
    margin: 0 0 30px 0;
    text-align: left;
}

.about-section .company-info p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-section .certifications {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    min-width: 280px;
    height: fit-content;
}

.about-section .cert-item {
    text-align: center;
    padding: 20px 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section .cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-section .cert-item img {
    /* width: 60px; */
    height: 60px;
    margin-bottom: 15px;
}

.about-section .cert-item span {
    display: block;
    font-size: 15px;
    color: #3498db;
    font-weight: 600;
}

/* 产品区域 */
.products-section {
    padding: 30px 0;
    background: #f8f9fa;
    /* min-height: calc(100vh - 70px); */
    display: flex;
    align-items: center;
}

.products-section .banner-card {
    margin: 0;
}

.products-section .section-header {
    text-align: left;
    /* margin-bottom: 40px; */
}

.products-section .section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.products-section .section-header p {
    font-size: 18px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.8;
}

.products-section .product-features {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 25px;
    /* background: #f8f9fa; */
    padding: 35px;
    /* border-radius: 15px; */
    /* border: 1px solid #e9ecef; */
    min-width: 280px;
    height: fit-content;
    position: relative;
    z-index: 1;
}

.products-section .feature-card {
    background: #ffffff !important;
    padding: 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 1 !important;
    min-width: 0 !important;
    max-width: none !important;
    position: relative;
    z-index: 2;
    overflow: visible !important;
}

.products-section .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.products-section .feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-section .feature-icon img {
    width: 65px;
    height: 65px;
    display: block !important;
    object-fit: contain;
}

.products-section .feature-card h3 {
    font-size: 22px !important;
    color: #3498db !important;
    margin-bottom: 20px !important;
    font-weight: 600 !important;
    display: block !important;
    visibility: visible !important;
}

.products-section .feature-card p {
    font-size: 16px !important;
    color: #7f8c8d !important;
    line-height: 1.7 !important;
    text-align: center !important;
    display: block !important;
    visibility: visible !important;
}

.products-section .core-business {
    flex: 1;
    display: block !important;
    visibility: visible !important;
}

.products-section .core-business h3 {
    font-size: 24px !important;
    color: #2c3e50 !important;
    margin-top: 30px !important;
    font-weight: 700 !important;
    text-align: left !important;
    display: block !important;
    visibility: visible !important;
}

.products-section .business-cards {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    visibility: visible !important;
}

.products-section .business-card {
    background: #f8f9fa !important;
    padding: 25px !important;
    border-radius: 12px !important;
    border-left: 5px solid #3498db !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.products-section .business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.products-section .business-card h4 {
    font-size: 18px !important;
    color: #2c3e50 !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
    display: block !important;
    visibility: visible !important;
}

.products-section .business-card p {
    font-size: 15px !important;
    color: #7f8c8d !important;
    line-height: 1.7 !important;
    display: block !important;
    visibility: visible !important;
}

/* 响应式设计 - product-features */
@media screen and (max-width: 1200px) {
    .products-section .banner-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 40px;
        gap: 40px;
    }
    
    .products-section .section-header {
        text-align: left;
        flex: 1;
        max-width: 400px;
    }
    
    .products-section .product-features {
        flex-direction: row;
        flex-wrap: nowrap;
        width: auto;
        flex: 2;
        gap: 20px;
        padding: 30px;
    }
    
    .products-section .feature-card {
        flex: 1;
        min-width: 0;
        max-width: none;
        padding: 25px;
    }
    
    .products-section .feature-icon img {
        width: 60px;
        height: 60px;
    }
    
    .products-section .feature-card h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .products-section .core-business {
        flex: 1;
        max-width: 400px;
    }
    
    .products-section .core-business h3 {
        text-align: left;
    }
}

@media screen and (min-width: 769px) and (max-width: 1200px) {
    .products-section .banner-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        padding: 40px;
        gap: 30px;
    }
    
    .products-section .product-features {
        flex-direction: row;
        flex-wrap: nowrap;
        width: auto;
        flex: 2;
        gap: 20px;
        padding: 30px;
    }
    
    .products-section .feature-card {
        flex: 1;
        min-width: 0;
        max-width: none;
        padding: 25px;
    }
    
    .products-section .feature-icon img {
        width: 55px;
        height: 55px;
    }
    
    .products-section .feature-card h3 {
        font-size: 19px;
        margin-bottom: 16px;
    }
    
    .products-section .core-business {
        flex: 1;
        max-width: 350px;
    }
}

@media screen and (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-section .banner-card {
        margin: 0 15px;
    }
    
    .products-section .banner-content {
        display: flex;
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
        text-align: center;
    }
    
    .products-section .section-header h2 {
        font-size: 28px;
    }
    
    .products-section .section-header p {
        font-size: 16px;
    }
    
    .products-section .section-header {
        text-align: center;
    }
    
    .products-section .product-features {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        padding: 25px;
        gap: 20px;
        justify-content: center;
    }
    
    .products-section .feature-card {
        padding: 25px;
        flex: 1;
        min-width: 0;
        max-width: none;
    }
    
    .products-section .feature-icon img {
        width: 50px;
        height: 50px;
    }
    
    .products-section .feature-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .products-section .core-business {
        text-align: center;
    }
    
    .products-section .core-business h3 {
        text-align: center;
    }
    
    .products-section .business-card {
        padding: 20px;
    }
    
    .products-section .business-card h4 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .products-section .banner-card {
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .products-section .banner-content {
        display: flex;
        flex-direction: column;
        padding: 25px 15px;
        gap: 25px;
        text-align: center;
    }
    
    .products-section .section-header h2 {
        font-size: 24px;
    }
    
    .products-section .section-header p {
        font-size: 14px;
    }
    
    .products-section .section-header {
        text-align: center;
    }
    
    .products-section .product-features {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 20px;
    }
    
    .products-section .feature-card {
        padding: 20px;
        flex: none;
        min-width: auto;
        max-width: none;
    }
    
    .products-section .feature-icon img {
        width: 45px;
        height: 45px;
    }
    
    .products-section .feature-card h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }
    
    .products-section .core-business {
        text-align: center;
    }
    
    .products-section .core-business h3 {
        text-align: center;
    }
    
    .products-section .business-card {
        padding: 15px;
    }
    
    .products-section .business-card h4 {
        font-size: 14px;
    }
    
    .products-section .business-card p {
        font-size: 13px;
    }
}

/* 解决方案区域 */
.solutions-section {
    padding: 30px 0;
    background: #f8f9fa;
    /* min-height: calc(100vh - 70px); */
    display: flex;
    align-items: center;
}

.solutions-section .banner-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0;
}

.solutions-section .banner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.solutions-section .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 60px;
}

.solutions-section .section-header {
    text-align: left;
    margin-bottom: 30px;
}

.solutions-section .section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.solutions-section .solutions-description {
    max-width: 100%;
    margin-bottom: 5px;
}

.solutions-section .solutions-description p {
    font-size: 18px;
    color: #7f8c8d;
    line-height: 1.8;
    margin: 0;
}

.solutions-section .solutions-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    /* background: #f8f9fa !important; */
    padding: 30px !important;
    /* border-radius: 15px !important; */
    /* border: 1px solid #e9ecef !important; */
    min-width: 280px !important;
    height: fit-content !important;
    visibility: visible !important;
}

.solutions-section .solution-item {
    background: #ffffff !important;
    padding: 20px 25px !important;
    border-radius: 10px !important;
    text-align: center !important;
    font-size: 16px !important;
    color: #3498db !important;
    font-weight: 600 !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.solutions-section .solution-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: #2980b9;
    background: #f0f8ff;
}

/* 响应式设计 - 解决方案区域 */
@media screen and (max-width: 1200px) {
    .solutions-section .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px;
    }
    
    .solutions-section .section-header {
        text-align: center;
    }
    
    .solutions-section .solutions-description {
        text-align: center;
    }
    
    .solutions-section .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 15px;
    }
    
    .solutions-section .solution-item {
        min-width: auto;
        max-width: none;
    }
}

@media screen and (max-width: 768px) {
    .solutions-section {
        padding: 60px 0;
    }
    
    .solutions-section .banner-card {
        margin: 15px;
    }
    
    .solutions-section .banner-content {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .solutions-section .section-header h2 {
        font-size: 28px;
    }
    
    .solutions-section .solutions-description p {
        font-size: 16px;
    }
    
    .solutions-section .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        padding: 20px;
        gap: 15px;
    }
    
    .solutions-section .solution-item {
        padding: 15px 20px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .solutions-section .banner-card {
        margin: 10px;
        border-radius: 15px;
    }
    
    .solutions-section .banner-content {
        padding: 25px 15px;
    }
    
    .solutions-section .section-header h2 {
        font-size: 24px;
    }
    
    .solutions-section .solution-item {
        padding: 12px 15px;
        font-size: 14px;
    }
}

/* 合作伙伴区域 */
.partners-section {
    padding: 30px 0;
    background: #f8f9fa;
    /* min-height: calc(100vh - 70px); */
    display: flex;
    align-items: center;
}

.partners-section .banner-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    margin: 0;
}

.partners-section .banner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.partners-section .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 60px;
}

.partners-section .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.partners-section .section-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.partners-section .section-header p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0;
    line-height: 1.8;
}

.partners-section .service-targets {
    margin-bottom: 40px;
}

.partners-section .service-targets h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.partners-section .targets-grid {
    display: flex;
    justify-content: space-between; /* 水均匀分 */
    align-items: center; /* 垂直居中 */
    gap: 20px; /* 项目间距 */
    flex-wrap: nowrap; /* 防止换行 */
    width: 100%; /* 占满容器宽度 */
}

.partners-section .target-item {
    background: #ffffff; /* 白色背景 */
    color: #2c3e50; /* 深蓝灰色文字 */
    padding: 20px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border: 1px solid #e9ecef; /* 添加边框 */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); /* 添加阴影效果 */
}

.partners-section .target-item:hover {
    background: #f8f9fa; /* 悬停时浅灰色背景 */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* 悬停时增强阴影 */
    border-color: #3498db; /* 悬停时蓝色边框 */
}

/* 图标样式调整 */
.partners-section .target-icon {
    font-size: 36px;
    margin-bottom: 8px;
    display: block;
    color: #3498db; /* 图标使用蓝色 */
}

/* 文字样式 */
.partners-section .target-text {
    display: block;
    line-height: 1.3; /* 行高调整 */
    font-size: 18px;
    font-weight: 700;
}

.partners-section .insurance-partners {
    margin-bottom: 40px;
    display: block !important;
    visibility: visible !important;
}

.partners-section .insurance-partners h3 {
    font-size: 22px !important;
    color: #2c3e50 !important;
    margin-bottom: 25px !important;
    font-weight: 600 !important;
    display: block !important;
    visibility: visible !important;
}

.partners-section .partners-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.partners-section .partners-logos {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    visibility: visible !important;
}

.partners-section .partner-logo {
    background: #f8f9fa !important;
    /* padding: 20px 25px !important; */
    border-radius: 15px !important; /* 增加圆角 */
    min-width: 140px !important;
    transition: all 0.3s ease !important;
    border: 1px solid #e9ecef !important;
    display: flex !important; /* 改为flex布局 */
    flex-direction: column !important; /* 垂直排列 */
    justify-content: center !important; /* 垂直居中 */
    align-items: center !important; /* 水平居中 */
    visibility: visible !important;
    opacity: 1 !important;
    overflow: hidden !important; /* 确保圆角效果 */
    height: 120px !important; /* 设置固定高度确保一致性 */
    text-align: center !important; /* 文本居中作为备用 */
}

.partners-section .partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

.partners-section .partner-logo img {
    width: 100% !important; /* 图片铺满容器宽度 */
    height: auto !important; /* 保持宽高比 */
    /* margin-bottom: 10px !important; */
    display: block !important;
    border-radius: 10px !important; /* 图片也添加圆角 */
    object-fit: cover !important; /* 保持图片比例并裁剪 */
}

.partners-section .partners-note {
    font-size: 15px !important;
    color: #7f8c8d !important;
    font-style: italic !important;
    margin: 0 !important;
    display: block !important;
    visibility: visible !important;
}

.partners-section .customer-details {
    flex: 1;
}

.partners-section .customer-clients h3,
.partners-section .broker-companies h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: left;
}

.partners-section .clients-list,
.partners-section .brokers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.partners-section .client-item,
.partners-section .broker-item {
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #3498db;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.partners-section .client-item:hover,
.partners-section .broker-item:hover {
    background: #3498db;
    color: #fff;
    border-color: #3498db;
    transform: translateY(-3px);
}

/* 经纪公司logo布局样式 */
.partners-section .broker-companies {
    margin-bottom: 40px;
}

.partners-section .broker-companies h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: left;
}

.partners-section .brokers-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.partners-section .broker-logo {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.partners-section .broker-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.partners-section .broker-logo img {
    /* max-width: 120px; */
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* 响应式设计 - 调整网格列数 */
@media screen and (max-width: 1200px) {
    .partners-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .partners-section .partners-logos {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
    }
}

@media screen and (max-width: 992px) {
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partners-section .partners-logos {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media screen and (max-width: 768px) {
    .partners-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .partners-section .partners-logos {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
}

@media screen and (max-width: 480px) {
    .partners-logos {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .partners-section .partners-logos {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
    .container {
        width: 100%;
        padding: 0 30px;
    }
    
    .banner-content,
    .about-section .banner-content,
    .products-section .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px;
    }
    
    .banner-stats,
    .about-section .certifications,
    .products-section .product-features {
        flex-direction: row;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .stat-item,
    .about-section .cert-item,
    .products-section .feature-card {
        flex: 1;
        min-width: 140px;
        max-width: 160px;
    }
    
    .section-header,
    .about-section .section-header,
    .products-section .section-header {
        text-align: center;
    }
    
    .company-info,
    .products-section .section-header p {
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .banner,
    .about-section,
    .products-section,
    .solutions-section,
    .partners-section {
        padding: 60px 0;
    }
    
    .banner-card,
    .about-section .banner-card,
    .products-section .banner-card {
        margin: 15px;
    }
    
    .banner-content,
    .about-section .banner-content,
    .products-section .banner-content {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .banner-text h1,
    .section-header h2,
    .about-section .section-header h2,
    .products-section .section-header h2 {
        font-size: 28px;
    }
    
    .banner-text h2 {
        font-size: 22px;
    }
    
    .banner-text p,
    .section-header p,
    .company-info p,
    .products-section .section-header p {
        font-size: 16px;
    }
    
    .banner-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .banner-stats,
    .about-section .certifications,
    .products-section .product-features {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 15px;
    }
    
    .stat-item,
    .about-section .cert-item,
    .products-section .feature-card {
        padding: 15px;
    }
    
    .stat-item .number,
    .about-section .cert-item img,
    .products-section .feature-icon img {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .business-card,
    .products-section .business-card {
        padding: 20px;
    }
    
    .business-card h4,
    .products-section .business-card h4 {
        font-size: 16px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .banner-card,
    .about-section .banner-card,
    .products-section .banner-card {
        margin: 10px;
        border-radius: 15px;
    }
    
    .banner-content,
    .about-section .banner-content,
    .products-section .banner-content {
        padding: 25px 15px;
    }
    
    .banner-text h1,
    .section-header h2,
    .about-section .section-header h2,
    .products-section .section-header h2 {
        font-size: 24px;
    }
    
    .banner-text h2 {
        font-size: 20px;
    }
    
    .stat-item,
    .about-section .cert-item,
    .products-section .feature-card {
        padding: 12px;
    }
    
    .stat-item .number,
    .about-section .cert-item span,
    .products-section .feature-card h3 {
        font-size: 24px;
    }
    
    .about-section .cert-item span,
    .products-section .feature-card h3 {
        font-size: 14px;
    }
    
    .business-card,
    .products-section .business-card {
        padding: 15px;
    }
    
    .business-card h4,
    .products-section .business-card h4 {
        font-size: 15px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}
