
        /* 电缆组装服务独立模块样式 */
        .cable-service-module {
            --cs-primary: #c724b1;
            --cs-primary-light: #e84fd6;
            --cs-primary-dark: #a01c8e;
            --cs-card-bg: #ffffff;
            --cs-text-color: #333333;
            --cs-text-light: #666666;
            --cs-border-color: #eaeaea;
            --cs-light-bg: #f9f9f9;
            
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
            background-color: var(--cs-light-bg);
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }
        
        /* 重置所有内部元素的继承样式 */
        .cable-service-module * {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            color: inherit;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        /* 内容容器 - 完全独立 */
        .cs-content-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            background-color: transparent;
        }
        
        /* 模块内标题样式 - 主标题保持不变 */
        .cs-page-title {
            font-size: 2rem;
            color: #222222;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--cs-primary);
            font-weight: 600; /* 主标题字重不变 */
            line-height: 1.3;
        }
        
        /* 章节标题字重调细为500 */
        .cs-section-title {
            font-size: 1.5rem;
            color: #222222;
            margin: 2rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--cs-border-color);
            font-weight: 500; /* 由600调细为500 */
            line-height: 1.3;
        }
        
        /* 案例标题字重也调细为500 */
        .cs-case-title {
            font-size: 1.2rem;
            color: #222222;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--cs-border-color);
            font-weight: 500; /* 由600调细为500 */
            line-height: 1.3;
        }
        
        /* 优势部分样式 */
        .cs-advantages-section {
            margin-bottom: 2.5rem;
        }
        
        .cs-advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        
        .cs-advantage-item {
            background-color: var(--cs-card-bg);
            padding: 1.2rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--cs-primary);
        }
        
        .cs-advantage-item p {
            font-weight: 500;
            margin: 0;
            line-height: 1.5;
        }
        
        /* 材料部分样式 */
        .cs-materials-section {
            margin-bottom: 2.5rem;
        }
        
        .cs-material-category {
            margin-bottom: 2rem;
        }
        
        .cs-material-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .cs-material-card {
            background-color: var(--cs-card-bg);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            border-top: 3px solid var(--cs-primary-light);
        }
        
        .cs-material-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--cs-primary-dark);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px dashed var(--cs-border-color);
            line-height: 1.4;
        }
        
        .cs-material-feature, .cs-material-performance, .cs-material-origin {
            margin-bottom: 0.8rem;
        }
        
        .cs-feature-title, .cs-performance-title, .cs-origin-title {
            font-weight: 600;
            color: #555555;
            margin-bottom: 0.3rem;
            display: flex;
            align-items: center;
            line-height: 1.4;
        }
        
        .cs-feature-title:before, .cs-performance-title:before, .cs-origin-title:before {
            content: "•";
            color: var(--cs-primary);
            margin-right: 8px;
            font-weight: bold;
        }
        
        .cs-feature-content, .cs-performance-content, .cs-origin-content {
            color: var(--cs-text-color);
            padding-left: 1.2rem;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        /* 加工方式样式 */
        .cs-treatment-section {
            background-color: rgba(199, 36, 177, 0.05);
            padding: 1.2rem 1.5rem;
            border-radius: 8px;
            margin-bottom: 2.5rem;
            border-left: 4px solid var(--cs-primary);
        }
        
        .cs-treatment-title {
            font-weight: 600;
            color: var(--cs-primary-dark);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }
        
        .cs-treatment-content {
            line-height: 1.5;
        }
        
        /* 成功案例样式 */
        .cs-case-section {
            margin-bottom: 2rem;
        }
        
        .cs-case-item {
            background-color: var(--cs-card-bg);
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }
        
        /* 案例1图片布局 */
        .cs-case-1-images {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.2rem;
        }
        
        /* 案例2图片布局 - 单张图片居中 */
        .cs-case-2-images {
            display: flex;
            justify-content: center;
            margin-bottom: 1.2rem;
        }
        
        .cs-single-image-container {
            max-width: 600px;
            width: 100%;
        }
        
        .cs-wide-image-container {
            grid-column: 1;
        }
        
        .cs-square-image-container {
            grid-column: 2;
        }
        
        .cs-case-image {
            width: 100%;
            height: auto;
            border-radius: 6px;
            display: block;
            border: 1px solid var(--cs-border-color);
        }
        
        .cs-case-caption {
            text-align: center;
            font-size: 0.85rem;
            color: var(--cs-text-light);
            margin-top: 0.5rem;
            font-style: italic;
            line-height: 1.4;
        }
        
        .cs-case-description {
            color: var(--cs-text-color);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        
        /* 响应式调整 */
        @media (max-width: 900px) {
            .cs-case-1-images {
                grid-template-columns: 1fr;
            }
            
            .cs-wide-image-container,
            .cs-square-image-container {
                grid-column: 1;
            }
        }
        
        @media (max-width: 768px) {
            .cs-content-container {
                padding: 1.5rem 1rem;
            }
            
            .cs-page-title {
                font-size: 1.7rem;
            }
            
            .cs-advantages-grid,
            .cs-material-items {
                grid-template-columns: 1fr;
            }
            
            .cs-single-image-container {
                max-width: 100%;
            }
        }
        
        /* 确保模块完全独立，不影响外部样式 */
        .cable-service-module h1,
        .cable-service-module h2,
        .cable-service-module h3,
        .cable-service-module h4,
        .cable-service-module h5,
        .cable-service-module h6 {
            font-weight: 600;
            margin-top: 0;
            margin-bottom: 0.5em;
        }
        
        .cable-service-module p {
            margin-bottom: 1em;
        }
        
        .cable-service-module p:last-child {
            margin-bottom: 0;
        }
        
        .cable-service-module img {
            max-width: 100%;
            height: auto;
            vertical-align: middle;
        }
    