/* 防止 Vue 加载前出现白屏：背景色与主题初始 class 同步 */
html {
  background-color: #fafbfc;
}

html.dark {
  background-color: #070707;
}
