fix(h5): 首屏清 title + 桃色顶区对齐小程序 nav-bar(nh=1)

index.html 在 Vue 前清 document.title 并预应用 mp-native-header;
CSS 桃色顶区、隐藏 AppHeader,减轻黑字与渐变冲顶。

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
jackyu66git
2026-08-25 04:09:12 +08:00
co-authored by Cursor
parent db3669c595
commit e7290ed726
2 changed files with 46 additions and 0 deletions
+19
View File
@@ -64,6 +64,25 @@ html.mp-embed body{
padding-top:var(--yxg-page-top);
min-height:100%;
}
/* 小程序原生顶栏:桃色顶区对齐 nav-bar,隐藏 H5 AppHeader,洗底不冲顶 */
html.mp-embed.mp-native-header{
background-color:#ffd1c7;
background-image:none;
}
html.mp-embed.mp-native-header body{
background:transparent;
}
html.mp-embed.mp-native-header .app-shell.mp-embed::before{
background-color:#ffd1c7;
}
html.mp-embed.mp-native-header .app-header{
display:none !important;
}
html.mp-embed.mp-native-header .app-shell .home,
html.mp-embed.mp-native-header .app-shell .ps,
html.mp-embed.mp-native-header .app-shell .yxg-page{
padding-top:var(--yxg-page-top);
}
.app-footer{
position:relative;
z-index:1;