/*代码块样式*/
.post .post-content code, .post .post-content pre{
    /* padding: 2px 4px; */
    font-size: 0.75em;
}

.post .post-content .highlight code::after{
    color: #93a1a1;
}

/*标签样式*/
.post .post-footer .post-tags a {
    color: #c05b4d;
    word-break: break-all;
    margin-right: 10px;
    padding: 1px 10px;
    border: 1px solid;
    border-radius: 20px;
    border-color: #9e9e9e;
}

.post .post-footer .post-tags a::before {
    content: '';
}

/* 1. 强制单行并居中显示，并设置整体灰色基调 */
.post-meta {
  display: flex !important;
  justify-content: center !important; /* 居中显示 */
  align-items: center !important;
  flex-wrap: wrap; 
  gap: 6px !important; /* 元素之间的间距 */
  color: #999 !important; /* 整体字体设置为灰色，你可以调整这个值，比如 #888 或 #aaa */
}

/* 2. 强制链接（如“技术”分类）也变成灰色，避免默认蓝色 */
.post-meta a {
  color: #999 !important; /* 与整体保持一致 #c05b4d*/
  text-decoration: none !important; /* 去除下划线（可选） */
}

/* 鼠标悬停在链接上时稍微变深，提供交互反馈 */
.post-meta a:hover {
  color: #666 !important; 
}

/* 3. 清除原主题自带的各类 margin/padding */
.post-meta .post-meta-time,
.post-meta .post-meta-category,
.post-meta .post-meta-more,
.post-meta #busuanzi_container_page_pv,
.post-meta .leancloud_visitors {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

/* 4. 清除分类默认可能带有的左侧小圆点或竖线等伪元素 */
.post-meta .post-meta-category::before {
  display: none !important;
}

/* 5. 如果有多个分类，让它们紧凑一点 */
.post-meta .post-meta-category a {
  margin-right: 2px;
}

@font-face{
  font-family:btfFont;
  /*src: url(https://cdn.jsdelivr.net/gh/huangwb8/bloghelper@latest/fonts/13.woff2) format('woff2') */
  src: url(https://cdn.jsdmirror.com/gh/luohongzhan/bloghelper@1.0.0/fonts/13.woff2) format('woff2')
 
}
body,h1,h2,h3,h4,h5,h6{
    font-family:"btfFont" !important
}
.tag-cloud,
.archive .collection-title,
.footer .copyright,
.header .site-navbar .menu,
.header .logo-wrapper .logo,
.post .post-footer,
.post .post-header .post-title,
.post .post-content .read-more .read-more-link {
    font-family:"btfFont" !important
}

/* 利用 :has 选择器，仅在首页列表隐藏阅读数，详情页正常显示 */
article.post:has(.post-summary) #busuanzi_container_page_pv {
  display: none !important;
}