/**
 * 详情页描述间距专用CSS
 * 最后更新: 2025-06-12
 * 
 * 这个文件专门用于控制详情页描述区域的底部间距
 * 使用了超高特异性选择器确保不被其他CSS规则覆盖
 */

/* 描述区域底部间距 - 超高优先级选择器 */
html body .tool-description-container,
html body .tool-description-text,
html[lang] body .tool-description-container,
html[lang] body .tool-description-text,
body .tool-description-container,
body .tool-description-text,
.tool-description-container,
.tool-description-text {
    margin-bottom: 20px !important;
}

/* 确保section header上方有足够的间距 */
html body .detail-section:first-child,
html[lang] body .detail-section:first-child,
body .detail-section:first-child,
.detail-section:first-child {
    margin-top: 40px !important;
}

/* 设置detail-section之间的间距为40px */
html body .detail-section,
html[lang] body .detail-section,
body .detail-section,
.detail-section {
    margin-bottom: 40px !important;
} 