1234567891011121314151617181920212223242526272829303132333435 |
- /* DIN Black 字体 */
- @font-face {
- font-family: "DIN";
- src: url('DIN-Black.otf?t=1713509940151') format('opentype');
- font-weight: 900;
- /* 通常为 Black 字体设置较高的权重值 */
- font-style: normal;
- }
-
- /* DIN Bold 字体 */
- @font-face {
- font-family: "DIN";
- src: url('DIN-Bold.otf?t=1713509940151') format('opentype');
- font-weight: bold;
- /* 通常为 Bold 字体设置 bold 权重值 */
- font-style: normal;
- }
-
- /* DIN Light 字体 */
- @font-face {
- font-family: "DIN";
- src: url('DIN-Light.otf?t=1713509940151') format('opentype');
- font-weight: normal;
- /* Light 字体通常使用较轻的权重值 */
- font-style: normal;
- }
-
- /* DIN Medium 字体 */
- @font-face {
- font-family: "DIN";
- src: url('DIN-Medium.otf?t=1713509940151') format('opentype');
- font-weight: 500;
- /* Medium 字体使用介于正常和粗体之间的权重值 */
- font-style: normal;
- }
|