/* 侧边栏头像卡片 */
#aside-content>.card-widget.card-info::before {
  background: url('https://image.nanguahui.top/ng/2025/02/07/67a5affb45abd.jpg');
  border: 0;
  position: absolute;
  background-size: 100% 100%;
  -webkit-animation: Gradient 10s ease infinite;
  -moz-animation: Gradient 10s ease infinite;
  animation: Gradient 10s ease infinite !important;
  
  /* 添加模糊效果 */
  filter: blur(8px); /* 模糊程度，数值越大越模糊 */
  -webkit-filter: blur(8px);
  
  /* 扩大背景避免模糊导致的边缘空白 */
  transform: scale(1.1);
  z-index: -1; /* 确保模糊背景在内容下方 */
}

/* 确保卡片内容不受模糊影响 */
#aside-content>.card-widget.card-info {
  position: relative;
  z-index: 1; /* 让内容在模糊背景上方 */
}