/** mac上的粗体比windows上的较粗，故通过识别操作系统使得windows上的较mac少100（默认windows系统） */
.global-font-weight-bold,
.os-windows .global-font-weight-bold {
  font-weight: bold;
}

.os-macos .global-font-weight-bold {
  font-weight: 600;
}

.global-font-weight-500 {
  font-weight: 500;
}

.os-macos .global-font-weight-500 {
  font-weight: 400;
}
