@font-face {
       font-family: '华康POP体W5'; /* 自定义字体名，后续调用用这个 */
       src: url('fonts.ttf') format('truetype'); /* TTF固定format为truetype */
       font-weight: normal; /* 字重：正常/粗体，与字体文件匹配 */
       font-style: normal;  /* 样式：正常/斜体 */
       font-display: swap;  /* 优化加载，避免页面空白 */
     }
     /* 2. 全局使用（整个网站生效） */
      .title-bar, tbody, body, a, p, input, button, b, script, style, div, .current-song-title, marquee, .song-list-body, .song-lyrics, .song-list, .progress-container{
       font-family: '华康POP体W5', sans-serif; /* sans-serif是后备字体，防止加载失败 */
     }