/* 在外部 CSS 文件中定义 */
:root {
    /** 主题色 */
    --primary-color: #002C71;
    /** 主题色 */
    --major-color: #FF8100;
    /** 主题色 暗色 */
    --primary-color-dim: #0055C4;
    /** 辅助颜色 */
    --secondary-color: #042c61;
    /** 整个页面背景色 */
    --background-color: #FEF4ED;
    /** 浅灰背景色 */
    --light-gray-background-color: #F2F1E9;
    /** 深色背景色 */
    --dark-gray-background-color: #796d12;
    /** 黑色字体 */
    --text-primary: #333333;
    /** 暗淡颜色(灰) */
    --text-dim: #9A999A;
    /** 字体 */
    --font-family: 'PingFang SC, PingFang SC';
    /** 字体粗细 */
    --font-weight: 500;
    /** 字体大小 */
    --font-size: 12px;
    /** 字体样式 */
    --font-style: normal;
    /** 文字大小调整 */
    --text-transform: none;
    /** 线条颜色 */
    --border-color: #D8D8D8;
    /** 导航栏高 */
    --nav-height: 45px;
/** 导航宽 */
    --nav-width: 80px;
    /** 轮播高 */
    --swiper-height: 469px;
}