          /* 主要内容区域 */
        .article-content {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        h1 {
            color: #1a6dcc;
            margin-bottom: 20px;
            font-size: 2rem;
            border-left: 5px solid #1a6dcc;
            padding-left: 15px;
        }
        
        h2 {
            color: #0d4d9c;
            margin: 25px 0 15px;
            font-size: 1.5rem;
        }
        
        p {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        /* 引用样式 */
        blockquote {
            background-color: #f0f7ff;
            border-left: 4px solid #1a6dcc;
            padding: 15px 20px;
            margin: 20px 0;
            font-style: italic;
            border-radius: 0 4px 4px 0;
        }
        
        /* 表格样式 */
        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;
        }
        
        /* 底部样式 */
        footer {
            background: #0d4d9c;
            color: white;
            text-align: center;
            padding: 30px 0;
            border-radius: 10px 10px 0 0;
            margin-top: 40px;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 20px 0;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* 响应式调整 */
        @media (max-width: 768px) {                      
            .article-content {
                padding: 20px;
            }
            
            h1 {
                font-size: 1.6rem;
            }
            
            h2 {
                font-size: 1.3rem;
            }
            
            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;
        }