/* 内容解析器样式 */
.content-parsed {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.8;
}

.content-parsed h1 {
    font-size: 28px;
    color: #222;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.content-parsed h2 {
    font-size: 24px;
    color: #222;
    margin: 25px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.content-parsed h3 {
    font-size: 20px;
    color: #222;
    margin: 20px 0 10px;
}

.content-parsed p {
    margin: 14px 0;
    font-size: 16px;
}

.content-parsed ul,
.content-parsed ol {
    margin: 14px 0 14px 24px;
}

.content-parsed li {
    margin: 8px 0;
}

.content-parsed blockquote {
    border-left: 4px solid #007bff;
    padding: 10px 15px;
    margin: 15px 0;
    background: #f8f9fa;
    color: #666;
}

.content-parsed a {
    color: #007bff;
    text-decoration: none;
}

.content-parsed a:hover {
    text-decoration: underline;
}

.content-parsed img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .content-parsed {
        padding: 10px;
    }
    
    .content-parsed h1 {
        font-size: 24px;
    }
    
    .content-parsed h2 {
        font-size: 22px;
    }
    
    .content-parsed p {
        font-size: 15px;
    }
}
    