.elementor-8039 .elementor-element.elementor-element-d904070{--display:flex;}.elementor-8039 .elementor-element.elementor-element-d647c6c{width:100%;max-width:100%;}/* Start custom CSS for text-editor, class: .elementor-element-d647c6c *//* 1. 表格基础设置 */
table {
    border-collapse: collapse; /* 合并边框 */
    width: 100%;               /* 撑满容器 */
}

/* 2. 【核心修改】强制所有单元格（包含第一行表头）文字靠左 */
table th, 
table td {
    text-align: left !important; /* 使用 !important 确保覆盖主题默认样式 */
    
    /* 保留之前的边框和内边距要求 */
    border: 1px solid #000000; 
    padding: 12px 15px;        
}

/* 3. 斑马纹效果：偶数行背景变灰 */
table tr:nth-child(even) {
    background-color: #f2f2f2; 
}

/* 4. 鼠标悬停效果 */
table tr:hover {
    background-color: #e0e0e0; 
}/* End custom CSS */