/* 优化正文字体和行距 */
.post-content {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

/* 一级目录 */
.toc-item.toc-level-1 > .toc-link {
  font-size: 14px !important;
}

/* 二级目录 */
.toc-item.toc-level-2 > .toc-link {
  font-size: 12px !important;
}

/* 三级目录 */
.toc-item.toc-level-3 > .toc-link {
  font-size: 11px !important;
}

/* 四级目录 */
.toc-item.toc-level-4 > .toc-link {
  font-size: 10px !important;
}

/* 五级目录 */
.toc-item.toc-level-5 > .toc-link {
  font-size: 9px !important;
}

/* 隐藏四级及更深层级的序号 */
.toc-item.toc-level-4 .toc-number,
.toc-item.toc-level-5 .toc-number,
.toc-item.toc-level-6 .toc-number {
  display: none;
}

/* 二级目录缩进 */
.toc-item.toc-level-1 > .toc-child {
  padding-left: 10px !important;
}

/* 三级目录缩进 */
.toc-item.toc-level-2 > .toc-child {
  padding-left: 10px !important;
}

/* 四级及更深 */
.toc-item.toc-level-3 > .toc-child,
.toc-item.toc-level-4 > .toc-child {
  padding-left: 10px !important;
}

figure.highlight {
  font-size: 13px !important;
}

/* 优化标题样式 */
/* .post-content h1 {
    font-size: 2.2em;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #49b1f5;
} */

/* .post-content h2 {
    font-size: 1.8em;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #49b1f5;
}

.post-content h3 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
} */

/* 段落间距 */
.post-content p {
    margin-bottom: 20px;
    text-align: justify;
}

/* 列表样式 */
.post-content ul {
    padding-left: 30px;
}

.post-content ul li {
    margin-bottom: 12px;
}

/* 代码块美化 */
code {
    background: #f6f8fa;
    padding: 3px 6px;
    border-radius: 4px;
    color: #e83e8c;
    font-size: 0.9em;
}