scss 第二个子选择器失效问题 有如下代码,它无法按照预期运行: html: 无床位 有床位 scss: .top-info{ color: $fontColor; >div{ width: .75rem; height: .75rem; } >div:first-child{ background-color: $withoutBed; } >div:nth-child(2){ background-color: $hasBed; } }  但若改成: scss: .top-info{ color: $fontColor; >div{ width: .75rem; height: .75rem; } >div:first-child{ background-color: $withoutBed; } >div:nth-child(n+2){ background-color: $hasBed; } }  它便生效了!(顺带一提,使用last-child也没有生效,!important也试过,应该不是优先级问题),有大佬知道是什么原因吗?