/* 
 * 区块标题修复样式
 * 用于解决标题区域多余红色横线的问题
 */

/* 通用标题修复样式 */
.xhs-section-header {
    position: relative;
}

/* 替换默认的红色横线样式 */
.xhs-section-header .xhs-divider {
    display: none;
}

/* 移除标题后的红色横线样式 */
h2.xhs-section-title::after, 
.xhs-section-title::after {
    display: none !important;
    content: none !important;
}

/* 设置新的红色横线样式 */
.xhs-section-header::after {
    content: none;
}

/* 修复营销价值区块标题样式 */
.xhs-value-section .xhs-section-header {
    margin-bottom: 60px;
}

/* 修复小红书玩法区块标题样式 */
.xhs-play-methods .xhs-section-header {
    margin-bottom: 60px;
}

/* 为标题添加辅助线元素 */
.xhs-section-title {
    position: relative;
    display: inline-block;
}

/* 设置红色高亮部分样式 */
.xhs-highlight {
    color: #fe2c55;
    position: relative;
}

/* 设置营销价值区块副标题描述样式 */
.xhs-value-section .xhs-section-desc {
    margin-top: 10px;
}

/* 设置小红书玩法区块副标题描述样式 */
.xhs-play-methods .xhs-section-desc {
    margin-top: 10px;
} 