
.layout[data-v-ebbe9f73] {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.content[data-v-ebbe9f73] {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.van-tabbar[data-v-ebbe9f73] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.custom-tabbar[data-v-ebbe9f73] {
  background:  linear-gradient(to right, #ff89a8 0%, #b7a3ff 100%);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}
.plus-tabbar-item[data-v-ebbe9f73] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0%;
  height: 100%;
  background: none;
  position: relative;
  z-index: 2;
}
.plus-btn[data-v-ebbe9f73] {
  width: 35px;
  height: 35px;
  /* background: linear-gradient(135deg, #ff6b35 0%, #764ba2 100%); */
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(255, 107, 53, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  color: #fff;
  font-size: 20px;
  transition: box-shadow 0.2s;
}
.plus-btn[data-v-ebbe9f73]:active {
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25);
}

/* 自定义tabbar激活状态样式 */
[data-v-ebbe9f73] .van-tabbar-item--active {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px;
  margin: 4px;
  transition: all 0.3s ease;
}
[data-v-ebbe9f73] .van-tabbar-item {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  margin: 4px;
}
[data-v-ebbe9f73] .van-tabbar-item:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 4px;
}

/* Tabbar 滑入滑出动画 */
.tabbar-slide-enter-active[data-v-ebbe9f73],
.tabbar-slide-leave-active[data-v-ebbe9f73] {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tabbar-slide-enter-from[data-v-ebbe9f73] {
  transform: translateY(100%);
  opacity: 0;
}
.tabbar-slide-leave-to[data-v-ebbe9f73] {
  transform: translateY(100%);
  opacity: 0;
}

/* 内容区域适配 */
.content[data-v-ebbe9f73] {
  transition: padding-bottom 0.3s ease;
}

/* 底部留白完全由 JS 控制，移除 :has 规则避免冲突 */

/* 过渡动画 */
.fade-enter-active[data-v-ebbe9f73],
.fade-leave-active[data-v-ebbe9f73] {
  transition: opacity 0.3s ease;
}
.fade-enter-from[data-v-ebbe9f73],
.fade-leave-to[data-v-ebbe9f73] {
  opacity: 0;
}
