
        :root {
            --primary-color: #2564BF;
            --light-bg: #f8fafd;
            --dark-text: #333;
            --light-text: #666;
            --white: #ffffff;
        }
             
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 产品介绍模块样式 */
        .product-section {
            margin-bottom: 30px;
            width: 100%;
            padding: 25px;
        }
        
        .section-header {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .section-header h2 {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary-color);
            display: inline-block;
            position: relative;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .section-header:hover h2:after {
            width: 100%;
        }
        
        /* 描述部分样式 */
        .description-text {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: var(--light-text);
        }
        
        /* 表格样式 */
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }
        
        .spec-table th, .spec-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #eaeaea;
            font-size: 16px;
        }
        
        .spec-table th {
            background-color: #f5f9ff;
            color: var(--primary-color);
            font-weight: 600;
            width: 30%;
            border-right: 1px solid #eaeaea;
        }
        
        .spec-table tr:hover {
            background-color: #f9fbfe;
        }
        
        /* 特性部分样式 */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 15px;
        }
        
        .feature-category {
            background: #f8fafd;
            padding: 20px;
            border: 1px solid #e1ecff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .feature-category:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(37, 100, 191, 0.1);
        }
        
        .feature-category h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 700;
            position: relative;
            padding-left: 15px;
        }
        
        .feature-category h3:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 20px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .feature-list {
            list-style-type: none;
        }
        
        .feature-list li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            font-size: 16px;
        }
        
        .feature-list li:before {
            content: "•";
            color: var(--primary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 18px;
        }
        
        /* 应用部分样式 */
        .applications-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 15px;
        }
        
        .application-item {
            background: #f5f9ff;
            padding: 12px 20px;
            color: var(--primary-color);
            font-weight: 600;
            border: 1px solid #e1ecff;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .application-item:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .product-section {
                padding: 20px;
            }
            
            .spec-table {
                display: block;
                overflow-x: auto;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .applications-list {
                justify-content: flex-start;
            }
            
            .description-text {
                font-size: 16px;
            }
            
            .spec-table th, .spec-table td {
                font-size: 14px;
                padding: 10px 12px;
            }
            
            .feature-list li {
                font-size: 14px;
            }
            
            .application-item {
                font-size: 14px;
                padding: 10px 16px;
            }
        }
        
        @media (max-width: 480px) {
            .product-section {
                padding: 15px;
            }
            
            .section-header h2 {
                font-size: 22px;
            }
            
            .spec-table th, .spec-table td {
                padding: 8px 10px;
            }
            
            .feature-category {
                padding: 15px;
            }
        }
    