body {
  margin: 0;
  @apply font-sans;
  overflow-x: hidden;
}

button {
  @apply font-sans;
}

a:hover {
  @apply: text-primary;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-block-start: 0;
  margin-inline-start: 0;
}

/* 自定义滚动条样式 */
/* ::-webkit-scrollbar {
  width: 7px;
  height: 8px;
  background-color: black;
}

::-webkit-scrollbar-track {
  background-color: rgb(0 0 0 / 5%);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(144 147 153 / 30%);
  border-radius: 2px;
  box-shadow: inset 0 0 6px rgb(0 0 0 / 20%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a0a0a0;
} */

/* 白色主题滚动条 */
/* body.light-theme::-webkit-scrollbar {
  background-color: white;
}

body.light-theme::-webkit-scrollbar-thumb:hover {
  background-color: #909399;
} */