.elementor-413 .elementor-element.elementor-element-2640f09f{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-6cfe6ce3 *//* ===================================================
   【最终复位版】回归标准，拒绝花哨
   只调整间距，不生成任何新符号，彻底解决重影问题。
   =================================================== */

/* 1. 强制清理伪元素（消灭双重序号的罪魁祸首） */
ul li::before, ol li::before {
    content: none !important;
    display: none !important;
}

/* 2. 列表容器布局（标准左对齐公式） */
ul, ol {
    /* 【关键】外边距归零，让列表块紧贴左边框 */
    margin-left: 0 !important;
    
    /* 【关键】给左边留出 22px 的空间放符号。
       这样符号就会显示在最左边（和标题对齐），而文字会缩进。
       如果觉得符号离左边太远，把 22 改成 18；如果被切掉了，改成 26。*/
    padding-left: 22px !important;
    
    /* 【关键】让符号位于内容框之外，保证悬挂缩进效果 */
    list-style-position: outside !important;
}

/* 3. 恢复标准符号显示 */
ul {
    list-style-type: disc !important; /* 强制显示圆点 */
}
ol {
    list-style-type: decimal !important; /* 强制显示数字 1. 2. 3. */
}

/* 4. 列表项细节调整 */
li {
    /* 清除多余边距 */
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important; /* 确保没有首行缩进 */
    
    /* 增加行间距，让阅读更舒服 */
    margin-bottom: 10px !important;
}

/* 5. 标题间隙 (保持不变) */
h2, h3, h4, strong {
    margin-top: 30px !important;
    margin-bottom: 12px !important;
    margin-left: 0 !important;
}/* End custom CSS */