/* 分类磁贴自定义样式 */

/* 文章数量图标：将默认的书本图标替换为 📄 */
span.categoryBar-list-count::before {
  content: "\f15c" !important;
  font-family: "Font Awesome 7 Free" !important;
  font-weight: 900 !important;
}

/* 悬停效果优化 */
li.categoryBar-list-item {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

li.categoryBar-list-item:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    inset 500px 50px 50px 50px rgba(50, 50, 50, 0.6),
    0 12px 30px rgba(0, 0, 0, 0.2) !important;
}
