@font-face {
  font-family: 'SourceHanSansCN';
  src: url(../fonts/SourceHanSansCN.ttf) format('truetype');
}

@font-face {
  font-family: 'Impact';
  src: url(../fonts/Impact.ttf) format('truetype');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
}
ul {
  margin: 0;
  padding-left: 0;
}
/* th {
  font-weight: normal;
} */

[data-theme] body {
  /* 字体 */
  font-family: 'SourceHanSansCN';
  color: var(--text-color);
  font-size: 14px;
  background-color: var(--layout-background);
  line-height: 1;
}

/* 滚动条 */
[data-theme] ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
[data-theme] ::-webkit-scrollbar-track {
  background-color: #f4f5f7;
}
[data-theme] ::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
  cursor: pointer;
}
