﻿ @font-face {  
    font-family: 'SourceHanSerifCN';  /* 定义一个新的字体名称 */  
    src: url('../font/fonts/SourceHanSerifCN-Regular.otf') format('opentype');
    font-weight: normal;  /* 设置字体的粗细 */  
    font-style: normal;  /* 设置字体的样式（如斜体） */  
}  
  
body {  
    font-family: 'SourceHanSerifCN', sans-serif;  /* 在body元素中使用自定义字体 */  
}  
