@font-face {
  font-family: UnCommFont;
  font-weight: normal;
  font-style: normal;
  src: url('./fonts/uncommon_font_v2.woff') format('woff'),
   url('./fonts/uncommon_font_v2.woff2') format('woff2')
}

/*在html和body中应用UnCommFont*/
html,
body
{
  font-family: "Monospaced Number", "Chinese Quote", -apple-system,UnCommFont, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC",
  "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*为了兼容input等，需要设置inherit body和html的字体*/
input,
select,
textarea,
button {
  font-family: inherit;
}
/* antd  input  textarea */
/* 注意部分地方手动定义的 font-family  比如 detailInfo */
.ant-input,
.ant-table-tbody,
.ant-modal,
.PanelWrapper-header-title,
.DetailInfo,
.DetailInfo span{
  font-family: "Monospaced Number", "Chinese Quote", -apple-system,UnCommFont, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC",
     "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}