/* 编辑器内部样式重置 */
.editor-content {
    line-height: 1.6;
    color: var(--color-text);
}
.editor-content p {
    margin-bottom: 1rem;
}
.editor-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
}
.editor-content ul, .editor-content ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}
.editor-content h1, .editor-content h2, .editor-content h3, .editor-content h4 {
    color: var(--color-secondary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.editor-content a {
    color: var(--color-primary);
    text-decoration: underline;
}
.editor-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
.editor-content table th, .editor-content table td {
    border: 1px solid #ddd;
    padding: 8px;
}