/*
 * @Author: fs
 * @Date: 2022-05-18 16:59:37
 * @LastEditors: fs
 * @LastEditTime: 2022-06-05 17:02:17
 * @FilePath: \xhsd_gw_html\src\common\font.css
 * @Description: 定义全局字体在 1920 分辨率下的大小
 * 
 */
/* 引入思源黑体字体 */
/* 由于引入完整字体库会占用大量体积，这里进行了压缩，字体样式仅对常用 2000 个汉字生效 */
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../lib/fonts/sourcehansans.eot'); /* IE9 */
  src: url('../lib/fonts/sourcehansans.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */ url('../lib/fonts/sourcehansans.woff') format('woff'),
    /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ url('../lib/fonts/sourcehansans.ttf') format('truetype'),
    /* Safari, Android, ios */ url('../lib/fonts/sourcehansans.svg') format('svg');
  font-weight: normal;
}
/* 字体大小 */
.font--mini,
.font--mini > * {
  font-size: 12px;
}
.font--small,
.font--small > * {
  font-size: 14px;
}
.font--medium,
.font--medium > * {
  font-size: 16px;
}
.font--large,
.font--large > * {
  font-size: 18px;
}
.font--super,
.font--super > * {
  font-size: 20px;
}
