.elementor-411 .elementor-element.elementor-element-60b121db{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-b4a5b80 *//* =================================================
   【最终左对齐修正版】
   ================================================= */

/* 1. 针对所有列表 (ul 和 ol) */
ul, ol {
    /* 【关键】去掉外边距，让整个列表块紧贴最左边 */
    margin-left: 0 !important;
    
    /* 【核心微调】给左边留出 20px 的空间放数字。
       20px 大约是一个数字加一个点的宽度。
       这样数字就会刚好“坐”在左对齐线上。*/
    padding-left: 20px !important;
    
    /* 确保文字悬挂缩进（数字在左，文字在右，整齐排列） */
    list-style-position: outside !important;
}

/* 2. 列表项细节 */
li {
    /* 清除所有干扰 */
    margin-left: 0 !important;
    text-indent: 0 !important;
    
    /* 增加每一行之间的距离，让排版不拥挤 */
    margin-bottom: 12px !important;
    
    /* 垂直方向顶端对齐 */
    vertical-align: top !important;
}

/* 3. 彻底屏蔽伪元素（防止出现双重数字） */
li::before {
    content: none !important;
    display: none !important;
}

/* 4. 标题间距 (保持之前的优化) */
h2, h3, h4, strong {
    margin-top: 30px !important;
    margin-bottom: 12px !important;
    margin-left: 0 !important;
}/* End custom CSS */