/* V72 - iPhone 顶部安全区颜色统一 */

html,
body{
  background:#F1F0EB !important;
}

/* App 根容器也保持同色，避免顶部露出另一层背景 */
#app,
.app,
.app-shell,
.app-container{
  background:#F1F0EB;
}

/* 普通页面统一暖米白 */
.page:not(.page-play){
  background:#F1F0EB !important;
}

/* 我的页面顶部不能再单独出现灰色 */
.page[data-page="mine"],
.page[data-page="mine"] .profile-head{
  background:#F1F0EB !important;
}

/* iPhone 顶部 safe area */
body::before{
  content:"";
  position:fixed;
  z-index:-1;
  left:0;
  right:0;
  top:0;
  height:env(safe-area-inset-top);
  background:#F1F0EB;
}
