/* ═══════════════════════════════════════════════════════════════
   MSBANK-UI · 参考银行 App 截图 1:1 布局
   四色系：炭灰 #4A4A4A · 浅灰 #EDEDED · 钢蓝 #4E6274 · 深海军蓝 #0D1520
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ms-bg: #F5F7FA;
  --ms-card: #FFFFFF;
  --ms-teal: #4E6274;
  --ms-teal-light: #5a8a96;
  --ms-teal-active: #4E6274;
  --ms-ink: #333333;
  --ms-sub: #999999;
  --ms-line: rgba(0, 0, 0, 0.06);
  --ms-radius: 16px;
  --ms-radius-sm: 12px;
  --ms-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  --ms-nav-h: 52px;
  --ms-nav-bump: 0px;
}

html, body {
  background: var(--ms-bg) !important;
  color: var(--ms-ink);
  font-family: "PingFang SC", "Helvetica Neue", "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.ae-has-nav {
  padding-bottom: calc(var(--ms-nav-h) + var(--ms-nav-bump) + env(safe-area-inset-bottom, 0px));
}

/* ── 底栏导航（五 Tab 统一线框样式） ── */
.ae-shell-nav {
  background: var(--ms-card) !important;
  border-top: 1px solid var(--ms-line) !important;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.04) !important;
  height: calc(var(--ms-nav-h) + env(safe-area-inset-bottom, 0px)) !important;
}

.ae-shell-nav__item {
  color: var(--ms-sub) !important;
  font-size: 11px !important;
}

.ae-shell-nav__item.is-active {
  color: var(--ms-teal-active) !important;
}

.ae-shell-nav__item.is-active svg {
  stroke: var(--ms-teal-active) !important;
}

/* ══ 首页 ══ */
.ms-app {
  min-height: 100vh;
  background: var(--ms-bg);
  padding-bottom: calc(var(--ms-nav-h) + var(--ms-nav-bump) + 16px + env(safe-area-inset-bottom, 0px));
}

/* 顶栏 */
.ms-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 8px;
  padding-top: calc(10px + env(safe-area-inset-top, 0px));
  background: var(--ms-card);
}

.ms-topbar-spacer {
  flex-shrink: 0;
  width: 58px;
}

.ms-topbar-logo {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ms-topbar-logo img {
  height: 32px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
  display: block;
}

.ms-topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.ms-topbar-actions a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ms-ink);
  text-decoration: none;
}

.ms-topbar-actions svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ms-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #E74C3C;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* 四宫格快捷 */
.ms-quick4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 16px 12px 8px;
  background: var(--ms-card);
}

.ms-quick4-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ms-ink);
  font-size: 12px;
}

.ms-quick4-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, #6a9aaa 0%, var(--ms-teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.25);
}

.ms-quick4-ico--blue {
  background: linear-gradient(145deg, #6b9fd8 0%, #3b7dd8 100%);
  box-shadow: 0 4px 12px rgba(59, 125, 216, 0.22);
}

.ms-quick4-ico--green {
  background: linear-gradient(145deg, #6bc4a0 0%, #3a9d72 100%);
  box-shadow: 0 4px 12px rgba(58, 157, 114, 0.22);
}

.ms-quick4-ico--slate {
  background: linear-gradient(145deg, #7a8fa0 0%, var(--ms-teal) 100%);
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.25);
}

.ms-quick4-ico--gold {
  background: linear-gradient(145deg, #e8c06a 0%, #c9972e 100%);
  box-shadow: 0 4px 12px rgba(201, 151, 46, 0.22);
}

.ms-quick4-ico svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ms-quick4-ico.is-custom {
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.ms-quick4-ico.is-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* 轮播 */
.ms-banner-wrap {
  padding: 0 16px;
  margin-top: 8px;
}

.ms-banner {
  border-radius: var(--ms-radius);
  overflow: hidden;
  background: var(--ms-card);
  box-shadow: var(--ms-shadow);
}

.ms-banner .swiper-slide img,
.ms-banner .swiper-slide video {
  display: block;
  width: 100%;
  height: 148px;
  object-fit: cover;
}

.ms-banner .swiper-pagination {
  bottom: 8px !important;
}

.ms-banner .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #fff;
  opacity: 0.5;
}

.ms-banner .swiper-pagination-bullet-active {
  opacity: 1;
  width: 16px;
  border-radius: 3px;
}

/* 服务宫格 5×2 */
.ms-svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px 0;
  padding: 16px 8px 8px;
  margin: 12px 16px 0;
  background: var(--ms-card);
  border-radius: var(--ms-radius);
  box-shadow: var(--ms-shadow);
}

.ms-svc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 4px;
  text-decoration: none;
  color: var(--ms-ink);
  font-size: 11px;
  text-align: center;
}

.ms-svc-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAFBFC;
  border: 1px solid var(--ms-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ms-svc-ico img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.ms-svc-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--ms-ink);
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 积分卡片 */
.ms-points-card {
  display: flex;
  margin: 12px 16px 0;
  background: var(--ms-card);
  border-radius: var(--ms-radius);
  box-shadow: var(--ms-shadow);
  overflow: hidden;
  min-height: 88px;
}

.ms-points-left {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--ms-line);
  text-decoration: none;
  color: inherit;
}

.ms-points-left .lab {
  font-size: 12px;
  color: var(--ms-sub);
  margin-bottom: 6px;
}

.ms-points-left .val {
  font-size: 28px;
  font-weight: 600;
  color: var(--ms-ink);
  line-height: 1;
}

.ms-points-left .val small {
  font-size: 14px;
  font-weight: 400;
  margin-left: 2px;
}

.ms-points-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ms-points-right a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  text-decoration: none;
  color: var(--ms-ink);
  font-size: 13px;
  border-bottom: 1px solid var(--ms-line);
}

.ms-points-right a:last-child { border-bottom: none; }

.ms-points-right a .go {
  color: var(--ms-sub);
  font-size: 16px;
}

/* Feed 分类 Tab */
.ms-feed-tabs {
  display: flex;
  gap: 0;
  margin: 16px 16px 0;
  padding: 0 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: var(--ms-card);
  border-radius: var(--ms-radius);
  box-shadow: var(--ms-shadow);
}

.ms-feed-tabs::-webkit-scrollbar { display: none; }

.ms-feed-tab {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 6px 10px;
  text-decoration: none;
  color: var(--ms-sub);
  font-size: 11px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.ms-feed-tab svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.ms-feed-tab.is-active {
  color: var(--ms-teal-active);
  border-bottom-color: var(--ms-teal-active);
  font-weight: 500;
}

/* 热门产品卡 */
.ms-hotcard {
  margin: 12px 16px 0;
  padding: 16px;
  background: var(--ms-card);
  border-radius: var(--ms-radius);
  box-shadow: var(--ms-shadow);
}

.ms-hotcard-hd {
  font-size: 15px;
  font-weight: 600;
  color: var(--ms-ink);
  margin-bottom: 12px;
}

.ms-hotcard-body {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ms-hotcard-visual {
  flex-shrink: 0;
  width: 120px;
  height: 76px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3d5260 0%, var(--ms-teal) 50%, #6a9aaa 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(78, 98, 116, 0.3);
}

.ms-hotcard-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-hotcard-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.15) 100%);
}

.ms-hotcard-info {
  flex: 1;
  min-width: 0;
}

.ms-hotcard-info .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ms-ink);
  line-height: 1.4;
  margin-bottom: 8px;
}

.ms-hotcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.ms-hotcard-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 8px;
  background: #F0F4F7;
  border-radius: 4px;
  font-size: 10px;
  color: var(--ms-teal);
}

.ms-hotcard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background: linear-gradient(90deg, var(--ms-teal-light), var(--ms-teal));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.3);
}

/* 双列促销 */
.ms-promo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 16px 0;
}

.ms-promo-item {
  background: var(--ms-card);
  border-radius: var(--ms-radius-sm);
  padding: 14px 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--ms-shadow);
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ms-promo-item .t {
  font-size: 14px;
  font-weight: 600;
  color: var(--ms-ink);
  margin-bottom: 4px;
}

.ms-promo-item .d {
  font-size: 11px;
  color: var(--ms-sub);
  line-height: 1.4;
}

.ms-promo-item.accent {
  background: linear-gradient(135deg, #eef4f6 0%, #fff 100%);
}

/* 投票互动 */
.ms-poll {
  margin: 12px 16px 0;
  padding: 16px;
  background: var(--ms-card);
  border-radius: var(--ms-radius);
  box-shadow: var(--ms-shadow);
}

.ms-poll-q {
  font-size: 14px;
  font-weight: 500;
  color: var(--ms-ink);
  margin-bottom: 12px;
  line-height: 1.5;
}

.ms-poll-bar {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  background: #F0F0F0;
}

.ms-poll-bar-yes {
  background: linear-gradient(90deg, #5a9fd4, #4E6274);
  transition: width 0.4s;
}

.ms-poll-bar-no {
  background: linear-gradient(90deg, #e88, #d55);
  flex: 1;
}

.ms-poll-stats {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ms-sub);
  margin-bottom: 14px;
}

.ms-poll-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ms-poll-btns button {
  height: 40px;
  border: 1px solid var(--ms-line);
  border-radius: 20px;
  background: var(--ms-card);
  font-size: 14px;
  color: var(--ms-ink);
  cursor: pointer;
}

.ms-poll-btns button:active { opacity: 0.8; }

.ms-poll-btns button.yes {
  border-color: var(--ms-teal);
  color: var(--ms-teal);
}

.ms-poll-btns button.no {
  border-color: #d55;
  color: #d55;
}

/* 杂志式内容 */
.ms-magazine {
  margin: 12px 16px 0;
  border-radius: var(--ms-radius);
  overflow: hidden;
  box-shadow: var(--ms-shadow);
  position: relative;
  text-decoration: none;
  display: block;
  color: inherit;
}

.ms-magazine img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.ms-magazine-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
}

.ms-magazine-overlay .t {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ms-magazine-overlay .d {
  font-size: 12px;
  opacity: 0.85;
}

/* 酒店/商品网格 */
.ms-hotel-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8px;
  margin: 12px 16px 0;
  min-height: 140px;
}

.ms-hotel-main {
  border-radius: var(--ms-radius-sm);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--ms-shadow);
}

.ms-hotel-main img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
}

.ms-hotel-main .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  color: #fff;
  font-size: 12px;
}

.ms-hotel-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ms-hotel-side a {
  flex: 1;
  border-radius: var(--ms-radius-sm);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  box-shadow: var(--ms-shadow);
}

.ms-hotel-side img {
  width: 100%;
  height: 100%;
  min-height: 42px;
  object-fit: cover;
  display: block;
}

.ms-hotel-side .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 8px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 10px;
}

/* 视频卡片 */
.ms-video-card {
  margin: 12px 16px 0;
  border-radius: var(--ms-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--ms-shadow);
  background: #000;
}

.ms-video-card video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.ms-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ms-video-play span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ms-teal);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.ms-video-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.ms-video-mute {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  border: none;
  font-size: 14px;
  cursor: pointer;
  z-index: 2;
}

/* 公告条 */
.ms-notice-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 16px 0;
  padding: 10px 14px;
  background: var(--ms-card);
  border-radius: var(--ms-radius-sm);
  box-shadow: var(--ms-shadow);
  cursor: pointer;
}

.ms-notice-bar .tag {
  flex-shrink: 0;
  padding: 2px 8px;
  background: var(--ms-teal);
  color: #fff;
  font-size: 10px;
  border-radius: 4px;
}

.ms-notice-bar .scroll {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: var(--ms-ink);
  overflow: hidden;
}

.ms-notice-bar .more {
  flex-shrink: 0;
  color: var(--ms-sub);
  font-size: 14px;
}

/* 横向商品滑轨 */
.ms-goods-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 16px 4px;
  margin-top: 12px;
}

.ms-goods-rail::-webkit-scrollbar { display: none; }

.ms-goods-item {
  flex: 0 0 130px;
  background: var(--ms-card);
  border-radius: var(--ms-radius-sm);
  overflow: hidden;
  box-shadow: var(--ms-shadow);
  text-decoration: none;
  color: inherit;
}

.ms-goods-item .pic {
  height: 100px;
  background: #F0F2F5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ms-goods-item .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-goods-item .info {
  padding: 8px 10px 10px;
}

.ms-goods-item .title {
  font-size: 12px;
  color: var(--ms-ink);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ms-goods-item .price {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #E74C3C;
}

.ms-goods-item .price small {
  font-size: 11px;
  font-weight: 400;
}

/* Feed 区块 */
.ms-feed-panel { display: none; }
.ms-feed-panel.is-active { display: block; }

/* ══ 登录页（银行 App 风格） ══ */
.ms-login-page {
  min-height: 100vh;
  background: var(--ms-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(48px + env(safe-area-inset-top, 0px)) 24px calc(32px + env(safe-area-inset-bottom, 0px));
}

.ms-login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.ms-login-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
}

.ms-login-logo h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--ms-ink);
}

.ms-login-logo p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--ms-sub);
}

.ms-login-card {
  width: 100%;
  max-width: 400px;
  background: var(--ms-card);
  border-radius: var(--ms-radius);
  padding: 28px 24px;
  box-shadow: var(--ms-shadow);
}

.ms-login-card h2 {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--ms-ink);
  text-align: center;
}

.ms-field {
  margin-bottom: 16px;
}

.ms-field label {
  display: block;
  font-size: 12px;
  color: var(--ms-sub);
  margin-bottom: 6px;
}

.ms-field-row {
  display: flex;
  align-items: center;
  background: #F5F7FA;
  border-radius: 10px;
  padding: 0 14px;
  height: 48px;
}

.ms-field-row input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--ms-ink);
  outline: none;
  min-width: 0;
}

.ms-field-row input::placeholder { color: #ccc; }

.ms-field-row .get_code,
.ms-field-row .ae-link {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--ms-teal);
  text-decoration: none;
  white-space: nowrap;
  padding-left: 10px;
}

.ms-field-row .captcha {
  height: 34px;
  margin-left: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.ms-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border: none;
  border-radius: 24px;
  background: linear-gradient(90deg, var(--ms-teal-light), var(--ms-teal));
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(78, 98, 116, 0.35);
}

.ms-login-btn:active { opacity: 0.88; }

.ms-login-links {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 13px;
}

.ms-login-links a {
  color: var(--ms-teal);
  text-decoration: none;
}

.ms-login-foot {
  margin-top: 24px;
  font-size: 11px;
  color: var(--ms-sub);
  text-align: center;
}

/* 启动页 */
.ms-splash {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--ms-teal) 0%, #3d5260 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #fff;
}

.ms-splash__logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.ms-splash__name {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.ms-splash__bar {
  width: 120px;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}

.ms-splash__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: #fff;
  border-radius: 2px;
  animation: ms-load 1.2s ease-in-out infinite;
}

@keyframes ms-load {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* 隐藏旧 AETHER 首页结构 */
.ae-home-head,
.ae-home-search-form,
.ae-metrics,
.ae-actions,
.ae-ticker,
.ae-bento,
.ae-rail,
.ae-discover,
.ae-news-list,
.ae-video,
.ae-section { display: none !important; }

/* ══ 首页区块标题 ══ */
.ms-section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  margin-top: 16px;
  margin-bottom: 10px;
}

.ms-section-hd .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ms-ink);
}

.ms-section-hd .more {
  font-size: 12px;
  color: var(--ms-sub);
  text-decoration: none;
}

/* 热门卡片（截图大卡片样式） */
.ms-creditcard {
  margin: 0 16px;
  padding: 16px;
  background: var(--ms-card);
  border-radius: var(--ms-radius);
  box-shadow: var(--ms-shadow);
}

.ms-creditcard-visual {
  width: 100%;
  aspect-ratio: 580 / 300;
  height: auto;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a2836 0%, var(--ms-teal) 45%, #6a9aaa 100%);
  box-shadow: 0 8px 24px rgba(78, 98, 116, 0.35);
}

.ms-creditcard-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-creditcard-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.12) 100%);
  pointer-events: none;
}

.ms-creditcard-name {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ms-ink);
  line-height: 1.4;
}

.ms-creditcard-sub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--ms-sub);
}

.ms-creditcard-benefits {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ms-line);
}

.ms-creditcard-benefit {
  flex: 1;
  text-align: center;
  font-size: 10px;
  color: var(--ms-sub);
  line-height: 1.35;
}

.ms-creditcard-benefit .ico {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}

.ms-creditcard-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  margin-top: 16px;
  border-radius: 22px;
  background: linear-gradient(90deg, var(--ms-teal-light), var(--ms-teal));
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(78, 98, 116, 0.32);
}

/* 横条品牌 Banner */
.ms-brand-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 16px 0;
  padding: 14px 16px;
  background: var(--ms-card);
  border-radius: var(--ms-radius-sm);
  box-shadow: var(--ms-shadow);
  text-decoration: none;
  color: inherit;
}

.ms-brand-banner .logo {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F0F4F7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ms-brand-banner .info { flex: 1; min-width: 0; }

.ms-brand-banner .info .t {
  font-size: 14px;
  font-weight: 600;
  color: var(--ms-ink);
}

.ms-brand-banner .info .d {
  margin-top: 2px;
  font-size: 11px;
  color: var(--ms-sub);
}

.ms-brand-banner .go {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--ms-teal);
}

/* Bento 特色网格 */
.ms-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 8px;
  margin: 12px 16px 0;
}

.ms-bento-main {
  grid-row: span 3;
  border-radius: var(--ms-radius-sm);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--ms-shadow);
  min-height: 200px;
}

.ms-bento-main img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.ms-bento-main .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.ms-bento-item {
  border-radius: var(--ms-radius-sm);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  box-shadow: var(--ms-shadow);
  min-height: 62px;
}

.ms-bento-item img {
  width: 100%;
  height: 100%;
  min-height: 62px;
  object-fit: cover;
  display: block;
}

.ms-bento-item .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 8px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-size: 10px;
}

/* 深色产品横条 */
.ms-product-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 16px 0;
  padding: 16px;
  border-radius: var(--ms-radius);
  background: linear-gradient(135deg, #0D1520 0%, #2a3d4d 100%);
  text-decoration: none;
  color: #fff;
  box-shadow: var(--ms-shadow);
}

.ms-product-strip .pic {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
}

.ms-product-strip .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-product-strip .info { flex: 1; min-width: 0; }

.ms-product-strip .info .t {
  font-size: 14px;
  font-weight: 600;
}

.ms-product-strip .info .d {
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.75;
}

.ms-product-strip .go {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  font-size: 12px;
}

/* 机器人份额 · 横幅图样式 */
.ms-product-strip--banner {
  display: block;
  position: relative;
  padding: 0;
  background: none;
  overflow: hidden;
}

.ms-product-strip--banner .ms-product-strip-bg {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.ms-product-strip--banner .ms-product-strip-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.ms-product-strip--banner .info {
  flex: 1;
  min-width: 0;
}

.ms-product-strip--banner .info .t {
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.ms-product-strip--banner .info .d {
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.ms-product-strip--banner .go {
  margin-bottom: 2px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

/* 向往的生活标题 */
.ms-lifestyle-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px 10px;
}

.ms-lifestyle-hd .title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ms-ink);
}

.ms-lifestyle-hd .more {
  font-size: 12px;
  color: var(--ms-sub);
  text-decoration: none;
}

/* ══ 子页面通用顶栏 ══ */
.app-nav,
.msg-nav.app-nav,
.mall-nav.app-nav,
.hezu-nav.app-nav {
  display: flex !important;
  align-items: center !important;
  height: 48px !important;
  padding: 0 12px !important;
  padding-top: env(safe-area-inset-top, 0px) !important;
  background: var(--ms-card) !important;
  border-bottom: 1px solid var(--ms-line) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
}

.app-nav::after { display: none !important; }

.app-nav .title {
  flex: 1 !important;
  text-align: center !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--ms-ink) !important;
  letter-spacing: 0 !important;
}

.app-nav .back,
.app-nav .right {
  flex-shrink: 0 !important;
  min-width: 44px !important;
  font-size: 22px !important;
  color: var(--ms-ink) !important;
  text-decoration: none !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.app-nav .right {
  font-size: 13px !important;
  text-align: right !important;
  color: var(--ms-teal) !important;
}

.sub-page {
  background: var(--ms-bg) !important;
  min-height: 100vh;
  padding-bottom: calc(var(--ms-nav-h) + var(--ms-nav-bump) + 16px + env(safe-area-inset-bottom, 0px)) !important;
}

/* ══ 生活页（hezu） ══ */
.hezu-page {
  background: var(--ms-bg) !important;
  padding-bottom: calc(var(--ms-nav-h) + var(--ms-nav-bump) + 16px + env(safe-area-inset-bottom, 0px)) !important;
}

.hezu-page .hezu-hero {
  background: var(--ms-card) !important;
  padding-bottom: 0 !important;
}

.hezu-page .hezu-hero-inner {
  padding: 8px 16px 20px !important;
  text-align: left !important;
}

.hezu-page .hezu-hero-inner .kicker { display: none !important; }

.hezu-page .hezu-hero-inner h1 {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: var(--ms-ink) !important;
  margin: 0 !important;
}

.hezu-page .hezu-hero-inner p {
  margin-top: 6px !important;
  font-size: 13px !important;
  color: var(--ms-sub) !important;
}

.hezu-body {
  padding: 12px 16px !important;
}

.hezu-item {
  margin-bottom: 12px !important;
  border-radius: var(--ms-radius) !important;
  overflow: hidden !important;
  box-shadow: var(--ms-shadow) !important;
  border: none !important;
  background: var(--ms-card) !important;
}

.hezu-img {
  width: 100% !important;
  display: block !important;
  border-radius: var(--ms-radius) var(--ms-radius) 0 0 !important;
}

.hezu-cap {
  padding: 12px 14px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--ms-ink) !important;
  background: var(--ms-card) !important;
}

.hezu-empty {
  text-align: center !important;
  padding: 48px 24px !important;
  color: var(--ms-sub) !important;
}

/* ══ 产品中心（顶部 Tab + 列表卡片） ══ */
.prod-hub-page {
  min-height: 100vh;
  background: #EDEDED;
  padding-bottom: calc(var(--ms-nav-h, 56px) + var(--ms-nav-bump, 20px) + 16px + env(safe-area-inset-bottom, 0px));
}

.prod-hub-tabs {
  display: flex;
  align-items: stretch;
  background: #F5F5F5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.prod-hub-tabs::-webkit-scrollbar { display: none; }

.prod-hub-tabs .mk-cat-nav {
  flex: 1;
  min-width: 72px;
  padding: 14px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  border-left: none;
  border-bottom: 3px solid transparent;
  background: transparent;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.prod-hub-tabs .mk-cat-nav.is-active {
  background: #fff;
  color: #2A2A2A;
  border-bottom-color: #4E6274;
  font-weight: 700;
}

.prod-hub-main {
  padding: 10px 12px calc(var(--ms-nav-h, 56px) + var(--ms-nav-bump, 20px) + env(safe-area-inset-bottom, 0px) + 12px) !important;
}

.prod-hub-page .mk-cat-banner {
  margin-bottom: 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #4E6274;
  padding: 16px 14px;
  color: #fff;
}

.prod-hub-page .mk-cat-banner h2 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.prod-hub-page .mk-cat-banner p {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.prod-hub-page .prod-list {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

.prod-hub-page .mk-prod-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.prod-hub-page .mk-prod-row .thumb {
  flex: 0 0 72px;
  width: 72px;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(145deg, #5B8DEF 0%, #3D6FD8 100%);
}

.prod-hub-page .mk-prod-row .thumb.thumb--licai {
  background: linear-gradient(145deg, #6BCB77 0%, #4CAF50 100%);
}

.prod-hub-page .mk-prod-row .thumb.thumb--zn {
  background: linear-gradient(145deg, #FFD166 0%, #F4A623 100%);
}

.prod-hub-page .mk-prod-row .thumb.thumb--ai {
  background: linear-gradient(145deg, #FF8A80 0%, #E53935 100%);
}

.prod-hub-page .mk-prod-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-hub-page .mk-prod-row .body {
  flex: 1;
  min-width: 0;
  position: relative;
  padding: 2px 0;
}

.prod-hub-page .mk-prod-row .body::before,
.prod-hub-page .mk-prod-row .body::after {
  content: '"';
  position: absolute;
  font-size: 28px;
  line-height: 1;
  color: rgba(91, 141, 239, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
}

.prod-hub-page .mk-prod-row .body::before {
  top: -4px;
  left: -2px;
}

.prod-hub-page .mk-prod-row .body::after {
  bottom: -8px;
  right: 2px;
}

.prod-hub-page .mk-prod-row .title {
  font-size: 14px;
  font-weight: 700;
  color: #0D1520;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prod-hub-page .mk-prod-tag {
  display: inline-block;
  margin-right: 4px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(78, 98, 116, 0.12);
  color: #4E6274;
  font-size: 10px;
  font-weight: 700;
  vertical-align: middle;
}

.prod-hub-page .mk-prod-row .desc {
  margin-top: 4px;
  font-size: 11px;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prod-hub-page .mk-prod-row .price {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #FF3B30;
}

.prod-hub-page .mk-prod-row .price small {
  font-size: 11px;
  font-weight: 500;
}

.prod-hub-page .mk-prod-row .add {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #4E6274;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}

.prod-hub-page .mk-prod-row .add:active {
  opacity: 0.88;
  transform: scale(0.96);
}

/* ── 产品认购底部弹窗 ── */
.prod-buy-sheet {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  visibility: hidden;
}

.prod-buy-sheet.is-open,
.prod-buy-sheet.is-closing {
  pointer-events: auto;
  visibility: visible;
}

.prod-buy-sheet__mask {
  position: absolute;
  inset: 0;
  background: rgba(13, 21, 32, 0.48);
  opacity: 0;
  transition: opacity 0.34s cubic-bezier(0.32, 0.72, 0, 1);
  -webkit-tap-highlight-color: transparent;
}

.prod-buy-sheet.is-open .prod-buy-sheet__mask {
  opacity: 1;
}

.prod-buy-sheet.is-closing .prod-buy-sheet__mask {
  opacity: 0;
}

.prod-buy-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: min(88vh, 720px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.14);
  transform: translate3d(0, 100%, 0);
  transition: transform 0.36s cubic-bezier(0.32, 0.72, 0, 1);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  touch-action: pan-y;
}

.prod-buy-sheet.is-open .prod-buy-sheet__panel {
  transform: translate3d(0, 0, 0);
}

.prod-buy-sheet.is-closing .prod-buy-sheet__panel {
  transform: translate3d(0, 100%, 0);
}

.prod-buy-sheet__handle {
  flex-shrink: 0;
  width: 36px;
  height: 4px;
  margin: 8px auto 4px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
}

.prod-buy-sheet__body {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.prod-buy-sheet__body.is-visible {
  opacity: 1;
}

.prod-buy-sheet__loading {
  padding: 48px 16px;
  text-align: center;
  font-size: 14px;
  color: #999;
}

.prod-buy-sheet__skeleton {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  max-height: min(82vh, 680px);
  padding: 4px 16px calc(16px + env(safe-area-inset-bottom, 0px));
}

.prod-buy-sheet__skeleton-head {
  display: flex;
  gap: 12px;
  padding: 8px 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.prod-buy-sheet__skeleton-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(90deg, #eef1f4 25%, #f8f9fb 50%, #eef1f4 75%);
  background-size: 200% 100%;
  animation: prod-sheet-shimmer 1.2s ease-in-out infinite;
}

.prod-buy-sheet__skeleton-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.prod-buy-sheet__skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #eef1f4 25%, #f8f9fb 50%, #eef1f4 75%);
  background-size: 200% 100%;
  animation: prod-sheet-shimmer 1.2s ease-in-out infinite;
}

.prod-buy-sheet__skeleton-line--sm { width: 28%; height: 10px; }
.prod-buy-sheet__skeleton-line--md { width: 72%; height: 14px; }
.prod-buy-sheet__skeleton-line--lg { width: 46%; height: 12px; }

.prod-buy-sheet__skeleton-block {
  flex: 1;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prod-buy-sheet__skeleton-pay {
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(90deg, #eef1f4 25%, #f8f9fb 50%, #eef1f4 75%);
  background-size: 200% 100%;
  animation: prod-sheet-shimmer 1.2s ease-in-out infinite;
}

.prod-buy-sheet__skeleton-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.prod-buy-sheet__skeleton-price {
  flex: 1;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(90deg, #eef1f4 25%, #f8f9fb 50%, #eef1f4 75%);
  background-size: 200% 100%;
  animation: prod-sheet-shimmer 1.2s ease-in-out infinite;
}

.prod-buy-sheet__skeleton-btn {
  width: 120px;
  height: 44px;
  border-radius: 22px;
  background: linear-gradient(90deg, #dce3ea 25%, #edf1f5 50%, #dce3ea 75%);
  background-size: 200% 100%;
  animation: prod-sheet-shimmer 1.2s ease-in-out infinite;
}

@keyframes prod-sheet-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .prod-buy-sheet__panel,
  .prod-buy-sheet__mask,
  .prod-buy-sheet__body {
    transition-duration: 0.01ms !important;
  }

  .prod-buy-sheet__skeleton-thumb,
  .prod-buy-sheet__skeleton-line,
  .prod-buy-sheet__skeleton-pay,
  .prod-buy-sheet__skeleton-price,
  .prod-buy-sheet__skeleton-btn {
    animation: none;
  }
}

body.prod-buy-sheet-open {
  overflow: hidden;
  touch-action: none;
}

.prod-buy-sheet__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: min(82vh, 680px);
  min-height: 320px;
}

.prod-buy-sheet__head {
  flex-shrink: 0;
  position: relative;
  padding: 4px 16px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.prod-buy-sheet__close {
  position: absolute;
  top: 0;
  right: 8px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 36px;
  color: #999;
  cursor: pointer;
  padding: 0;
}

.prod-buy-sheet__prod {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 36px;
}

.prod-buy-sheet__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #6BCB77 0%, #4CAF50 100%);
}

.prod-buy-sheet__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-buy-sheet__meta {
  flex: 1;
  min-width: 0;
}

.prod-buy-sheet__tag {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(201, 162, 39, 0.14);
  color: #8B6914;
  font-size: 10px;
  font-weight: 700;
}

.prod-buy-sheet__title {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #0D1520;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.prod-buy-sheet__price-line {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.prod-buy-sheet__price {
  font-size: 22px;
  font-weight: 700;
  color: #C27803;
  line-height: 1;
}

.prod-buy-sheet__price em {
  font-style: normal;
  font-size: 14px;
  margin-right: 2px;
}

.prod-buy-sheet__disc {
  font-size: 11px;
  color: #999;
}

.prod-buy-sheet__scroll {
  flex: 1;
  min-height: 0;
  min-width: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.prod-buy-sheet__scroll .cab-sub-section {
  padding: 14px 16px;
  min-width: 0;
  overflow: hidden;
}

.prod-buy-sheet__scroll .cab-sub-tip {
  margin: 12px 16px 0;
}

.prod-buy-sheet__desc {
  max-height: none;
  max-width: 100%;
  overflow: hidden;
}

.prod-buy-sheet__desc img,
.prod-buy-sheet__scroll .cab-sub-desc img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.prod-buy-sheet__banner {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #e8eef8;
}

.prod-buy-sheet__banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.prod-buy-sheet__foot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
}

.prod-buy-sheet__foot .cab-sub-price {
  flex: 1;
  min-width: 0;
}

.prod-buy-sheet__foot .cab-sub-pay-btn {
  min-width: 120px;
}

/* 旧 licai 页样式保留兼容 */
.ms-licai-page {
  min-height: 100vh;
  background: var(--ms-bg);
  padding-bottom: calc(var(--ms-nav-h) + var(--ms-nav-bump) + 16px + env(safe-area-inset-bottom, 0px));
}

.ms-licai-tabs {
  display: flex;
  gap: 0;
  padding: 0 16px;
  background: var(--ms-card);
  border-bottom: 1px solid var(--ms-line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ms-licai-tabs::-webkit-scrollbar { display: none; }

.ms-licai-tab {
  flex-shrink: 0;
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ms-sub);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.ms-licai-tab.is-active {
  color: var(--ms-teal);
  border-bottom-color: var(--ms-teal);
  font-weight: 500;
}

.ms-licai-body { padding: 12px 16px; }

.ms-licai-banner {
  padding: 16px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #eef4f6 0%, #fff 100%);
  border-radius: var(--ms-radius);
  box-shadow: var(--ms-shadow);
}

.ms-licai-banner h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ms-ink);
}

.ms-licai-banner p {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--ms-sub);
}

.ms-prod-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  margin-bottom: 10px;
  background: var(--ms-card);
  border-radius: var(--ms-radius);
  box-shadow: var(--ms-shadow);
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.ms-prod-card .thumb {
  flex-shrink: 0;
  width: 88px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #3d5260, var(--ms-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.ms-prod-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ms-prod-card .body { flex: 1; min-width: 0; }

.ms-prod-card .body .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ms-ink);
  line-height: 1.35;
}

.ms-prod-card .body .desc {
  margin-top: 4px;
  font-size: 11px;
  color: var(--ms-sub);
}

.ms-prod-card .body .price {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #E74C3C;
}

.ms-prod-card .body .price small {
  font-size: 11px;
  font-weight: 400;
}

.ms-prod-card .apply {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 16px;
  background: linear-gradient(90deg, var(--ms-teal-light), var(--ms-teal));
  color: #fff;
  font-size: 12px;
  border: none;
  cursor: pointer;
}

.ms-licai-page .mk-cat-sidebar { display: none !important; }
.ms-licai-page .mk-cat-page { display: block !important; }
.ms-licai-page .mk-cat-main {
  margin-left: 0 !important;
  width: 100% !important;
  padding: 0 !important;
}

/* ══ 金融/消息页 ══ */
.msg-page {
  background: var(--ms-bg) !important;
  padding-bottom: calc(var(--ms-nav-h) + var(--ms-nav-bump) + 16px + env(safe-area-inset-bottom, 0px)) !important;
}

.msg-hero {
  background: var(--ms-card) !important;
  border-bottom: 1px solid var(--ms-line) !important;
}

.msg-hero-inner {
  padding: 12px 16px 20px !important;
  text-align: left !important;
}

.msg-hero-icon {
  display: none !important;
}

.msg-hero-inner h1 {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--ms-ink) !important;
}

.msg-hero-inner p {
  font-size: 12px !important;
  color: var(--ms-sub) !important;
}

.msg-stats {
  display: flex !important;
  gap: 24px !important;
  margin-top: 14px !important;
}

.msg-stat .num {
  font-size: 24px !important;
  font-weight: 600 !important;
  color: var(--ms-teal) !important;
}

.msg-stat .lab {
  font-size: 11px !important;
  color: var(--ms-sub) !important;
}

.msg-body { padding: 12px 16px !important; }

.msg-tabs {
  background: var(--ms-card) !important;
  border-radius: var(--ms-radius-sm) !important;
  padding: 4px !important;
  margin-bottom: 12px !important;
  box-shadow: var(--ms-shadow) !important;
}

.msg-tab {
  border-radius: 8px !important;
  font-size: 12px !important;
  color: var(--ms-sub) !important;
}

.msg-tab.is-active {
  background: #eef4f6 !important;
  color: var(--ms-teal) !important;
}

.msg-card {
  background: var(--ms-card) !important;
  border-radius: var(--ms-radius-sm) !important;
  box-shadow: var(--ms-shadow) !important;
  border: none !important;
  margin-bottom: 10px !important;
}

.msg-card::before { display: none !important; }

.msg-card.is-unread {
  border-left: 3px solid var(--ms-teal) !important;
}

/* ══ 我的页（零售 App 截图布局） ══ */
.lx-my {
  min-height: 100vh;
  background: #EDEDED;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px
    calc(var(--ms-nav-h) + var(--ms-nav-bump) + 20px + env(safe-area-inset-bottom, 0px));
}

.lx-my-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding: 4px 0 12px;
}

.lx-my-tool {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
  color: #4A4A4A;
}

.lx-my-tool svg {
  width: 22px;
  height: 22px;
  stroke: #4A4A4A;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lx-my-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.lx-my-greet {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.lx-my-hi {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #0D1520;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.lx-my-vip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe082 0%, #ffc107 100%);
  color: #6d4c00;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.lx-my-vip svg {
  width: 12px;
  height: 12px;
  fill: #6d4c00;
  stroke: none;
}

.lx-my-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.lx-my-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(13, 21, 32, 0.08);
}

.lx-my-edit {
  position: absolute;
  right: -2px;
  bottom: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #3cb371;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(60, 179, 113, 0.35);
}

.lx-my-stats {
  display: flex;
  align-items: stretch;
  margin-bottom: 16px;
}

.lx-my-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}

.lx-my-stat + .lx-my-stat {
  border-left: 1px solid rgba(74, 74, 74, 0.12);
}

.lx-my-stat .lab {
  font-size: 13px;
  color: #4A4A4A;
}

.lx-my-stat .val {
  font-size: 18px;
  font-weight: 700;
  color: #0D1520;
  line-height: 1.2;
}

.lx-my-promo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 18px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1a2533 0%, #0D1520 55%, #162030 100%);
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

.lx-my-promo::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 140px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.lx-my-promo::after {
  content: "";
  position: absolute;
  right: 30px;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(78, 98, 116, 0.15);
  pointer-events: none;
}

.lx-my-promo-text {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.lx-my-promo-text .t {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lx-my-promo-text .d {
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.lx-my-promo-btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: #0D1520;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.lx-my-card {
  margin-bottom: 12px;
  padding: 16px 14px 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(13, 21, 32, 0.04);
}

.lx-my-card-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.lx-my-card-hd .title {
  font-size: 16px;
  font-weight: 700;
  color: #0D1520;
}

.lx-my-card-hd .more {
  font-size: 12px;
  color: #999;
  text-decoration: none;
}

.lx-my-grid4,
.lx-my-grid3 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.lx-my-grid4 a,
.lx-my-grid3 a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
}

.lx-my-grid4 .ico,
.lx-my-grid3 .ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lx-my-grid4 .ico svg,
.lx-my-grid3 .ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lx-my-grid4 .ico-green {
  background: rgba(60, 179, 113, 0.1);
}

.lx-my-grid4 .ico-green svg {
  stroke: #3cb371;
}

.lx-my-grid4 .ico-color {
  background: rgba(78, 98, 116, 0.08);
}

.lx-my-grid4 a:nth-child(1) .ico-color svg { stroke: #4E6274; }
.lx-my-grid4 a:nth-child(2) .ico-color svg { stroke: #e67e22; }
.lx-my-grid4 a:nth-child(3) .ico-color svg { stroke: #9b59b6; }
.lx-my-grid4 a:nth-child(4) .ico-color svg { stroke: #3498db; }

.lx-my-grid3 .ico-blue {
  background: rgba(78, 98, 116, 0.08);
}

.lx-my-grid3 .ico-blue svg {
  stroke: #4E6274;
}

.lx-my-more {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  padding-bottom: 8px;
}

.lx-my-more a {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: #4A4A4A;
  font-size: 11px;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(13, 21, 32, 0.04);
}

.lx-my-more a.danger {
  color: #c0392b;
}

/* ══ 积分商城等通用子页 ══ */
.mall-page,
.bank-page {
  background: var(--ms-bg) !important;
}

.mall-hero,
.bank-page .sub-top {
  background: var(--ms-card) !important;
}

.mall-hero-icon { display: none !important; }

.mall-hero-inner h1,
.bank-page .sub-top h1 {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: var(--ms-ink) !important;
}

.mall-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}

.mall-card {
  background: var(--ms-card) !important;
  border-radius: var(--ms-radius-sm) !important;
  box-shadow: var(--ms-shadow) !important;
  border: none !important;
  overflow: hidden !important;
}

.mall-tip {
  background: #eef4f6 !important;
  border-radius: var(--ms-radius-sm) !important;
  padding: 12px !important;
  margin-bottom: 12px !important;
  font-size: 12px !important;
  color: var(--ms-sub) !important;
}

/* 表单/列表通用 */
.ms-form-card {
  margin: 12px 16px;
  padding: 16px;
  background: var(--ms-card);
  border-radius: var(--ms-radius);
  box-shadow: var(--ms-shadow);
}

.ms-form-card .ms-field { margin-bottom: 14px; }

.ms-list-cell {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: var(--ms-card);
  border-bottom: 1px solid var(--ms-line);
  text-decoration: none;
  color: var(--ms-ink);
  font-size: 14px;
}

.ms-list-cell:last-child { border-bottom: none; }

.ms-list-cell .arrow {
  margin-left: auto;
  color: var(--ms-sub);
}

.ms-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  margin: 16px auto;
  height: 48px;
  border: none;
  border-radius: 24px;
  background: linear-gradient(90deg, var(--ms-teal-light), var(--ms-teal));
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(78, 98, 116, 0.32);
}

/* 机柜产品列表 */
.pwb-cabinet-page {
  padding: 0 !important;
}

.pwb-cabinet-hero {
  padding: 0 0 16px !important;
  background: transparent !important;
}

.pwb-cabinet-brand { display: none !important; }

.pwb-cabinet-hero h2 {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--ms-ink) !important;
  margin: 0 !important;
}

.pwb-cabinet-hero .tagline {
  font-size: 12px !important;
  color: var(--ms-sub) !important;
  margin-top: 4px !important;
}

.pwb-cabinet-card {
  background: var(--ms-card) !important;
  border-radius: var(--ms-radius) !important;
  box-shadow: var(--ms-shadow) !important;
  border: none !important;
  margin-bottom: 12px !important;
  padding: 16px !important;
}

.pwb-cabinet-card .card-btn {
  background: linear-gradient(90deg, var(--ms-teal-light), var(--ms-teal)) !important;
  border-radius: 20px !important;
  border: none !important;
  color: #fff !important;
  height: 44px !important;
  font-size: 14px !important;
}

.pwb-cabinet-scenes {
  margin-top: 16px !important;
  padding: 16px !important;
  background: var(--ms-card) !important;
  border-radius: var(--ms-radius) !important;
  box-shadow: var(--ms-shadow) !important;
}

.pwb-cabinet-scenes h3 {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ms-ink) !important;
}

.scene-item {
  background: #F5F7FA !important;
  border-radius: 10px !important;
}

.pwb-cabinet-foot {
  text-align: center !important;
  padding: 20px !important;
  font-size: 12px !important;
  color: var(--ms-sub) !important;
}

/* ══ 首页双入口（机柜认购 / 推广任务） ══ */
.ms-dual-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 12px;
}

.ms-dual-entry-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  min-height: 88px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.ms-dual-entry-item--fund {
  background: linear-gradient(145deg, #4E6274 0%, #6a8498 100%);
}

.ms-dual-entry-item--time {
  background: linear-gradient(145deg, #c8922a 0%, #e8b84a 100%);
}

.ms-dual-entry-item.has-bg {
  position: relative;
  padding: 0;
  min-height: 0;
  aspect-ratio: 17 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  justify-content: flex-end;
}

.ms-dual-entry-item--fund.has-bg,
.ms-dual-entry-item--time.has-bg {
  background-color: transparent;
}

.ms-dual-entry-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.58) 100%);
  pointer-events: none;
}

.ms-dual-entry-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.ms-dual-entry-item:not(.has-bg) .ms-dual-entry-body {
  padding: 0;
}

.ms-dual-entry-item.has-bg .ms-dual-entry-body {
  padding: 12px;
}

.ms-dual-entry-item.has-bg .t,
.ms-dual-entry-item.has-bg .d {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.ms-dual-entry-item .ico {
  font-size: 20px;
  line-height: 1;
}

.ms-dual-entry-item .ico img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.ms-dual-entry-item .t {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ms-dual-entry-item .d {
  font-size: 11px;
  opacity: 0.92;
  line-height: 1.35;
}

/* ══ 集团扶持计划 ══ */
.staff-hub-page {
  background: var(--ms-bg);
  min-height: 100vh;
  padding-bottom: calc(var(--ms-nav-h) + var(--ms-nav-bump) + 16px + env(safe-area-inset-bottom, 0px));
}

.staff-hub-hero {
  background: linear-gradient(160deg, #4E6274 0%, #3a4f60 100%);
  color: #fff;
  padding: calc(16px + env(safe-area-inset-top, 0px)) 16px 18px;
}

.staff-hub-hero-top .kicker {
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.78;
}

.staff-hub-hero-top h1 {
  margin: 6px 0 0;
  font-size: 22px;
  font-weight: 700;
}

.staff-hub-hero-top p {
  margin: 6px 0 0;
  font-size: 12px;
  opacity: 0.88;
}

.staff-hub-level {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.staff-hub-level-main {
  flex: 1;
  min-width: 0;
}

.staff-hub-level-main .lab,
.staff-hub-level-stat .lab {
  display: block;
  font-size: 11px;
  opacity: 0.82;
}

.staff-hub-level-main .name {
  display: block;
  margin-top: 2px;
  font-size: 15px;
  font-weight: 600;
}

.staff-hub-level-stat {
  text-align: center;
  min-width: 56px;
}

.staff-hub-level-stat .val {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.staff-hub-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 16px 0;
}

.staff-hub-quick-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 4px;
  background: var(--ms-card);
  border-radius: 12px;
  box-shadow: var(--ms-shadow);
  text-decoration: none;
  color: var(--ms-ink);
}

.staff-hub-quick-item .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  line-height: 1;
}
.staff-hub-quick-item .ico svg {
  width: 22px;
  height: 22px;
  stroke: #4E6274;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.staff-hub-quick-item .t {
  font-size: 11px;
  text-align: center;
}

.staff-hub-quick-item .badge {
  position: absolute;
  top: 6px;
  right: 8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e54545;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  line-height: 16px;
  text-align: center;
}

.staff-hub-card {
  margin: 12px 16px 0;
  padding: 14px;
  background: var(--ms-card);
  border-radius: 14px;
  box-shadow: var(--ms-shadow);
}

.staff-hub-card-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.staff-hub-card-hd h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ms-ink);
}

.staff-hub-card-hd a {
  font-size: 12px;
  color: var(--ms-sub);
  text-decoration: none;
}

.staff-hub-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.staff-hub-summary-item {
  text-align: center;
  padding: 10px 6px;
  background: #f5f7fa;
  border-radius: 10px;
}

.staff-hub-summary-item.accent {
  background: #fff6e8;
}

.staff-hub-summary-item .val {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--ms-ink);
}

.staff-hub-summary-item .lab {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--ms-sub);
}

.staff-hub-cta {
  display: block;
  margin-top: 12px;
  padding: 12px;
  border-radius: 999px;
  background: #4E6274;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.staff-hub-cta--ghost {
  background: #eef2f5;
  color: #4E6274;
}

.staff-hub-log {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--ms-line);
}

.staff-hub-log:last-child {
  border-bottom: none;
}

.staff-hub-log .title {
  font-size: 14px;
  color: var(--ms-ink);
}

.staff-hub-log .plus {
  font-size: 14px;
  font-weight: 600;
  color: #e54545;
}

.staff-hub-empty {
  padding: 8px 0;
  font-size: 13px;
  color: var(--ms-sub);
  text-align: center;
}

.staff-hub-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 16px;
}

.staff-hub-links a {
  font-size: 12px;
  color: var(--ms-sub);
  text-decoration: none;
}

.staff-tasks-page .staff-tasks-tip {
  margin: 12px 16px 0;
  padding: 10px 12px;
  background: #fff6e8;
  border-radius: 10px;
  font-size: 13px;
  color: #8a6a2a;
}

.staff-tasks-list {
  margin-top: 12px;
}

.staff-task-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ms-line);
}

.staff-task-row:last-child {
  border-bottom: none;
}

.staff-task-main {
  flex: 1;
  min-width: 0;
}

.staff-task-main .title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ms-ink);
}

.staff-task-main .sub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--ms-sub);
  line-height: 1.4;
}

.staff-task-btn {
  flex-shrink: 0;
  min-width: 64px;
  height: 32px;
  padding: 0 12px;
  border: none;
  border-radius: 999px;
  background: #4E6274;
  color: #fff;
  font-size: 13px;
}

.staff-task-btn--done {
  background: #eef2f5;
  color: var(--ms-sub);
}

/* ── 集团扶持 · 视频推广 ── */
.staff-promo-flow {
  display: flex;
  gap: 6px;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.staff-hub-flow-wrap {
  margin: -10px 14px 0;
  position: relative;
  z-index: 2;
}
.staff-promo-flow-item {
  flex: 1;
  min-width: 0;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 10px 4px;
  box-shadow: 0 4px 16px rgba(15, 35, 55, 0.08);
  text-decoration: none;
  color: inherit;
}
.staff-promo-flow-item:active {
  transform: scale(0.98);
}
.staff-promo-flow-item .n {
  display: block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  margin: 0 auto 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.staff-promo-flow-item .t {
  display: block;
  font-size: 11px;
  color: var(--ms-sub);
  white-space: nowrap;
}
.staff-promo-benefit-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f0f2f5;
}
.staff-benefit-ico {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.4;
}
.staff-promo-benefit-item > div { flex: 1; min-width: 0; }
.staff-promo-benefit-item:last-child { border-bottom: 0; }
.staff-promo-benefit-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--ms-text);
}
.staff-promo-benefit-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ms-sub);
}
.staff-promo-today-body {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.staff-promo-cover {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  object-fit: cover;
  background: #eef2f5;
  flex-shrink: 0;
}
.staff-promo-today-info .title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.staff-promo-today-info .sub {
  font-size: 12px;
  color: var(--ms-sub);
  line-height: 1.45;
}
.staff-promo-reward {
  font-size: 16px;
  font-weight: 700;
  color: #d4a017;
}
.staff-promo-tip {
  margin: 12px 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff8e6;
  border: 1px solid rgba(212, 160, 23, 0.2);
  font-size: 13px;
  line-height: 1.55;
  color: #6b5a2a;
}
.staff-promo-share {
  margin: 0 14px 12px;
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 35, 55, 0.06);
}
.staff-promo-share .lab {
  font-size: 12px;
  color: var(--ms-sub);
  margin-bottom: 6px;
}
.staff-promo-share .url {
  font-size: 12px;
  word-break: break-all;
  color: var(--ms-text);
  line-height: 1.45;
  margin-bottom: 10px;
}
.staff-promo-share .actions {
  display: flex;
  gap: 8px;
}
.staff-promo-copy {
  flex: 1;
  border: 0;
  border-radius: 10px;
  padding: 10px;
  background: linear-gradient(135deg, #1a4a8a, #2563b8);
  color: #fff;
  font-size: 13px;
}
.staff-promo-copy.ghost {
  background: #eef4fb;
  color: #1a4a8a;
}
.staff-promo-card { margin-bottom: 12px; }
.staff-promo-card-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.staff-promo-card-hd .title {
  font-size: 15px;
  font-weight: 600;
}
.staff-promo-card-hd .sub {
  font-size: 12px;
  color: var(--ms-sub);
  margin-top: 4px;
}
.staff-promo-tag {
  flex-shrink: 0;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #e8f5e9;
  color: #2e7d32;
}
.staff-promo-tag.done {
  background: #eef2f5;
  color: var(--ms-sub);
}
.staff-promo-video {
  width: 100%;
  border-radius: 12px;
  background: #000;
  max-height: 220px;
  margin-bottom: 10px;
}
.staff-promo-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ms-sub);
  margin-bottom: 12px;
}
.staff-promo-card-actions {
  display: flex;
  gap: 8px;
}
.staff-promo-dl,
.staff-promo-submit-btn {
  flex: 1;
  text-align: center;
  border-radius: 10px;
  padding: 11px;
  font-size: 13px;
  border: 0;
}
.staff-promo-dl {
  background: #eef4fb;
  color: #1a4a8a;
  text-decoration: none;
}
.staff-promo-submit-btn {
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #fff;
  font-weight: 600;
}
.staff-promo-logs-link {
  display: block;
  text-align: center;
  padding: 8px 14px 20px;
  color: #1a4a8a;
  font-size: 14px;
  text-decoration: none;
}
.staff-promo-sheet {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}
.staff-promo-sheet.is-open {
  pointer-events: auto;
  visibility: visible;
}
.staff-promo-sheet-mask {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .25s ease;
}
.staff-promo-sheet.is-open .staff-promo-sheet-mask { opacity: 1; }
.staff-promo-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
  transform: translate3d(0, 100%, 0);
  transition: transform .28s cubic-bezier(.32,.72,0,1);
}
.staff-promo-sheet.is-open .staff-promo-sheet-panel {
  transform: translate3d(0, 0, 0);
}
.staff-promo-sheet-hd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.staff-promo-sheet-hd h3 {
  margin: 0;
  font-size: 17px;
}
.staff-promo-sheet-hd .close {
  border: 0;
  background: none;
  font-size: 24px;
  color: var(--ms-sub);
  line-height: 1;
}
.staff-promo-sheet-sub {
  font-size: 13px;
  color: var(--ms-sub);
  margin-bottom: 14px;
}
.staff-promo-field {
  display: block;
  margin-bottom: 12px;
}
.staff-promo-field span {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--ms-sub);
}
.staff-promo-field input,
.staff-promo-field select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  background: #fff;
  color: #1a1a1a;
}
.staff-promo-field .app-select {
  width: 100% !important;
  box-sizing: border-box;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 12px 32px 12px 12px !important;
  min-height: 44px !important;
  height: auto !important;
  line-height: 1.4 !important;
  font-size: 14px !important;
  background: #fff !important;
  color: #1a1a1a !important;
}
.staff-promo-field .app-select.is-placeholder {
  color: #94a3b8 !important;
}
/* 滚轮选择器需盖在提交弹窗之上 */
.app-picker-mask.show { z-index: 10050 !important; }
.app-picker.show { z-index: 10051 !important; }
.staff-promo-tabs {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  overflow-x: auto;
}
.staff-promo-tabs a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--ms-sub);
  font-size: 13px;
  text-decoration: none;
}
.staff-promo-tabs a.active {
  background: #1a4a8a;
  color: #fff;
}
.staff-promo-logs-stats {
  margin: 0 14px 12px;
}
.staff-promo-log-row {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f2f5;
}
.staff-promo-log-row:last-child { border-bottom: 0; }
.staff-promo-log-main { flex: 1; min-width: 0; }
.staff-promo-log-main .title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.staff-promo-log-main .sub {
  font-size: 12px;
  color: var(--ms-sub);
}
.staff-promo-log-main .link {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: #1a4a8a;
  text-decoration: none;
}
.staff-promo-log-status {
  flex-shrink: 0;
  text-align: right;
  font-size: 12px;
  font-weight: 600;
  min-width: 88px;
}
.staff-promo-log-status.status-0 { color: #ed6c02; }
.staff-promo-log-status.status-1 { color: #1a4a8a; }
.staff-promo-log-status.status-2 { color: #2e7d32; }
.staff-promo-log-status.status-3 { color: #c62828; }
.staff-promo-progress {
  width: 72px;
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  margin-top: 6px;
  margin-left: auto;
  overflow: hidden;
}
.staff-promo-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #1a4a8a, #2563b8);
  border-radius: 2px;
}
.staff-promo-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff8e6, #fff);
  border: 1px solid rgba(212, 160, 23, 0.25);
  text-decoration: none;
  color: inherit;
}
.staff-promo-banner .ico { font-size: 22px; }
.staff-promo-banner .txt {
  flex: 1;
  font-size: 13px;
  line-height: 1.45;
}
.staff-promo-banner .go {
  color: #d4a017;
  font-size: 18px;
}

/* ── 子页通用顶栏 ── */
.staff-sub-top {
  background: linear-gradient(160deg, #4E6274 0%, #3a4f60 100%);
  color: #fff;
  padding-bottom: 14px;
}
.staff-sub-top--compact {
  padding-bottom: 0;
}
.staff-sub-nav {
  background: transparent !important;
  color: #fff !important;
}
.staff-sub-nav .back,
.staff-sub-nav .right {
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
}
.staff-sub-nav .title {
  color: #fff !important;
}
.staff-sub-hero {
  padding: 4px 16px 0;
}
.staff-sub-hero .kicker {
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.78;
}
.staff-sub-hero h1 {
  margin: 6px 0 0;
  font-size: 20px;
  font-weight: 700;
}
.staff-sub-hero p {
  margin: 6px 0 0;
  font-size: 12px;
  opacity: 0.88;
  line-height: 1.45;
}

/* ── 空状态 / 今日素材 ── */
.staff-hub-today-empty {
  text-align: center;
  padding: 20px 14px;
}
.staff-hub-empty-ico {
  font-size: 32px;
  margin-bottom: 8px;
}
.staff-hub-empty-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ms-ink);
}
.staff-hub-empty-sub {
  margin-top: 6px;
  font-size: 12px;
  color: var(--ms-sub);
  line-height: 1.45;
}
.staff-promo-cover--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2f5;
}
.staff-promo-cover--empty svg {
  width: 28px;
  height: 28px;
  stroke: #94a3b8;
  fill: none;
  stroke-width: 1.5;
}

/* ── 推广链接页 ── */
.staff-share-qr-card {
  margin: 12px 16px 0;
  padding: 18px 16px;
  background: var(--ms-card);
  border-radius: 14px;
  box-shadow: var(--ms-shadow);
  text-align: center;
}
.staff-share-qr-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 14px;
  background: #f5f7fa;
  border: 1px solid #e2e8f0;
}
.staff-share-qr-wrap img,
.staff-share-qr-wrap canvas {
  width: 160px !important;
  height: 160px !important;
  display: block;
}
.staff-share-code {
  margin-top: 14px;
}
.staff-share-code .lab {
  display: block;
  font-size: 12px;
  color: var(--ms-sub);
}
.staff-share-code .val {
  display: block;
  margin-top: 4px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #4E6274;
}
.staff-share-url {
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  background: #f5f7fa;
  font-size: 11px;
  word-break: break-all;
  color: var(--ms-sub);
  line-height: 1.45;
  text-align: left;
}
.staff-share-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.staff-share-stats {
  margin: 12px 16px 0;
}
.staff-share-steps {
  display: grid;
  gap: 10px;
}
.staff-share-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.staff-share-step .n {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  line-height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.staff-share-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ms-sub);
}
.staff-share-more {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.staff-share-more a {
  display: block;
  padding: 14px;
  border-bottom: 1px solid var(--ms-line);
  font-size: 14px;
  color: #1a4a8a;
  text-decoration: none;
}
.staff-share-more a:last-child { border-bottom: 0; }

/* ── 推广佣金页 ── */
.staff-commission-hero-card {
  margin: 12px 16px 0;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  color: #fff;
  box-shadow: var(--ms-shadow);
}
.staff-commission-main .lab {
  display: block;
  font-size: 12px;
  opacity: 0.82;
}
.staff-commission-main .val {
  display: block;
  margin-top: 4px;
  font-size: 28px;
  font-weight: 700;
}
.staff-commission-sub {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.staff-commission-sub > div { flex: 1; }
.staff-commission-sub .lab {
  display: block;
  font-size: 11px;
  opacity: 0.78;
}
.staff-commission-sub .val {
  display: block;
  margin-top: 2px;
  font-size: 15px;
  font-weight: 600;
}
.staff-commission-page .staff-hub-summary {
  margin: 12px 16px 0;
}
.staff-commission-quick {
  padding-top: 12px;
}
.staff-hub-log .sub { font-size: 12px; color: var(--ms-sub); }

/* ── 作品记录封面 ── */
.staff-promo-log-cover {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #eef2f5;
}
.staff-promo-log-cover--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-promo-log-cover--empty svg {
  width: 20px;
  height: 20px;
  stroke: #94a3b8;
  fill: none;
  stroke-width: 1.5;
}
.staff-promo-day {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 400;
  opacity: 0.85;
}

/* ── 等级页 ── */
.staff-level-list {
  padding: 12px 16px 0;
}
.staff-level-card {
  margin-bottom: 10px;
  padding: 14px;
  background: var(--ms-card);
  border-radius: 14px;
  box-shadow: var(--ms-shadow);
  border: 1px solid transparent;
}
.staff-level-card.is-current {
  border-color: rgba(212, 160, 23, 0.45);
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.12);
}
.staff-level-card-hd {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.staff-level-card .lv-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  background: #eef2f5;
  font-size: 11px;
  font-weight: 700;
  color: #4E6274;
}
.staff-level-card .name {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
}
.staff-level-card .need {
  margin-top: 2px;
  font-size: 12px;
  color: var(--ms-sub);
}
.staff-level-badge {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
.staff-level-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.staff-level-benefit {
  padding: 10px;
  border-radius: 10px;
  background: #f5f7fa;
}
.staff-level-benefit .lab {
  display: block;
  font-size: 11px;
  color: var(--ms-sub);
}
.staff-level-benefit .val {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 600;
}
.staff-level-benefit .val.accent { color: #d4a017; }
.staff-level-benefit .val.muted { color: var(--ms-sub); font-weight: 400; }

/* ── 排行榜 ── */
.staff-rank-list { padding: 0; overflow: hidden; }
.staff-rank-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ms-line);
}
.staff-rank-row:last-child { border-bottom: 0; }
.staff-rank-no {
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 8px;
  background: #eef2f5;
  font-size: 13px;
  font-weight: 700;
  color: var(--ms-sub);
  flex-shrink: 0;
}
.staff-rank-row.is-top .staff-rank-no {
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #fff;
}
.staff-rank-info { flex: 1; min-width: 0; }
.staff-rank-info .name {
  font-size: 14px;
  font-weight: 600;
}
.staff-rank-info .sub {
  margin-top: 2px;
  font-size: 12px;
  color: var(--ms-sub);
}
.staff-rank-score {
  font-size: 16px;
  font-weight: 700;
  color: #4E6274;
}
.staff-rank-tabs { margin-top: 0; }

/* ── 今日视频补充 ── */
.staff-promo-share-more {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #1a4a8a;
  text-decoration: none;
  text-align: center;
}
.staff-promo-video--cover {
  object-fit: cover;
  max-height: 180px;
}
.staff-promo-page .staff-promo-tip {
  margin-top: 12px;
}
.staff-promo-page .staff-promo-share {
  margin-top: 0;
}
.staff-sub-nav .right {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.staff-sub-nav {
  position: relative;
}

/* ── 今日视频 V2 优化 ── */
.staff-promo-nav-works {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.staff-promo-nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.staff-promo-hero p {
  margin: 0;
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.45;
}
.staff-promo-head-stats {
  display: flex;
  gap: 8px;
  padding: 10px 14px 14px;
}
.staff-promo-head-stat {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  text-decoration: none;
  color: #fff;
}
.staff-promo-head-stat .val {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.staff-promo-head-stat .lab {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  opacity: 0.82;
}
.staff-promo-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 12px 14px 0;
  padding: 12px 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15, 35, 55, 0.06);
}
.staff-promo-step {
  flex: 1;
  text-align: center;
  min-width: 0;
}
.staff-promo-step .n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eef2f5;
  color: var(--ms-sub);
  font-size: 12px;
  font-weight: 700;
}
.staff-promo-step.is-done .n {
  background: #e8f5e9;
  color: #2e7d32;
}
.staff-promo-step .t {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--ms-sub);
  line-height: 1.3;
}
.staff-promo-step-line {
  width: 18px;
  height: 1px;
  background: #e2e8f0;
  flex-shrink: 0;
  margin-bottom: 16px;
}
.staff-promo-share--v2 {
  border: 1px solid rgba(26, 74, 138, 0.08);
}
.staff-promo-share-hd {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.staff-promo-share-hd .ico {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eef4fb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-promo-share-hd .ico svg {
  width: 18px;
  height: 18px;
  stroke: #1a4a8a;
  fill: none;
  stroke-width: 2;
}
.staff-promo-share-hd .code-chip {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 6px;
  background: #fff8e6;
  color: #9a7200;
  font-size: 12px;
  font-weight: 600;
}
.staff-promo-review-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 14px 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef4fb, #f5f9ff);
  border: 1px solid rgba(26, 74, 138, 0.12);
  text-decoration: none;
  color: inherit;
}
.staff-promo-review-banner-main {
  flex: 1;
  min-width: 0;
}
.staff-promo-review-banner-main .tag {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  background: #1a4a8a;
  color: #fff;
  font-size: 10px;
  margin-right: 6px;
}
.staff-promo-review-banner-main .title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ms-text);
}
.staff-promo-review-banner-side {
  flex-shrink: 0;
  width: 72px;
  text-align: right;
}
.staff-promo-review-banner-side .staff-promo-progress {
  margin: 0 0 4px;
}
.staff-promo-review-banner-side .day {
  font-size: 11px;
  color: #1a4a8a;
  font-weight: 600;
}
.staff-promo-platforms {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 4px;
  background: #f5f7fa;
  font-size: 11px;
}
.staff-promo-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.staff-promo-reward-pill {
  font-size: 15px;
  font-weight: 700;
  color: #d4a017;
}
.staff-promo-video-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  margin-bottom: 10px;
}
.staff-promo-video-wrap .staff-promo-video {
  margin-bottom: 0;
  max-height: 240px;
  display: block;
}
.staff-promo-submit-btn--ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef4fb !important;
  color: #1a4a8a !important;
  text-decoration: none;
  font-weight: 500;
}
.staff-promo-foot-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 4px 14px 16px;
}
.staff-promo-foot-links a {
  font-size: 13px;
  color: #1a4a8a;
  text-decoration: none;
}
.staff-promo-sheet-hint {
  margin: -4px 0 12px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ms-sub);
}
.staff-promo-tabs--scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.staff-promo-tabs--scroll::-webkit-scrollbar { display: none; }
.staff-promo-tabs--scroll a {
  flex-shrink: 0;
  white-space: nowrap;
}
.staff-promo-tabs--scroll a em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  margin-left: 2px;
  padding: 0 4px;
  border-radius: 999px;
  background: rgba(26, 74, 138, 0.12);
  color: #1a4a8a;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}
.staff-promo-tabs a.active em {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.staff-promo-log-platform {
  font-weight: 500;
}
.staff-promo-log-platform.platform-douyin { color: #111; }
.staff-promo-log-platform.platform-xiaohongshu { color: #e53935; }
.staff-promo-log-status-text {
  display: block;
  font-size: 12px;
  font-weight: 600;
}
.staff-promo-log-hint {
  margin-top: 4px;
  font-size: 11px;
  color: var(--ms-sub);
}
.staff-promo-log-hint.ok { color: #2e7d32; }
.staff-promo-logs-empty {
  padding: 24px 14px;
  line-height: 1.6;
}
.staff-promo-page .staff-promo-tip {
  margin-top: 12px;
}
.staff-promo-page .staff-promo-share {
  margin-top: 0;
}
.staff-promo-page .staff-hub-card {
  margin-left: 14px;
  margin-right: 14px;
}
.staff-promo-logs-page .staff-promo-logs-stats {
  margin: 12px 14px 0;
}
.staff-promo-logs-page .staff-promo-tabs {
  margin: 10px 14px 0;
}

/* ══ 积分体系 v2 ══ */
.pts-v2-page {
  background: var(--ms-bg);
}

.pts-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 28px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.pts-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pts-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.pts-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.pts-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.pts-v2-nav {
  position: relative;
  z-index: 2;
}

.pts-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.pts-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.pts-v2-hero-body h1 {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.pts-v2-balance {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.pts-v2-balance-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, #f0d060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pts-v2-balance-unit {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.pts-v2-hero-sub {
  margin: 10px 0 0;
  font-size: 12px;
  opacity: 0.78;
  line-height: 1.5;
}

.pts-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: -18px 14px 0;
  position: relative;
  z-index: 3;
}

.pts-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 4px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.1);
  text-decoration: none;
  color: var(--ms-ink);
}

.pts-v2-stat.is-static {
  cursor: default;
}

.pts-v2-stat .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.pts-v2-stat .ico svg {
  width: 20px;
  height: 20px;
  stroke: #4E6274;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pts-v2-stat .val {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.pts-v2-stat .lab {
  font-size: 10px;
  color: var(--ms-sub);
  text-align: center;
  line-height: 1.3;
}

.pts-v2-signin-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 14px 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff8e6, #fff3cc);
  border: 1px solid rgba(232, 185, 35, 0.35);
  text-decoration: none;
  color: var(--ms-ink);
}

.pts-v2-signin-banner-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e8b923;
  color: #fff;
}

.pts-v2-signin-banner-ico svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pts-v2-signin-banner-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pts-v2-signin-banner-text strong {
  font-size: 13px;
  font-weight: 700;
}

.pts-v2-signin-banner-text em {
  font-size: 11px;
  font-style: normal;
  color: var(--ms-sub);
}

.pts-v2-signin-banner-go {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: #c9920a;
}

.pts-v2-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 16px 14px 0;
  padding: 12px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: var(--ms-shadow);
}

.pts-v2-flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--ms-ink);
}

.pts-v2-flow-step .n {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #4E6274;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.pts-v2-flow-step .t {
  font-size: 11px;
  font-weight: 600;
}

.pts-v2-flow-arrow {
  flex-shrink: 0;
  font-size: 14px;
  color: #cbd5e1;
  margin-top: -14px;
}

.pts-v2-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 14px 0;
}

.pts-v2-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 4px;
  border-radius: 12px;
  background: var(--ms-card);
  box-shadow: var(--ms-shadow);
  text-decoration: none;
  color: var(--ms-ink);
}

.pts-v2-quick-item .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.pts-v2-quick-item .ico svg {
  width: 22px;
  height: 22px;
  stroke: #4E6274;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pts-v2-quick-item .t {
  font-size: 11px;
  text-align: center;
}

.pts-v2-section {
  margin: 16px 14px 0;
}

.pts-v2-section-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.pts-v2-section-hd h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.pts-v2-section-hd .sub {
  font-size: 11px;
  color: var(--ms-sub);
}

.pts-v2-section-hd .more {
  font-size: 12px;
  font-weight: 600;
  color: #4E6274;
  text-decoration: none;
}

.pts-v2-earn-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pts-v2-earn-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: var(--ms-shadow);
  text-decoration: none;
  color: var(--ms-ink);
}

.pts-v2-earn-card:active {
  opacity: 0.94;
}

.pts-v2-earn-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.pts-v2-earn-ico svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pts-v2-earn-ico--signin { background: linear-gradient(135deg, #4E6274, #3a4f60); }
.pts-v2-earn-ico--game { background: linear-gradient(135deg, #5b7a99, #4E6274); }
.pts-v2-earn-ico--vip { background: linear-gradient(135deg, #c9920a, #e8b923); }
.pts-v2-earn-ico--team { background: linear-gradient(135deg, #3d5a6e, #4E6274); }

.pts-v2-earn-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pts-v2-earn-body .t {
  font-size: 14px;
  font-weight: 700;
}

.pts-v2-earn-body .d {
  font-size: 11px;
  color: var(--ms-sub);
  line-height: 1.45;
}

.pts-v2-earn-body .d strong {
  color: var(--ms-ink);
}

.pts-v2-earn-badge {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f0f4f8;
  font-size: 10px;
  font-weight: 700;
  color: #4E6274;
  white-space: nowrap;
}

.pts-v2-gift-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.pts-v2-gift-card {
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: var(--ms-shadow);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.pts-v2-gift-card:active {
  opacity: 0.94;
}

.pts-v2-gift-cover {
  position: relative;
  height: 100px;
  background: #f5f7fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pts-v2-gift-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pts-v2-gift-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  color: #94a3b8;
}

.pts-v2-gift-ph svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.pts-v2-gift-pts {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(78, 98, 116, 0.92);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.pts-v2-gift-info {
  padding: 10px;
}

.pts-v2-gift-info h4 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pts-v2-gift-info p {
  margin: 4px 0 0;
  font-size: 10px;
  color: var(--ms-sub);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pts-v2-mall-cta {
  display: block;
  margin-top: 12px;
  padding: 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}

.pts-v2-benefits {
  padding-bottom: 4px;
}

.pts-v2-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: var(--ms-shadow);
  overflow: hidden;
}

.pts-v2-benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-top: 1px solid #f0f2f5;
}

.pts-v2-benefit-item:first-child {
  border-top: 0;
}

.pts-v2-benefit-item .ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f0f4f8;
}

.pts-v2-benefit-item .ico svg {
  width: 18px;
  height: 18px;
  stroke: #4E6274;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pts-v2-benefit-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.pts-v2-benefit-item p {
  margin: 4px 0 0;
  font-size: 11px;
  color: var(--ms-sub);
  line-height: 1.5;
}

.pts-v2-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 16px 14px;
  padding: 12px;
}

.pts-v2-links a {
  font-size: 12px;
  color: var(--ms-sub);
  text-decoration: none;
}

@media (max-width: 360px) {
  .pts-v2-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .pts-v2-balance-num {
    font-size: 36px;
  }
}

/* ── 积分子页 ── */
.pts-sub-page {
  padding-bottom: calc(var(--ms-nav-h) + var(--ms-nav-bump) + 16px + env(safe-area-inset-bottom, 0px));
}
.pts-sub-stats {
  margin: 12px 16px 0;
}
.pts-sub-day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.pts-sub-day {
  text-align: center;
  padding: 8px 2px;
  border-radius: 8px;
  background: #f5f7fa;
}
.pts-sub-day.is-done {
  background: #e8f5e9;
}
.pts-sub-day.is-current {
  background: #fff6e8;
  border: 1px solid #ffc107;
}
.pts-sub-day .d {
  display: block;
  font-size: 10px;
  color: var(--ms-sub);
}
.pts-sub-day .r {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ms-ink);
}
.pts-sub-cta {
  display: block;
  margin-top: 4px;
  padding: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
}
.pts-sub-cta.is-disabled {
  background: #d0d4db;
  pointer-events: none;
}
.pts-sub-rules {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pts-sub-rule {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pts-sub-rule .n {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #4E6274;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}
.pts-sub-rule p {
  margin: 0;
  flex: 1;
  font-size: 13px;
  color: var(--ms-sub);
  line-height: 1.5;
}
.pts-sub-reward-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pts-sub-reward-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid #f0f2f5;
}
.pts-sub-reward-item:first-child {
  border-top: 0;
  padding-top: 0;
}
.pts-sub-reward-item .lab {
  font-size: 13px;
  color: var(--ms-ink);
}
.pts-sub-reward-item .val {
  font-size: 13px;
  font-weight: 600;
  color: var(--ms-sub);
}
.pts-sub-reward-item .val.accent {
  color: #d4a017;
}
.pts-sub-level-list {
  margin: 12px 16px 0;
}
.pts-sub-page .staff-hub-card {
  margin-left: 16px;
  margin-right: 16px;
}
@media (max-width: 360px) {
  .pts-v2-gift-grid {
    grid-template-columns: 1fr;
  }
  .pts-sub-day-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ══ 我的页 v2 ══ */
.my-v2-page {
  background: var(--ms-bg);
  padding-bottom: calc(var(--ms-nav-h) + var(--ms-nav-bump) + 16px + env(safe-area-inset-bottom, 0px));
}

.my-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 24px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.my-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.my-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.my-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.my-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.my-v2-toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}

.my-v2-tool {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
}

.my-v2-tool svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.my-v2-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e74c3c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.my-v2-user {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.my-v2-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}

.my-v2-user-info {
  flex: 1;
  min-width: 0;
}

.my-v2-name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.my-v2-vip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 3px 10px 3px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 224, 130, 0.95), rgba(255, 193, 7, 0.95));
  color: #6d4c00;
  font-size: 11px;
  font-weight: 600;
}

.my-v2-vip svg {
  width: 11px;
  height: 11px;
  fill: #6d4c00;
  stroke: none;
}

.my-v2-edit {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.my-v2-balances {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.my-v2-balance {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #fff;
}

.my-v2-balance .val {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, #f0d060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.my-v2-balance .lab {
  font-size: 12px;
  opacity: 0.82;
}

.my-v2-balance-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.my-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: -16px 14px 0;
  position: relative;
  z-index: 3;
}

.my-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 4px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.1);
  text-decoration: none;
  color: var(--ms-ink);
}

.my-v2-stat .val {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.my-v2-stat .lab {
  font-size: 10px;
  color: var(--ms-sub);
  text-align: center;
}

.my-v2-promo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 14px 0;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff8e6, #fff3cc);
  border: 1px solid rgba(232, 185, 35, 0.35);
  text-decoration: none;
  color: var(--ms-ink);
}

.my-v2-promo-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-v2-promo-ico svg {
  width: 20px;
  height: 20px;
  fill: #ffd100;
  stroke: none;
}

.my-v2-promo-body {
  flex: 1;
  min-width: 0;
}

.my-v2-promo-body strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.my-v2-promo-body em {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-style: normal;
  color: var(--ms-sub);
  line-height: 1.4;
}

.my-v2-promo-go {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: #4E6274;
}

.my-v2-section {
  margin: 14px 14px 0;
  padding: 16px 14px;
  border-radius: 16px;
  background: var(--ms-card);
  box-shadow: 0 2px 12px rgba(30, 45, 58, 0.06);
}

.my-v2-section-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.my-v2-section-hd h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ms-ink);
}

.my-v2-section-hd .more {
  font-size: 12px;
  color: var(--ms-sub);
  text-decoration: none;
}

.my-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 8px;
}

.my-v2-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ms-ink);
  font-size: 11px;
  line-height: 1.25;
  text-align: center;
}

.my-v2-grid .ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-v2-grid .ico svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.my-v2-grid .ico-blue { background: rgba(78, 98, 116, 0.1); }
.my-v2-grid .ico-blue svg { stroke: #4E6274; }
.my-v2-grid .ico-teal { background: rgba(52, 152, 219, 0.1); }
.my-v2-grid .ico-teal svg { stroke: #3498db; }
.my-v2-grid .ico-gold { background: rgba(232, 185, 35, 0.15); }
.my-v2-grid .ico-gold svg { stroke: #c89600; }
.my-v2-grid .ico-green { background: rgba(60, 179, 113, 0.1); }
.my-v2-grid .ico-green svg { stroke: #3cb371; }
.my-v2-grid .ico-purple { background: rgba(155, 89, 182, 0.1); }
.my-v2-grid .ico-purple svg { stroke: #9b59b6; }
.my-v2-grid .ico-red { background: rgba(231, 76, 60, 0.1); }
.my-v2-grid .ico-red svg { stroke: #e74c3c; }
.my-v2-grid a.is-danger span:last-child { color: #c0392b; }

.my-v2-grid--feat {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 4px;
}

.my-v2-grid--feat .ico.ms-svc-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAFBFC;
  border: 1px solid var(--ms-line);
}

.my-v2-grid--feat .ico.ms-svc-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--ms-ink);
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.my-v2-grid--feat .ico.ms-svc-ico.is-custom {
  background: #FAFBFC;
  border: 1px solid var(--ms-line);
}

.my-v2-grid--feat .ico.ms-svc-ico.is-custom img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.my-v2-channel-row--wire .ico.ms-svc-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FAFBFC;
  border: 1px solid var(--ms-line);
}

.my-v2-channel-row--wire .ico.ms-svc-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--ms-ink);
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.my-v2-channel-row--wire .ico.ms-svc-ico.is-custom {
  background: #FAFBFC;
  border: 1px solid var(--ms-line);
}

.my-v2-channel-row--wire .ico.ms-svc-ico.is-custom img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.my-v2-grid .ico img,
.my-v2-channel-row .ico img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.my-v2-grid .ico-emoji,
.my-v2-channel-row .ico-emoji {
  font-size: 22px;
  line-height: 1;
}

.my-v2-channels .my-v2-section-hd {
  align-items: flex-start;
  gap: 10px;
}

.my-v2-section-title {
  flex: 1;
  min-width: 0;
}

.my-v2-section-kicker {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(78, 98, 116, 0.55);
  margin-bottom: 4px;
}

.my-v2-section-desc {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: var(--ms-sub);
}

.my-v2-channel-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 4px;
}

.my-v2-channel-row a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-width: 0;
  text-decoration: none;
  color: var(--ms-ink);
  text-align: center;
}

.my-v2-channel-row .ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  flex-shrink: 0;
}

.my-v2-channel-row .ico svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 四色统一：蓝 · 绿 · 钢蓝 · 金（两通道同列同色） */
.my-v2-channel-row .ico-ch-blue {
  background: linear-gradient(145deg, rgba(47, 124, 246, 0.14), rgba(47, 124, 246, 0.05));
  border-color: rgba(47, 124, 246, 0.14);
}
.my-v2-channel-row .ico-ch-blue svg { stroke: #2563eb; }

.my-v2-channel-row .ico-ch-green {
  background: linear-gradient(145deg, rgba(60, 179, 113, 0.14), rgba(60, 179, 113, 0.05));
  border-color: rgba(60, 179, 113, 0.14);
}
.my-v2-channel-row .ico-ch-green svg { stroke: #2a9d5c; }

.my-v2-channel-row .ico-ch-slate {
  background: linear-gradient(145deg, rgba(78, 98, 116, 0.14), rgba(78, 98, 116, 0.05));
  border-color: rgba(78, 98, 116, 0.14);
}
.my-v2-channel-row .ico-ch-slate svg { stroke: #4E6274; }

.my-v2-channel-row .ico-ch-gold {
  background: linear-gradient(145deg, rgba(194, 120, 3, 0.14), rgba(232, 185, 35, 0.07));
  border-color: rgba(194, 120, 3, 0.14);
}
.my-v2-channel-row .ico-ch-gold svg { stroke: #b8860b; }

.my-v2-channel-row .lab {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.my-v2-channel-row .sub {
  font-size: 9px;
  line-height: 1.15;
  color: rgba(78, 98, 116, 0.62);
  white-space: nowrap;
}

.my-v2-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 14px 8px;
}

.my-v2-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ms-card);
  color: var(--ms-sub);
  font-size: 11px;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(30, 45, 58, 0.05);
}

/* ══ 资金入账 v2 ══ */
.rc-v2-page {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 88px);
  background: var(--ms-bg);
}

.rc-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 28px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.rc-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.rc-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.rc-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.rc-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.rc-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.rc-v2-nav .back,
.rc-v2-nav .title,
.rc-v2-nav .right {
  color: #fff !important;
}

.rc-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.rc-v2-nav .right {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.9;
}

.rc-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.rc-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.rc-v2-hero-body h1 {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.rc-v2-balance {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.rc-v2-balance-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, #f0d060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rc-v2-balance-unit {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.rc-v2-hero-sub {
  margin: 10px 0 0;
  font-size: 12px;
  opacity: 0.78;
  line-height: 1.5;
}

.rc-v2-body {
  position: relative;
  z-index: 2;
  margin-top: -14px;
  padding: 0 14px 12px;
}

.rc-v2-card {
  margin-bottom: 12px;
  padding: 16px 14px;
  background: var(--ms-card);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.08);
}

.rc-v2-section-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.rc-v2-section-hd h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ms-ink);
}

.rc-v2-section-hd .sub {
  font-size: 12px;
  color: var(--ms-sub);
}

.rc-v2-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.rc-v2-chip {
  height: 46px;
  border-radius: 12px;
  background: #f5f7fa;
  color: #555;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, border-color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.rc-v2-chip:active {
  transform: scale(0.97);
}

.rc-v2-chip.on {
  background: linear-gradient(135deg, #fff8e6, #ffe566);
  color: var(--ms-ink);
  border-color: #e6bc00;
  box-shadow: 0 4px 12px rgba(255, 209, 0, 0.25);
}

.rc-v2-custom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.rc-v2-custom-label {
  display: block;
  font-size: 13px;
  color: var(--ms-sub);
  margin-bottom: 8px;
}

.rc-v2-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  height: 48px;
  border-radius: 12px;
  background: #f5f7fa;
  border: 1px solid #ebebeb;
}

.rc-v2-input-row:focus-within {
  border-color: #4E6274;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(78, 98, 116, 0.12);
}

.rc-v2-input-row input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  color: var(--ms-ink);
  -webkit-appearance: none;
}

.rc-v2-input-row input::placeholder {
  font-size: 15px;
  font-weight: 400;
  color: #bbb;
}

.rc-v2-input-row .unit {
  flex-shrink: 0;
  font-size: 14px;
  color: var(--ms-sub);
}

.rc-v2-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 16px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff8e6, #fff);
  border: 1px solid rgba(232, 185, 35, 0.35);
  box-shadow: 0 4px 14px rgba(232, 185, 35, 0.1);
}

.rc-v2-total-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
}

.rc-v2-total-val {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.rc-v2-total-val input {
  width: auto;
  min-width: 48px;
  max-width: 140px;
  border: none;
  outline: none;
  background: transparent;
  text-align: right;
  font-size: 28px;
  font-weight: 700;
  color: #c89600;
  padding: 0;
}

.rc-v2-total-val .unit {
  font-size: 15px;
  font-weight: 600;
  color: #888;
}

.rc-v2-tip {
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--ms-card);
  border-left: 3px solid #4E6274;
  font-size: 13px;
  line-height: 1.65;
  color: #666;
  box-shadow: 0 2px 8px rgba(30, 45, 58, 0.04);
}

.rc-v2-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 10px 14px calc(env(safe-area-inset-bottom) + 12px);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #eee;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rc-v2-submit {
  width: 100%;
  min-height: 48px;
  margin: 0;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(78, 98, 116, 0.3);
  -webkit-tap-highlight-color: transparent;
}

.rc-v2-submit--sm {
  min-height: 44px;
  font-size: 15px;
}

.rc-v2-pay-mask {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}

.rc-v2-pay-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 0 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.rc-v2-pay-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  background: #f5f5f5;
}

.rc-v2-pay-close img {
  width: 14px;
  opacity: 0.6;
}

.rc-v2-pay-head {
  padding: 0 16px 12px;
  border-bottom: 1px solid #f0f0f0;
}

.rc-v2-pay-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ms-ink);
}

.rc-v2-pay-head em {
  font-style: normal;
  font-weight: 700;
  color: #c89600;
}

.rc-v2-pay-sub {
  padding: 12px 16px 8px;
  font-size: 13px;
  color: var(--ms-sub);
}

.rc-v2-pay-list {
  max-height: 220px;
  overflow: auto;
  padding: 0 10px;
}

.rc-v2-pay-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 10px;
  border-radius: 12px;
  margin-bottom: 6px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  background: #fafafa;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.rc-v2-pay-item .logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.rc-v2-pay-item .name {
  flex: 1;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.rc-v2-pay-item .radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  box-sizing: border-box;
  flex-shrink: 0;
}

.rc-v2-pay-item.is-on {
  border-color: #4E6274;
  background: #f0f4f7;
}

.rc-v2-pay-item.is-on .radio {
  border-color: #4E6274;
  background: #4E6274;
  box-shadow: inset 0 0 0 3px #fff;
}

.rc-v2-pay-confirm {
  margin: 12px 16px 8px;
}

.rc-v2-pay-kf {
  display: flex;
  justify-content: center;
  padding: 8px 16px 4px;
  color: #888;
  font-size: 13px;
  text-decoration: underline;
}

@media (max-width: 360px) {
  .my-v2-grid {
    gap: 14px 6px;
  }
  .my-v2-balance .val {
    font-size: 24px;
  }
}

/* ══ 资金流水 v2 ══ */
.ml-v2-page {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
  background: var(--ms-bg);
}

.ml-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 36px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.ml-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ml-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.ml-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.ml-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.ml-v2-hero-icon {
  position: absolute;
  right: 12px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  opacity: 0.12;
}

.ml-v2-hero-icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ml-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.ml-v2-nav .back,
.ml-v2-nav .title {
  color: #fff !important;
}

.ml-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.ml-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.ml-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.ml-v2-hero-body h1 {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.ml-v2-balance {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.ml-v2-balance-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, #f0d060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ml-v2-balance-unit {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.ml-v2-hero-sub {
  margin: 10px 0 0;
  font-size: 12px;
  opacity: 0.78;
  line-height: 1.5;
}

.ml-v2-tabs-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  margin: -18px 14px 0;
  padding: 10px 8px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(13, 21, 32, 0.08);
  border: 1px solid rgba(78, 98, 116, 0.1);
}

.ml-v2-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ml-v2-tabs::-webkit-scrollbar {
  display: none;
}

.ml-v2-tab {
  flex: 0 0 auto;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7c8a;
  background: #f4f6f8;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ml-v2-tab.on {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.28);
}

.ml-v2-body {
  padding: 14px 14px 0;
}

.ml-v2-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ml-v2-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13, 21, 32, 0.04);
  border: 1px solid rgba(78, 98, 116, 0.08);
}

.ml-v2-item-ico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ml-v2-item-ico svg {
  width: 18px;
  height: 18px;
}

.ml-v2-item-ico svg path {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ml-v2-item-ico.is-plus {
  background: rgba(31, 122, 69, 0.1);
}

.ml-v2-item-ico.is-plus svg path {
  stroke: #1f7a45;
}

.ml-v2-item-ico.is-minus {
  background: rgba(231, 76, 60, 0.1);
}

.ml-v2-item-ico.is-minus svg path {
  stroke: #e74c3c;
}

.ml-v2-item-ico.is-neutral {
  background: rgba(78, 98, 116, 0.1);
}

.ml-v2-item-ico.is-neutral svg path {
  stroke: #4E6274;
}

.ml-v2-item-main {
  flex: 1;
  min-width: 0;
}

.ml-v2-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.ml-v2-item-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0D1520;
  line-height: 1.35;
}

.ml-v2-item-amt {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.ml-v2-item-amt.plus {
  color: #1f7a45;
}

.ml-v2-item-amt.minus {
  color: #e74c3c;
}

.ml-v2-item-amt.neutral {
  color: #6b7c8a;
  font-size: 13px;
  font-weight: 600;
}

.ml-v2-item-desc {
  margin: 6px 0 0;
  font-size: 13px;
  color: #4E6274;
  line-height: 1.45;
  word-break: break-all;
}

.ml-v2-item-id {
  margin: 4px 0 0;
  font-size: 11px;
  color: #9aa8b4;
  line-height: 1.4;
  word-break: break-all;
}

.ml-v2-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(78, 98, 116, 0.08);
  font-size: 11px;
  color: #9aa8b4;
}

.ml-v2-item-after em {
  font-style: normal;
  color: #6b7c8a;
  margin-right: 4px;
}

.ml-v2-item-time {
  flex: 0 0 auto;
}

.ml-v2-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 24px;
  text-align: center;
}

.ml-v2-empty svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  opacity: 0.35;
}

.ml-v2-empty svg path {
  fill: none;
  stroke: #4E6274;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ml-v2-empty p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #4E6274;
}

.ml-v2-empty span {
  margin-top: 6px;
  font-size: 12px;
  color: #9aa8b4;
}

.ml-v2-page .van-list__finished-text,
.ml-v2-page .van-list__loading {
  color: #9aa8b4 !important;
  font-size: 12px;
}

@media (max-width: 360px) {
  .ml-v2-balance-num {
    font-size: 34px;
  }
  .ml-v2-tab {
    padding: 7px 12px;
    font-size: 12px;
  }
}

/* ══ 认购记录 v2 ══ */
.ol-v2-page {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
  background: var(--ms-bg);
}

.ol-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 28px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.ol-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ol-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.ol-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.ol-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.ol-v2-hero-icon {
  position: absolute;
  right: 12px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  opacity: 0.12;
}

.ol-v2-hero-icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ol-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.ol-v2-nav .back,
.ol-v2-nav .title {
  color: #fff !important;
}

.ol-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.ol-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.ol-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.ol-v2-hero-body h1 {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.ol-v2-balance {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.ol-v2-balance-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, #f0d060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ol-v2-balance-unit {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.ol-v2-hero-sub {
  margin: 10px 0 0;
  font-size: 12px;
  opacity: 0.78;
  line-height: 1.5;
}

.ol-v2-body {
  margin-top: -12px;
  padding: 0 14px;
}

.ol-v2-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ol-v2-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13, 21, 32, 0.04);
  border: 1px solid rgba(78, 98, 116, 0.08);
}

.ol-v2-item-ico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ol-v2-item-ico svg {
  width: 18px;
  height: 18px;
}

.ol-v2-item-ico svg path {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ol-v2-item-ico.is-cabinet {
  background: rgba(78, 98, 116, 0.12);
}

.ol-v2-item-ico.is-cabinet svg path {
  stroke: #4E6274;
}

.ol-v2-item-ico.is-charge {
  background: rgba(31, 122, 69, 0.1);
}

.ol-v2-item-ico.is-charge svg path {
  stroke: #1f7a45;
}

.ol-v2-item-ico.is-equity {
  background: rgba(232, 185, 35, 0.14);
}

.ol-v2-item-ico.is-equity svg path {
  stroke: #c27803;
}

.ol-v2-item-ico.is-neutral {
  background: rgba(78, 98, 116, 0.1);
}

.ol-v2-item-ico.is-neutral svg path {
  stroke: #6b7c8a;
}

.ol-v2-item-main {
  flex: 1;
  min-width: 0;
}

.ol-v2-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.ol-v2-item-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0D1520;
  line-height: 1.35;
}

.ol-v2-item-amt {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  color: #0D1520;
  white-space: nowrap;
}

.ol-v2-item-amt small {
  font-size: 12px;
  font-weight: 500;
  margin-left: 2px;
  color: #6b7c8a;
}

.ol-v2-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.ol-v2-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.ol-v2-tag.is-cabinet {
  color: #4E6274;
  background: rgba(78, 98, 116, 0.1);
}

.ol-v2-tag.is-charge {
  color: #1f7a45;
  background: rgba(31, 122, 69, 0.1);
}

.ol-v2-tag.is-equity {
  color: #c27803;
  background: rgba(232, 185, 35, 0.14);
}

.ol-v2-tag.is-neutral {
  color: #6b7c8a;
  background: rgba(78, 98, 116, 0.08);
}

.ol-v2-tag.is-gift {
  color: #fff;
  background: linear-gradient(135deg, #e74c3c, #c8102e);
}

.ol-v2-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(78, 98, 116, 0.08);
  font-size: 11px;
  color: #9aa8b4;
}

.ol-v2-item-id {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ol-v2-item-id em {
  font-style: normal;
  color: #6b7c8a;
  margin-right: 4px;
}

.ol-v2-item-time {
  flex: 0 0 auto;
}

.ol-v2-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 48px;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13, 21, 32, 0.04);
  border: 1px solid rgba(78, 98, 116, 0.08);
}

.ol-v2-empty svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  opacity: 0.35;
}

.ol-v2-empty svg path {
  fill: none;
  stroke: #4E6274;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ol-v2-empty p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #4E6274;
}

.ol-v2-empty span {
  margin-top: 6px;
  font-size: 12px;
  color: #9aa8b4;
  line-height: 1.5;
}

.ol-v2-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-width: 148px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.28);
}

@media (max-width: 360px) {
  .ol-v2-balance-num {
    font-size: 34px;
  }
}

/* ══ 公司简介 v2 ══ */
.ci-v2-page {
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
  background: var(--ms-bg);
}

.ci-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 32px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.ci-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ci-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.ci-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.ci-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.ci-v2-hero-icon {
  position: absolute;
  right: 8px;
  bottom: 16px;
  width: 80px;
  height: 80px;
  opacity: 0.1;
}

.ci-v2-hero-icon circle,
.ci-v2-hero-icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-v2-hero-icon path {
  fill: #fff;
  stroke: none;
}

.ci-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.ci-v2-nav .back,
.ci-v2-nav .title {
  color: #fff !important;
}

.ci-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.ci-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.ci-v2-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.ci-v2-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.ci-v2-brand-tag {
  font-size: 11px;
  opacity: 0.78;
  letter-spacing: 0.04em;
}

.ci-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.ci-v2-title {
  margin-top: 4px;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #fff 30%, #f0d060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ci-v2-hero-sub {
  margin: 10px 0 0;
  font-size: 12px;
  opacity: 0.78;
  line-height: 1.55;
}

.ci-v2-pill {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.ci-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: -20px 14px 0;
  position: relative;
  z-index: 3;
}

.ci-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 4px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.1);
  color: var(--ms-ink);
}

.ci-v2-stat .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.ci-v2-stat .ico svg {
  width: 20px;
  height: 20px;
  stroke: #4E6274;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-v2-stat .val {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.ci-v2-stat .lab {
  font-size: 10px;
  color: var(--ms-sub);
  text-align: center;
}

.ci-v2-body {
  padding: 16px 14px 0;
}

.ci-v2-section {
  margin-bottom: 14px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(13, 21, 32, 0.04);
  border: 1px solid rgba(78, 98, 116, 0.08);
}

.ci-v2-section-hd {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.ci-v2-section-hd h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--ms-ink);
}

.ci-v2-section-hd .sub {
  font-size: 11px;
  color: var(--ms-sub);
}

.ci-v2-text p {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.75;
  color: #444;
}

.ci-v2-text p:last-child {
  margin-bottom: 0;
}

.ci-v2-text .hl {
  color: #C27803;
  font-weight: 700;
}

.ci-v2-biz-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ci-v2-biz-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 12px;
  background: var(--ms-bg);
}

.ci-v2-biz-item .ico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.ci-v2-biz-item .ico svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-v2-biz-ico--cabinet { background: linear-gradient(135deg, #4E6274, #3a4f60); }
.ci-v2-biz-ico--charge { background: linear-gradient(135deg, #2f7cf6, #1a5fd4); }
.ci-v2-biz-ico--equity { background: linear-gradient(135deg, #C27803, #a86500); }
.ci-v2-biz-ico--points { background: linear-gradient(135deg, #e8b923, #c99a10); }

.ci-v2-biz-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ms-ink);
}

.ci-v2-biz-item p {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ms-sub);
}

.ci-v2-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ci-v2-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px;
  border-radius: 12px;
  background: var(--ms-bg);
  text-align: center;
}

.ci-v2-feat .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.ci-v2-feat .ico svg {
  width: 22px;
  height: 22px;
  stroke: #4E6274;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ci-v2-feat .t {
  font-size: 13px;
  font-weight: 700;
  color: var(--ms-ink);
}

.ci-v2-feat .d {
  font-size: 10px;
  color: var(--ms-sub);
  line-height: 1.35;
}

.ci-v2-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px 0 4px;
  padding: 16px 0;
}

.ci-v2-foot-line {
  flex: 1;
  max-width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 98, 116, 0.35), transparent);
}

.ci-v2-foot p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  background: linear-gradient(135deg, #4E6274 0%, #C27803 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 360px) {
  .ci-v2-title {
    font-size: 32px;
  }

  .ci-v2-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══ 修改密码 v2 ══ */
.ep-v2-page {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
  background: var(--ms-bg);
}

.ep-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 36px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.ep-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ep-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.ep-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.ep-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.ep-v2-hero-icon {
  position: absolute;
  right: 8px;
  bottom: 16px;
  width: 80px;
  height: 80px;
  opacity: 0.1;
}

.ep-v2-hero-icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ep-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.ep-v2-nav .back,
.ep-v2-nav .title {
  color: #fff !important;
}

.ep-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.ep-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.ep-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.ep-v2-hero-body h1 {
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.ep-v2-hero-sub {
  margin: 8px 0 0;
  font-size: 12px;
  opacity: 0.78;
  line-height: 1.55;
  max-width: 260px;
}

.ep-v2-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ep-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.ep-v2-badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ep-v2-sheet {
  position: relative;
  z-index: 3;
  margin: -18px 14px 0;
  padding: 16px 14px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(13, 21, 32, 0.1);
  border: 1px solid rgba(78, 98, 116, 0.08);
}

.ep-v2-tabs-wrap {
  margin-bottom: 14px;
}

.ep-v2-tabs {
  display: flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: var(--ms-bg);
}

.ep-v2-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ms-sub);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.ep-v2-tab.on {
  color: #fff;
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.28);
}

.ep-v2-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(47, 124, 246, 0.08);
  border: 1px solid rgba(47, 124, 246, 0.12);
  font-size: 12px;
  line-height: 1.55;
  color: #2f5f8f;
}

.ep-v2-tip svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  stroke: #2f7cf6;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ep-v2-tip svg circle {
  fill: none;
}

.ep-v2-panel {
  display: none;
}

.ep-v2-panel.on {
  display: block;
}

.ep-v2-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ep-v2-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ms-ink);
}

.ep-v2-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--ms-bg);
  border: 1px solid rgba(78, 98, 116, 0.1);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ep-v2-input-row:focus-within {
  border-color: rgba(78, 98, 116, 0.35);
  box-shadow: 0 0 0 3px rgba(78, 98, 116, 0.08);
}

.ep-v2-field-ico {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  stroke: #4E6274;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ep-v2-input-row input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--ms-ink);
}

.ep-v2-input-row input::placeholder {
  color: #aab3bd;
  font-size: 13px;
}

.ep-v2-rules {
  margin-top: 16px;
  padding: 12px;
  border-radius: 12px;
  background: var(--ms-bg);
}

.ep-v2-rules-hd {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ms-ink);
}

.ep-v2-rules ul {
  margin: 0;
  padding: 0 0 0 16px;
}

.ep-v2-rules li {
  font-size: 11px;
  line-height: 1.65;
  color: var(--ms-sub);
}

.ep-v2-rules li + li {
  margin-top: 4px;
}

.ep-v2-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: 16px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(78, 98, 116, 0.32);
  cursor: pointer;
}

.ep-v2-submit:active {
  transform: scale(0.98);
}

@media (max-width: 360px) {
  .ep-v2-hero-body h1 {
    font-size: 24px;
  }
}

/* ══ 收益提现 v2 ══ */
.wd-v2-page {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 88px);
  background: var(--ms-bg);
}

.wd-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 32px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.wd-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.wd-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.wd-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.wd-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.wd-v2-hero-icon {
  position: absolute;
  right: 8px;
  bottom: 16px;
  width: 80px;
  height: 80px;
  opacity: 0.1;
}

.wd-v2-hero-icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wd-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.wd-v2-nav .back,
.wd-v2-nav .title,
.wd-v2-nav .right {
  color: #fff !important;
}

.wd-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.wd-v2-nav .right {
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.92;
}

.wd-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.wd-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.wd-v2-hero-body h1 {
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.wd-v2-balance {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 10px;
}

.wd-v2-balance-num {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, #fff 20%, #f0d060 55%, #e8b923 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wd-v2-balance-unit {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.82;
}

.wd-v2-hero-sub {
  margin: 8px 0 0;
  font-size: 12px;
  opacity: 0.78;
  line-height: 1.55;
}

.wd-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: -20px 14px 0;
  position: relative;
  z-index: 3;
}

.wd-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 4px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.1);
  color: var(--ms-ink);
  text-align: center;
}

.wd-v2-stat .lab {
  font-size: 10px;
  color: var(--ms-muted);
  line-height: 1.3;
}

.wd-v2-stat .val {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  color: var(--ms-ink);
}

.wd-v2-stat .val.gold {
  color: #c89600;
}

.wd-v2-stat .val.sm {
  font-size: 11px;
}

.wd-v2-sheet {
  margin: 14px 14px 0;
  padding: 16px;
  border-radius: 18px;
  background: var(--ms-card);
  box-shadow: 0 4px 20px rgba(30, 45, 58, 0.08);
}

.wd-v2-tabs-wrap {
  margin-bottom: 12px;
}

.wd-v2-tabs {
  display: flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: #f0f2f5;
}

.wd-v2-tab {
  flex: 1;
  padding: 10px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--ms-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.wd-v2-tab.on {
  color: #fff;
  background: linear-gradient(135deg, #4E6274 0%, #5d7a8f 100%);
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.35);
}

.wd-v2-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(78, 98, 116, 0.08);
  font-size: 12px;
  line-height: 1.55;
  color: #5a6a78;
}

.wd-v2-tip svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  stroke: #4E6274;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wd-v2-tip svg circle {
  fill: none;
}

.wd-v2-form-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.wd-v2-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ms-muted);
}

.wd-v2-input-row,
.wd-v2-select-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 12px;
  background: #f5f7fa;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}

.wd-v2-input-row:focus-within,
.wd-v2-select-row:focus-within {
  background: #fff;
  border-color: rgba(78, 98, 116, 0.35);
}

.wd-v2-field-ico {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: #4E6274;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wd-v2-input-row input,
.wd-v2-select-row select {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: none !important;
  outline: none;
  background: transparent !important;
  font-size: 15px;
  font-weight: 500;
  color: var(--ms-ink);
  padding: 0 !important;
  box-shadow: none !important;
}

.wd-v2-input-row input::placeholder {
  color: #b0b8c0;
  font-weight: 400;
}

.wd-v2-select-row select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 22px !important;
}

.wd-v2-all-btn {
  flex-shrink: 0;
  height: 30px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #4E6274;
  background: rgba(78, 98, 116, 0.12);
  cursor: pointer;
}

.wd-v2-sms-row {
  padding-right: 6px;
}

.wd-v2-sms-btn {
  flex-shrink: 0;
  height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4E6274 0%, #5d7a8f 100%);
  cursor: pointer;
  white-space: nowrap;
}

.wd-v2-sms-btn:disabled {
  background: #e0e4e8;
  color: #999;
  cursor: default;
}

.wd-v2-bank-card {
  display: none;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(78, 98, 116, 0.06) 0%, rgba(232, 185, 35, 0.08) 100%);
  border: 1px solid rgba(78, 98, 116, 0.15);
}

.wd-v2-bank-card.is-show {
  display: block;
}

.wd-v2-bank-hd {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ms-ink);
}

.wd-v2-bank-hd svg {
  width: 16px;
  height: 16px;
  stroke: #4E6274;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wd-v2-bank-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ms-muted);
}

.wd-v2-bank-row + .wd-v2-bank-row {
  margin-top: 6px;
}

.wd-v2-bank-row b {
  color: var(--ms-ink);
  font-weight: 600;
  word-break: break-all;
  text-align: right;
}

.wd-v2-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f5f7fa;
  border: 1px solid #e8ecf0;
}

.wd-v2-alert.warn {
  background: rgba(232, 185, 35, 0.1);
  border-color: rgba(232, 185, 35, 0.35);
}

.wd-v2-alert svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  stroke: #c89600;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wd-v2-alert-body p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.55;
  color: #6a5a20;
}

.wd-v2-alert-btn {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none;
  background: linear-gradient(135deg, #4E6274 0%, #5d7a8f 100%);
  box-shadow: 0 3px 10px rgba(78, 98, 116, 0.28);
}

.wd-v2-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.wd-v2-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 12px;
  background: #f5f7fa;
  font-size: 13px;
  font-weight: 600;
  color: #4E6274 !important;
  text-decoration: none;
}

.wd-v2-links a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wd-v2-closed {
  text-align: center;
  padding: 8px 4px 4px;
}

.wd-v2-closed svg {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  stroke: #4E6274;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wd-v2-closed-msg {
  font-size: 14px;
  font-weight: 600;
  color: #c89600;
  line-height: 1.7;
  margin-bottom: 14px;
}

.wd-v2-closed-extra {
  font-size: 13px;
  color: var(--ms-muted);
  line-height: 1.7;
  padding-top: 14px;
  border-top: 1px dashed #e8ecf0;
  text-align: left;
}

.wd-v2-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 10px 14px calc(env(safe-area-inset-bottom) + 12px);
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #eee;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wd-v2-submit {
  display: block;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #4E6274 0%, #5d7a8f 100%);
  box-shadow: 0 6px 18px rgba(78, 98, 116, 0.35);
  cursor: pointer;
}

.wd-v2-submit:active {
  transform: scale(0.98);
}

@media (max-width: 360px) {
  .wd-v2-balance-num {
    font-size: 34px;
  }
  .wd-v2-stat .val {
    font-size: 11px;
  }
  .wd-v2-stat .lab {
    font-size: 9px;
  }
}

/* ── Withdrawal Log v2 ── */
.wdl-v2-page {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
  background: var(--ms-bg);
}

.wdl-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 28px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.wdl-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.wdl-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.wdl-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.wdl-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.wdl-v2-hero-icon {
  position: absolute;
  right: 12px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  opacity: 0.12;
}

.wdl-v2-hero-icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wdl-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.wdl-v2-nav .back,
.wdl-v2-nav .title {
  color: #fff !important;
}

.wdl-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.wdl-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.wdl-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.wdl-v2-hero-body h1 {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.wdl-v2-balance {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.wdl-v2-balance-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, #f0d060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wdl-v2-balance-unit {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.wdl-v2-hero-sub {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.78;
}

.wdl-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: -18px 12px 0;
  position: relative;
  z-index: 3;
}

.wdl-v2-stat {
  background: #fff;
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.08);
}

.wdl-v2-stat .lab {
  display: block;
  font-size: 10px;
  color: #8a9aa5;
  margin-bottom: 4px;
}

.wdl-v2-stat .val {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #152530;
  word-break: break-all;
}

.wdl-v2-stat .val.gold {
  color: #c8960c;
}

.wdl-v2-tabs-wrap {
  margin: 14px 12px 0;
  padding: 4px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30, 45, 58, 0.06);
}

.wdl-v2-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.wdl-v2-tabs::-webkit-scrollbar {
  display: none;
}

.wdl-v2-tab {
  flex: 1 0 auto;
  min-width: 72px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7c88;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.wdl-v2-tab.on {
  color: #fff;
  background: linear-gradient(135deg, #4E6274 0%, #3a5060 100%);
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.35);
}

.wdl-v2-body {
  padding: 12px;
}

.wdl-v2-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wdl-v2-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(30, 45, 58, 0.05);
  cursor: pointer;
  transition: transform 0.15s;
}

.wdl-v2-item:active {
  transform: scale(0.985);
}

.wdl-v2-item-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wdl-v2-item-ico svg {
  width: 20px;
  height: 20px;
}

.wdl-v2-item-ico svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wdl-v2-item-ico.is-ok {
  background: rgba(10, 160, 44, 0.1);
  color: #0aa02c;
}

.wdl-v2-item-ico.is-fail {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.wdl-v2-item-ico.is-pending {
  background: rgba(232, 185, 35, 0.12);
  color: #c8960c;
}

.wdl-v2-item-main {
  flex: 1;
  min-width: 0;
}

.wdl-v2-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.wdl-v2-item-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #152530;
  line-height: 1.35;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wdl-v2-item-amt {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: #152530;
}

.wdl-v2-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.wdl-v2-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
}

.wdl-v2-tag.is-ok {
  background: rgba(10, 160, 44, 0.1);
  color: #0aa02c;
}

.wdl-v2-tag.is-fail {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.wdl-v2-tag.is-pending {
  background: rgba(232, 185, 35, 0.12);
  color: #b8860b;
}

.wdl-v2-tag.is-type {
  background: rgba(78, 98, 116, 0.1);
  color: #4E6274;
}

.wdl-v2-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  font-size: 11px;
  color: #8a9aa5;
}

.wdl-v2-item-id em {
  font-style: normal;
  opacity: 0.75;
}

.wdl-v2-item-time {
  flex-shrink: 0;
}

.wdl-v2-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px;
  text-align: center;
}

.wdl-v2-empty svg {
  width: 56px;
  height: 56px;
  opacity: 0.35;
}

.wdl-v2-empty svg path {
  fill: none;
  stroke: #4E6274;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wdl-v2-empty p {
  margin: 16px 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #4E6274;
}

.wdl-v2-empty span {
  font-size: 12px;
  color: #8a9aa5;
}

.wdl-v2-empty-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #4E6274 0%, #3a5060 100%);
  box-shadow: 0 4px 14px rgba(78, 98, 116, 0.3);
}

.wdl-v2-page .van-list__finished-text,
.wdl-v2-page .van-list__loading {
  color: #8a9aa5;
  font-size: 12px;
}

.wdl-v2-detail {
  text-align: left;
  max-height: 50vh;
  overflow-y: auto;
}

.wdl-v2-detail-row {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid #f0f3f5;
  font-size: 13px;
}

.wdl-v2-detail-row:last-child {
  border-bottom: 0;
}

.wdl-v2-detail-row .lab {
  width: 76px;
  flex-shrink: 0;
  color: #8a9aa5;
}

.wdl-v2-detail-row .val {
  flex: 1;
  color: #152530;
  word-break: break-all;
}

.wdl-v2-detail-row .val.gold {
  color: #c8960c;
  font-weight: 600;
}

@media (max-width: 360px) {
  .wdl-v2-balance-num {
    font-size: 34px;
  }
  .wdl-v2-stat .val {
    font-size: 11px;
  }
  .wdl-v2-stat .lab {
    font-size: 9px;
  }
  .wdl-v2-tab {
    font-size: 12px;
    min-width: 64px;
  }
}

/* ══ 我的银行卡 v2 ══ */
.bk-v2-page {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 88px);
  background: var(--ms-bg);
}

.bk-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 28px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.bk-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bk-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.bk-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.bk-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.bk-v2-hero-icon {
  position: absolute;
  right: 12px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  opacity: 0.12;
}

.bk-v2-hero-icon path,
.bk-v2-hero-icon rect {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bk-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.bk-v2-nav .back,
.bk-v2-nav .title {
  color: #fff !important;
}

.bk-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.bk-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.bk-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.bk-v2-hero-body h1 {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.bk-v2-balance {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.bk-v2-balance-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, #f0d060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bk-v2-balance-unit {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.bk-v2-hero-sub {
  margin: 10px 0 0;
  font-size: 12px;
  opacity: 0.78;
  line-height: 1.5;
}

.bk-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: -20px 14px 0;
  position: relative;
  z-index: 3;
}

.bk-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 4px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.1);
  color: var(--ms-ink);
  text-align: center;
}

.bk-v2-stat .lab {
  font-size: 10px;
  color: var(--ms-muted);
  line-height: 1.3;
}

.bk-v2-stat .val {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  color: var(--ms-ink);
}

.bk-v2-stat .val.gold {
  color: #c89600;
}

.bk-v2-body {
  margin-top: 14px;
  padding: 0 14px;
}

.bk-v2-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(232, 185, 35, 0.12);
  border: 1px solid rgba(232, 185, 35, 0.22);
  font-size: 12px;
  line-height: 1.55;
  color: #8a6a00;
}

.bk-v2-tip svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.bk-v2-tip svg path,
.bk-v2-tip svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bk-v2-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bk-v2-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13, 21, 32, 0.04);
  border: 1px solid rgba(78, 98, 116, 0.08);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.bk-v2-item-ico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bk-v2-item-ico svg {
  width: 18px;
  height: 18px;
}

.bk-v2-item-ico svg path,
.bk-v2-item-ico svg rect {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bk-v2-item-ico.is-ok {
  background: rgba(31, 122, 69, 0.1);
}

.bk-v2-item-ico.is-ok svg path,
.bk-v2-item-ico.is-ok svg rect {
  stroke: #1f7a45;
}

.bk-v2-item-ico.is-pending {
  background: rgba(232, 185, 35, 0.14);
}

.bk-v2-item-ico.is-pending svg path,
.bk-v2-item-ico.is-pending svg rect {
  stroke: #c27803;
}

.bk-v2-item-ico.is-reject {
  background: rgba(200, 16, 46, 0.1);
}

.bk-v2-item-ico.is-reject svg path,
.bk-v2-item-ico.is-reject svg rect {
  stroke: #c8102e;
}

.bk-v2-item-main {
  flex: 1;
  min-width: 0;
}

.bk-v2-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.bk-v2-item-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0D1520;
  line-height: 1.35;
}

.bk-v2-tag {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.bk-v2-tag.is-ok {
  color: #1f7a45;
  background: rgba(31, 122, 69, 0.1);
}

.bk-v2-tag.is-pending {
  color: #c27803;
  background: rgba(232, 185, 35, 0.14);
}

.bk-v2-tag.is-reject {
  color: #c8102e;
  background: rgba(200, 16, 46, 0.1);
}

.bk-v2-item-no {
  margin: 8px 0 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0D1520;
  font-variant-numeric: tabular-nums;
}

.bk-v2-item-meta {
  margin-top: 8px;
  font-size: 12px;
  color: #6b7c8a;
}

.bk-v2-item-holder em {
  font-style: normal;
  color: #9aa8b4;
  margin-right: 4px;
}

.bk-v2-item-foot {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(78, 98, 116, 0.08);
  font-size: 11px;
  color: #9aa8b4;
  line-height: 1.45;
}

.bk-v2-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 48px;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13, 21, 32, 0.04);
  border: 1px solid rgba(78, 98, 116, 0.08);
}

.bk-v2-empty svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  opacity: 0.35;
}

.bk-v2-empty svg path {
  fill: none;
  stroke: #4E6274;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bk-v2-empty p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #4E6274;
}

.bk-v2-empty span {
  margin-top: 6px;
  font-size: 12px;
  color: #9aa8b4;
  line-height: 1.5;
}

.bk-v2-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-width: 148px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.28);
}

.bk-v2-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 10px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(213, 222, 228, 0.9);
  box-shadow: 0 -8px 24px rgba(30, 45, 58, 0.06);
}

.bk-v2-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4E6274 0%, #3a4f60 100%);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(78, 98, 116, 0.28);
}

.bk-v2-submit:active {
  opacity: 0.92;
}

.bk-v2-toast {
  display: none;
  position: fixed;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  z-index: 99;
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(30, 45, 58, 0.92);
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

@media (max-width: 360px) {
  .bk-v2-balance-num {
    font-size: 34px;
  }
  .bk-v2-stat .val {
    font-size: 11px;
  }
  .bk-v2-stat .lab {
    font-size: 9px;
  }
}

/* ══ 股权证书 v2 ══ */
.zs-v2-page {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
  background: var(--ms-bg);
}

.zs-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 28px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.zs-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.zs-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.zs-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.zs-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.zs-v2-hero-icon {
  position: absolute;
  right: 12px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  opacity: 0.12;
}

.zs-v2-hero-icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zs-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.zs-v2-nav .back,
.zs-v2-nav .title {
  color: #fff !important;
}

.zs-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.zs-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.zs-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.zs-v2-hero-body h1 {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.zs-v2-balance {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.zs-v2-balance-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, #f0d060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.zs-v2-balance-unit {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.zs-v2-hero-sub {
  margin: 10px 0 0;
  font-size: 12px;
  opacity: 0.78;
  line-height: 1.5;
}

.zs-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: -20px 14px 0;
  position: relative;
  z-index: 3;
}

.zs-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 4px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.1);
  color: var(--ms-ink);
  text-align: center;
}

.zs-v2-stat .lab {
  font-size: 10px;
  color: var(--ms-muted);
  line-height: 1.3;
}

.zs-v2-stat .val {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  color: var(--ms-ink);
}

.zs-v2-stat .val.gold {
  color: #c89600;
}

.zs-v2-body {
  margin-top: 14px;
  padding: 0 14px;
}

.zs-v2-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zs-v2-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13, 21, 32, 0.04);
  border: 1px solid rgba(78, 98, 116, 0.08);
}

.zs-v2-item-ico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zs-v2-item-ico svg {
  width: 18px;
  height: 18px;
}

.zs-v2-item-ico svg path {
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zs-v2-item-ico.is-cabinet {
  background: rgba(78, 98, 116, 0.12);
}

.zs-v2-item-ico.is-cabinet svg path {
  stroke: #4E6274;
}

.zs-v2-item-ico.is-charge {
  background: rgba(31, 122, 69, 0.1);
}

.zs-v2-item-ico.is-charge svg path {
  stroke: #1f7a45;
}

.zs-v2-item-ico.is-equity {
  background: rgba(232, 185, 35, 0.14);
}

.zs-v2-item-ico.is-equity svg path {
  stroke: #c27803;
}

.zs-v2-item-main {
  flex: 1;
  min-width: 0;
}

.zs-v2-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.zs-v2-item-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #0D1520;
  line-height: 1.35;
}

.zs-v2-item-amt {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  color: #0D1520;
  white-space: nowrap;
}

.zs-v2-item-amt small {
  font-size: 12px;
  font-weight: 500;
  margin-left: 2px;
  color: #6b7c8a;
}

.zs-v2-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.zs-v2-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.zs-v2-tag.is-cabinet {
  color: #4E6274;
  background: rgba(78, 98, 116, 0.1);
}

.zs-v2-tag.is-charge {
  color: #1f7a45;
  background: rgba(31, 122, 69, 0.1);
}

.zs-v2-tag.is-equity {
  color: #c27803;
  background: rgba(232, 185, 35, 0.14);
}

.zs-v2-tag.is-active {
  color: #1f7a45;
  background: rgba(31, 122, 69, 0.1);
}

.zs-v2-tag.is-expired {
  color: #c27803;
  background: rgba(232, 185, 35, 0.14);
}

.zs-v2-tag.is-wait {
  color: #8a6a00;
  background: rgba(232, 185, 35, 0.18);
}

.zs-v2-tag.is-redeemed {
  color: #6b7c8a;
  background: rgba(78, 98, 116, 0.1);
}

.zs-v2-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(78, 98, 116, 0.08);
  font-size: 11px;
  color: #9aa8b4;
}

.zs-v2-item-id {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.zs-v2-item-id em {
  font-style: normal;
  color: #6b7c8a;
  margin-right: 4px;
}

.zs-v2-item-time {
  flex: 0 0 auto;
}

.zs-v2-item-expire {
  margin-top: 6px;
  font-size: 11px;
  color: #6b7c8a;
  line-height: 1.45;
}

.zs-v2-item-expire em {
  font-style: normal;
  color: #9aa8b4;
  margin-right: 4px;
}

.zs-v2-wait-box {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(232, 185, 35, 0.12);
  border: 1px solid rgba(232, 185, 35, 0.22);
  font-size: 11px;
  color: #8a6a00;
  line-height: 1.5;
}

.zs-v2-redeem-box {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(78, 98, 116, 0.08);
  font-size: 11px;
  color: #6b7c8a;
  line-height: 1.5;
}

.zs-v2-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.zs-v2-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.zs-v2-btn.primary {
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  color: #fff !important;
  box-shadow: 0 3px 10px rgba(78, 98, 116, 0.24);
}

.zs-v2-btn.outline {
  background: #fff;
  border: 1px solid rgba(78, 98, 116, 0.18);
  color: #4E6274 !important;
}

.zs-v2-btn.ghost {
  background: #f3f5f7;
  color: #4E6274 !important;
}

.zs-v2-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 48px;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13, 21, 32, 0.04);
  border: 1px solid rgba(78, 98, 116, 0.08);
}

.zs-v2-empty svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  opacity: 0.35;
}

.zs-v2-empty svg path {
  fill: none;
  stroke: #4E6274;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zs-v2-empty p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #4E6274;
}

.zs-v2-empty span {
  margin-top: 6px;
  font-size: 12px;
  color: #9aa8b4;
  line-height: 1.5;
}

.zs-v2-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-width: 148px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.28);
}

.zs-v2-rules {
  margin-top: 12px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13, 21, 32, 0.04);
  border: 1px solid rgba(78, 98, 116, 0.08);
}

.zs-v2-rules-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #4E6274;
}

.zs-v2-rules-hd svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.zs-v2-rules-hd svg path,
.zs-v2-rules-hd svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.zs-v2-rules-list {
  margin: 0;
  padding: 0 0 0 16px;
  font-size: 12px;
  color: #6b7c8a;
  line-height: 1.65;
}

.zs-v2-rules-list li {
  margin-bottom: 6px;
}

.zs-v2-rules-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 360px) {
  .zs-v2-balance-num {
    font-size: 34px;
  }
  .zs-v2-stat .val {
    font-size: 11px;
  }
  .zs-v2-stat .lab {
    font-size: 9px;
  }
}

/* ── Notice / Messages v2 ── */
.ntc-v2-page {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(var(--ms-nav-h) + var(--ms-nav-bump) + 16px + env(safe-area-inset-bottom, 0px));
  background: var(--ms-bg);
}

.ntc-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 28px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.ntc-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ntc-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.ntc-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.ntc-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.ntc-v2-hero-icon {
  position: absolute;
  right: 12px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  opacity: 0.12;
}

.ntc-v2-hero-icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ntc-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.ntc-v2-nav .back,
.ntc-v2-nav .title {
  color: #fff !important;
}

.ntc-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.ntc-v2-nav .right {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 13px;
  font-weight: 500;
}

.ntc-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.ntc-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.ntc-v2-hero-body h1 {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.ntc-v2-balance {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.ntc-v2-balance-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, #f0d060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ntc-v2-balance-unit {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.ntc-v2-hero-sub {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.78;
}

.ntc-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: -18px 12px 0;
  position: relative;
  z-index: 3;
}

.ntc-v2-stat {
  background: #fff;
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.08);
}

.ntc-v2-stat .lab {
  display: block;
  font-size: 10px;
  color: #8a9aa5;
  margin-bottom: 4px;
}

.ntc-v2-stat .val {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #152530;
}

.ntc-v2-stat .val.gold {
  color: #c8960c;
}

.ntc-v2-tabs-wrap {
  margin: 14px 12px 0;
  padding: 4px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30, 45, 58, 0.06);
}

.ntc-v2-tabs {
  display: flex;
  gap: 4px;
}

.ntc-v2-tab {
  flex: 1;
  padding: 9px 8px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7c88;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.ntc-v2-tab.on {
  color: #fff;
  background: linear-gradient(135deg, #4E6274 0%, #3a5060 100%);
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.35);
}

.ntc-v2-body {
  padding: 12px;
}

.ntc-v2-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ntc-v2-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(30, 45, 58, 0.05);
  cursor: pointer;
  transition: transform 0.15s;
}

.ntc-v2-item:active {
  transform: scale(0.985);
}

.ntc-v2-item.is-hidden {
  display: none;
}

.ntc-v2-item.is-unread {
  box-shadow: 0 2px 12px rgba(78, 98, 116, 0.12);
}

.ntc-v2-item-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ntc-v2-item-ico svg {
  width: 20px;
  height: 20px;
}

.ntc-v2-item-ico svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ntc-v2-item-ico--system {
  background: linear-gradient(135deg, rgba(78, 98, 116, 0.14) 0%, rgba(58, 80, 96, 0.1) 100%);
  color: #4E6274;
}

.ntc-v2-item-ico--order {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(59, 130, 246, 0.08) 100%);
  color: #2563eb;
}

.ntc-v2-item-ico--promo {
  background: linear-gradient(135deg, rgba(232, 185, 35, 0.16) 0%, rgba(200, 150, 12, 0.1) 100%);
  color: #c8960c;
}

.ntc-v2-item-main {
  flex: 1;
  min-width: 0;
}

.ntc-v2-item-top {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ntc-v2-item-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #152530;
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}

.ntc-v2-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  border-radius: 50%;
  background: #4E6274;
}

.ntc-v2-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  font-size: 11px;
  color: #8a9aa5;
}

.ntc-v2-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
}

.ntc-v2-tag--system {
  background: rgba(78, 98, 116, 0.1);
  color: #4E6274;
}

.ntc-v2-tag--order {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.ntc-v2-tag--promo {
  background: rgba(232, 185, 35, 0.12);
  color: #b8860b;
}

.ntc-v2-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px;
  text-align: center;
}

.ntc-v2-empty.is-hidden {
  display: none;
}

.ntc-v2-empty svg {
  width: 56px;
  height: 56px;
  opacity: 0.35;
}

.ntc-v2-empty svg path {
  fill: none;
  stroke: #4E6274;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ntc-v2-empty p {
  margin: 16px 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #4E6274;
}

.ntc-v2-empty span {
  font-size: 12px;
  color: #8a9aa5;
}

.ntc-v2-detail {
  text-align: left;
}

.ntc-v2-detail-row {
  display: flex;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 13px;
}

.ntc-v2-detail-row .lab {
  width: 44px;
  flex-shrink: 0;
  color: #8a9aa5;
}

.ntc-v2-detail-row .val {
  flex: 1;
  color: #152530;
}

.ntc-v2-detail-body {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid #f0f3f5;
  font-size: 14px;
  line-height: 1.65;
  color: #4a5a66;
  word-break: break-word;
}

@media (max-width: 360px) {
  .ntc-v2-balance-num {
    font-size: 34px;
  }
  .ntc-v2-stat .val {
    font-size: 11px;
  }
  .ntc-v2-tab {
    font-size: 12px;
    padding: 8px 4px;
  }
}

/* ══ 认购优惠券 v2 ══ */
.cp-v2-page {
  min-height: 100vh;
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 88px);
  background: var(--ms-bg);
}

.cp-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 28px;
  background: linear-gradient(155deg, #1e2d3a 0%, #4E6274 52%, #5d7a8f 100%);
  color: #fff;
}

.cp-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cp-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.22) 0%, transparent 70%);
}

.cp-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.cp-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: 10px;
  left: -20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
}

.cp-v2-hero-icon {
  position: absolute;
  right: 12px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  opacity: 0.12;
}

.cp-v2-hero-icon path,
.cp-v2-hero-icon rect {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cp-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.cp-v2-nav .back,
.cp-v2-nav .title {
  color: #fff !important;
}

.cp-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.cp-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.cp-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.cp-v2-hero-body h1 {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.9;
}

.cp-v2-balance {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
}

.cp-v2-balance-num {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, #f0d060 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cp-v2-balance-unit {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.cp-v2-hero-sub {
  margin: 10px 0 0;
  font-size: 12px;
  opacity: 0.78;
  line-height: 1.5;
}

.cp-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: -20px 14px 0;
  position: relative;
  z-index: 3;
}

.cp-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 4px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.1);
  color: var(--ms-ink);
  text-align: center;
}

.cp-v2-stat .lab {
  font-size: 10px;
  color: var(--ms-muted);
  line-height: 1.3;
}

.cp-v2-stat .val {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  color: var(--ms-ink);
}

.cp-v2-stat .val.gold {
  color: #c89600;
}

.cp-v2-tabs-wrap {
  margin: 14px 12px 0;
  padding: 4px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30, 45, 58, 0.06);
}

.cp-v2-tabs {
  display: flex;
  gap: 4px;
}

.cp-v2-tab {
  flex: 1;
  padding: 9px 8px;
  border: 0;
  background: transparent;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7c88;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.cp-v2-tab.on {
  color: #fff;
  background: linear-gradient(135deg, #4E6274 0%, #3a5060 100%);
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.35);
}

.cp-v2-body {
  padding: 12px 14px 0;
}

.cp-v2-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-v2-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13, 21, 32, 0.04);
  border: 1px solid rgba(78, 98, 116, 0.08);
}

.cp-v2-item.is-hidden {
  display: none;
}

.cp-v2-item.is-used {
  opacity: 0.82;
}

.cp-v2-item-ico {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.cp-v2-item-ico.is-active {
  background: linear-gradient(145deg, #c8960c 0%, #e8b923 55%, #d4a017 100%);
  box-shadow: 0 4px 12px rgba(200, 150, 12, 0.28);
}

.cp-v2-item-ico.is-used {
  background: linear-gradient(145deg, #9aa8b4 0%, #6b7c88 100%);
}

.cp-v2-item-per {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cp-v2-item-per small {
  font-size: 11px;
  font-weight: 700;
  margin-left: 1px;
}

.cp-v2-item-main {
  flex: 1;
  min-width: 0;
}

.cp-v2-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.cp-v2-item-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #152530;
  line-height: 1.4;
}

.cp-v2-tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.cp-v2-tag.is-active {
  background: rgba(200, 150, 12, 0.12);
  color: #b8860b;
}

.cp-v2-tag.is-used {
  background: rgba(107, 124, 136, 0.12);
  color: #6b7c88;
}

.cp-v2-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 8px;
  font-size: 11px;
  color: #8a9aa5;
  line-height: 1.45;
}

.cp-v2-item-meta em {
  font-style: normal;
  color: #b0bcc4;
  margin-right: 4px;
}

.cp-v2-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13, 21, 32, 0.04);
  border: 1px solid rgba(78, 98, 116, 0.08);
}

.cp-v2-empty.is-hidden {
  display: none;
}

.cp-v2-empty svg {
  width: 48px;
  height: 48px;
  opacity: 0.35;
}

.cp-v2-empty svg path,
.cp-v2-empty svg rect {
  fill: none;
  stroke: #4E6274;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cp-v2-empty p {
  margin: 14px 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #4E6274;
}

.cp-v2-empty span {
  font-size: 12px;
  color: #9aa8b4;
  line-height: 1.5;
}

.cp-v2-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-width: 148px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4E6274, #3a4f60);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(78, 98, 116, 0.28);
}

.cp-v2-rules {
  margin-top: 12px;
  padding: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(13, 21, 32, 0.04);
  border: 1px solid rgba(78, 98, 116, 0.08);
}

.cp-v2-rules-hd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #4E6274;
}

.cp-v2-rules-hd svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.cp-v2-rules-hd svg path,
.cp-v2-rules-hd svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cp-v2-rules-list {
  margin: 0;
  padding: 0 0 0 16px;
  font-size: 12px;
  color: #6b7c8a;
  line-height: 1.65;
}

.cp-v2-rules-list li {
  margin-bottom: 6px;
}

.cp-v2-rules-list li:last-child {
  margin-bottom: 0;
}

.cp-v2-rules-list a {
  color: #4E6274;
  font-weight: 600;
  text-decoration: none;
}

.cp-v2-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  padding: 10px 14px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(213, 222, 228, 0.9);
  box-shadow: 0 -8px 24px rgba(30, 45, 58, 0.06);
}

.cp-v2-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4E6274 0%, #3a4f60 100%);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(78, 98, 116, 0.28);
}

.cp-v2-submit:active {
  opacity: 0.92;
}

@media (max-width: 360px) {
  .cp-v2-balance-num {
    font-size: 34px;
  }
  .cp-v2-stat .val {
    font-size: 11px;
  }
  .cp-v2-tab {
    font-size: 12px;
    padding: 8px 4px;
  }
}

/* ══ 启动页 / 登录 / 注册 v2（全新界面） ══ */
.auth-v2-splash {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: calc(48px + env(safe-area-inset-top, 0px)) 28px calc(52px + env(safe-area-inset-bottom, 0px));
  overflow: hidden;
  background: #0a0e17;
  color: #fff;
}

.auth-v2-splash__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  animation: auth-v2-splash-zoom 8s ease-out forwards;
}

.auth-v2-splash__bg.is-default {
  background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 38%, #312e81 68%, #0f172a 100%);
}

.auth-v2-splash__bg.is-default::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.28) 0%, transparent 45%);
}

.auth-v2-splash__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 23, 0.15) 0%, rgba(10, 14, 23, 0.55) 55%, rgba(10, 14, 23, 0.88) 100%);
}

.auth-v2-splash__center {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.auth-v2-splash__logo-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  animation: auth-v2-splash-pop 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-v2-splash__logo-ring img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 16px;
}

.auth-v2-splash__foot {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  animation: auth-v2-splash-rise 0.8s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-v2-splash__kicker {
  font-size: 10px;
  letter-spacing: 0.22em;
  opacity: 0.65;
  margin-bottom: 6px;
}

.auth-v2-splash__name {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.auth-v2-splash__slogan {
  margin-top: 8px;
  font-size: 13px;
  opacity: 0.72;
  line-height: 1.5;
}

.auth-v2-splash__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.auth-v2-splash__loader span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  animation: auth-v2-splash-dot 1.2s ease-in-out infinite;
}

.auth-v2-splash__loader span:nth-child(2) { animation-delay: 0.15s; }
.auth-v2-splash__loader span:nth-child(3) { animation-delay: 0.3s; }

.auth-v2-splash.is-leaving {
  opacity: 0;
  transition: opacity 0.35s ease;
}

@keyframes auth-v2-splash-zoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

@keyframes auth-v2-splash-pop {
  from { opacity: 0; transform: scale(0.82); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes auth-v2-splash-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes auth-v2-splash-dot {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1); }
}

.auth-v2-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: calc(20px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px));
  background: #f0f2f8;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(99, 102, 241, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(168, 85, 247, 0.14) 0%, transparent 55%);
}

.auth-v2-head {
  flex-shrink: 0;
  padding: 12px 4px 20px;
  text-align: center;
}

.auth-v2-head-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.08);
}

.auth-v2-head-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.auth-v2-head-kicker {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: #6366f1;
  font-weight: 600;
}

.auth-v2-head h1 {
  margin: 6px 0 0;
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.auth-v2-head p {
  margin: 8px 0 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

.auth-v2-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 18px 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.06);
}

.auth-v2-card-title {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
}

.auth-v2-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-v2-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

.auth-v2-input {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.auth-v2-input:focus-within {
  background: #fff;
  border-color: #818cf8;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.auth-v2-input svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  stroke: #94a3b8;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-v2-input:focus-within svg {
  stroke: #6366f1;
}

.auth-v2-input input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #0f172a;
}

.auth-v2-input input::placeholder {
  color: #94a3b8;
  font-size: 14px;
}

.auth-v2-code-btn {
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
}

.auth-v2-code-btn.is-wait {
  color: #94a3b8;
  background: #f1f5f9;
}

.auth-v2-captcha {
  flex-shrink: 0;
  width: 88px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
}

.auth-v2-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
  cursor: pointer;
}

.auth-v2-submit:active {
  transform: scale(0.98);
  opacity: 0.92;
}

.auth-v2-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 13px;
}

.auth-v2-links span {
  color: #94a3b8;
}

.auth-v2-links a {
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
}

.auth-v2-foot {
  flex-shrink: 0;
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.5;
}

.auth-v2-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.auth-v2-perk {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.08);
  color: #4f46e5;
  font-size: 11px;
  font-weight: 600;
}

.auth-v2-perk svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 360px) {
  .auth-v2-splash__name {
    font-size: 28px;
  }
  .auth-v2-head h1 {
    font-size: 22px;
  }
  .auth-v2-card {
    padding: 18px 14px 16px;
  }
}

/* ══ 资讯 v2 ══ */
.news-v2-page {
  min-height: 100dvh;
  padding-bottom: calc(var(--app-footer-h, 56px) + env(safe-area-inset-bottom) + 16px);
  background: var(--ms-bg);
}

.news-v2-page--detail {
  padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
}

.news-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 32px;
  background: var(--ms-teal);
  color: #fff;
}

.news-v2-hero--detail {
  padding-bottom: 28px;
}

.news-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.news-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.news-v2-orb--1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -40px;
}

.news-v2-orb--2 {
  width: 130px;
  height: 130px;
  bottom: 0;
  left: -30px;
}

.news-v2-hero-icon {
  position: absolute;
  right: 10px;
  bottom: 18px;
  width: 72px;
  height: 72px;
  opacity: 0.12;
}

.news-v2-hero-icon path {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.news-v2-nav .back,
.news-v2-nav .title {
  color: #fff !important;
}

.news-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.news-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.news-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.78;
}

.news-v2-title {
  margin: 6px 0 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0.03em;
  color: #fff;
}

.news-v2-title--sm {
  font-size: 24px;
}

.news-v2-hero-sub {
  margin: 10px 0 0;
  max-width: 280px;
  font-size: 12px;
  opacity: 0.82;
  line-height: 1.55;
}

.news-v2-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.88;
}

.news-v2-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.news-v2-detail-meta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

.news-v2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: -18px 14px 0;
  position: relative;
  z-index: 3;
}

.news-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 6px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.1);
  color: var(--ms-ink);
}

.news-v2-stat .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.news-v2-stat .ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--ms-teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-v2-stat .val {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.news-v2-stat .lab {
  font-size: 10px;
  color: var(--ms-muted, #7a8494);
}

.news-v2-body {
  padding: 14px 14px 0;
}

.news-v2-body--detail {
  margin-top: -12px;
  position: relative;
  z-index: 2;
}

.news-v2-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-v2-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.08);
  border: 1px solid rgba(213, 222, 228, 0.55);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.news-v2-card:active {
  transform: scale(0.985);
  box-shadow: 0 2px 10px rgba(30, 45, 58, 0.06);
}

.news-v2-card-main {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 12px;
}

.news-v2-card-thumb {
  flex-shrink: 0;
  width: 88px;
  height: 66px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(78, 98, 116, 0.08);
}

.news-v2-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-v2-card-text {
  flex: 1;
  min-width: 0;
}

.news-v2-card-badges {
  min-height: 0;
  margin-bottom: 4px;
}

.news-v2-badge {
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.news-v2-badge.is-new {
  background: rgba(47, 124, 246, 0.12);
  color: #1a5fd4;
}

.news-v2-badge.is-hot {
  background: rgba(78, 98, 116, 0.14);
  color: var(--ms-teal);
}

.news-v2-card-title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ms-ink);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.news-v2-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--ms-muted, #7a8494);
}

.news-v2-card-time,
.news-v2-card-views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.news-v2-card-meta svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.75;
}

.news-v2-card-go {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--ms-teal);
  white-space: nowrap;
}

.news-v2-pager {
  margin-top: 14px;
  padding: 14px 12px;
  border-radius: 16px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.08);
  border: 1px solid rgba(213, 222, 228, 0.55);
}

.news-v2-pager-info {
  text-align: center;
  font-size: 12px;
  color: var(--ms-muted, #7a8494);
  margin-bottom: 12px;
}

.news-v2-pager-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.news-v2-pager-btns a,
.news-v2-pager-btns span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 13px;
  text-decoration: none;
  box-sizing: border-box;
}

.news-v2-pager-btns a {
  background: var(--ms-teal);
  color: #fff;
  font-weight: 600;
}

.news-v2-pager-btns span.is-disabled {
  background: #eef1f4;
  color: #a0a7b3;
}

.news-v2-pager-num {
  min-width: 88px;
  background: rgba(78, 98, 116, 0.08);
  color: var(--ms-ink);
  font-weight: 600;
}

.news-v2-empty {
  margin-top: 20px;
  padding: 36px 20px;
  border-radius: 16px;
  background: var(--ms-card);
  text-align: center;
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.08);
}

.news-v2-empty-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(78, 98, 116, 0.1);
  margin-bottom: 12px;
}

.news-v2-empty-ico svg {
  width: 24px;
  height: 24px;
  stroke: var(--ms-teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-v2-empty-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ms-ink);
}

.news-v2-empty-sub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ms-muted, #7a8494);
}

.news-v2-empty-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--ms-teal);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.news-v2-article {
  padding: 20px 16px 22px;
  border-radius: 18px;
  background: var(--ms-card);
  box-shadow: 0 6px 24px rgba(30, 45, 58, 0.1);
  border: 1px solid rgba(213, 222, 228, 0.55);
}

.news-v2-article-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--ms-ink);
  line-height: 1.4;
  word-break: break-word;
}

.news-v2-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(213, 222, 228, 0.65);
  font-size: 12px;
  color: var(--ms-muted, #7a8494);
}

.news-v2-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.news-v2-article-meta span::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ms-teal);
  opacity: 0.7;
}

.news-v2-article-body {
  margin-top: 16px;
  font-size: 15px;
  color: var(--ms-ink);
  line-height: 1.85;
  word-break: break-word;
  overflow-x: hidden;
}

.news-v2-article-body img {
  max-width: 100% !important;
  width: 100%;
  height: auto !important;
  display: block;
  margin: 12px auto;
  border-radius: 12px;
}

.news-v2-article-body p {
  margin: 0 0 12px;
}

.news-v2-article-body video,
.news-v2-article-body iframe {
  max-width: 100%;
}

.news-v2-article-body table {
  width: 100% !important;
  display: block;
  overflow-x: auto;
}

.news-v2-article-body a {
  color: var(--ms-teal);
}

.news-v2-nav-block {
  margin-top: 12px;
  border-radius: 16px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.08);
  border: 1px solid rgba(213, 222, 228, 0.55);
  overflow: hidden;
}

.news-v2-nav-hd {
  padding: 12px 16px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ms-ink);
}

.news-v2-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid rgba(213, 222, 228, 0.55);
  text-decoration: none;
  color: var(--ms-ink);
  -webkit-tap-highlight-color: transparent;
}

.news-v2-nav-item:active {
  background: rgba(78, 98, 116, 0.04);
}

.news-v2-nav-item.is-off {
  color: var(--ms-muted, #7a8494);
  background: rgba(238, 241, 244, 0.5);
}

.news-v2-nav-item .lab {
  flex-shrink: 0;
  width: 42px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ms-teal);
}

.news-v2-nav-item.is-off .lab {
  color: var(--ms-muted, #7a8494);
}

.news-v2-nav-item .ttl {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
}

.news-v2-nav-item .arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--ms-teal);
  opacity: 0.6;
}

.news-v2-foot-actions {
  display: flex;
  gap: 0;
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.08);
  border: 1px solid rgba(213, 222, 228, 0.55);
}

.news-v2-foot-actions a {
  flex: 1;
  padding: 13px 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ms-teal);
  text-decoration: none;
  background: rgba(78, 98, 116, 0.06);
  border-right: 1px solid rgba(213, 222, 228, 0.55);
  -webkit-tap-highlight-color: transparent;
}

.news-v2-foot-actions a:last-child {
  border-right: 0;
}

.news-v2-foot-actions a:active {
  background: rgba(138, 106, 24, 0.12);
}

@media (max-width: 360px) {
  .news-v2-title {
    font-size: 28px;
  }

  .news-v2-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .news-v2-stat {
    padding: 10px 4px;
  }

  .news-v2-stat .val {
    font-size: 12px;
  }
}

/* ══ 邀请 v2 ══ */
.share-v2-page {
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
  background: var(--ms-bg);
}

.share-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 36px;
  background: var(--ms-teal);
  color: #fff;
}

.share-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.share-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.share-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.share-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: -10px;
  left: -24px;
}

.share-v2-hero-icon {
  position: absolute;
  right: 8px;
  bottom: 16px;
  width: 76px;
  height: 76px;
  opacity: 0.12;
}

.share-v2-hero-icon path,
.share-v2-hero-icon circle {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.share-v2-nav .back,
.share-v2-nav .title {
  color: #fff !important;
}

.share-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.share-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.share-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.78;
}

.share-v2-title {
  margin: 6px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: #fff;
}

.share-v2-hero-sub {
  margin: 10px 0 0;
  max-width: 280px;
  font-size: 12px;
  opacity: 0.82;
  line-height: 1.55;
}

.share-v2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: -18px 14px 0;
  position: relative;
  z-index: 3;
}

.share-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 6px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.1);
  color: var(--ms-ink);
}

.share-v2-stat .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.share-v2-stat .ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--ms-teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-v2-stat .val {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.share-v2-stat .lab {
  font-size: 10px;
  color: var(--ms-muted, #7a8494);
}

.share-v2-body {
  padding: 14px 14px 0;
}

.share-v2-card {
  border-radius: 16px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.08);
  border: 1px solid rgba(213, 222, 228, 0.55);
}

.share-v2-card--main {
  padding: 16px 14px 18px;
  text-align: center;
}

.share-v2-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.share-v2-card-tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ms-teal);
  background: rgba(78, 98, 116, 0.1);
}

.share-v2-card-hint {
  font-size: 12px;
  color: var(--ms-muted, #7a8494);
}

.share-v2-qr-wrap {
  display: inline-flex;
  padding: 12px;
  border-radius: 16px;
  background: rgba(78, 98, 116, 0.06);
  border: 1px solid rgba(78, 98, 116, 0.12);
}

.share-v2-qr,
.share-v2-qr img,
.share-v2-qr canvas {
  width: 176px !important;
  height: 176px !important;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.share-v2-code {
  margin-top: 16px;
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(78, 98, 116, 0.05);
  border: 1px dashed rgba(78, 98, 116, 0.22);
}

.share-v2-code-lab {
  font-size: 12px;
  color: var(--ms-muted, #7a8494);
  margin-bottom: 6px;
}

.share-v2-code-val {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--app-display, ui-monospace, monospace);
  color: var(--ms-teal);
  letter-spacing: 2px;
  word-break: break-all;
}

.share-v2-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.share-v2-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.share-v2-btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-v2-btn span {
  flex-shrink: 0;
}

.share-v2-btn:active {
  transform: scale(0.98);
  opacity: 0.92;
}

.share-v2-btn--primary {
  background: var(--ms-teal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(78, 98, 116, 0.28);
}

.share-v2-btn--ghost {
  background: rgba(78, 98, 116, 0.08);
  color: var(--ms-teal);
  border: 1px solid rgba(78, 98, 116, 0.18);
}

.share-v2-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(78, 98, 116, 0.06);
  border: 1px solid rgba(78, 98, 116, 0.12);
}

.share-v2-notice svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  stroke: var(--ms-teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-v2-notice p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ms-sub, #5a6573);
}

.share-v2-hub {
  margin-top: 12px;
}

.share-v2-hub-item--solo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: 0 4px 14px rgba(30, 45, 58, 0.06);
  border: 1px solid rgba(213, 222, 228, 0.55);
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.share-v2-hub-item--solo:active {
  transform: scale(0.985);
  box-shadow: 0 2px 8px rgba(30, 45, 58, 0.05);
}

.share-v2-hub-ico {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(78, 98, 116, 0.1);
}

.share-v2-hub-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--ms-teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.share-v2-hub-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.share-v2-hub-text .t {
  font-size: 13px;
  font-weight: 700;
  color: var(--ms-ink);
  line-height: 1.3;
}

.share-v2-hub-text .d {
  font-size: 10px;
  color: var(--ms-muted, #7a8494);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.share-v2-hub-go {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ms-teal);
  opacity: 0.7;
}

.share-v2-rules {
  margin-top: 12px;
  padding: 16px 14px;
  border-radius: 16px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.08);
  border: 1px solid rgba(213, 222, 228, 0.55);
}

.share-v2-rules-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.share-v2-rules-head h2 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ms-ink);
}

.share-v2-rules-tag {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ms-teal);
  background: rgba(78, 98, 116, 0.1);
}

.share-v2-rules-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-v2-rules-list li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 16px;
  font-size: 13px;
  color: var(--ms-sub, #5a6573);
  line-height: 1.55;
}

.share-v2-rules-list li:last-child {
  margin-bottom: 0;
}

.share-v2-rules-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--ms-teal);
}

@media (max-width: 360px) {
  .share-v2-stats {
    gap: 6px;
  }

  .share-v2-stat {
    padding: 10px 4px;
  }

  .share-v2-stat .val {
    font-size: 12px;
  }

  .share-v2-actions {
    gap: 8px;
  }

  .share-v2-btn {
    min-height: 42px;
    padding: 0 10px;
    font-size: 13px;
  }

  .share-v2-btn svg {
    width: 15px;
    height: 15px;
  }

  .share-v2-hub-text .d {
    white-space: normal;
  }
}

/* ══ 见证卡 v3 ══ */
.card-v3-page {
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
  background: var(--ms-bg);
}

.card-v3-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 28px;
  background: var(--ms-teal);
  color: #fff;
}

.card-v3-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.card-v3-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.card-v3-orb--1 {
  width: 160px;
  height: 160px;
  top: -36px;
  right: -24px;
}

.card-v3-orb--2 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: -20px;
}

.card-v3-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.card-v3-nav .back,
.card-v3-nav .title {
  color: #fff !important;
}

.card-v3-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.card-v3-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.card-v3-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.78;
}

.card-v3-title {
  margin: 6px 0 0;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: #fff;
}

.card-v3-hero-sub {
  margin: 10px 0 0;
  max-width: 300px;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.88;
}

.card-v3-body {
  padding: 14px 14px 0;
}

.card-v3-stage {
  margin-top: 2px;
}

.card-v3-stage-frame {
  padding: 10px;
  border-radius: 18px;
  background: var(--ms-card);
  box-shadow: 0 6px 24px rgba(30, 45, 58, 0.1);
  border: 1px solid rgba(213, 222, 228, 0.55);
}

.card-v3-stage-frame canvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  vertical-align: top;
}

.card-v3-stage-hint {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--ms-muted, #7a8494);
}

.card-v3-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--ms-card);
  box-shadow: 0 4px 16px rgba(30, 45, 58, 0.06);
  border: 1px solid rgba(213, 222, 228, 0.55);
}

.card-v3-code {
  flex: 1;
  min-width: 0;
}

.card-v3-code-lab {
  display: block;
  font-size: 11px;
  color: var(--ms-muted, #7a8494);
}

.card-v3-code-val {
  display: block;
  margin-top: 2px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ms-teal);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-v3-meta--link {
  margin-top: 10px;
}

.card-v3-link-val {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  word-break: break-all;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-v3-code-copy {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ms-teal);
  background: rgba(78, 98, 116, 0.08);
  border: 1px solid rgba(78, 98, 116, 0.16);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.card-v3-code-copy svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-v3-code-copy:active {
  opacity: 0.88;
}

.card-v3-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.card-v3-actions--solo {
  grid-template-columns: 1fr;
}

.card-v3-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.card-v3-btn svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-v3-btn span {
  flex-shrink: 0;
}

.card-v3-btn:active {
  transform: scale(0.98);
  opacity: 0.92;
}

.card-v3-btn--primary {
  background: var(--ms-teal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(78, 98, 116, 0.28);
}

.card-v3-btn--ghost {
  background: rgba(78, 98, 116, 0.08);
  color: var(--ms-teal);
  border: 1px solid rgba(78, 98, 116, 0.18);
}

.card-v3-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(78, 98, 116, 0.06);
  border: 1px solid rgba(78, 98, 116, 0.12);
}

.card-v3-notice svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  stroke: var(--ms-teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-v3-notice p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ms-muted, #7a8494);
}

#qr_hide {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 160px;
  height: 160px;
}

@media (max-width: 360px) {
  .card-v3-title {
    font-size: 22px;
  }

  .card-v3-code-val {
    font-size: 17px;
  }

  .card-v3-actions {
    grid-template-columns: 1fr;
  }

  .card-v3-btn {
    min-height: 42px;
    font-size: 13px;
  }
}

/* ══ 推荐名单 v2 ══ */
.team-v2-page {
  min-height: 100dvh;
  padding-bottom: calc(env(safe-area-inset-bottom) + 24px);
  background: var(--ms-bg);
}

.team-v2-hero {
  position: relative;
  overflow: hidden;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 16px 36px;
  background: var(--ms-teal);
  color: #fff;
}

.team-v2-hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.team-v2-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.team-v2-orb--1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
}

.team-v2-orb--2 {
  width: 120px;
  height: 120px;
  bottom: -10px;
  left: -24px;
}

.team-v2-hero-icon {
  position: absolute;
  right: 8px;
  bottom: 16px;
  width: 76px;
  height: 76px;
  opacity: 0.12;
}

.team-v2-hero-icon path,
.team-v2-hero-icon circle {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-v2-nav {
  position: relative;
  z-index: 2;
  background: transparent !important;
  box-shadow: none !important;
}

.team-v2-nav .back,
.team-v2-nav .title {
  color: #fff !important;
}

.team-v2-nav .back {
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.team-v2-hero-body {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.team-v2-kicker {
  font-size: 10px;
  letter-spacing: 0.16em;
  opacity: 0.78;
}

.team-v2-title {
  margin: 6px 0 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.03em;
  color: #fff;
}

.team-v2-hero-sub {
  margin: 10px 0 0;
  max-width: 300px;
  font-size: 12px;
  opacity: 0.82;
  line-height: 1.55;
}

.team-v2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: -18px 14px 0;
  position: relative;
  z-index: 3;
}

.team-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 68px;
  padding: 10px 6px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(213, 222, 228, 0.75);
  box-shadow: 0 8px 24px rgba(78, 98, 116, 0.08);
}

.team-v2-stat .val {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ms-teal, #4e6274);
  font-family: var(--app-display, system-ui);
}

.team-v2-stat .lab {
  font-size: 11px;
  color: var(--app-muted, #8a96a3);
}

.team-v2-body {
  padding: 14px 14px 0;
}

.team-v2-card {
  margin-bottom: 12px;
  padding: 16px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(213, 222, 228, 0.65);
  box-shadow: 0 6px 20px rgba(78, 98, 116, 0.06);
}

.team-v2-rate-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.team-v2-rate-head strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--app-ink, #2b3640);
}

.team-v2-rate-tag {
  height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  background: rgba(78, 98, 116, 0.08);
  color: var(--ms-teal, #4e6274);
}

.team-v2-rate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.team-v2-rate-cell {
  text-align: center;
  padding: 10px 6px;
  border-radius: 12px;
  background: linear-gradient(160deg, #f8fafb, #f2f6f8);
  border: 1px solid rgba(213, 222, 228, 0.55);
}

.team-v2-rate-cell .gen {
  display: block;
  font-size: 11px;
  color: var(--app-muted, #8a96a3);
}

.team-v2-rate-cell .pct {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ms-teal, #4e6274);
  font-family: var(--app-display, system-ui);
}

.team-v2-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.team-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.team-v2-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.team-v2-btn svg path,
.team-v2-btn svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-v2-btn:active {
  transform: scale(0.98);
  opacity: 0.92;
}

.team-v2-btn--primary {
  background: var(--ms-teal, #4e6274);
  color: #fff;
  box-shadow: 0 6px 16px rgba(78, 98, 116, 0.22);
}

.team-v2-btn--ghost {
  background: #eef4f6;
  color: var(--ms-teal, #4e6274);
}

.team-v2-hub {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(213, 222, 228, 0.65);
  box-shadow: 0 6px 20px rgba(78, 98, 116, 0.06);
  text-decoration: none;
  color: inherit;
}

.team-v2-hub:active {
  transform: scale(0.99);
  opacity: 0.95;
}

.team-v2-hub-ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(78, 98, 116, 0.08);
}

.team-v2-hub-ico svg {
  width: 20px;
  height: 20px;
}

.team-v2-hub-ico svg path,
.team-v2-hub-ico svg circle {
  fill: none;
  stroke: var(--ms-teal, #4e6274);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-v2-hub-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-v2-hub-text .t {
  font-size: 15px;
  font-weight: 700;
  color: var(--app-ink, #2b3640);
}

.team-v2-hub-text .d {
  font-size: 12px;
  color: var(--app-muted, #8a96a3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-v2-hub-go {
  font-size: 22px;
  line-height: 1;
  color: var(--app-muted, #8a96a3);
}

.team-v2-list-card {
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(213, 222, 228, 0.65);
  box-shadow: 0 6px 20px rgba(78, 98, 116, 0.06);
}

.team-v2-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
  padding: 4px;
  border-radius: 12px;
  background: #f3f6f8;
}

.team-v2-tab {
  height: 36px;
  border: none;
  border-radius: 9px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  color: var(--app-muted, #8a96a3);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.team-v2-tab.is-active {
  background: #fff;
  color: var(--ms-teal, #4e6274);
  box-shadow: 0 2px 8px rgba(78, 98, 116, 0.1);
}

.team-v2-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(213, 222, 228, 0.55);
}

.team-v2-person:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.team-v2-person:first-child {
  padding-top: 0;
}

.team-v2-person img {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  background: #eef2f4;
  border: 1px solid rgba(213, 222, 228, 0.65);
}

.team-v2-person-main {
  flex: 1;
  min-width: 0;
}

.team-v2-person-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.team-v2-person-top .name {
  font-size: 15px;
  font-weight: 700;
  color: var(--app-ink, #2b3640);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-v2-person-top .badge {
  flex-shrink: 0;
  height: 20px;
  padding: 0 7px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  background: rgba(78, 98, 116, 0.1);
  color: var(--ms-teal, #4e6274);
}

.team-v2-person-top .badge--2 {
  background: rgba(90, 140, 120, 0.12);
  color: #4a7c66;
}

.team-v2-person-top .badge--3 {
  background: rgba(120, 130, 150, 0.12);
  color: #667085;
}

.team-v2-person .meta {
  margin-top: 2px;
  font-size: 12px;
  color: var(--app-sub, #667085);
}

.team-v2-person .time {
  margin-top: 4px;
  font-size: 11px;
  color: var(--app-muted, #8a96a3);
}

.team-v2-empty {
  padding: 28px 12px;
  text-align: center;
}

.team-v2-empty svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: block;
  opacity: 0.35;
}

.team-v2-empty svg path,
.team-v2-empty svg circle {
  fill: none;
  stroke: var(--ms-teal, #4e6274);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-v2-empty p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--app-sub, #667085);
}

.team-v2-empty .sub {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--app-muted, #8a96a3);
}

.team-v2-empty a {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ms-teal, #4e6274);
  text-decoration: none;
}

.team-v2-gift {
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fbfc 0%, #eef6f2 100%);
  border: 1px solid rgba(120, 170, 140, 0.22);
}

.team-v2-gift-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--app-ink, #2b3640);
}

.team-v2-gift-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.team-v2-gift-chip {
  height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  background: #fff;
  color: #4a7c66;
  border: 1px solid rgba(120, 170, 140, 0.25);
}

.team-v2-gift-note {
  margin: 10px 0 0;
  font-size: 11px;
  line-height: 1.55;
  color: var(--app-muted, #8a96a3);
}

.team-v2-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(78, 98, 116, 0.06);
  border: 1px solid rgba(213, 222, 228, 0.55);
}

.team-v2-notice svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.team-v2-notice svg path,
.team-v2-notice svg circle {
  fill: none;
  stroke: var(--app-muted, #8a96a3);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-v2-notice p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--app-muted, #8a96a3);
}

@media (max-width: 360px) {
  .team-v2-title {
    font-size: 24px;
  }

  .team-v2-stat .val {
    font-size: 20px;
  }

  .team-v2-actions {
    grid-template-columns: 1fr;
  }

  .team-v2-hub-text .d {
    white-space: normal;
  }
}
