fix(visual): 修复轮播标题颜色与页脚 logo 反白

Bug1: 首页 banner 轮播 4 张 slide 标题写作 <h2>...</h1>(开闭标签错配),浏览器自动把 </h1> 当作 </h2> 闭合,实际元素是 h2;而 CSS 只写了 .banner-slide h1{color:#fff},h2 命中不到 → 回落到全局深色文字,深蓝底上几乎看不见。改为 <h1>...</h1>(语义也正确:每张 slide 一个主标题),并把 h2 加进 CSS 规则作兜底。

Bug2: 33 页页脚 logo 用了 logo-dark.png(深底反白版/白字)放在 background:#fff 白卡片里,白字压白底。白卡内改回 logo.png(深色文字版)。按上下文精确匹配替换,JSON-LD 的 logo 字段未受影响。
This commit is contained in:
ubuntu
2026-09-16 20:32:09 +08:00
parent e35acf51cf
commit f5f0d8736c
34 changed files with 40 additions and 38 deletions
+1 -1
View File
@@ -392,7 +392,7 @@ body{font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans G
</div>
<div class="footer-col">
<div style="background:#fff;border-radius:10px;padding:11px 14px;width:fit-content;margin-bottom:18px">
<img src="/assets/logo-dark.png" alt="千视科技" width="120" height="33" style="display:block;width:120px;height:auto"></div>
<img src="/assets/logo.png" alt="千视科技" width="120" height="33" style="display:block;width:120px;height:auto"></div>
<h5 data-zh="联系方式" data-en="Contact">联系方式</h5>
<div style="font-size:1.3rem;font-weight:700;color:#fff">18948732299</div>
<div style="margin-top:4px;color:#a8b3d4">105920869@qq.com</div>