/* 标题统一样式 */
.client-types h2,
.client-advantages h2,
.partners h2 {
    all: initial;
    display: inline-block !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    
    color: var(--primary-color) !important;
    font-size: 36px !important;
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    font-family: inherit !important;
    font-weight: bold !important;
}

/* 标题装饰线 */
.client-types h2::after,
.client-advantages h2::after,
.partners h2::after {
    content: '' !important;
    position: absolute !important;
    left: 50% !important;
    bottom: -10px !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 3px !important;
    background: currentColor !important;
    opacity: 0.3 !important;
}

/* 副标题描述文字统一样式 */
.section-desc {
    display: block !important;
    clear: both !important;
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

/* 各部分容器间距调整 */
.client-types,
.client-advantages,
.partners {
    padding: 80px 0;
}

/* 客户类型部分 */
.client-types {
    background: #f8f9fa;
    position: relative;
}

/* 服务优势部分 */
.client-advantages {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: var(--white);
}

.client-advantages h2 {
    color: var(--white) !important;
}

.client-advantages .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* 优势卡片样式 */
.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

/* 图标样式 */
.advantage-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.advantage-icon svg {
    width: 32px;
    height: 32px;
}

/* 内容样式 */
.advantage-content {
    flex-grow: 1;
}

.advantage-content h3 {
    color: var(--white);
    font-size: 20px;
    margin: 0 0 15px;
}

.advantage-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

/* 数据统计样式 */
.advantage-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* 响应时间样式 */
.response-time {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.time-block {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 10px;
}

.time {
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
    display: block;
}

.label {
    font-size: 12px;
    color: var(--text-secondary);
}

/* 创新标签样式 */
.innovation-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* 增长图表样式 */
.growth-chart {
    margin-bottom: 15px;
}

.chart-bar {
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.chart-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--growth);
    background: var(--white);
    border-radius: 12px;
    transition: width 0.3s ease;
}

.growth-label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
    color: var(--primary-dark) !important;
}

.chart-bar[style*="--growth: "] .growth-label {
    color: var(--white) !important;
}

.chart-bar:first-child .growth-label,
.chart-bar:last-child .growth-label {
    color: var(--primary-dark) !important;
}

/* 客户满意度标签样式 */
.chart-bar:first-child .growth-label {
    color: var(--primary-dark);
}

/* 续约率标签样式 */
.chart-bar:last-child .growth-label {
    color: var(--primary-dark);
}

/* 低进度时的文字颜色 */
.chart-bar[style*="--growth: 85%"] .growth-label {
    color: var(--white);
}

/* 确保高进度时文字清晰可见 */
.chart-bar[style*="--growth: 92%"] .growth-label {
    color: var(--primary-dark);
}

/* 响应式调整 */
@media screen and (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .advantage-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .advantage-icon {
        margin: 0 auto;
    }

    .advantage-stats,
    .response-time {
        justify-content: center;
    }

    .innovation-tags {
        justify-content: center;
    }
}

/* 合作伙伴部分 */
.partners {
    background: #f5f5f5;
    padding: 80px 0;
}

.partner-grid {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.partner-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 0 20px;
}

/* Logo基础样式 */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.partner-logo .iconfont {
    font-size: 42px;
}

/* 品牌标准色 */
.icon-microsoft { color: #00a4ef !important; }
.icon-aliyun { color: #ff6a00 !important; }
.icon-huawei1 { color: #ff0000 !important; }
.icon-meizu-3 { color: #008cff !important; }
.icon-zhongguodianxin { color: #0066cc !important; }
.icon-ios { color: #999999 !important; }
.icon-logo { color: #4285f4 !important; }
.icon-logo2 { color: #34a853 !important; }
.icon-logo3 { color: #fbbc05 !important; }
.icon-logo4 { color: #ea4335 !important; }
.icon-logo5 { color: #00a4ef !important; }
.icon-logo6 { color: #7fba00 !important; }
.icon-logo7 { color: #ffb900 !important; }
.icon-logo8 { color: #00897b !important; }
.icon-logo9 { color: #1976d2 !important; }
.icon-logo11 { color: #6200ea !important; }
.icon-5 { color: #304ffe !important; }
.icon-icon2 { color: #00c853 !important; }

/* 悬停效果 */
.partner-logo:hover {
    transform: scale(1.1);
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .partner-grid {
        gap: 40px;
        margin: 40px auto;
    }
    
    .partner-row {
        gap: 40px;
    }
    
    .partner-logo .iconfont {
        font-size: 36px;
    }
}

@media screen and (max-width: 480px) {
    .partner-grid {
        gap: 30px;
    }
    
    .partner-row {
        gap: 30px;
    }
    
    .partner-logo .iconfont {
        font-size: 28px;
    }
}

/* 客户类型网格布局 */
.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 客户类型卡片样式 */
.client-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(8, 66, 138, 0.05);
    transition: transform 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
}

/* 卡片头部样式 */
.client-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    text-align: center;
    position: relative;
}

.client-stage {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.client-header h3 {
    font-size: 24px;
    margin: 0 0 10px;
    color: var(--white);
}

.client-brief {
    font-size: 14px;
    opacity: 0.9;
}

/* 内容区域样式 */
.client-content {
    padding: 30px;
}

/* 特性组样式 */
.feature-group {
    margin-bottom: 25px;
}

.feature-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 8px;
    color: var(--primary-color);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title h4 {
    margin: 0;
    font-size: 16px;
    color: var(--text-color);
}

/* 特性列表样式 */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 14px;
}

.feature-list .check {
    color: var(--primary-color);
    font-weight: bold;
}

/* 解决方案框样式 */
.solution-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.solution-title {
    font-size: 15px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.solution-box p {
    margin: 0 0 15px;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
}

.solution-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.solution-link:hover {
    transform: translateX(5px);
}

/* 响应式调整 */
@media screen and (max-width: 1024px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .client-grid {
        grid-template-columns: 1fr;
    }

    .client-header {
        padding: 25px;
    }

    .client-header h3 {
        font-size: 20px;
    }

    .client-content {
        padding: 25px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .solution-box {
        padding: 15px;
    }
} 

    .client-icon {
        font-size: 40px;
    }

    .client-card h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .client-content h4 {
        font-size: 15px;
    }

    .client-content li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .client-content p {
        font-size: 14px;
        padding: 12px;
    }


@media screen and (max-width: 576px) {
    .client-grid,
    .partner-grid {
        grid-template-columns: 1fr;
    }
} 

/* iconfont 基础设置 */
.partner-logo .iconfont {
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 确保颜色应用到伪元素 */
[class^="icon-"]:before, 
[class*=" icon-"]:before {
    color: inherit;
} 