/* 页脚透明 */
#footer {
  background: transparent !important;
}

#page-header {
  &.not-home-page {
    background: transparent !important;
  }
}

/* 白天模式遮罩透明 */
#footer::before {
  background: transparent !important;
  /* background: rgb(0 0 0 / 20%) !important;
    backdrop-filter: blur(2px) saturate(150%); */
}

#page-header *::after {
  background: transparent !important;
}

/* 夜间模式遮罩透明 */
[data-theme="dark"] #footer::before {
  background: transparent !important;
}

[data-theme="dark"] #page-header::before {
  background: transparent !important;
}