@font-face {
  /* 为载入的字体取名字(随意) */
  font-family: 'zhuziningjingzhiyu';	
  /* 字体文件地址(相对或者绝对路径都可以) */
  /* src: url(../images/zhuziningjingzhiyu.ttf); */
  src: url(https://pan.oao.cc/d/%E6%B5%81%E5%B7%9D/Resource/font-family/zhuziningjingzhiyu.ttf);
  /* 定义加粗样式(加粗多少) */
  font-weight: normal;
  /* 定义字体样式(斜体/非斜体) */
  font-style: normal;
  /* 定义显示样式 */
  font-display: block;
}

.article-container a:not(.fancybox) {
  text-decoration: none;
  border: none;
  color: var(--efu-theme);
  font-weight: 700;
  padding: 0 4px;
  background: linear-gradient(to top, var(--efu-theme-op), var(--efu-theme-op)) no-repeat bottom/100% 0.1em;
  transition: all 0.2s;
}

.article-container a:not(.fancybox):hover {
  border-radius: 4px;
  background-size: 100% 100%;
}