/* 二次元背景 */
html, body {
  background: url("/bg01.gif") !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
}

#app, .VPApp {
  background: transparent !important;
}

.VPNavBar,
.VPSidebar,
.VPContent {
  background-color: rgba(255,255,255,0.45) !important;
}

/* 给文章内容增加顶部边距，避开导航栏 */
.VPDoc,
.VPHome,
.VPPage {
  padding-top: 60px !important; /* 这个值和导航栏高度匹配 */
}

/* 同时把导航栏背景改成透明半透明，不挡背景 */
.VPNavBar {
  background-color: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(6px) !important;
}