// 国际静态资源多语言切换，picDist为资源路径
// 举例：原图片链接为https://image-1251917893.file.myqcloud.com/os-pubgm/en/pix/user/popup-line.png,那么bgUrl('user/popup-line.png')
.bgUrl(@picDist) {
  // 默认海外：无 lang-zh 类时使用海外资源
  background-image: url(~"https://cdn.partner.esports.pubgmobile.com/os-pubgm/en/pix/@{picDist}");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;

  // 国内：当父节点有对应语言类时使用国内资源
  .lang-zh & {
    background-image: url(~"https://image-1251917893.file.myqcloud.com/os-pubgm/zh/pix/@{picDist}");
  }
}