          /* 主要内容区域 */
        .article-content {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        

        
        /* 表格样式 */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        }
        
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        
        th {
            background-color: #1a6dcc;
            color: white;
            font-weight: 600;
        }
        
        tr:nth-child(even) {
            background-color: #f8fafc;
        }
        
        tr:hover {
            background-color: #f0f7ff;
        }
        
        /* 特色服务区域 */
        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature-card {
            flex: 1 1 300px;
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border-top: 4px solid #1a6dcc;
        }
        
        .feature-card h3 {
            color: #0d4d9c;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .feature-card h3:before {
            content: "✓";
            background: #1a6dcc;
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            font-size: 14px;
        }
        
        
        /* 响应式调整 */
        @media (max-width: 768px) {                      
            .article-content {
                padding: 20px;
            }
            
            table {
                font-size: 0.9rem;
            }
            
            th, td {
                padding: 8px 10px;
            }
        }
        
        /* 强调文本 */
        .highlight {
            background-color: #fff9e6;
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 600;
        }
        
        .important-note {
            background-color: #e6f7ff;
            border: 1px solid #91d5ff;
            border-radius: 6px;
            padding: 15px;
            margin: 20px 0;
        }
        
        .important-note h3 {
            color: #096dd9;
            margin-bottom: 10px;
        }