@font-face {
    /* 为载入的字体取名字(随意) */
    font-family: 'custom-font-en';	
    /* 字体文件地址(相对或者绝对路径都可以) */
    src: url(/font/KohSantepheap-Regular.ttf);
    /* 定义加粗样式(加粗多少) */
    font-weight: normal;
    /* 定义字体样式(斜体/非斜体) */
    font-style: normal;
    /* 定义显示样式 */
    font-display: block;
  }

  @font-face {
    /* 为载入的字体取名字(随意) */
    font-family: 'custom-font-ch';	
    /* 字体文件地址(相对或者绝对路径都可以) */
    src: url(/font/NotoSerifSC-VariableFont_wght.ttf);
    /* 定义加粗样式(加粗多少) */
    font-weight: 500;
    /* 定义字体样式(斜体/非斜体) */
    font-style: normal;
    /* 定义显示样式 */
    font-display: block;
  }