.icon-list {
display: grid;
grid-template-columns: repeat(5, 1fr); /* 划分为5列 */
grid-template-rows: repeat(5, 1fr); /* 划分为5行 */
gap: 12px; /* 间隔为10像素 */
.icon-item {
width: 48px;
height: 48px;
border-radius: 6px;
background-repeat: no-repeat;
}
}