@font-face {  
    font-family: 'MiSans-Regular';  /* 定义一个新的字体名称 */  
    src: url('./MiSans/woff/MiSans-Regular-min.woff') format('woff'),  /* 指定字体文件的URL和格式 */  
         url('./MiSans/woff2/MiSans-Regular-min.woff2') format('woff2');  /* 提供备选格式，以便在不支持woff2的浏览器中回退 */  
    font-weight: normal;  /* 设置字体的粗细 */  
    font-style: normal;  /* 设置字体的样式（如斜体） */  
}  

body {  
    font-family: 'MiSans-Regular', sans-serif;  /* 在body元素中使用自定义字体 */  
} 