/* 文章段落首行缩进 */
.post-content p {
  text-indent: 2em;
  margin-bottom: 1em;
}

/* 针对列表等其他元素调整 */
.post-content ul,
.post-content ol {
  padding-left: 2em;
}

/* 设置文章内容区域内的各级标题字体大小 */
.post-content h2 {
    font-size: 3em; /* 二级标题大小，例如：1.8em */
    margin-top: 2em;
    margin-bottom: 1em;
    border-bottom: 2px solid #eee; /* 可选：添加下划线 */
    padding-bottom: 0.3em;
}

.post-content h3 {
    font-size: 2.5em; /* 三级标题大小，例如：1.5em */
    margin-top: 1.8em;
    margin-bottom: 0.8em;
}

.post-content h4 {
    font-size: 2em; /* 四级标题大小 */
    margin-top: 1.5em;
    margin-bottom: 0.6em;
}
.post-content h5 {
    font-size: 1.5em; /* 四级标题大小 */
    margin-top: 1.2em;
    margin-bottom: 0.4em;
}

/* 如果您想修改侧边栏目录（TOC）中的标题大小 */
#aside-content .toc-link {
    font-size: 0.9em; /* 调整目录字体大小 */
}