
        /* 使用独立前缀避免样式冲突 */
        .coating-container {
            font-family: 'Segoe UI', Arial, sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background: #f9f9f9;
        }
        
        /* 主色调装饰 */
        .coating-primary-color {
            color: #c724b1;
        }
        
        .coating-primary-border {
            border-color: #c724b1;
        }
        
        .coating-primary-bg {
            background-color: #c724b1;
            color: white;
        }
        
        /* 通用样式 */
        .coating-section {
            margin-bottom: 40px;
            padding: 25px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-left: 4px solid #c724b1;
        }
        
        .coating-title {
            font-size: 28px;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #c724b1;
        }
        
        .coating-subtitle {
            font-size: 22px;
            margin: 25px 0 15px;
            color: #333;
        }
        
        .coating-image {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 5px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        /* 防护等级表格样式 */
        .coating-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .coating-table th, .coating-table td {
            padding: 12px 15px;
            text-align: left;
            border: 1px solid #ddd;
        }
        
        .coating-table th {
            background-color: #f5f5f5;
            font-weight: 600;
        }
        
        .coating-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        /* 应用场景卡片 - 修正为2x2网格 */
        .coating-applications {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 20px;
        }
        
        .coating-application-card {
            padding: 20px;
            border-radius: 6px;
            border: 1px solid #e0e0e0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .coating-application-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(199, 36, 177, 0.1);
            border-color: #c724b1;
        }
        
        .coating-application-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #c724b1;
        }
        
        .coating-highlight {
            background-color: rgba(199, 36, 177, 0.08);
            padding: 12px 15px;
            border-radius: 5px;
            margin: 15px 0;
            border-left: 3px solid #c724b1;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {
            .coating-container {
                padding: 15px;
            }
            
            .coating-section {
                padding: 20px;
            }
            
            .coating-title {
                font-size: 24px;
            }
            
            .coating-subtitle {
                font-size: 20px;
            }
            
            .coating-applications {
                grid-template-columns: 1fr;
            }
        }
    