------
## 最终结论
```python
def solution(lst):
    total = 0
    for i in range(0, len(lst), 2):  # 遍历偶数位置的元素
        if lst[i] % 2 != 0:  # 判断是否为奇数
            total += lst[i]  # 累加奇数元素
    return total  # 返回结果
```