@charset "UTF-8";
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  /* 讓使用者不能選取文字 */
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

body {
  margin: 0;
  background-color: #000000;
  /* 设置背景颜色 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.background-image {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  z-index: -1;
  /* 让背景图片在最底层 */
}/*# sourceMappingURL=bg.css.map */