/* === 微信内置浏览器适配 === */

/* 微信环境下隐藏非必要元素 */
.wechat .wechat-hide {
  display: none;
}

/* 微信环境下顶部导航无需为滚动预留空间*/
.wechat .nav {
  top: 0;
}

/* 适配微信底部安全区 */
.wechat .mobile-cta-bar {
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 16px));
}

.wechat body {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 16px));
}

/* 微信字体适配 */
.wechat body {
  font-family: -apple-system, 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
}

/* iOS微信下拉回弹背景色 */
.wechat html {
  background: var(--bg-warm);
}
