@charset "UTF-8";
body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #ffffff;
  font-family: var(--body);
  text-align: center;
  line-height: var(--compact);
}

.svg-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("/images/bodybg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

/* Header 区域背景图 */
header.background {
  background-image: url("/images/header_background.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

/* Footer 区域背景图 */
footer.background {
  background-image: url("/images/background-2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 手机端适配背景图
@media (max-width: 768px) {
  header.background {
    background-image: url('/images/header-mobile.jpg');
  }

  main {
    background-image: url('/images/body-mobile.jpg');
  }

  footer.background {
    background-image: url('/images/footer-mobile.jpg');
  }
}
*/

/*# sourceMappingURL=body.css.map */