/* 确保editor-box使用相对定位，footer可以绝对定位 */
/* 确保editor-box使用相对定位，footer可以绝对定位 */
.editor-box {
    position: relative;
    /* 确保容器背景也是木色，防止缝隙漏白 */
    background: #f9f7f1;
}

/* editor-content-new需要留出footer的空间 */
.editor-content-new {
    padding-bottom: 70px !important;
    /* 留出footer的空间 */
    /* 编辑器背景稍微木色一点 */
    /* background: #f9f7f1 !important; */
    /* ⚠️ 已注释：这会覆盖卡通背景主题 */
}

/* 隐藏可能存在的中间干扰元素 */
.editor-content-new+div:not(.editor-footer) {
    display: none;
}