/* ========================================
   China UWH Group 首页标题颜色修复 - 超强版
   文件: title-color-fix.css
   创建日期: 2025-07-12
   目的: 修复首页正文部分白色标题可读性问题
   使用最高优先级CSS选择器
   ======================================== */

/* 使用最高优先级的CSS选择器 */
html body .site .content-area .site-main .entry-content h1,
html body .site .content-area .site-main .entry-content h2,
html body .site .content-area .site-main .entry-content h3,
html body .site .content-area .site-main .entry-content h4,
html body .site .content-area .site-main .entry-content h5,
html body .site .content-area .site-main .entry-content h6 {
    color: #1e3a8a !important;
}

/* 备用超强选择器 */
html body div.site div.content-area main.site-main article div.entry-content h1,
html body div.site div.content-area main.site-main article div.entry-content h2,
html body div.site div.content-area main.site-main article div.entry-content h3,
html body div.site div.content-area main.site-main article div.entry-content h4,
html body div.site div.content-area main.site-main article div.entry-content h5,
html body div.site div.content-area main.site-main article div.entry-content h6 {
    color: #1e3a8a !important;
}

/* 通用强制选择器 */
* h1, * h2, * h3, * h4, * h5, * h6 {
    color: #1e3a8a !important;
}

/* 保护Hero区域的白色文字 */
[style*="background-image"] h1, [style*="background-image"] h2, [style*="background-image"] h3, 
[style*="background-image"] h4, [style*="background-image"] h5, [style*="background-image"] h6 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
}

/* 移动端 */
@media (max-width: 768px) {
    * h1, * h2, * h3, * h4, * h5, * h6 {
        color: #1e3a8a !important;
    }
}
