.editor-content {
    color: var(--text-color-drak);
}
.editor-content h1 { font-size: 20px; margin: 25px 0 7px 0; }
.editor-content h2 { font-size: 18px; margin: 20px 0 6px 0; }
.editor-content h3 { font-size: 16px; margin: 15px 0 5px 0; }
.editor-content h4 { font-size: 14px; margin: 12px 0 3px 0; }
.editor-content h5 { font-size: 12px; margin: 10px 0 1px 0; }
.editor-content h6 { font-size: 10px; margin: 5px 0 0 0; }
.editor-content img {
    width: 100% !important;
    height: auto !important;
    vertical-align: bottom;
}
.editor-content video {
    width: 100% !important;   /* 强制视频宽度撑满父容器 */
    height: auto !important;  /* 自动高度保持比例 */
    display: block;           /* 防止行内视频出现空隙 */
}
.editor-content ul , .editor-content ol {
    padding-left: 25px;
    margin: 5px 0;
}
.editor-content li {
    list-style: unset;
    margin: 5px 0;
}
.editor-content a {
    text-decoration: underline;
}

.editor-content .editor-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
}
.editor-content .editor-table th,
.editor-content .editor-table td {
    border: 1px solid var(--border-color-drak);
    padding: 15px 20px;
    text-align: center;
}
.editor-content .editor-table th {
    background-color: var(--border-color-lt);
    font-weight: normal;
    color: var(--text-color-drak);
    width: 35%;
}
.editor-content .editor-table td {
    background-color: white;
}
.editor-content p {
    line-height: 26px;
}

@media (max-width: 980px) {
    .editor-content {
        padding: 0 3px;
    }
}