/* v1.93: 帖子详情页行高和段落间距优化
 * 覆盖核心 bootstrap-bbs.css 的 .message p / .message li 样式
 * 问题：
 *   - line-height: 1.8 行高过大，导致每行文字间距过稀疏
 *   - margin: 0.5rem 0 段落间距过大，段落之间显得空旷
 * 方案：
 *   - line-height 设为 1.65（中文阅读舒适行高，v1.0.101 从 1.5 微调）
 *   - 段落 margin 从 0.5rem 0 收紧到 0.15rem 0（段落之间更紧凑）
 *   - 列表项 margin 从 0.2rem 0 收紧到 0.1rem 0
 * 作用域：所有 .message 容器（帖子主体、回帖内容）
 */
.message p {
    margin: 0.15rem 0 !important;
    line-height: 1.65 !important;
}

.message li {
    margin: 0.1rem 0 !important;
    line-height: 1.65 !important;
}

/* v1.94: 列表（ul/ol）整体 margin 也收紧，避免列表上下方间距过大 */
.message ul,
.message ol {
    margin: 0.15rem 0 !important;
}


