2025-03-03 18:59:57 +08:00
|
|
|
/* 使用 @font-face 引用本地字体 */
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Pacifico'; /* 字体名称 */
|
2025-03-03 19:08:08 +08:00
|
|
|
src: url('../font/Pacifico.ttf') format('truetype'); /* 设置 .ttf 字体 */
|
2025-03-03 18:59:57 +08:00
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|