/* 在外部 CSS 文件中定义 */
:root {
    /** 主题色 */
    --primary-color:#246acd;
    /** 主题色 暗色 */
    --primary-color-dim: #008080;
    /** 辅助颜色 */
    --secondary-color: #023f96;
    /** 整个页面背景色 */
    --background-color: #FFFFFF;
    /** 浅灰背景色 */
    --light-gray-background-color: #F2F1E9;
    /** 深色背景色 */
    --dark-gray-background-color: #008080;
    /** 黑色字体 */
    --text-primary: #333333;
    /** 暗淡颜色(灰) */
    --text-dim: rgba(51,51,51,0.6);
    /** 字体 */
    --font-family: 'PingFang SC, PingFang SC';
    /** 文字大小调整 */
    --text-transform: none;
    /** 线条颜色 */
    --border-color: #DCDCDC;
    /** 导航栏高 */
    --nav-height: 45px;
    /** 导航宽 */
    --nav-width: 80px;
    --nav-color: #FFFFFF;
    /** 轮播高 */
    --swiper-height: 456px;
    /** 轮播宽 */
    --swiper-width: 100%;
}