/* 全局css变量，可在 CSS 和 SCSS 中使用，还可以导入到 JS 中使用 */
:root {
  /*  主题色 */
  --theme-color-primary: #ffd800;

  /*  常规字体颜色 */
  --text-color-regular: #333;

  /* 淡系字体颜色 */
  --text-color-light: #848484;

  /* 内容高度：用于铺满屏幕超出显示固定滚动条 */
  --content-height: calc(100vh - 138px);
}
