# 字体文件 本目录存放自定义字体文件。 ## 📁 支持的格式 - `.woff2` - Web Open Font Format 2(推荐) - `.woff` - Web Open Font Format - `.ttf` - TrueType Font - `.otf` - OpenType Font ## 🎨 使用示例 ### CSS 中引入 ```css @font-face { font-family: 'CustomFont'; src: url('/static/fonts/CustomFont.woff2') format('woff2'); font-weight: normal; font-style: normal; } body { font-family: 'CustomFont', -apple-system, BlinkMacSystemFont, sans-serif; } ``` ### React 组件中使用 ```jsx