写网站时,发现了这个问题。
原来的代码是

1
2
3
4
5
6
7
8
.section .item {
display: inline-block;
width: 100px;
margin-inline: 10px;
margin-bottom: 20px;
margin-top:-65px;
text-align: center;
}

是这个样子
eg.jpg

增加一行vertical-align: top;
问题顺利解决!
eg2.jpg