/* 侧边栏头像卡片 */
#aside-content>.card-widget.card-info::before {
  background: url('http://115.190.196.142/i/2025/11/25/69255b933303e.png');
  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;
}
/* 在 custom.css 中添加（或替换） */
/* 白天网站背景/颜色 */
/* 白天网站背景/颜色 */
#web_bg {
    background: url('http://115.190.196.142/i/2025/11/25/6925617debe17.png');
    background-size: cover;  /* 改为cover确保完全覆盖 */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;  /* 添加固定背景效果 */
}

/* 夜间网站背景/颜色 */
[data-theme=dark] #web_bg {
    background: url('http://115.190.196.142/i/2025/11/25/6925615233900.png');
    background-size: cover;  /* 同样改为cover */
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;  /* 添加固定背景效果 */
}