/* 清除默认列表样式并设置 Flex 布局 */
.multi-column-list {
  /*display: flex;
  flex-wrap: wrap;*/
  list-style: none;
  padding: 0;
  margin: 0;}

/* 每个列表项的样式 */
.column-item {
  /*width: 20%;*/ /* 5列布局 */
  box-sizing: border-box; /* 确保padding和border不影响宽度计算 */
  padding: 5px; /* 可选：添加一些内边距 */
  text-align: center;}

/* 链接样式 */
.column-item a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  font-size: 25px;
  background: #f5f5f5;
  border-radius: 4px;
  transition: background 0.3s;}

.column-item a:hover {
  background: #e0e0e0;
  color: #0051ad;}
