
/* 页面整体留出底部固定区域的高度 */
.app-wrapper[data-v-5988ed20] {
  min-height: 100vh;
  padding-bottom: 18.666667vw; /* tabbar 50px + 备案约 40px */
  box-sizing: border-box;
}

/* 底部固定区域 */
.bottom-bar[data-v-5988ed20] {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  background-color: #fff;
}

/* 关闭 tabbar 自带的 fixed，让它跟随父容器 */
[data-v-5988ed20] .van-tabbar {
  position: relative;
  height: 13.333333vw;
}
.van-tabbar-item__icon img[data-v-5988ed20] {
  height: 6.666667vw !important;
}
.van-tabbar-item[data-v-5988ed20] {
  font-size: 2.666667vw !important;
}

/* 备案信息 - 灰色底色，单行小字 */
.beian-box[data-v-5988ed20] {
  background-color: #f0f0f0;
  padding: 1.066667vw 3.2vw;
  text-align: center;
  font-size: 2.666667vw;          /* 行业标准小字，iOS 最小可读 10px */
  line-height: 1.4;
  color: #999;
  border-top: 1px solid #e0e0e0;

  /* 单行展示：公司名 + 备案号 */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;          /* 极窄屏可换行，防止溢出 */
  gap: 1.6vw;                 /* 两项之间的间距 */
}
.company-name[data-v-5988ed20] {
  /* 单行模式下不需要下边距 */
  margin-bottom: 0;
}
.beian-link[data-v-5988ed20] {
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}
.beian-link[data-v-5988ed20]:hover {
  color: #FF2B47;
}

