
        :root {
            --primary-color: #2B73DA;
            --light-bg: #f8fafd;
            --dark-text: #333;
            --light-text: #666;
            --white: #ffffff;
        }
             
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        /* 产品介绍模块样式 */
        .product-section {
            margin-bottom: 3px;
            width: 100%;
            padding: 20px 0;
        }
        
        .section-header {
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 8px;
        }
        
        .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 {
            line-height: 1.7;
            margin-bottom: 15px;
            color: var(--light-text);
        }
        
        /* 表格样式 */
        .spec-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .spec-table th, .spec-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #eaeaea;
        }
        
        .spec-table th {
            background-color: #f5f9ff;
            color: var(--primary-color);
            font-weight: 600;
            border-right: 1px solid #eaeaea;
            width: 33%;
        }
        
        .spec-table tr:hover {
            background-color: #f9fbfe;
        }
        
        /* 列表样式 */
        .spec-list, .feature-list, .application-list {
            list-style-type: none;
            margin-top: 10px;
        }
        
        .spec-list li, .feature-list li, .application-list li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }
        
        .spec-list li:before, .feature-list li:before, .application-list li:before {
            content: "•";
            color: var(--primary-color);
            position: absolute;
            left: 0;
            font-weight: bold;
            font-size: 18px;
        }
        
        .list-title {
            font-weight: bold;
            color: var(--primary-color);
            margin-top: 15px;
            margin-bottom: 8px;
            font-size: 20px;
        }
        
        /* 应用部分样式 */
        .applications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }
        
        .application-item {
            padding: 15px;
            border-left: 3px solid var(--primary-color);
            background-color: rgba(43, 115, 218, 0.05);
        }
        
        .application-item h4 {
            color: var(--primary-color);
            margin-bottom: 8px;
            font-size: 18px;
        }
        
        .application-item p {
            color: var(--light-text);
            line-height: 1.6;
        }
        
        /* 服务样式 */
        .service-text {
            padding: 15px;
            border-left: 3px solid var(--primary-color);
            margin-top: 10px;
            line-height: 1.7;
            background-color: rgba(43, 115, 218, 0.05);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            body {
                font-size: 16px;
            }
            
            .product-section {
                padding: 15px 0;
            }
            
            .section-header h2 {
                font-size: 22px;
            }
            
            .applications-grid {
                grid-template-columns: 1fr;
            }
            
            .spec-list li, .feature-list li, .application-list li {
                padding-left: 18px;
            }
            
            .spec-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 480px) {
            .product-section {
                padding: 10px 0;
            }
            
            .section-header h2 {
                font-size: 20px;
            }
            
            .application-item {
                padding: 12px;
            }
            
            .spec-table th, .spec-table td {
                padding: 8px 10px;
                font-size: 14px;
            }
        }
    