/**
 * 详情页强制样式
 * 这个文件用于强制设置一些重要的样式，确保它们不会被其他CSS覆盖
 * 最后更新: 2025-06-11
 */

/* 强制设置描述文本的行高为30px */
html body .section-content,
.section-content,
html body .tool-description-text,
.tool-description-text,
html body .section-content p,
.section-content p,
html body .tool-description p,
.tool-description p,
html body .detail-section p,
.detail-section p {
    line-height: 30px !important;
}

/* 最后一个段落不需要底部间距 */
html body .section-content p:last-child,
.section-content p:last-child {
    margin-bottom: 0 !important;
} 