------
## 最终结论
```python
def sorted_list_sum(lst):
    # 过滤掉奇数长度的字符串
    filtered_lst = [s for s in lst if len(s) % 2 == 0]
    # 按长度升序排序，如果长度相同则按字母顺序排序
    sorted_lst = sorted(filtered_lst, key=lambda x: (len(x), x))
    return sorted_lst
```