/* 只在非iOS设备上应用样式 */
@media not all and (-webkit-touch-callout: none) {
  @font-face {
    font-family: 'PingFang';
    src: url('https://oss.dreambigcareer.com/web/mobile_website/commom/pingfangbold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
}


/* 或者使用更精确的iOS检测 */
/* @supports not (-webkit-touch-callout: none) {
  @font-face {
    font-family: 'PingFang';
    src: url('https://oss.dreambigcareer.com/web/mobile_website/commom/pingfangbold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
} */