列表项的第一项距离顶部0.2rem,最后一项距离底部0.5rem

.item:first-child {
padding-top: .2rem;
} .item:last-child {
padding-bottom: .5rem;
}

  

05-11 19:26