/* 滚动条优化 start */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f6f6f6;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb {
  background: #cdcdcd;
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background: #747474;
}
::-webkit-scrollbar-corner {
  background: #f6f6f6;
}
/* 滚动条优化 end */
html{
  overflow: hidden;
}
html,body,#app{
  width: 100%;
  height: 100%;
}
body{
  zoom: 1 !important;
}
@font-face {
  font-family: SiYuan;
  font-display: block;
  src: url(./font/SourceHanSansCN-Medium.otf);
}
/* @font-face {
  font-family: Furore;
  font-display: block;
  src: url(./font/Furore.otf);
} */
@font-face {
  font-family: 'Title';
  font-display: block;
  src: url(./font/title.ttf);
}

/* 全局使用思源/Furore字体 */
*{
  font-variant-numeric: lining-nums, tabular-nums;
  font-family: "SiYuan", 'SimHei', 'Heiti SC', '微软雅黑', sans-serif;
  box-sizing: border-box;
}
.local-main-font-number, .local-main-font-number *{
  font-family: "Furore", "SiYuan", 'SimHei', 'Heiti SC', '微软雅黑', sans-serif;
}
/* 标题 */
.local-main-font-title{
  font-family: 'Title', 'SimHei', 'Heiti SC', '微软雅黑', sans-serif;
}