style: 修改按钮布局为横向,居中对齐并调整间距

This commit is contained in:
MKStoler1024 2025-03-26 22:39:45 +00:00
parent c445ff1658
commit 2d66879af9

View File

@ -53,10 +53,13 @@
list-style: none;
padding: 0;
margin: 0;
display: flex; /* 改为横向排布 */
justify-content: center; /* 居中对齐 */
gap: 30px; /* 按钮之间的间距 */
animation: fadeInUp 1s ease-in-out;
}
li {
margin-bottom: 30px;
margin-bottom: 0; /* 移除垂直间距 */
}
a {
color: #fff;