
        /* 独立样式，防止影响原有页面 */
        .cable-assembly-container {
            font-family: Arial, sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            color: #333;
            box-sizing: border-box;
        }
        
        /* 使用提供的色调 */
        .accent-color {
            color: #c724b1;
        }
        
        .accent-border {
            border-bottom: 3px solid #c724b1;
        }
        
        .accent-bg {
            background-color: rgba(199, 36, 177, 0.1);
        }
        
        .section-title {
            font-size: 24px;
            font-weight: bold;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
        }
        
        .section-title.accent {
            border-bottom-color: #c724b1;
        }
        
        /* 修正：仅修改产品展示标题样式 */
        .product-showcase-subtitle {
            font-size: 18px;
            color: #666;
            font-style: italic;
            text-align: center;
            margin: 10px auto 20px;
            max-width: 800px;
            line-height: 1.6;
        }
        
        .product-showcase {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .main-banner {
            width: 100%;
            max-width: 1280px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .advantage-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .advantage-card {
            flex: 1;
            min-width: 250px;
            padding: 20px;
            border-radius: 8px;
            background-color: #f9f9f9;
            border-left: 4px solid #c724b1;
        }
        
        .advantage-card h3 {
            margin-top: 0;
            color: #c724b1;
        }
        
        .materials-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .material-item {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 15px;
            border-radius: 8px;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .material-img {
            width: 100%;
            height: auto;
            max-height: 200px;
            object-fit: contain;
            border-radius: 6px;
            margin-bottom: 10px;
        }
        
        .supplier-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0 40px;
        }
        
        .supplier-link {
            padding: 10px 20px;
            background-color: #c724b1;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        .supplier-link:hover {
            background-color: #a61c8f;
        }
        
        .case-studies {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .case-study {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            border-radius: 8px;
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .case-img {
            width: 100%;
            height: auto;
            border-radius: 6px;
            margin-bottom: 15px;
        }
        
        .case-description {
            font-size: 14px;
            line-height: 1.6;
        }
        
        .processing-steps {
            margin-bottom: 40px;
            padding: 20px;
            border-radius: 8px;
            background-color: #f9f9f9;
        }
        
        .steps-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        
        .step {
            padding: 8px 15px;
            background-color: #fff;
            border: 1px solid #c724b1;
            border-radius: 20px;
            font-size: 14px;
        }
        
        /* 修正：修复表格布局问题 */
        .tables-section {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
            width: 100%;
        }
        
        .tables-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            width: 100%;
        }
        
        .spec-table-container {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
        }
        
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            table-layout: fixed; /* 确保表格布局稳定 */
        }
        
        .spec-table caption {
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 15px;
            color: #c724b1;
            text-align: left;
            padding: 0 10px;
        }
        
        .spec-table th, .spec-table td {
            padding: 10px;
            border: 1px solid #ddd;
            text-align: center;
            word-wrap: break-word;
        }
        
        .spec-table th {
            background-color: rgba(199, 36, 177, 0.1);
            font-weight: bold;
        }
        
        .spec-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .advantage-section, .materials-section, .case-studies {
                flex-direction: column;
            }
            
            .material-item, .case-study, .spec-table-container {
                min-width: 100%;
            }
            
            .tables-wrapper {
                flex-direction: column;
            }
        }
        
        /* 针对IE浏览器的特定修复 */
        @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
            .tables-wrapper {
                display: table;
                width: 100%;
            }
            
            .spec-table-container {
                display: table-cell;
                vertical-align: top;
            }
        }
    