
/*====================底部图标居中====================*/

/*图标横向水平居中*/
.icon-center {
  display: flex;
  justify-content: center;
  align-items: center; /* 如果你想要垂直也居中可以保留 */
  height: 100%; /* 保证撑满父元素 */
}