/* ============================================
   页面特定样式 - 文章详情
   ============================================ */
.article-detail-content {
    line-height: 1.8;
    color: #475569;
    font-size: 16px;
}
.article-detail-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin: 2rem 0 1rem 0;
    padding-left: 1rem;
    border-left: 4px solid #1E90FF;
}
.article-detail-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1E293B;
    margin: 1.5rem 0 0.75rem 0;
}
.article-detail-content p {
    margin-bottom: 1.25rem;
}
.article-detail-content ul,
.article-detail-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}
.article-detail-content ul li,
.article-detail-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}
.article-detail-content a {
    color: var(--primary);
    text-decoration: underline;
}
.article-detail-content a:hover {
    color: var(--primary-dark);
}
.article-detail-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #64748B;
}
.article-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.article-detail-content th,
.article-detail-content td {
    border: 1px solid #E2E8F0;
    padding: 0.75rem 1rem;
    text-align: left;
}
.article-detail-content th {
    background: #F0F4F8;
    font-weight: 600;
    color: #1E293B;
}
.article-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}
.article-detail-content code {
    background: #F1F5F9;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.875em;
}
.article-detail-content pre {
    background: #1E293B;
    color: #F8FAFC;
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}
.article-detail-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}
