
        /* 完全独立的样式，使用特定的命名空间前缀 */
        .prod-solution-container {
            --prod-primary-color: #c724b1;
            --prod-primary-light: #e6a4de;
            --prod-dark-color: #333;
            --prod-light-color: #f9f9f9;
            --prod-gray-color: #666;
            --prod-border-radius: 8px;
            --prod-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        .prod-solution-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .prod-solution-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
            color: var(--prod-dark-color);
            line-height: 1.6;
            width: 100%; /* 确保容器宽度 */
        }
        
        /* 标题和头部样式 - 修复兼容性 */
        .prod-page-header {
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 3px solid var(--prod-primary-light);
            display: flex;
            flex-direction: column;
            align-items: center; /* 使用flexbox居中，兼容性更好 */
            width: 100%;
            text-align: center; /* 添加文本居中 */
        }
        
        .prod-page-title {
            color: var(--prod-primary-color);
            font-size: 2.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block; /* 保持内联块以使用transform */
            text-align: center; /* 确保文本居中 */
            width: 100%; /* 占据全宽 */
        }
        
        .prod-page-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--prod-primary-color);
            border-radius: 2px;
        }
        
        .prod-page-subtitle {
            font-size: 1.2rem;
            color: var(--prod-gray-color);
            max-width: 800px;
            margin: 0 auto;
            text-align: center; 
            padding: 0 20px; /* 添加内边距防止边缘过近 */
            width: 100%; /* 确保占据全宽 */
            display: block; /* 确保是块级元素 */
            box-sizing: border-box; /* 包含内边距在宽度内 */
        }
        
        /* 问题与解决方案部分 */
        .prod-section {
            margin-bottom: 60px;
            padding: 30px;
            border-radius: var(--prod-border-radius);
            background-color: var(--prod-light-color);
            box-shadow: var(--prod-box-shadow);
        }
        
        .prod-section-title {
            color: var(--prod-primary-color);
            font-size: 1.8rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--prod-primary-light);
            display: flex;
            align-items: center;
        }
        
        .prod-section-title:before {
            content: '';
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: var(--prod-primary-color);
            border-radius: 50%;
            margin-right: 12px;
        }
        
        .prod-problem-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }
        
        .prod-problem-card {
            background-color: white;
            border-radius: var(--prod-border-radius);
            padding: 25px;
            border-left: 5px solid var(--prod-primary-color);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .prod-problem-card:hover {
            transform: translateY(-5px);
        }
        
        .prod-problem-card h3 {
            color: var(--prod-primary-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        /* 核心理念部分 */
        .prod-core-concept {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .prod-concept-text {
            flex: 1;
            min-width: 300px;
        }
        
        /* 修复专业服务部分文案紧凑度 */
        .prod-concept-text h3 {
            margin-top: 0;
            margin-bottom: 15px;
        }
        
        .prod-concept-text p {
            margin-bottom: 15px; /* 减少段落间距 */
            line-height: 1.5; /* 略微减少行高 */
        }
        
        /* 添加新的紧凑段落样式 */
        .prod-compact-text {
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .prod-concept-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .prod-concept-image img {
            max-width: 100%;
            height: auto;
            border-radius: var(--prod-border-radius);
            box-shadow: var(--prod-box-shadow);
        }
        
        /* 表格样式 */
        .prod-design-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            border-radius: var(--prod-border-radius);
            overflow: hidden;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
            table-layout: fixed; /* 固定表格布局 */
        }
        
        .prod-design-table th {
            background-color: var(--prod-primary-color);
            color: white;
            text-align: left;
            padding: 16px 15px;
            font-weight: 600;
        }
        
        .prod-design-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
            vertical-align: top; /* 顶部对齐 */
        }
        
        .prod-design-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .prod-design-table tr:hover {
            background-color: #f0f0f0;
        }
        
        /* 价值部分 */
        .prod-value-section {
            background: linear-gradient(135deg, #f9e8f7 0%, #f0d4ed 100%);
            border-left: 6px solid var(--prod-primary-color);
            padding: 30px;
            border-radius: var(--prod-border-radius);
            margin-top: 40px;
        }
        
        .prod-value-title {
            color: var(--prod-primary-color);
            font-size: 1.6rem;
            margin-bottom: 20px;
        }
        
        .prod-value-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .prod-value-item {
            background-color: white;
            padding: 20px;
            border-radius: var(--prod-border-radius);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .prod-value-item h4 {
            color: var(--prod-primary-color);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .prod-page-title {
                font-size: 2rem;
            }
            
            .prod-page-subtitle {
                font-size: 1.1rem;
                padding: 0 10px;
            }
            
            .prod-section {
                padding: 20px;
            }
            
            .prod-problem-list, .prod-value-list {
                grid-template-columns: 1fr;
            }
            
            .prod-core-concept {
                flex-direction: column;
                gap: 25px; /* 移动端减少间隙 */
            }
            
            .prod-design-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        /* 大屏幕优化 - 专业服务部分紧凑化 */
        @media (min-width: 1200px) {
            .prod-core-concept {
                gap: 30px; /* 大屏幕减少间隙 */
            }
            
            .prod-concept-text p {
                margin-bottom: 12px; /* 大屏幕进一步减少段落间距 */
                line-height: 1.5;
            }
            
            .prod-concept-text h3 {
                margin-bottom: 12px;
            }
        }
        
        /* 图片样式 */
        .prod-image-container {
            margin: 30px 0;
            text-align: center;
        }
        
        .prod-image-container img {
            max-width: 100%;
            height: auto;
            border-radius: var(--prod-border-radius);
            box-shadow: var(--prod-box-shadow);
        }
        
        .prod-image-caption {
            font-style: italic;
            color: var(--prod-gray-color);
            margin-top: 10px;
            font-size: 0.9rem;
        }
        
        /* 强调文本 */
        .prod-highlight {
            color: var(--prod-primary-color);
            font-weight: 600;
        }
        
        .prod-tag {
            display: inline-block;
            background-color: var(--prod-primary-light);
            color: var(--prod-primary-color);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        
        /* 注意：不设置全局样式，只影响.prod-solution-container内的元素 */
        .prod-solution-container p,
        .prod-solution-container h1,
        .prod-solution-container h2,
        .prod-solution-container h3,
        .prod-solution-container h4,
        .prod-solution-container h5,
        .prod-solution-container h6 {
            margin-top: 0;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        /* 修复通用居中问题 */
        .prod-text-center {
            text-align: center !important;
            display: block !important;
            width: 100% !important;
        }
    