/* 
 This CSS file is used to override the existing styles of the theme.
 You can change the article headings, fonts, colors, etc.
*/
/* 1. 声明一个自定义中文楷体字体（名字你可以随便起） */
/* 1. 声明霞鹜文楷这套字体（目前只有 ttf 也没问题） */
/* 注册楷体字体 */
@font-face {
  font-family: "MyKaiTi";
  src: url("/css/fonts/kaishu/STKaiti.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* 修改这里：不仅仅是 html 和 body，我们要把所有具体标签都列出来 */
:root, html, body, 
h1, h2, h3, h4, h5, h6,
p, li, span, a, 
blockquote, figcaption, pre, code,
div, section, article {
  font-family: "MyKaiTi", sans-serif !important;
}


        /* 文章正文区域里的链接：蓝色且无下划线 */
.content a {
  color: #2563eb;
  text-decoration: none;     /* 去掉下划线 */
  border-bottom: none;       /* 防止 typography 用 border-bottom 做装饰 */
}

/* 悬停时也不要下划线，只改颜色即可 */
.content a:hover {
  color: #1d4ed8;            /* 深一点的蓝色 */
  text-decoration: none;
  border-bottom: none;
}