body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: "微软雅黑", Arial, sans-serif;
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    box-sizing: border-box;
}
.contop {
    padding: 120px 0 0 0;
}
.article-title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.2;
}
.article-category {
    color: #e60012;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.article-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 32px;
}
.article-content {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
}
.article-image {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto 32px auto;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
@media (max-width: 1550px) {
    .container {
        max-width: 100vw;
    }
}
@media (max-width: 900px) {
    .container {
        padding: 20px 4vw;
    }
    .article-title {
        font-size: 26px;
    }
    .article-content {
        font-size: 16px;
    }
}


/* 文章内容区域样式优化 */
.prose {
    font-family: 'Inter', system-ui, sans-serif;
    color: #333;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 标题样式 */
.prose h1 {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1a202c;
    margin: 2rem 0 1.5rem;
    line-height: 1.25;
    text-align: center;
}

.prose h2 {
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    font-weight: 700;
    color: #2563eb;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.prose h3 {
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
    font-weight: 600;
    color: #475569;
    margin: 2rem 0 0.75rem;
}

.prose h4 {
    font-size: clamp(1.125rem, 1vw, 1.25rem);
    font-weight: 600;
    color: #64748b;
    margin: 1.5rem 0 0.5rem;
}

/* 段落和列表样式 */
.prose p {
    font-size: clamp(1rem, 1vw, 1.125rem);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.prose ul, .prose ol {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
}

.prose ul {
    list-style-type: disc;
}

.prose ol {
    list-style-type: decimal;
}

.prose li {
    font-size: clamp(1rem, 1vw, 1.125rem);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

/* 图片样式 */
.prose img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prose img:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.prose figure {
    margin: 2.5rem 0;
    text-align: center;
}

.prose figcaption {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.75rem;
    font-style: italic;
}

/* 表格样式 */
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.prose th, .prose td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.prose th {
    background-color: #f1f5f9;
    color: #1e293b;
    font-weight: 600;
}

.prose tr:nth-child(even) {
    background-color: #f8fafc;
}

.prose tr:hover {
    background-color: #f1f5f9;
    transition: background-color 0.2s ease;
}

/* 链接样式 */
.prose a {
    color: #2563eb;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.prose a:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

/* 引用样式 */
.prose blockquote {
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #2563eb;
    background-color: #f8fafc;
    border-radius: 0 0.25rem 0.25rem 0;
}

.prose blockquote p {
    margin-bottom: 0;
    font-style: italic;
    color: #475569;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .prose h1 {
        font-size: 1.75rem;
        text-align: left;
    }
    
    .prose h2 {
        font-size: 1.375rem;
    }
    
    .prose h3 {
        font-size: 1.25rem;
    }
    
    .prose p, .prose li {
        font-size: 1rem;
    }
    
    .prose table {
        display: block;
        overflow-x: auto;
    }
}