/* 在外部 CSS 文件中定义 */
:root {
    /** 主题色 */
    --primary-color:#0b6cb8;
    /** 主题色 暗色 */
    --primary-color-dim: #DA251C;
    /** 辅助颜色 */
    --secondary-color: #1886dd;
    /** 整个页面背景色 */
    --background-color: #f4f5fb;
    /** 浅灰背景色 */
    --light-gray-background-color: #F2F1E9;
    /** 深色背景色 */
    --dark-gray-background-color: #796d12;
    /** 黑色字体 */
    --text-primary: #333333;
    /** 暗淡颜色(灰) */
    --text-dim: rgba(0,0,0,0.4);
    /** 字体 */
    --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;
    /** 导航字体 */
    --nav-size: 16px;
    /** 导航字体 */
    --nav-color: #666666;
    /** 字体大小 */
    --nav-weight: 500;
    /** 轮播高 */
    --swiper-height: 360px;
   /** 轮播宽 */
    --swiper-width: 100%;
}