/**
 * @Author: laihaoshan
 * @Date: 2023-12-22 13:50:11
 * @LastEditors: laihaoshan
 * @LastEditTime: 2023-12-22 13:50:11
 * @Description: 全局样式使用阿里字体库
 * 修改字体粗细自动匹配对应字体库
 * @example
 * style="font-weight: 500;"
 * .style {
 *   font-weight: 500;
 * }
 */

@font-face {
  font-family: "AlibabaPuHuiTi";
  font-weight: 400;
  font-display: swap;
  /* Color fonts */
  src: url('./AlibabaPuHuiTi-2-45-Light.woff2') format(woff2);
}

@font-face {
  font-family: "AlibabaPuHuiTi";
  font-weight: 500;
  font-display: swap;
  /* Color fonts */
  src: url('./AlibabaPuHuiTi-2-65-Medium.woff2') format(woff2);
}

@font-face {
  font-family: "AlibabaPuHuiTi";
  font-weight: 600;
  font-display: swap;
  /* Color fonts */
  src: url('./AlibabaPuHuiTi-2-75-SemiBold.woff2') format(woff2);
}

@font-face {
  font-family: "AlibabaPuHuiTi";
  font-weight: 700;
  font-display: swap;
  /* Color fonts */
  src: url('./AlibabaPuHuiTi-2-85-Bold.woff2') format(woff2);
}