/* 绩效宝网站主样式文件 */

/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 页头占位符 - 确保固定页头不会遮挡内容 */
#header-placeholder {
    height: 70px;
    margin: 0;
    padding: 0;
    display: block;
}

:root {
    --primary: #0a3d62;
    --secondary: #f39c12;
    --accent: #3498db;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 15px;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.jx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 按钮样式 - 主站专用命名空间 */
.jx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.jx-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.jx-btn-outline {
    background: transparent !important;
    color: var(--accent) !important;
    border: 2px solid var(--accent) !important;
    box-shadow: none !important;
}

.jx-btn-outline:hover {
    background: var(--accent) !important;
    color: var(--white) !important;
}

/* 联系在线按钮样式 */
.jx-btn.jx-contact-online {
    background: transparent !important;
    color: var(--secondary) !important;
    border: 2px solid var(--secondary) !important;
    box-shadow: none !important;
}

.jx-btn.jx-contact-online:hover {
    background: var(--secondary) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* 确保第一个按钮保持紫色渐变背景 */
.module-actions .btn-primary:not(.jx-btn-outline) {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4) !important;
}

.module-actions .btn-primary:not(.jx-btn-outline):hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6) !important;
}

/* 第一个按钮 - 紫色渐变背景 */
.btn-primary-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%) !important;
    color: white !important;
    padding: 16px 32px;
    border: none !important;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.btn-primary-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
}

/* 增强特异性，确保覆盖模块内按钮样式 */
.module-actions .btn-primary.jx-btn-outline {
    background: transparent !important;
    color: var(--accent) !important;
    border: 2px solid var(--accent) !important;
    box-shadow: none !important;
}

.module-actions .btn-primary.jx-btn-outline:hover {
    background: var(--accent) !important;
    color: var(--white) !important;
}

/* 导航栏及下拉菜单样式已迁移至 header.html 统一使用 jx- 前缀，此处保留占位注释 */
/* 如需修改导航栏，请编辑 header.html 中的 jx- 系列样式 */

@media (max-width: 1024px) {
    /* 移动端导航样式已迁移至 header.html */
}

/* 行业解决方案区域样式 */
.industry-solutions {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.industry-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 行业解决方案标题和图标容器 */
.industry-title-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.industry-icon {
    font-size: 24px;
    color: #1890ff;
    margin-right: 12px;
}

.industry-card h3 {
    font-size: 20px;
    margin: 0;
    color: #333;
    flex: 1;
}

.industry-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.industry-features {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.industry-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: #666;
}

.industry-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1890ff;
    font-weight: bold;
}

/* 优化后的客户评价区域样式 */
.testimonials {
    padding: 80px 0;
    background-color: #f0f4ff;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.quote-icon {
    font-size: 32px;
    color: #e6f7ff;
    position: absolute;
}

.quote-icon.fa-quote-left {
    top: 20px;
    left: 20px;
}

.quote-icon.fa-quote-right {
    bottom: 20px;
    right: 20px;
    transform: rotate(180deg);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
    padding: 10px 40px;
    position: relative;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    justify-content: flex-start;
    width: 100%;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1890ff, #36cfc9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.author-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hero区域 */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5276 100%);
    color: var(--white);
    padding: 100px 0 120px; /* 调整顶部内边距，与页头占位符协调 */
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -10px !important; /* 背景向上延伸10px，完全弥合与页头的间隙 */
    border-top: 0 !important;
}

/* 移动端Hero区域适配 */
 @media (max-width: 768px) {
     .hero {
         padding: 60px 0 80px; /* 调整顶部内边距，与页头占位符协调 */
         margin-top: -10px !important; /* 背景向上延伸10px，完全弥合与页头的间隙 */
     }
     
     .hero h1 {
         font-size: 32px !important;
         margin-bottom: 20px;
     }
     
     .hero p {
         font-size: 18px !important;
         margin-bottom: 30px;
     }
     
     .hero-btns {
         flex-direction: column;
         gap: 15px;
     }
     
     .hero-btns .jx-btn {
         width: 100%;
         text-align: center;
         display: block;
         padding-left: 0;
         padding-right: 0;
     }
     
     /* 移除body的padding-top，统一使用页头占位符技术 */
     body {
         padding-top: 0 !important;
     }
     
     /* 确保页头始终置顶 */
     .jx-mobile-header {
         position: fixed !important;
         top: 0 !important;
         left: 0 !important;
         width: 100% !important;
         z-index: 1100 !important; /* 提高z-index确保页头在banner内容之上 */
     }
 }

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(234, 88, 12, 0.1));
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1000; /* 降低z-index确保内容在fixed页头之下 */
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 26px;
    margin-bottom: 45px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px;
}

/* 重新设计banner按钮样式 - 科学美观的配色方案 */

/* 主按钮样式 - 免费试用 */
.hero .hero-btns .jx-btn:not(.jx-btn-outline):not(.jx-contact-online) {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8e53 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 32px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    letter-spacing: 0.5px !important;
}

/* 次按钮样式 - 联系我们 */
section.hero div.jx-container div.hero-content div.hero-btns a.jx-btn.jx-btn-outline,
section.hero div.jx-container div.hero-content div.hero-btns a.jx-btn.jx-contact-online,
section.hero div.jx-container div.hero-content div.hero-btns a.jx-btn.jx-btn-outline.jx-contact-online {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 2px solid #3b82f6 !important;
    border-radius: 12px !important;
    padding: 16px 32px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2) !important;
    position: relative !important;
    letter-spacing: 0.5px !important;
    z-index: 1 !important;
}

/* 主按钮悬停效果 */
.hero .hero-btns .jx-btn:not(.jx-btn-outline):not(.jx-contact-online):hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6) !important;
    background: linear-gradient(135deg, #e55a2b 0%, #ff7b4a 100%) !important;
}

/* 次按钮悬停效果 */
section.hero div.jx-container div.hero-content div.hero-btns a.jx-btn.jx-btn-outline:hover,
section.hero div.jx-container div.hero-content div.hero-btns a.jx-btn.jx-contact-online:hover,
section.hero div.jx-container div.hero-content div.hero-btns a.jx-btn.jx-btn-outline.jx-contact-online:hover {
    background: #3b82f6 !important;
    color: #ffffff !important;
    border-color: #3b82f6 !important;
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4) !important;
}

/* 按钮容器间距调整 */
.hero .hero-btns {
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

/* 统一btn-group容器样式 */
.btn-group {
    display: flex !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

/* 按钮内部图标样式 */
.hero .hero-btns .jx-btn i,
.btn-group .jx-btn i {
    font-size: 18px !important;
    transition: transform 0.3s ease !important;
}

.hero .hero-btns .jx-btn:hover i,
.btn-group .jx-btn:hover i {
    transform: translateX(2px) !important;
}

/* 蓝色背景上的按钮样式 */
.product-banner-new .btn-group .jx-btn.jx-contact-online,
.hero .hero-buttons .jx-btn.jx-contact-online {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
}

.product-banner-new .btn-group .jx-btn.jx-contact-online:hover,
.hero .hero-buttons .jx-btn.jx-contact-online:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

/* 蓝色背景上第一个按钮的样式 */
.product-banner-new .btn-group .jx-btn.jx-contact-online:nth-of-type(1),
.hero .hero-buttons .jx-btn.jx-contact-online:nth-of-type(1) {
    background: white !important;
    color: var(--primary) !important;
    border: 2px solid white !important;
}

.product-banner-new .btn-group .jx-btn.jx-contact-online:nth-of-type(1):hover,
.hero .hero-buttons .jx-btn.jx-contact-online:nth-of-type(1):hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary) !important;
}

/* 通用区域样式 */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
}

.section-title p {
    font-size: 20px;
    color: var(--gray);
    line-height: 1.8;
}

/* 服务卡片 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 32px;
}

.service-card h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
    flex-grow: 1;
}

/* 解决方案区域 */
.solutions {
    background: var(--light-gray);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-text h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 700;
}

.solution-text p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.solution-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 61, 98, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 600;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
}

.solution-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

.solution-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.1), rgba(37, 99, 235, 0.1));
    opacity: 0.6;
}



/* 增值产品 - 弱化展示 */
.addon-products {
    background: var(--light-gray);
}

.addon-products .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.addon-products .service-card {
    padding: 35px 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.addon-products .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: 20px;
}

.addon-products .service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.addon-products .service-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.addon-products .btn {
    padding: 10px 25px;
    font-size: 14px;
}

/* 客户数据区域 */
.client-stats {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5276 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.client-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.1), rgba(37, 99, 235, 0.1));
    opacity: 0.1;
}

.stats-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 300;
}

.stats-value {
    font-size: 100px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1;
    color: var(--secondary);
    font-family: 'Arial Black', sans-serif;
}

.stats-label {
    font-size: 28px;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin: 50px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 48px;
    color: var(--secondary);
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1;
}

.stat-label {
    font-size: 22px;
    opacity: 0.9;
    font-weight: 400;
}

.stats-desc {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 48px;
    }
}

/* 客户Logo展示 */
.client-logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin: 60px auto;
    align-items: center;
    max-width: 1000px;
    width: 100%;
    justify-content: center;
    justify-items: center;
}

/* 行业解决方案切换展示模块样式 */
.industry-switcher-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    border-radius: 15px;
}

.industry-switcher-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

/* 左侧行业导航栏 */
.industry-nav {
    width: 200px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.industry-tab {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 16px;
    color: var(--dark-gray);
    text-decoration: none;
}

.industry-tab:last-child {
    margin-bottom: 0;
}

.industry-tab i {
    margin-right: 12px;
    font-size: 18px;
    color: var(--secondary);
}

/* 导航标签选中样式 - 直接使用哈希值实现高亮 */
.industry-tab[href="#manufacturing-panel"] {
    background: var(--secondary);
    color: var(--white);
    border: none;
}

.industry-tab[href="#manufacturing-panel"] i {
    color: var(--white);
}

.industry-tab:not([href="#manufacturing-panel"]):hover {
    background: rgba(243, 156, 18, 0.1);
    border-color: rgba(243, 156, 18, 0.3);
}

/* 右侧内容展示区 */
.industry-content {
    flex: 1;
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    min-height: 400px;
}

/* 使用:target伪类实现无JS切换 */
.industry-panel {
    display: none;
    animation: fadeInUp 0.3s ease;
}

/* 默认显示制造面板 */
#manufacturing-panel {
    display: block;
}

/* 当面板被锚点指向时显示 */
.industry-panel:target {
    display: block;
}

/* 当一个面板被锚点指向时，隐藏其他面板 */
.industry-panel:target ~ .industry-panel {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industry-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 30px;
}

/* 亮点列表 */
.industry-highlights {
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    padding: 3px;
}



.highlight-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    margin-right: 15px;
    margin-top: 8px;
    flex-shrink: 0;
}

.highlight-item p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* 按钮样式 */
.industry-btn {
    display: inline-block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.industry-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.3);
}

/* 案例展示 */
.industry-cases h4 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.case-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
}

.case-logo:hover {
    background: var(--secondary);
    color: var(--white);
    border: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.2);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .industry-switcher-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .industry-nav {
        width: 100%;
        display: flex;
        overflow-x: auto;
        padding: 15px;
        gap: 10px;
    }
    
    .industry-tab {
        min-width: 160px;
        margin-bottom: 0;
    }
    
    .case-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industry-switcher-section {
        padding: 60px 0;
    }
    
    .industry-content {
        padding: 30px 20px;
    }
    
    .industry-title {
        font-size: 20px;
    }
    
    .highlight-item p {
        font-size: 14px;
    }
    
    .case-logos {
        grid-template-columns: 1fr;
    }
}

/* 移动端导航折叠按钮 */
.mobile-nav-toggle {
    display: none;
    width: 100%;
    padding: 15px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: left;
    font-size: 16px;
    color: var(--dark-gray);
    cursor: pointer;
    margin-bottom: 20px;
}

.mobile-nav-toggle i {
    float: right;
    transition: transform 0.3s ease;
}

.mobile-nav-toggle.active i {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .industry-nav {
        display: none;
        flex-direction: column;
        overflow-x: visible;
    }
    
    .industry-nav.show {
        display: flex;
    }
    
    .industry-tab {
        min-width: 100%;
    }
}

/* 管理咨询服务区域 */
.consulting-services {
    padding: 100px 0;
    background: #f8f9fa;
}

.consulting-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.consulting-card {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.consulting-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.consulting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.consulting-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.consulting-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.consulting-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
}

.consulting-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
}

.consulting-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .consulting-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .consulting-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .consulting-services {
        padding: 60px 0;
    }
    
    .consulting-cards {
        margin-top: 40px;
    }
    
    .consulting-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .consulting-card h3 {
        font-size: 20px;
    }
    
    .consulting-card p {
        font-size: 15px;
    }
    
    .consulting-btn {
        padding: 10px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .consulting-services {
        padding: 40px 0;
    }
    
    .consulting-card {
        padding: 30px 20px;
    }
    
    .consulting-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .consulting-card h3 {
        font-size: 18px;
    }
}

/* 部署方式区域 */
.deployment-section {
    padding: 100px 0;
    background: #ffffff;
}

.deployment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.deployment-card {
    background: white;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.deployment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.deployment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.deployment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.deployment-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-color);
}

.deployment-card > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.deployment-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.deployment-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.deployment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.deployment-card .btn {
    width: 100%;
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .deployment-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .deployment-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .deployment-section {
        padding: 60px 0;
    }
    
    .deployment-cards {
        margin-top: 40px;
    }
}

.logo-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.logo-item img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.logo-item:hover img {
    opacity: 1;
}

/* 客户评价 */
.testimonials {
    background: var(--white);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 120px;
    color: rgba(10, 61, 98, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
}

.author-info h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info p {
    color: var(--gray);
    font-size: 16px;
}

/* 底部区域 */
.footer {
    background: #222;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-about p {
    margin-bottom: 25px;
    opacity: 0.8;
    line-height: 1.8;
}

.footer-title {
    font-size: 22px;
    margin-bottom: 30px;
    position: relative;
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--secondary);
}

.footer-links,
.contact-info {
    list-style: none;
}

.footer-links li,
.contact-info li {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
    font-size: 17px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 8px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    opacity: 0.8;
}

.contact-info i {
    color: var(--secondary);
    margin-right: 15px;
    min-width: 24px;
    font-size: 20px;
    margin-top: 4px;
}

/* 版权信息 - 使用特定命名空间 */
.footer-copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 16px;
}

/* 悬浮聊天按钮 - 使用特定命名空间 */
.jxb-chat-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.jxb-chat-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
    }
    50% {
        box-shadow: 0 6px 30px rgba(243, 156, 18, 0.8);
    }
    100% {
        box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
    }
}

/* 清理后的样式 - 替换内联样式 */
.placeholder-logo {
    width: 120px;
    height: 60px;
    background: #ffffff;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.client-stats .placeholder-logo {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    font-weight: bold;
    font-size: 14px;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .stats-value {
        font-size: 80px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-content,
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .solution-text {
        padding-right: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .industry-solutions, .testimonials {
        padding: 60px 0;
    }
    
    .solutions-grid, .testimonial-cards {
        gap: 20px;
    }
    
    .testimonial-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industry-card, .testimonial-card {
        padding: 25px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .hero {
        padding: 0 0 80px;
    }
    
    .hero h1 {
        font-size: 38px;
    }
    
    .hero p {
        font-size: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* 确保增值产品区域的服务卡片也在手机端单列显示 */
    .addon-products .services-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .service-card {
        padding: 40px 30px !important;
    }
    
    .section-title h2 {
        font-size: 36px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    /* 客户Logo展示 - 手机端响应式设计 */
    .client-logos {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        margin: 40px auto !important;
        max-width: 100% !important;
    }
    
    .logo-item {
        padding: 15px !important;
    }
    
    .placeholder-logo {
        height: 50px !important;
        font-size: 12px !important;
        color: #ffffff !important;
        font-weight: bold !important;
    }
    
    .stats-value {
        font-size: 70px;
    }
    
    .stats-label {
        font-size: 24px;
    }
    
    .chat-float {
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btns .jx-btn {
        width: 100%;
        text-align: center;
        display: block;
        padding-left: 0;
        padding-right: 0;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .section-title p {
        font-size: 18px;
    }
    
    .stats-value {
        font-size: 60px;
    }
    
    .stats-label {
        font-size: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* 客户Logo展示 - 小屏手机端进一步优化 */
    .client-logos {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .placeholder-logo {
        height: 45px !important;
        font-size: 11px !important;
        color: #ffffff !important;
        font-weight: bold !important;
    }
    
    /* 行业解决方案和客户评价区域小屏手机端优化 */
    .testimonial-text {
        padding: 10px 30px;
        font-size: 15px;
    }
    
    .quote-icon {
        font-size: 24px;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
}

/* 客户案例页面样式 */
.cases-hero {
    background: linear-gradient(135deg, #0a3d62 0%, #1a5276 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cases-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(234, 88, 12, 0.1));
    opacity: 0.3;
}

.cases-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cases-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cases-hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

/* 案例筛选器 */
.cases-filter {
    background: white;
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: var(--shadow);
    margin-top: -40px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-tab {
    padding: 10px 25px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 16px;
}

.filter-tab:hover {
    border-color: #1890ff;
    color: #1890ff;
}

.filter-tab.active {
    background: #1890ff;
    color: white;
    border-color: #1890ff;
}

/* 案例卡片网格 */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.case-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #1890ff;
}

.case-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f0f4ff, #e6f7ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1890ff;
    font-size: 48px;
    overflow: hidden;
}

.case-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    padding: 25px;
}

.case-industry {
    display: inline-block;
    padding: 5px 15px;
    background: #e6f7ff;
    color: #1890ff;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 15px;
}

.case-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.case-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-results {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.case-result {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.case-result-value {
    font-size: 24px;
    font-weight: 700;
    color: #1890ff;
    margin-bottom: 5px;
}

.case-result-label {
    font-size: 14px;
    color: #666;
}

.case-cta {
    display: inline-block;
    padding: 10px 25px;
    background: #1890ff;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.case-cta:hover {
    background: #40a9ff;
    transform: translateY(-2px);
}

/* 案例页面响应式设计 */
@media (max-width: 768px) {
    .cases-hero h1 {
        font-size: 36px;
    }
    
    .cases-hero p {
        font-size: 18px;
    }
    
    .filter-tab {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

/* PC端页头固定样式 - 确保内容不被遮挡 */
#main-content {
    padding-top: 0; /* 移除顶部内边距，由hero区域处理 */
    min-height: calc(100vh - 70px);
}

/* 移动端页头占位符 */
#mobile-header-container {
    height: 80px;
    margin: 0;
    padding: 0;
}

/* PC端页头占位符 */
#pc-header-container {
    height: 70px;
    margin: 0;
    padding: 0;
}

/* 确保页头在所有页面都固定 */
.jx-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1100 !important; /* 提高z-index确保页头在hero-content之上 */
    background: white !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}