要在 stepper wrapper 的最后一个直接子元素中获取具有类 item-line 的元素,您需要选择最后一个直接子元素,然后选择 item-line 元素。
你在选择中的准确程度取决于所有可能的场景,但使用你提供的代码应该做到这一点:
.stepper-container > div:last-of-type span.item-line {
display: none;
}
尝试使用它,它会起作用
.item-line:last-of-type {
display: none;
}