canvas {
  width: 80%;
  max-width: 600px;
  margin: 0 auto;
}

@font-face {
  font-family: 'LXGWWenKai-Light';
  src: url('https://cdn.jsdelivr.net/gh/lxgw/LxgwWenKai-Lite@main/fonts/TTF/LXGWWenKaiMonoLite-Regular.ttf');
}


#bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-attachment: fixed;
  background-image: url(../images/background.png);
  background-color: rgb(191, 177, 206);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: brightness(.3);
  z-index: -1;
  top: 0;
}

#app {
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  width: 100vw;
  overflow-x: hidden;
  height: 100vh;
  font-family: 'LXGWWenKai-Light', sans-serif; /* 使用您定义的字体名称 */
}

#footer a{
  text-decoration: none;
  color: white;
  font-weight: bold;
}

#tab li {
  border-radius: 5px;
}

#tab a {
  color: white;
  text-decoration: none;
}

#tab li.active {
  background: white;
  color: black;
}

#tab li.active a,
#tab li.active svg {
  color: black !important;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity .5s ease;
}

.fade-enter-from, .fade-leave-to {
  opacity: 0;
}

