*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

html {
  background: var(--van-gray-1);
  font-size: var(--van-font-size-lg);
  color-scheme: light;
}

html.dark {
  background: #222;
  color-scheme: dark;
}

#system-app {
  height: 100%;
  position: relative;
}

::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

// 解决Tabbar的固定定位被覆盖的问题
.van-tabbar--fixed {
  position: fixed !important;
}

// 所有按钮 添加圆角
.van-button {
  border-radius: 10px !important;
}
