
.mine-page[data-v-14f8fd05] {
  min-height: calc(100vh - 50px);
  /* height: 100vh; */ /* 移除强制高度 */
  position: relative;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background-color: #f5f5f5;
}

/* 用户信息区域 */
.user-section[data-v-14f8fd05] {
  position: relative;
  height: 280px; /* 减小高度，原来是350px */
  display: flex;
  flex-direction: column;
  width: 100%;
}



/* 用户封面图 */
.user-cover-container[data-v-14f8fd05] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  pointer-events: auto;
}
.user-cover-image[data-v-14f8fd05] {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 保持横纵比并填充容器 */
  object-position: center; /* 居中裁剪 */
}

/* 渐变遮罩 */
.cover-gradient-overlay[data-v-14f8fd05] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: background 0.5s ease;
}

/* 用户信息内容 */
.user-info-content[data-v-14f8fd05] {
  position: relative;
  z-index: 3;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  pointer-events: none;
}

/* 用户信息 */
.user-info[data-v-14f8fd05] {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.avatar-container[data-v-14f8fd05] {
  position: relative;
  margin-right: 16px;
  cursor: pointer;
  pointer-events: auto;
}
.user-avatar[data-v-14f8fd05] {
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.vip-badge[data-v-14f8fd05] {
  position: absolute;
  top: -22px;
  right: 6px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crown[data-v-14f8fd05] {
  font-size: 34px;
  line-height: 1;
  transform: rotate(20deg);
}
.user-details[data-v-14f8fd05] {
  flex: 1;
}
.user-header-row[data-v-14f8fd05] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.username[data-v-14f8fd05] {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.user-level[data-v-14f8fd05] {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  /* text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); */
}
.user-vip[data-v-14f8fd05] {
  margin-top: 4px;
}
.vip-level[data-v-14f8fd05] {
  font-size: 12px;
  color: #FFD700;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.activate-vip[data-v-14f8fd05] {
  margin-top: 8px;
}
.vip-btn[data-v-14f8fd05] {
  font-size: 11px;
  padding: 2px 12px;
  height: 24px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border: none;
  color: #333;
  font-weight: 600;
}
.vip-badges[data-v-14f8fd05] {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 4px;
  display: inline-block;
  pointer-events: auto;
}
.vip-badges.normal[data-v-14f8fd05] {
  color: #fff;
  background: linear-gradient(135deg, #ff6b35, #e91e63);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}
.vip-badges.normal[data-v-14f8fd05]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}
.vip-badges.normal[data-v-14f8fd05]:active {
  transform: translateY(0);
}
.vip-badges.gold[data-v-14f8fd05] {
  color: red;
  background-color: gold;
}
.vip-badges.diamond[data-v-14f8fd05] {
  color: #ffed4e;
  background-color: #333;
}
.user-id[data-v-14f8fd05] {
  font-size: 13px;
  color: #eee;
  margin-top: 2px;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-level-badge[data-v-14f8fd05] {
  color: white;
  padding: 2px 2px;
  font-size: 12px;
  font-weight: 500;
  text-shadow: none;
}
.user-charm-badge[data-v-14f8fd05] {
  color: white;
  font-size: 13px;
  font-weight: 500;
  text-shadow: none;
  display: flex;
  align-items: center;
  gap: 2px;
}
.user-charm-badge .van-icon[data-v-14f8fd05] {
  color: #e34d07;
}



/* 统计数据和操作按钮容器 */
.stats-and-actions[data-v-14f8fd05] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

/* 统计数据 */
.stats-section[data-v-14f8fd05] {
  display: flex;
  align-items: center;
  gap: 20px; /* 减小间距，原来是24px */
}
.stat-item[data-v-14f8fd05] {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
  pointer-events: auto;
}
.stat-item[data-v-14f8fd05]:active {
  transform: scale(0.95);
}
.stat-number[data-v-14f8fd05] {
  font-size: 16px; /* 减小字体大小，原来是18px */
  font-weight: 600;
  color: white;
  margin-bottom: 2px; /* 减小间距，原来是4px */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.stat-label[data-v-14f8fd05] {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

/* 操作按钮 */
.action-buttons[data-v-14f8fd05] {
  display: flex;
  gap: 12px;
  align-items: center;
  pointer-events: auto;
}
.edit-btn[data-v-14f8fd05] {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 32px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
}
.settings-btn[data-v-14f8fd05] {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 未登录状态 */
.login-section[data-v-14f8fd05] {
  text-align: center;
  padding: 20px 0;
}
.login-avatar[data-v-14f8fd05] {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: transform 0.2s;
}
.login-avatar[data-v-14f8fd05]:active {
  transform: scale(0.95);
}
.login-title[data-v-14f8fd05] {
  font-size: 18px;
  color: white;
  font-weight: 500;
  margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.login-subtitle[data-v-14f8fd05] {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.login-btn[data-v-14f8fd05] {
  background: white;
  color: #667eea;
  border: none;
  font-weight: 500;
}

/* 内容区域 */
.content-section[data-v-14f8fd05] {
  flex: 1;
  overflow: visible;
  /* height: 100%;  // 不要加这个 */
  background: linear-gradient(to right, #ffb3c6 0%, #d5c4ff 100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  margin-top: -20px; /* 让内容区域与用户信息区域有重叠 */
}

/* 标签页样式 */
.content-tabs[data-v-14f8fd05] {
  /* 不设置height */
}
.content-tabs[data-v-14f8fd05] .van-tabs__wrap {
  border-bottom: 1px solid #f0f0f0;
}
.content-tabs[data-v-14f8fd05] .van-tab {
  color: #666;
  font-size: 16px;
}
.content-tabs[data-v-14f8fd05] .van-tab--active {
  color: #333;
  font-weight: 500;
}
.content-tabs[data-v-14f8fd05] .van-tabs__line {
  background: #ff4444;
  height: 3px;
  border-radius: 3px;
}
.tab-content[data-v-14f8fd05] {
  min-height: 300px;
  overflow-y: auto;
  /* 不要设置 height: 100% 或 height: 100vh */
}

/* 空状态 */
.empty-state[data-v-14f8fd05] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  text-align: center;
}
.empty-icon[data-v-14f8fd05] {
  margin-bottom: 16px;
  opacity: 0.3;
}
.empty-icon .van-icon[data-v-14f8fd05] {
  color: #999;
}
.empty-text[data-v-14f8fd05] {
  font-size: 14px;
  color: #999;
  margin-bottom: 24px;
}
.publish-btn[data-v-14f8fd05] {
  background: #ff4444;
  color: white;
  border: none;
  height: 36px;
  padding: 0 24px;
  font-size: 14px;
}

/* 更多功能抽屉样式 */
.more-actions-content[data-v-14f8fd05] {
  height: 100%;
  overflow-y: auto;
  background: #f7f8fa;
  display: flex;
  flex-direction: column;
}

/* 弹窗头部 */
.popup-header[data-v-14f8fd05] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: white;
  border-bottom: 1px solid #ebedf0;
  position: sticky;
  top: 0;
  z-index: 10;
}
.popup-title[data-v-14f8fd05] {
  font-size: 18px;
  font-weight: 600;
  color: #323233;
}
.close-icon[data-v-14f8fd05] {
  color: #666;
  cursor: pointer;
}
.close-icon[data-v-14f8fd05]:active {
  color: #323233;
}
.action-section[data-v-14f8fd05] {
  background: white;
  margin-bottom: 12px;
}
.action-section[data-v-14f8fd05]:last-child {
  margin-bottom: 0;
}

/* 钱包抽屉样式 */
.drawer-wallet-info[data-v-14f8fd05] {
  display: flex;
  justify-content: space-around;
  padding: 20px 0;
  background: white;
}
.drawer-balance-item[data-v-14f8fd05] {
  text-align: center;
  cursor: pointer;
}
.drawer-amount[data-v-14f8fd05] {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.drawer-label[data-v-14f8fd05] {
  font-size: 11px;
  color: #666;
}
.drawer-coin-icon[data-v-14f8fd05] {
  color: #FFD700;
}

/* 退出登录单元格 */
.logout-cell[data-v-14f8fd05] {
  color: #ff4444 !important;
}
.logout-cell[data-v-14f8fd05] .van-cell__title {
  color: #ff4444 !important;
}
.logout-cell[data-v-14f8fd05] .van-icon {
  color: #ff4444 !important;
}
.fullscreen-login[data-v-14f8fd05] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fce4ec; /* 淡粉色背景 */
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login-title[data-v-14f8fd05] {
  font-size: 20px;
  color: #d81b60; /* 深粉色，突出 */
  font-weight: 600;
  margin-bottom: 8px;
  text-shadow: none;
}
.login-subtitle[data-v-14f8fd05] {
  font-size: 14px;
  color: #ad1457; /* 更深粉色，辅助 */
  margin-bottom: 20px;
  text-shadow: none;
}
.login-btn[data-v-14f8fd05] {
  background: #e91e63;
  color: #fff;
  border: none;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(233,30,99,0.08);
}
.login-avatar[data-v-14f8fd05] {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff; /* 白色头像底，突出icon */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #e91e63;
  box-shadow: 0 2px 8px rgba(233,30,99,0.08);
}
.verified-cell .van-cell__title[data-v-14f8fd05] {
  color: #07c160;
}
.verified-cell .van-cell__value[data-v-14f8fd05] {
  color: #07c160;
}

/* 未认证状态显示红色 */
.van-cell:not(.verified-cell) .van-cell__value[data-v-14f8fd05] {
  color: #ee0a24;
}
.verify-popup[data-v-14f8fd05] {
  padding: 32px 20px 24px;
  background: #fff;
  border-radius: 16px 16px 0 0;
}
.verify-title[data-v-14f8fd05] {
  font-size: 18px;
  font-weight: 600;
  color: #e91e63;
  margin-bottom: 24px;
  text-align: center;
}
.verify-btn[data-v-14f8fd05] {
  margin-top: 24px;
  background: #e91e63;
  border: none;
}
.verify-popup-header[data-v-14f8fd05] {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.verify-close[data-v-14f8fd05] {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 22px;
  color: #888;
  cursor: pointer;
  padding: 8px;
  z-index: 2;
}
.preview-footer-btn-wrapper[data-v-14f8fd05] {
  width: 100vw;
  max-width: 600px;
  margin: 0 auto 20px auto;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  padding: 0 16px 16px 16px;
  pointer-events: auto;
}
.change-cover-btn[data-v-14f8fd05] {
  background: #ee0a24;
  color: #fff;
  border: none;
  font-weight: bold;
  font-size: 18px;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  height: 48px;
}
.publish-popup[data-v-14f8fd05] {
  padding: 20px 16px;
}
.publish-header[data-v-14f8fd05] {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
}
/* 移除旧的 publish-images 相关样式 */
.publish-image[data-v-14f8fd05] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 新增媒体相关样式 */
.publish-media[data-v-14f8fd05] {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}
.publish-media-item[data-v-14f8fd05] {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
}
.publish-media-item.video-item[data-v-14f8fd05] {
  width: 100%;
  max-width: 240px;
  height: 135px;
}
.publish-video[data-v-14f8fd05] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
  border-radius: 8px;
}
.delete-media[data-v-14f8fd05] {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ee0a24;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 2;
}
.add-media-btn[data-v-14f8fd05] {
  width: 72px;
  height: 72px;
  border: 1px dashed #ccc;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bbb;
  cursor: pointer;
}
.add-media-text[data-v-14f8fd05] {
  font-size: 12px;
  margin-top: 5px;
  color: #999;
}

/* 动态宫格样式 */
.moment-grid[data-v-14f8fd05] {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 每行3列 */
  gap: 1px;
  padding: 5px;
}
.moment-grid-item[data-v-14f8fd05] {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  aspect-ratio: 3/4; /* 长方形显示，16:9比例 */
  overflow: hidden;
}

/* 访客列表样式 */
.visitor-grid[data-v-14f8fd05] {
  padding: 15px;
  position: relative; /* 添加相对定位，确保毛玻璃遮盖层正确显示 */
}
.visitor-grid-item[data-v-14f8fd05] {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.visitor-grid-item[data-v-14f8fd05]:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
.visitor-avatar-container[data-v-14f8fd05] {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.visitor-avatar[data-v-14f8fd05] {
  width: 50px;
  height: 50px;
  border: 2px solid #f0f0f0;
}
.visitor-info[data-v-14f8fd05] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.visitor-name[data-v-14f8fd05] {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
}
.visitor-time[data-v-14f8fd05] {
  font-size: 13px;
  color: #999;
  line-height: 1.2;
}
.visit-count[data-v-14f8fd05] {
  display: flex;
  align-items: center;
}
.count-text[data-v-14f8fd05] {
  font-size: 12px;
  color: #666;
  background: #f5f5f5;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 500;
}
.moment-image-container[data-v-14f8fd05] {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.moment-image[data-v-14f8fd05] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.moment-video[data-v-14f8fd05] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.no-image-placeholder[data-v-14f8fd05] {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8;
  color: #ccc;
}

/* 发布按钮容器样式 */
.publish-button-container[data-v-14f8fd05] {
  display: flex;
  justify-content: center;
  padding: 16px 0 8px;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}



/* 相册上传弹窗样式 */
.album-form[data-v-14f8fd05] {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.album-preview[data-v-14f8fd05] {
  width: 150px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
.album-preview-image[data-v-14f8fd05] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.album-preview-video[data-v-14f8fd05] {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #000;
}
.video-thumbnail-container[data-v-14f8fd05] {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}

/* 视频容器中的内容遮罩层 */
.video-thumbnail-container .content-overlay[data-v-14f8fd05] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 12px 8px 8px;
  color: white;
  z-index: 3;
}
.video-play-indicator[data-v-14f8fd05] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.upload-success-indicator[data-v-14f8fd05] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}
.upload-success-text[data-v-14f8fd05] {
  color: white;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}
.album-upload-placeholder[data-v-14f8fd05] {
  width: 150px;
  height: 150px;
  border: 2px dashed #ddd;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  cursor: pointer;
  transition: all 0.2s;
  background-color: #f9f9f9;
  margin-bottom: 15px;
}
.album-upload-placeholder[data-v-14f8fd05]:active {
  border-color: #ff4444;
  background-color: #fff5f5;
}
.upload-text[data-v-14f8fd05] {
  font-size: 14px;
  margin-top: 8px;
  color: #666;
}
.album-form-options[data-v-14f8fd05] {
  width: 100%;
  margin-top: 10px;
}
.album-form-options[data-v-14f8fd05] .van-field__label {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}
.album-form-options[data-v-14f8fd05] .van-field__control {
  font-size: 14px;
}
.album-form-options[data-v-14f8fd05] .van-field__control--right-icon {
  margin-left: 10px;
}
.privacy-badge[data-v-14f8fd05] {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 2px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  z-index: 1;
}

/* 视频预览弹窗样式 */
.video-modal[data-v-14f8fd05] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
}
.video-container[data-v-14f8fd05] {
  position: relative;
  width: 100%;
  height: 100%;
}
.video-player[data-v-14f8fd05] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.close-btn[data-v-14f8fd05] {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.close-btn .van-icon[data-v-14f8fd05] {
  color: #fff;
  font-size: 24px;
}
.pause-icon[data-v-14f8fd05] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  pointer-events: none;
}
.pause-icon .van-icon[data-v-14f8fd05] {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.image-with-content[data-v-14f8fd05] {
  position: relative;
  width: 100%;
  height: 100%;
}
.image-with-content .moment-image[data-v-14f8fd05] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 动态内容遮罩层 */
.content-overlay[data-v-14f8fd05] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 12px 8px 8px;
  color: white;
  z-index: 2;
}
.content-text[data-v-14f8fd05] {
  font-size: 12px;
  line-height: 1.3;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.video-play-count[data-v-14f8fd05] {
  position: absolute;
  right: 8px;
  top: 8px;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  padding: 2px 8px;
  z-index: 2;
}
.play-count-text[data-v-14f8fd05] {
  color: #fff;
  font-size: 13px;
  margin-left: 4px;
}

/* 图片动态统计信息样式 */
.moment-stats[data-v-14f8fd05] {
  position: absolute;
  right: 8px;
  top: 8px;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  padding: 2px 8px;
  z-index: 2;
}
.stats-text[data-v-14f8fd05] {
  color: #fff;
  font-size: 13px;
  margin-left: 4px;
}

/* 测试页面单元格样式 */
.test-cell[data-v-14f8fd05] {
  color: #ff6b35 !important;
}
.test-cell[data-v-14f8fd05] .van-cell__title {
  color: #ff6b35 !important;
}
.test-cell[data-v-14f8fd05] .van-icon {
  color: #ff6b35 !important;
}
.horizontal-scroll-bar[data-v-14f8fd05] {
  width: 100%;
  overflow-x: auto;
  margin: 12px 0 0 0;
  padding-bottom: 8px;
}
.scroll-content[data-v-14f8fd05] {
  display: flex;
  flex-direction: row;
  gap: 18px;
  min-width: max-content;
  margin-top: 10px;
}
.quick-action-btn[data-v-14f8fd05] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 103px;
  padding: 4px 0 4px 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.2s;
}
.quick-action-btn[data-v-14f8fd05]:active {
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.quick-action-btn .van-icon[data-v-14f8fd05] {
  color: white;
}
.quick-action-label[data-v-14f8fd05] {
  margin-top: 4px;
  font-size: 10px;
  color: white;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.visitor-frosted-overlay[data-v-14f8fd05] {
  position: absolute;
  top: 82px; /* 第一条记录的高度：50px(头像) + 16px*2(padding) + 12px(margin-bottom) */
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 25px;
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
}
.frosted-content[data-v-14f8fd05] {
  text-align: center;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
}
.frosted-title[data-v-14f8fd05] {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}
.frosted-text[data-v-14f8fd05] {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}
.upgrade-btn[data-v-14f8fd05] {
  background: linear-gradient(135deg, #e91e63, #ff6b9d);
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
  transition: all 0.3s ease;
}
.upgrade-btn[data-v-14f8fd05]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
}

/* 让 nav 本身背景透明，显示 wrap 的毛玻璃 */
.glass-tabs[data-v-14f8fd05] {
  --van-tabs-nav-background: transparent;
}
.glass-tabs[data-v-14f8fd05] .van-tabs__wrap {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
}
.glass-tabs[data-v-14f8fd05] .van-tabs__nav {
  background: transparent;
}
.glass-tabs[data-v-14f8fd05] .van-tab {
  color: #5c5f66;
}
.glass-tabs[data-v-14f8fd05] .van-tab--active {
  color: #2f2f2f;
  font-weight: 600;
}
.glass-tabs[data-v-14f8fd05] .van-tabs__line {
  background: #e7669d;
  height: 3px;
  border-radius: 3px;
}

