/* 引入字体 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&family=Noto+Serif+SC:wght@400;700&display=swap');

/* 文章标题使用思源宋体 */
.post-content h1, .post-content h2, .post-content h3 {
    font-family: 'Noto Serif SC', serif;
    font-weight: 700;
}

/* 文章正文使用思源黑体 */
.post-content p, .post-content div, .post-content span {
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 400;
}

/* 后备字体 */
.post-content {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
/* 掩藏作者 .theme-blog-author*/
.post-author, .author-name, .blog-author {
    display: none !important;
}