/************************************************************
** 请将全局样式拷贝到项目的全局 CSS 文件或者当前页面的顶部 **
** 否则页面将无法正常显示                                  **
************************************************************/

html {
    font-size: 16px;
}
@font-face {
    font-family: "SourceHanSansCN";
    src: url("https://qiniu.fzh.fun/SourceHanSansCN-1.000/SourceHanSansCN-Regular.otf") format("opentype");
    font-weight: 400; /* 对应 Regular */
    font-style: normal;
}
@font-face {
    font-family: "SourceHanSansCN";
    src: url("https://qiniu.fzh.fun/SourceHanSansCN-1.000/SourceHanSansCN-Medium.otf") format("opentype");
    font-weight: 500; /* 对应 Medium */
    font-style: normal;
}
@font-face {
    font-family: "SourceHanSansCN";
    src: url("https://qiniu.fzh.fun/SourceHanSansCN-1.000/SourceHanSansCN-Heavy.otf") format("opentype");
    font-weight: 900; /* 对应 Heavy */
    font-style: normal;
}

body {
    margin: 0;
    font-family: "SourceHanSansCN", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    overflow-x: hidden;

}

/* 布局工具类 */
.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

a {
    text-decoration: none;
    /* 去掉下划线 */
    color: inherit;
    /* 颜色继承父级，而不是默认的蓝色 */
}

/* 如果你还想去掉点击时的虚线外边框（针对键盘导航，建议保留或替换） */
a:focus {
    outline: none;
    /* 去掉点击时的虚线框（Chrome/IE） */
    /* 注意：为了无障碍访问，建议用 outline: 0 并配合 :focus-visible */
}
#app{
    margin-top: 70px;
}