/* ========== 博客园 - 奶油风格（优化版） ==========
 * 优化：合并重复规则、表格配色统一、CSS变量、焦点样式
 * 使用：复制下方纯 CSS 到博客园「页面定制 CSS 代码」中
 */

/* ---------- 奶油色 CSS 变量（便于以后改主题） ---------- */
:root {
    --cream-bg: #fffbf7;
    --cream-bg-soft: #f9f2e6;
    --cream-bg-medium: #f2e6d5;
    --cream-border: #e6d2b8;
    --cream-border-light: #f2e6d5;
    --cream-primary: #d4b886;
    --cream-primary-dark: #c4a676;
    /* 绿色强调（用于文章标题/重要链接） */
    --cream-accent-green: #2f7d57;
    --cream-accent-green-dark: #256447;
    --cream-accent-green-soft: rgba(47, 125, 87, 0.12);
    --cream-text: #66523b;
    --cream-text-muted: #806a4d;
    --cream-title: #735f43;
    --cream-white: #ffffff;
    --cream-shadow: rgba(212, 184, 134, 0.15);
    --cream-shadow-soft: rgba(222, 210, 190, 0.12);
}

/* 基础重置（仅保留必要项，避免 * { transition } 造成性能问题） */
* {
    box-sizing: border-box;
}

body {
    color: var(--cream-text);
    background: var(--cream-bg);
    line-height: 1.65;
}

/* 内容区 */
div.forFlow {
    border: 1px solid var(--cream-border-light);
    border-right: 2px solid var(--cream-border);
    border-bottom: 2px solid var(--cream-border);
    border-left: 3px solid #d9bf9b;
    background: var(--cream-white);
    padding: 5px 17px 40px;
    margin-left: 0;
    left: 0;
    border-radius: 10px;
    box-shadow: 0 5px 18px var(--cream-shadow-soft);
}

/* 顶部导航 */
.topnav {
    overflow: hidden;
    background-color: var(--cream-white);
    box-shadow: 0 3px 15px var(--cream-shadow-soft);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

/* 导航链接（合并为一段，统一 padding、字号） */
.topnav a {
    float: left;
    display: block;
    color: var(--cream-text-muted);
    text-align: center;
    padding: 14px 18px;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.topnav a:hover {
    background-color: var(--cream-bg-soft);
    color: var(--cream-text);
}

.topnav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--cream-primary);
    transition: width 0.3s ease;
}

.topnav a:hover::after,
.topnav a.active::after {
    width: 100%;
}

.topnav a.active {
    background-color: var(--cream-primary);
    color: var(--cream-white);
}

.topnav a:focus-visible {
    outline: 2px solid var(--cream-primary);
    outline-offset: 2px;
}

.topnav.scrolled {
    box-shadow: 0 5px 20px var(--cream-shadow);
}

/* 导航搜索框 */
.topnav input[type=text] {
    float: right;
    padding: 6px 10px;
    border: 1px solid var(--cream-border-light);
    margin-top: 8px;
    margin-right: 16px;
    font-size: 16px;
    border-radius: 8px;
    background-color: var(--cream-bg);
}

.topnav input[type=text]:focus {
    outline: 2px solid var(--cream-primary);
    outline-offset: 0;
}

/* 博客标题区（不显示头图时可保留隐藏，避免无效背景图请求） */
div#blogTitle {
    height: 76px;
    padding: 0;
    display: none;
    background: none;
}

/* 侧边栏 */
#sideBar {
    position: absolute;
    padding: 0;
    width: 310px;
    border: 0;
    top: 0;
    left: 0;
    background: var(--cream-white);
    border-right: 1px solid var(--cream-border-light);
    border-radius: 0 10px 10px 0;
}

#sideBar h3,
#MyIng .ing_title {
    margin: 0;
    font-size: 14px;
    text-align: left;
    background: var(--cream-primary);
    color: var(--cream-white);
    border-radius: 10px 10px 0 0;
    box-shadow: 0 3px 8px var(--cream-shadow);
    font-weight: 500;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}

#sideBar h3:hover,
#MyIng .ing_title:hover {
    background: var(--cream-primary-dark);
}

.catListTitle {
    background: var(--cream-bg-medium);
    color: var(--cream-title);
    font-size: 1.2em;
    height: 1.8em;
    line-height: 1.8em;
    padding: 5px;
    text-indent: 0.5em;
    text-shadow: none;
}

/* 列表/标题区大标题 */
.entrylistTitle,
.thumbTitle,
.PostListTitle,
.forFlow h3 div,
.galleryTitle {
    font-size: 28px;
    font-weight: 600;
    margin-top: 0;
    text-align: left;
    color: var(--cream-title);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cream-bg-soft);
}

/* 文章标题块 */
.postTitle,
.entrylistPosttitle,
.feedback_area_title {
    margin-top: 0;
    padding: 18px 24px;
    border: none;
    border-left: 4px solid var(--cream-accent-green);
    background: var(--cream-bg-soft);
    color: var(--cream-text);
    border-radius: 0 10px 10px 0;
    line-height: 1.6;
    white-space: normal;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(47, 125, 87, 0.10);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-left-color 0.3s ease;
    position: relative;
}

.postTitle::before,
.entrylistPosttitle::before,
.feedback_area_title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.postTitle:hover,
.entrylistPosttitle:hover,
.feedback_area_title:hover {
    background: var(--cream-bg-medium);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px var(--cream-accent-green-soft);
    border-left-color: var(--cream-accent-green-dark);
}

.postTitle h2,
.entrylistPosttitle h2,
.feedback_area_title h2 {
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
}

.postTitle::after,
.entrylistPosttitle::after,
.feedback_area_title::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--cream-accent-green);
    box-shadow: -10px 0 0 var(--cream-accent-green), 10px 0 0 var(--cream-accent-green);
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

/* 文章标题里的链接（常见：#cb_post_title_url） */
.postTitle a,
.entrylistPosttitle a,
#cb_post_title_url {
    color: var(--cream-accent-green);
    text-decoration: none;
}

.postTitle a:hover,
.entrylistPosttitle a:hover,
#cb_post_title_url:hover {
    color: var(--cream-accent-green-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.postTitle:hover::after,
.entrylistPosttitle:hover::after,
.feedback_area_title:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1.3);
}

/* 文章正文内标题 */
#cnblogs_post_body h1,
#cnblogs_post_body h2,
#cnblogs_post_body h3,
#cnblogs_post_body h4 {
    margin: 0;
    text-align: left;
    border-radius: 8px;
    padding: 12px 20px;
    line-height: 1.6;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 3px 8px rgba(212, 184, 134, 0.1);
}

#cnblogs_post_body h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 20px;
    background-color: var(--cream-accent-green);
    color: var(--cream-white);
    border-left: 6px solid var(--cream-accent-green-dark);
}

#cnblogs_post_body h1:hover {
    background-color: var(--cream-accent-green-dark);
    transform: translateX(3px);
}

#cnblogs_post_body h2 {
    font-size: 21px;
    font-weight: 600;
    margin: 25px 0 16px;
    background-color: var(--cream-bg-medium);
    color: var(--cream-text);
    border-left: 5px solid var(--cream-primary);
}

#cnblogs_post_body h2:hover {
    background-color: var(--cream-border);
    transform: translateX(2px);
}

#cnblogs_post_body h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 22px 0 14px;
    background-color: var(--cream-bg-soft);
    color: var(--cream-title);
    border-left: 4px solid var(--cream-border-light);
}

#cnblogs_post_body h3:hover {
    background-color: var(--cream-bg-medium);
    transform: translateX(2px);
}

#cnblogs_post_body h4 {
    font-size: 17px;
    font-weight: 600;
    margin: 20px 0 12px;
    background-color: #fff8ef;
    color: var(--cream-title);
    border-left: 3px solid var(--cream-bg-soft);
}

#cnblogs_post_body h4:hover {
    background-color: var(--cream-bg-soft);
    transform: translateX(1px);
}

#cnblogs_post_body h1::after,
#cnblogs_post_body h2::after,
#cnblogs_post_body h3::after,
#cnblogs_post_body h4::after {
    content: "●";
    font-size: 0.8em;
    margin-left: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#cnblogs_post_body h1:hover::after,
#cnblogs_post_body h2:hover::after,
#cnblogs_post_body h3:hover::after,
#cnblogs_post_body h4:hover::after {
    opacity: 1;
    transform: translateX(4px);
}

/* 按钮 */
.topicListFooter,
#BlogPostCategory {
    margin: 10px 10px 10px 0;
    background-color: var(--cream-primary);
    color: var(--cream-white);
    text-decoration: none;
    display: inline-block;
    padding: 9px 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(212, 184, 134, 0.2);
}

.topicListFooter:hover,
#BlogPostCategory:hover {
    background-color: var(--cream-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 184, 134, 0.25);
}

.topicListFooter:focus-visible,
#BlogPostCategory:focus-visible {
    outline: 2px solid var(--cream-primary-dark);
    outline-offset: 2px;
}

a.p_n_p_prefix {
    margin: 10px 10px 0 0;
    background-color: var(--cream-bg-medium);
    color: var(--cream-title);
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(212, 184, 134, 0.1);
}

a.p_n_p_prefix:hover {
    background-color: var(--cream-border);
}

a.p_n_p_prefix:focus-visible {
    outline: 2px solid var(--cream-primary);
    outline-offset: 2px;
}

/* 分页 */
.pager {
    font-size: 12px;
    margin: 10px 0;
    text-align: right;
    color: var(--cream-title);
    line-height: 1.5;
}

.pager a {
    color: var(--cream-primary);
    padding: 5px 12px;
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.pager a:hover {
    color: var(--cream-white);
    background-color: var(--cream-primary);
}

.pager a:focus-visible {
    outline: 2px solid var(--cream-primary);
    outline-offset: 2px;
}

div#navigator {
    padding: 0;
    height: 0;
    border: none;
    display: none;
}

/* 表格 - 改为奶油色系（原绿色 #53de24 已替换） */
#cnblogs_post_body table,
.postBody table {
    width: 92%;
    margin: 25px auto;
    border-collapse: separate;
    border-spacing: 0;
    background-color: var(--cream-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--cream-border);
    box-shadow: 0 2px 12px var(--cream-shadow-soft);
    transition: box-shadow 0.2s ease;
}

#cnblogs_post_body .postBody table {
    width: 92%;
    margin: 25px auto;
}

.postBody th,
#cnblogs_post_body th {
    background-color: var(--cream-primary);
    color: var(--cream-white);
    font-weight: 600;
    padding: 14px 18px;
    text-align: left;
    vertical-align: middle;
    border-right: 1px solid var(--cream-border);
}

.postBody th:last-child,
#cnblogs_post_body th:last-child {
    border-right: none;
}

.postBody td,
#cnblogs_post_body td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--cream-border-light);
    border-right: 1px solid var(--cream-border-light);
    color: var(--cream-text);
    vertical-align: middle;
    transition: background-color 0.2s ease;
}

.postBody tr:hover td,
#cnblogs_post_body tr:hover td {
    background-color: rgba(249, 242, 230, 0.5);
}

.postBody td:last-child,
#cnblogs_post_body td:last-child {
    border-right: none;
}

/* ========== 代码整体样式（紧凑扁平版） ========== */
:root {
    --code-bg: #fbf6ee;
    --code-gutter-bg: rgba(251, 246, 238, 0.7);
    --code-border: #eadcc7;
    --code-text: #4c3b2c;
    --code-muted: #7a6757;
    --code-green: #2f7d57;
    --code-blue: #2f6f7d;
    --code-purple: #6b5ca8;
    --code-orange: #b35c1e;
    --code-red: #a8423b;
}

/* 行内 code：小标签风格，扁平简洁 */
#cnblogs_post_body :not(pre) > code {
    padding: 0.08em 0.32em;
    border-radius: 4px;
    background: var(--code-bg);
    border: 1px solid var(--code-border);
    color: var(--code-text);
    font-size: 0.9em;
    line-height: 1.3;
}

/* 代码块基础：扁平卡片、无厚重阴影 */
#cnblogs_post_body pre,
#cnblogs_post_body pre[class*="language-"],
#cnblogs_post_body pre code,
#cnblogs_post_body code[class*="language-"],
#cnblogs_post_body .hljs {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

#cnblogs_post_body pre,
#cnblogs_post_body pre[class*="language-"] {
    background: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 8px;
    box-shadow: none;
    line-height: 1.5;
    font-size: 12.5px;
    padding: 8px 10px;
    overflow-x: auto;
}

#cnblogs_post_body pre code {
    border: none;
    background: none;
    padding: 0;
}

/* highlight.js 常见容器 */
#cnblogs_post_body pre .hljs,
#cnblogs_post_body .hljs {
    background: transparent;
    color: var(--code-text);
    padding: 0;
}

/* highlight.js（含行号插件 hljs-line-numbers）推荐结构优化 */
#cnblogs_post_body pre code.hljs,
#cnblogs_post_body pre code.highlighter-hljs {
    display: block;
}

/* 行号表格：去掉默认 table 边框、对齐与分隔 */
#cnblogs_post_body pre table.hljs-ln {
    width: 100%;
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    background: transparent;
}

#cnblogs_post_body pre table.hljs-ln td {
    border: none;
    padding: 0;
    vertical-align: top;
}

/* 行号列 */
#cnblogs_post_body pre td.hljs-ln-numbers {
    user-select: none;
    text-align: right;
    padding: 6px 8px 6px 10px;
    color: rgba(122, 103, 87, 0.75);
    border-right: 1px solid var(--code-border);
    background: var(--code-gutter-bg);
    min-width: 30px;
    font-size: 11px;
    line-height: 1.4;
}

/* 代码列 */
#cnblogs_post_body pre td.hljs-ln-code {
    padding: 6px 10px;
}

/* 行号每行高度更稳 */
#cnblogs_post_body pre .hljs-ln-n {
    padding-right: 0;
}

/* 选中文本时更柔和 */
#cnblogs_post_body pre ::selection {
    background: rgba(47, 125, 87, 0.18);
}

/* 横向滚动条：更贴合主题 */
#cnblogs_post_body pre::-webkit-scrollbar {
    height: 10px;
}
#cnblogs_post_body pre::-webkit-scrollbar-track {
    background: transparent;
}
#cnblogs_post_body pre::-webkit-scrollbar-thumb {
    background: rgba(230, 210, 184, 0.9);
    border-radius: 999px;
    border: 3px solid transparent;
    background-clip: content-box;
}
#cnblogs_post_body pre::-webkit-scrollbar-thumb:hover {
    background: var(--cream-accent-green);
    border: 3px solid transparent;
    background-clip: content-box;
}

/* highlight.js：常见 class 配色（兼容性版） */
#cnblogs_post_body .hljs-comment,
#cnblogs_post_body .hljs-quote { color: var(--code-muted); }

#cnblogs_post_body .hljs-keyword,
#cnblogs_post_body .hljs-selector-tag,
#cnblogs_post_body .hljs-literal { color: var(--code-purple); }

#cnblogs_post_body .hljs-string,
#cnblogs_post_body .hljs-doctag,
#cnblogs_post_body .hljs-regexp { color: var(--code-green); }

#cnblogs_post_body .hljs-title,
#cnblogs_post_body .hljs-section,
#cnblogs_post_body .hljs-function { color: var(--code-blue); }

#cnblogs_post_body .hljs-number,
#cnblogs_post_body .hljs-meta,
#cnblogs_post_body .hljs-built_in { color: var(--code-orange); }

#cnblogs_post_body .hljs-attr,
#cnblogs_post_body .hljs-attribute,
#cnblogs_post_body .hljs-name,
#cnblogs_post_body .hljs-tag { color: var(--code-red); }

/* 额外：让代码块里的链接/强调不突兀 */
#cnblogs_post_body pre a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========== 侧边栏主容器（#sideBarMain）优化 ========== */
/* 说明：博客园侧边栏通常结构为 #sideBar → #sideBarMain → 若干模块（div / ul / li） */
#sideBarMain {
    padding: 14px 14px 18px;
    color: var(--cream-text);
}

/* 侧边栏各模块做成“卡片”效果（兼容不同模块结构） */
#sideBarMain > div,
#sideBarMain .catList,
#sideBarMain .newsItem,
#sideBarMain .sidebar-block,
#sideBarMain .sidebar-block-content {
    background: var(--cream-white);
    border: 1px solid var(--cream-border-light);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(222, 210, 190, 0.08);
    padding: 12px 12px;
    margin: 12px 0;
}

/* 侧边栏模块标题：统一层级与间距 */
#sideBarMain h3,
#sideBarMain .catListTitle,
#sideBarMain .newsItemTitle {
    margin: 0 0 10px;
    padding: 9px 12px;
    border-radius: 10px;
    background: var(--cream-bg-medium);
    border: 1px solid var(--cream-border-light);
    color: var(--cream-title);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}

/* 如果标题本身是链接 */
#sideBarMain h3 a,
#sideBarMain .catListTitle a,
#sideBarMain .newsItemTitle a {
    color: inherit;
    text-decoration: none;
}

/* 列表/链接的默认样式：更干净 */
#sideBarMain ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#sideBarMain li {
    margin: 6px 0;
    padding: 0;
}

#sideBarMain a {
    color: var(--cream-text-muted);
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    max-width: 100%;
    padding: 3px 6px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

#sideBarMain a:hover {
    color: var(--cream-primary-dark);
    background: var(--cream-bg-soft);
    transform: translateX(2px);
}

#sideBarMain a:focus-visible {
    outline: 2px solid var(--cream-primary);
    outline-offset: 2px;
}

/* 侧边栏内滚动更顺眼（如果你的侧边栏做了 sticky + overflow） */
#sideBarMain {
    scrollbar-color: var(--cream-border) transparent;
    scrollbar-width: thin;
}

#sideBarMain::-webkit-scrollbar {
    width: 10px;
}

#sideBarMain::-webkit-scrollbar-track {
    background: transparent;
}

#sideBarMain::-webkit-scrollbar-thumb {
    background: var(--cream-border);
    border-radius: 999px;
    border: 3px solid transparent;
    background-clip: content-box;
}

#sideBarMain::-webkit-scrollbar-thumb:hover {
    background: var(--cream-primary);
    border: 3px solid transparent;
    background-clip: content-box;
}
/* ===== 博客园文章列表时间轴风格（列表页） ===== */

/* 整个列表区域外层（根据皮肤结构二选一/都留也行） */
#main,
#home {
    position: relative;
}

/* 文章列表外层统一当成时间轴容器 */
#main .forFlow,
#home .forFlow {
    position: relative;
    padding-left: 32px; /* 为时间线留出空间 */
}

/* 竖向时间线：在内容区域左侧 */
#main .forFlow::before,
#home .forFlow::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #eadcc7;
}

/* 每篇文章外层：常见几种结构全部兼容 */
#main .entrylistItem,
#main .postItem,
#home .entrylistItem,
#home .postItem,
#main .day,
#home .day {
    position: relative;
    margin: 0 0 18px;
    padding: 12px 16px 12px 24px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #f2e6d5;
    box-shadow: 0 2px 8px rgba(222, 210, 190, 0.08);
}

/* 时间轴圆点 */
#main .entrylistItem::before,
#main .postItem::before,
#home .entrylistItem::before,
#home .postItem::before,
#main .day::before,
#home .day::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2f7d57; /* 绿色强调 */
    box-shadow: 0 0 0 3px rgba(47, 125, 87, 0.16);
}

/* 标题行：稍微加粗，颜色用你现在的绿色 */
#main .entrylistPosttitle,
#main .postTitle,
#home .entrylistPosttitle,
#home .postTitle {
    margin: 0 0 4px;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

#main .entrylistPosttitle a,
#main .postTitle a,
#home .entrylistPosttitle a,
#home .postTitle a {
    font-size: 17px;
    font-weight: 600;
    color: #2f7d57;
    text-decoration: none;
}

#main .entrylistPosttitle a:hover,
#main .postTitle a:hover,
#home .entrylistPosttitle a:hover,
#home .postTitle a:hover {
    color: #256447;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* 摘要/内容预览 */
#main .postCon,
#home .postCon,
#main .c_b_p_desc,
#home .c_b_p_desc {
    color: #705d4d;
    font-size: 14px;
    line-height: 1.7;
}

/* 元信息：时间、阅读数等，做成一行小字 */
#main .postDesc,
#home .postDesc,
#main .entrylistItemPostDesc,
#home .entrylistItemPostDesc {
    margin-top: 6px;
    font-size: 12px;
    color: #a08c79;
}

/* 鼠标悬停轻微抬起 */
#main .entrylistItem:hover,
#main .postItem:hover,
#home .entrylistItem:hover,
#home .postItem:hover,
#main .day:hover,
#home .day:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 184, 134, 0.14);
}
/* ===== 时间轴时间展示优化（仅改样式） ===== */
.bk-timeline-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 12px;
    color: #8f7a66;
}

/* 左侧小圆点 */
.bk-timeline-meta::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #2f7d57;
    box-shadow: 0 0 0 2px rgba(47, 125, 87, 0.18);
}

/* 日期文本做成圆角胶囊标签 */
.bk-timeline-meta {
    padding: 2px 10px 2px 4px;
    border-radius: 999px;
    background: #fbf6ee;
    border: 1px solid #eadcc7;
}
/* ===== 全站分页：只保留最底下一行，简洁按钮风 ===== */

/* 先隐藏除最后一个以外的所有分页块 */
.pager {
    display: none;
}
.pager:last-of-type {
    display: inline-block;
}


/* 当前页 */
.pager span.current,
.pager span[style*="font-weight"] {
    background: #2f7d57;
    border-color: #2f7d57;
    color: #ffffff;
    font-weight: 600;
}

/* hover 效果 */
.pager a:hover {
    background: #f2e6d5;
    border-color: #e0c9aa;
    color: #66523b;
}

/* 焦点样式（键盘导航） */
.pager a:focus-visible {
    outline: 2px solid #2f7d57;
    outline-offset: 1px;
}
