/* 字体定义 */
@font-face {
  font-family: 'gptnet-cn'; /* 中文字体 */
  src: url('https://cdn.covibe.cn/cdn/diyui/fonts/AlibabaPuHuiTi-3-55-Regular.woff2') format('woff2');
  unicode-range: U+4E00-9FFF; /* 中文字符范围 */
  font-display: swap;
}

@font-face {
  font-family: 'gptnet-en'; /* 英文字体 */
  src: url('https://cdn.covibe.cn/static/fonts/AlimamaAgileVF-Thin.woff2') format('woff2');
  unicode-range: U+0000-007F; /* 英文字符范围 */
  font-display: swap;
}

@font-face {
  font-family: 'gptnet-mobile-cn'; /* 移动端中文字体 */
  src: url('https://cdn.covibe.cn/static/fonts/HarmonyOS.woff2') format('woff2');
  unicode-range: U+4E00-9FFF;
  font-display: swap;
}

@font-face {
  font-family: 'gptnet-mobile-en'; /* 移动端英文字体 */
  src: url('https://cdn.covibe.cn/static/fonts/AlimamaAgileVF-Thin.woff2') format('woff2');
  unicode-range: U+0000-007F;
  font-display: swap;
}

/* 默认字体设置（PC端） */
* {
  font-family: 'gptnet-en', 'gptnet-cn', Times, serif;
}

/* 移动端字体设置 */
@media (max-width: 768px) {
  * {
    font-family: 'gptnet-mobile-en', 'gptnet-mobile-cn', sans-serif;
  }
}


