/* ═══════════════════════════════════════════════════════════════
   AETHER · 宇树科技全站重构（炭灰 / 浅灰 / 钢蓝 / 深海军蓝）
   全新布局体系 — 底栏导航 / 分屏登录 / 杂志式首页 / 扁平账户页
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ae-charcoal: #4A4A4A;
  --ae-offwhite: #EDEDED;
  --ae-steel: #4E6274;
  --ae-navy: #0D1520;
  --ae-white: #FFFFFF;
  --ae-line: rgba(78, 98, 116, 0.14);
  --ae-line-strong: rgba(13, 21, 32, 0.22);
  --ae-nav-h: 52px;
  --ae-nav-bump: 0px;
  --ae-font: "PingFang SC", "Helvetica Neue", "Noto Sans SC", sans-serif;
  --ae-display: "PingFang SC", "Helvetica Neue", sans-serif;
  --app-bg: var(--ae-offwhite);
  --app-footer-h: 56px;
  --app-nav-h: 48px;
  --app-primary: var(--ae-steel);
  --app-primary-dark: var(--ae-navy);
  --app-ink: var(--ae-navy);
  --app-sub: var(--ae-charcoal);
  --app-muted: rgba(74, 74, 74, 0.65);
  --app-line: var(--ae-line);
  --app-card: var(--ae-white);
  --app-radius: 0;
  --app-shadow: none;
  --app-shadow-sm: none;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ae-offwhite) !important;
  color: var(--ae-navy);
  font-family: var(--ae-font);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

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

/* ── 底栏主导航（五 Tab 统一线框样式） ── */
.ae-shell-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: calc(var(--ae-nav-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: var(--ae-white);
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(13, 21, 32, 0.06);
  box-shadow: 0 -2px 12px rgba(13, 21, 32, 0.05);
}

.ae-shell-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: rgba(74, 74, 74, 0.42);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  background: transparent;
  padding: 6px 2px;
  min-width: 0;
  transition: color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.ae-shell-nav__item svg,
.ae-shell-nav__item .ae-nav-ico {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.ae-shell-nav__item span:last-child {
  line-height: 1.1;
  white-space: nowrap;
}

.ae-shell-nav__item.is-active {
  color: var(--ae-steel);
  font-weight: 600;
}

.ae-shell-nav__item.is-active svg,
.ae-shell-nav__item.is-active .ae-nav-ico {
  stroke: var(--ae-steel);
}

.ae-shell-nav__item:active {
  opacity: 0.72;
}

/* 旧底栏隐藏 */
.aui-footer,
footer.aui-footer,
.aui-footer--mk { display: none !important; }

/* ── 子页顶栏 ── */
.app-nav,
.app-head {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--app-nav-h) !important;
  padding: 0 48px !important;
  background: var(--ae-white) !important;
  border-bottom: 1px solid var(--ae-line) !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.app-nav .title,
.app-head .title {
  text-align: center !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  color: var(--ae-navy) !important;
  text-transform: uppercase;
}

.app-nav .back,
.app-head .back {
  position: absolute !important;
  left: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: auto !important;
  height: auto !important;
  padding: 8px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  color: var(--ae-steel) !important;
}

.app-page {
  padding-bottom: calc(var(--ae-nav-h) + var(--ae-nav-bump) + 16px + env(safe-area-inset-bottom, 0px)) !important;
  background: var(--ae-offwhite) !important;
}

/* ── 按钮 ── */
.app-btn,
.lzw-auth-btn,
.lux-btn,
button.app-btn,
a.app-btn,
.ae-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  min-height: 50px;
  border: 1px solid var(--ae-navy);
  border-radius: 0;
  background: var(--ae-navy);
  color: var(--ae-offwhite);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  cursor: pointer;
  box-shadow: none;
  text-decoration: none;
}

.ae-btn--ghost {
  background: transparent;
  color: var(--ae-navy);
}

.ae-btn:active,
.app-btn:active { opacity: 0.82; transform: none !important; }

/* ══ 登录 / 注册 / 找回 — 分屏布局 ══ */
.ae-auth {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 38% 1fr;
  background: var(--ae-white);
}

.ae-auth-side {
  background: var(--ae-navy);
  color: var(--ae-offwhite);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(24px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px));
}

.ae-auth-side__mark {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(237, 237, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ae-auth-side__mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ae-auth-side__title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 28px;
  font-weight: 200;
  letter-spacing: 0.35em;
  margin: auto 0;
  align-self: center;
}

.ae-auth-side__note {
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.45;
  line-height: 1.8;
}

.ae-auth-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px calc(32px + env(safe-area-inset-bottom, 0px));
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.ae-auth-main h2 {
  margin: 0 0 32px;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ae-navy);
}

.ae-field {
  margin-bottom: 22px;
}

.ae-field label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ae-charcoal);
  margin-bottom: 8px;
  opacity: 0.7;
}

.ae-field-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ae-line-strong);
  padding-bottom: 6px;
}

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

.ae-field-row input::placeholder { color: rgba(74, 74, 74, 0.35); }

.ae-field-row .ae-link,
.ae-field-row .get_code {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--ae-steel);
  text-decoration: none;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  padding-left: 12px;
}

.ae-field-row .captcha {
  height: 32px;
  margin-left: 12px;
  cursor: pointer;
  opacity: 0.85;
}

.ae-auth-links {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ae-charcoal);
}

.ae-auth-links a {
  color: var(--ae-steel);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.ae-auth-foot {
  margin-top: auto;
  padding-top: 24px;
  font-size: 10px;
  color: rgba(74, 74, 74, 0.45);
  letter-spacing: 0.06em;
  text-align: center;
}

@media (max-width: 520px) {
  .ae-auth {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .ae-auth-side {
    flex-direction: row;
    align-items: center;
    padding: calc(16px + env(safe-area-inset-top, 0px)) 20px 16px;
    gap: 16px;
  }
  .ae-auth-side__title {
    writing-mode: horizontal-tb;
    font-size: 18px;
    letter-spacing: 0.2em;
    margin: 0;
  }
  .ae-auth-side__note { display: none; }
}

/* ══ 启动页 ══ */
.ae-splash {
  min-height: 100vh;
  background: var(--ae-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--ae-offwhite);
}

.ae-splash__word {
  font-size: 11px;
  letter-spacing: 0.45em;
  text-indent: 0.45em;
  font-weight: 300;
  opacity: 0.55;
}

.ae-splash__line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--ae-steel), transparent);
  animation: ae-pulse 1.4s ease-in-out infinite;
}

@keyframes ae-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ══ 首页 — 杂志式 ══ */
.ae-home {
  min-height: 100vh;
  padding-bottom: calc(var(--ae-nav-h) + var(--ae-nav-bump) + 24px + env(safe-area-inset-bottom, 0px));
  background: var(--ae-offwhite);
}

.ae-home-head {
  padding: 20px 20px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.ae-home-head h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 200;
  letter-spacing: 0.08em;
  color: var(--ae-navy);
  line-height: 1.1;
}

.ae-home-head .ae-loc {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ae-charcoal);
  opacity: 0.55;
}

.ae-home-search {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--ae-line-strong);
  background: var(--ae-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ae-steel);
  text-decoration: none;
  font-size: 18px;
}

.ae-home-search-form {
  margin: 16px 20px 0;
  display: flex;
  border-bottom: 1px solid var(--ae-line-strong);
}

.ae-home-search-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 14px;
  outline: none;
  color: var(--ae-navy);
}

.ae-home-search-form button {
  border: none;
  background: transparent;
  color: var(--ae-steel);
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0 4px;
}

.ae-home-banner {
  margin: 20px 0 0;
  overflow: hidden;
}

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

.ae-home-banner .swiper-pagination-bullet {
  background: var(--ae-steel);
  opacity: 0.35;
}

.ae-home-banner .swiper-pagination-bullet-active { opacity: 1; }

/* 横向指标条 */
.ae-metrics {
  display: flex;
  gap: 0;
  margin: 24px 0 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-top: 1px solid var(--ae-line);
  border-bottom: 1px solid var(--ae-line);
}

.ae-metrics::-webkit-scrollbar { display: none; }

.ae-metric {
  flex: 0 0 33.33%;
  min-width: 110px;
  padding: 18px 16px;
  border-right: 1px solid var(--ae-line);
  text-decoration: none;
  color: inherit;
}

.ae-metric:last-child { border-right: none; }

.ae-metric .lab {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ae-charcoal);
  opacity: 0.55;
  margin-bottom: 8px;
}

.ae-metric .val {
  font-size: 20px;
  font-weight: 300;
  color: var(--ae-navy);
  letter-spacing: -0.02em;
}

.ae-metric .val small {
  font-size: 11px;
  margin-left: 2px;
  opacity: 0.5;
}

.ae-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ae-line);
  margin: 24px 20px 0;
}

.ae-actions a {
  background: var(--ae-white);
  padding: 16px 8px;
  text-align: center;
  text-decoration: none;
  color: var(--ae-navy);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.ae-actions a:first-child {
  background: var(--ae-navy);
  color: var(--ae-offwhite);
}

/* 公告 */
.ae-ticker {
  margin: 24px 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--ae-line);
  border-bottom: 1px solid var(--ae-line);
  cursor: pointer;
}

.ae-ticker .tag {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ae-steel);
  flex-shrink: 0;
}

.ae-ticker .scroll {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: var(--ae-charcoal);
  overflow: hidden;
}

.ae-ticker .more {
  font-size: 11px;
  color: var(--ae-steel);
  flex-shrink: 0;
}

/* Bento 分类 */
.ae-section {
  margin: 32px 20px 0;
}

.ae-section-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ae-section-hd h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ae-navy);
}

.ae-section-hd a {
  font-size: 11px;
  color: var(--ae-steel);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.ae-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--ae-line);
}

.ae-bento-item {
  background: var(--ae-white);
  padding: 20px 16px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100px;
}

.ae-bento-item:first-child {
  grid-row: span 2;
  background: var(--ae-navy);
  color: var(--ae-offwhite);
  justify-content: flex-end;
}

.ae-bento-item .ico {
  font-size: 24px;
  line-height: 1;
}

.ae-bento-item .ico img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.ae-bento-item .name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.ae-bento-item .tag {
  font-size: 10px;
  opacity: 0.5;
  letter-spacing: 0.04em;
}

/* 横向商品 */
.ae-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.ae-rail::-webkit-scrollbar { display: none; }

.ae-rail-item {
  flex: 0 0 140px;
  text-decoration: none;
  color: inherit;
}

.ae-rail-item .pic {
  aspect-ratio: 1;
  background: var(--ae-white);
  border: 1px solid var(--ae-line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 32px;
}

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

.ae-rail-item .title {
  margin-top: 8px;
  font-size: 12px;
  color: var(--ae-navy);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ae-rail-item .price {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ae-steel);
}

/* 发现区 — 合并原有多条 promo */
.ae-discover {
  margin: 32px 20px 0;
  border: 1px solid var(--ae-line-strong);
}

.ae-discover-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--ae-line);
}

.ae-discover-row:last-child { border-bottom: none; }

.ae-discover-row .t {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ae-navy);
}

.ae-discover-row .d {
  margin-top: 4px;
  font-size: 11px;
  color: var(--ae-charcoal);
  opacity: 0.55;
}

.ae-discover-row .go {
  font-size: 18px;
  color: var(--ae-steel);
  flex-shrink: 0;
  margin-left: 12px;
}

/* 新闻 */
.ae-news-list { margin-top: 8px; }

.ae-news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ae-line);
  cursor: pointer;
}

.ae-news-item .name {
  flex: 1;
  font-size: 13px;
  color: var(--ae-navy);
  line-height: 1.4;
}

.ae-news-item .time {
  font-size: 11px;
  color: var(--ae-charcoal);
  opacity: 0.45;
  flex-shrink: 0;
}

/* 视频 */
.ae-video {
  margin: 32px 20px 0;
  position: relative;
  border: 1px solid var(--ae-line-strong);
  line-height: 0;
}

.ae-video video {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.ae-video .ae-video-btn {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--ae-line);
  background: rgba(255,255,255,0.9);
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

/* ══ 我的页 ══ */
.ae-my {
  min-height: 100vh;
  padding-bottom: calc(var(--ae-nav-h) + var(--ae-nav-bump) + 24px + env(safe-area-inset-bottom, 0px));
}

.ae-my-top {
  background: var(--ae-navy);
  color: var(--ae-offwhite);
  padding: 24px 20px 28px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
}

.ae-my-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(237, 237, 237, 0.25);
  object-fit: cover;
}

.ae-my-name {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.ae-my-id {
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.45;
  letter-spacing: 0.06em;
}

.ae-my-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border: 1px solid rgba(237, 237, 237, 0.3);
  font-size: 9px;
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.ae-my-edit {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ae-offwhite);
  opacity: 0.6;
  text-decoration: none;
  border: 1px solid rgba(237, 237, 237, 0.25);
  padding: 6px 12px;
}

.ae-my-strip {
  display: flex;
  background: var(--ae-white);
  border-bottom: 1px solid var(--ae-line);
}

.ae-my-strip a {
  flex: 1;
  padding: 16px 8px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid var(--ae-line);
}

.ae-my-strip a:last-child { border-right: none; }

.ae-my-strip .num {
  display: block;
  font-size: 18px;
  font-weight: 300;
  color: var(--ae-navy);
}

.ae-my-strip .lab {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ae-charcoal);
  opacity: 0.55;
}

.ae-my-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ae-line);
  margin: 0;
}

.ae-my-grid a {
  background: var(--ae-white);
  padding: 16px 6px;
  text-align: center;
  text-decoration: none;
  color: var(--ae-navy);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.ae-my-grid .ico {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.ae-my-grid .ico img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* 资产 */
.ae-wallet {
  margin: 24px 20px 0;
  border: 1px solid var(--ae-line-strong);
}

.ae-wallet-cell {
  display: block;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--ae-line);
}

.ae-wallet-cell:last-child { border-bottom: none; }

.ae-wallet-cell .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.ae-wallet-cell .lab {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ae-charcoal);
  opacity: 0.55;
}

.ae-wallet-cell .go {
  font-size: 11px;
  color: var(--ae-steel);
}

.ae-wallet-cell .val {
  font-size: 22px;
  font-weight: 300;
  color: var(--ae-navy);
}

.ae-wallet-cell .val small {
  font-size: 12px;
  margin-left: 2px;
  opacity: 0.5;
}

.ae-wallet-cell.span2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 快捷 */
.ae-quick-row {
  display: flex;
  margin: 24px 20px 0;
  border: 1px solid var(--ae-line-strong);
}

.ae-quick-row a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  text-decoration: none;
  color: var(--ae-navy);
  font-size: 11px;
  letter-spacing: 0.06em;
  border-right: 1px solid var(--ae-line);
}

.ae-quick-row a:last-child { border-right: none; }

.ae-quick-row svg {
  width: 22px;
  height: 22px;
  stroke: var(--ae-steel);
  fill: none;
  stroke-width: 1.5;
}

/* 菜单 — 单一扁平列表 */
.ae-menu {
  margin: 32px 20px 0;
  border-top: 1px solid var(--ae-line-strong);
}

.ae-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ae-line);
  text-decoration: none;
  color: var(--ae-navy);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.ae-menu-item.danger { color: #9B3B3B; }

.ae-menu-item .ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--ae-steel);
  fill: none;
  stroke-width: 1.5;
}

.ae-menu-item.danger .ico svg { stroke: #9B3B3B; }

.ae-menu-item .arrow {
  margin-left: auto;
  font-size: 14px;
  color: var(--ae-charcoal);
  opacity: 0.35;
}

.ae-menu-group {
  padding: 20px 0 4px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ae-charcoal);
  opacity: 0.45;
}

/* ══ 旧类名兼容覆盖 ══ */
.lzw-auth, .lux-auth, .neo-auth-page { all: unset; display: block; }
.lzw-splash, .lux-splash { all: unset; }

.mk-top, .lux-home-head, .home-asset-panel, .pwb-gold-bar,
.home-quick, .home-more, .mk-section, .lzw-section,
.lzw-notice, .mk-profile-stats, .mk-feature-grid,
.lzw-asset-board, .lzw-quick, .lzw-menu-block, .lzw-my-hero {
  /* 由 ae-* 页面替代；旧页面仍保留基础可读性 */
}

.lzw-menu-block {
  margin: 16px 12px !important;
  border: 1px solid var(--ae-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: var(--ae-white) !important;
}

.lzw-menu-item {
  border-bottom: 1px solid var(--ae-line) !important;
  padding: 14px 16px !important;
}

.lzw-menu-hd {
  padding: 12px 16px !important;
  font-size: 9px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  background: var(--ae-offwhite) !important;
  border-bottom: 1px solid var(--ae-line) !important;
}

.lzw-asset-board {
  margin: 16px 12px !important;
  border: 1px solid var(--ae-line-strong) !important;
  border-radius: 0 !important;
  gap: 0 !important;
}

.lzw-asset-cell {
  border-radius: 0 !important;
  border-bottom: 1px solid var(--ae-line) !important;
  box-shadow: none !important;
}

.hezu-page .hezu-hero {
  background: var(--ae-navy) !important;
  border-radius: 0 !important;
}

.hezu-item {
  border-radius: 0 !important;
  border: 1px solid var(--ae-line) !important;
  box-shadow: none !important;
}

.mk-cat-page { background: var(--ae-offwhite) !important; }
