/**
 * 详情页：暗黑主题 + 与「新建文件夹」模板一致的版式（纯 CSS，首屏即有样式，不依赖 Tailwind 运行时）
 * 字体继承全站 body（与首页一致）
 *
 * 版式宽度与号码位数无关：5～10 位及任意长度共用同一 .lhx-container / .lhx-cols 规则；
 * 主栏用 min-width:0 + flex:1 1 0%，避免长号码 nowrap 抬升 min-content 挤窄主栏（手机/桌面一致）。
 */
.lh-detail-xe-page .main-content {
  background: var(--lh-charcoal, #212121);
}

.lh-detail-xe-page .content-shell {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.lh-detail-xe-page .lhx-root {
  font-family: inherit;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: 5rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-root {
    padding-bottom: 0;
  }
}

.lh-detail-xe-page .lhx-main {
  flex: 1;
  min-width: 0;
  background: var(--lh-charcoal, #212121);
}

.lh-detail-xe-page .lhx-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-stack {
    gap: 2rem;
    padding-bottom: 1.25rem;
  }
}

.lh-detail-xe-page .lhx-container {
  max-width: 72rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0;
  padding-bottom: 1rem;
  box-sizing: border-box;
  min-width: 0;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

/* 返回 */
.lh-detail-xe-page .lhx-back {
  align-items: center;
  gap: 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--muted, #9e9e9e);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding: 0;
  font-family: inherit;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-back--desktop {
    display: inline-flex;
    margin-bottom: 1.5rem;
    font-size: 12px;
  }
  .lh-detail-xe-page .lhx-back--mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .lh-detail-xe-page .lhx-back--desktop {
    display: none;
  }
  .lh-detail-xe-page .lhx-back--mobile {
    display: flex;
  }
}

.lh-detail-xe-page .lhx-back:hover,
.lh-detail-xe-page .lhx-back:focus-visible {
  color: var(--blue-glow, #4f8cff);
  outline: none;
}

.lh-detail-xe-page .lhx-back-ico {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border, #383838);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-back-ico {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.lh-detail-xe-page .lhx-back:hover .lhx-back-ico,
.lh-detail-xe-page .lhx-back:focus-visible .lhx-back-ico {
  border-color: rgba(79, 140, 255, 0.45);
  background: rgba(79, 140, 255, 0.08);
}

.lh-detail-xe-page .lhx-back-ico svg {
  width: 12px;
  height: 12px;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-back-ico svg {
    width: 14px;
    height: 14px;
  }
}

/* 两栏（所有位数号码同一套宽度逻辑，勿按 d=5/6/… 拆样式） */
.lh-detail-xe-page .lhx-cols {
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-cols {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .lh-detail-xe-page .lhx-cols {
    flex-direction: row;
    align-items: flex-start;
    min-width: 0;
  }
}

.lh-detail-xe-page .lhx-col--main {
  flex: 1 1 0%;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-col--main {
    gap: 1.5rem;
  }
}

.lh-detail-xe-page .lhx-col--side {
  width: 100%;
}

@media (min-width: 1024px) {
  .lh-detail-xe-page .lhx-col--side {
    width: 400px;
    flex-shrink: 0;
  }
}

/* Hero 外框 */
.lh-detail-xe-page .lhx-hero-wrap {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--panel, #252525);
  border-radius: 1.5rem;
  padding: 4px;
  border: 1px solid var(--border, #383838);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-hero-wrap {
    border-radius: 2.5rem;
  }
}

.lh-detail-xe-page .lhx-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  border-radius: 1.25rem;
  padding: 0.75rem 0.75rem 1rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1220 0%, #152a52 45%, #0d3b73 100%);
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-hero {
    border-radius: 2.25rem;
    padding: 2.5rem;
  }
}

.lh-detail-xe-page .lhx-hero-dots {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.9) 1px, transparent 0);
  background-size: 24px 24px;
}

.lh-detail-xe-page .lhx-hero-glow1,
.lh-detail-xe-page .lhx-hero-glow2 {
  position: absolute;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  filter: blur(48px);
  pointer-events: none;
  opacity: 0.35;
}

.lh-detail-xe-page .lhx-hero-glow1 {
  top: -6rem;
  left: -6rem;
  background: rgba(59, 130, 246, 0.5);
}

.lh-detail-xe-page .lhx-hero-glow2 {
  bottom: -6rem;
  right: -6rem;
  background: rgba(99, 102, 241, 0.45);
}

.lh-detail-xe-page .lhx-back--mobile {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 20;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  letter-spacing: normal;
  text-transform: none;
}

.lh-detail-xe-page .lhx-back--mobile .lhx-back-ico {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
}

.lh-detail-xe-page .lhx-back--mobile svg {
  width: 14px;
  height: 14px;
}

.lh-detail-xe-page .lhx-hero-inner {
  position: relative;
  z-index: 10;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.lh-detail-xe-page .lhx-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.35rem;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-avatar-wrap {
    margin-bottom: 1rem;
  }
}

.lh-detail-xe-page .lhx-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-avatar {
    width: 5rem;
    height: 5rem;
    border-width: 3px;
  }
}

.lh-detail-xe-page .lhx-qq-title {
  margin: 0 0 0.35rem;
  font-family: inherit;
  font-weight: 800;
  color: #fff;
  font-size: 19px;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-qq-title {
    font-size: clamp(2rem, 4vw, 3.75rem);
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
  }
}

.lh-detail-xe-page .lhx-badge-row {
  display: flex;
  justify-content: center;
  margin-bottom: 0.6rem;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-badge-row {
    margin-bottom: 1rem;
  }
}

@keyframes lhx-typeBadgeGlow {
  0%, 100% { opacity: 0.42; }
  35% { opacity: 0.72; }
  65% { opacity: 0.58; }
}

@keyframes lhx-glow-xc {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.82; }
}

/* —— 普号：冷色冰川双波，慢速呼吸 —— */
@keyframes lhx-flow-pu-a {
  0% { transform: translate3d(-18%, 0, 0) scaleX(1); }
  100% { transform: translate3d(20%, 0, 0) scaleX(1.04); }
}
@keyframes lhx-flow-pu-b {
  0% { transform: translate3d(14%, 0, 0); opacity: 0.22; }
  100% { transform: translate3d(-16%, 0, 0); opacity: 0.48; }
}

/* 普号：极弱冰尘粒子（叠在 glow 上，不碰文字） */
@keyframes lhx-pu-particle-drift {
  0% {
    background-position: 0 0, 6px 5px, 3px 8px;
    transform: translate3d(0, 0, 0);
    opacity: 0.09;
  }
  50% {
    background-position: 7px 5px, 1px 10px, 9px 3px;
    transform: translate3d(-0.5px, 0.5px, 0);
    opacity: 0.16;
  }
  100% {
    background-position: 0 0, 6px 5px, 3px 8px;
    transform: translate3d(0, 0, 0);
    opacity: 0.09;
  }
}

/* —— 靓号：烈焰主带 + 逆向余烬（仅 transform，避免与 filter 同层动画导致 Chrome 桌面不重绘） —— */
@keyframes lhx-flow-liang-a {
  0% { transform: translate3d(-24%, 0, 0); }
  45% { transform: translate3d(6%, 0, 0); }
  100% { transform: translate3d(26%, 0, 0); }
}
@keyframes lhx-flow-liang-b {
  0% { transform: translate3d(18%, -2%, 0) skewX(-4deg); }
  100% { transform: translate3d(-22%, 1%, 0) skewX(3deg); }
}

/* —— 炫彩靓号：主副带仅 transform（色相交给静态渐变 + .type-badge-glow 单独层） —— */
@keyframes lhx-flow-xc-a {
  0% { transform: translate3d(-20%, 0, 0); }
  100% { transform: translate3d(22%, 0, 0); }
}
@keyframes lhx-flow-xc-b {
  0% { transform: translate3d(24%, 0, 0) scaleX(1.05); }
  100% { transform: translate3d(-26%, 0, 0) scaleX(0.96); }
}

/* —— 黑金：厚重金浪 + 斜向细金脊扫描 —— */
@keyframes lhx-flow-hj-a {
  0% { transform: translate3d(-14%, 0, 0); opacity: 0.62; }
  100% { transform: translate3d(16%, 0, 0); opacity: 0.92; }
}
@keyframes lhx-flow-hj-b {
  0% { transform: translate3d(-45%, 35%, 0) rotate(32deg) scaleX(0.85); opacity: 0.35; }
  100% { transform: translate3d(55%, -40%, 0) rotate(32deg) scaleX(1.1); opacity: 0.75; }
}

/* —— 黄金靓号：高光带平移 + 副带透明度脉动（不用 filter 动画，避免 Chrome 冻结） —— */
@keyframes lhx-flow-gold-a {
  0% { transform: translate3d(-22%, 0, 0); }
  50% { transform: translate3d(4%, 0, 0); }
  100% { transform: translate3d(24%, 0, 0); }
}
@keyframes lhx-flow-gold-b {
  0% { transform: translate3d(20%, 0, 0); opacity: 0.28; }
  100% { transform: translate3d(-18%, 0, 0); opacity: 0.55; }
}

/* —— 桌面端专用：更大幅度 / 更高亮 / 更快频（与手机版分流，min-width 与详情页其它断点一致） —— */
@keyframes lhx-flow-pu-a-desk {
  0% { transform: translate3d(-26%, 0, 0) scaleX(1); }
  100% { transform: translate3d(28%, 0, 0) scaleX(1.1); }
}
@keyframes lhx-flow-pu-b-desk {
  0% { transform: translate3d(20%, 0, 0); opacity: 0.38; }
  100% { transform: translate3d(-22%, 0, 0); opacity: 0.68; }
}
@keyframes lhx-pu-particle-drift-desk {
  0% {
    background-position: 0 0, 6px 5px, 3px 8px;
    transform: translate3d(0, 0, 0);
    opacity: 0.14;
  }
  50% {
    background-position: 10px 7px, 2px 12px, 11px 4px;
    transform: translate3d(-1px, 1px, 0);
    opacity: 0.26;
  }
  100% {
    background-position: 0 0, 6px 5px, 3px 8px;
    transform: translate3d(0, 0, 0);
    opacity: 0.14;
  }
}

@keyframes lhx-flow-liang-a-desk {
  0% { transform: translate3d(-32%, 0, 0); }
  45% { transform: translate3d(8%, 0, 0); }
  100% { transform: translate3d(34%, 0, 0); }
}
@keyframes lhx-flow-liang-b-desk {
  0% { transform: translate3d(22%, -3%, 0) skewX(-6deg); }
  100% { transform: translate3d(-26%, 2%, 0) skewX(5deg); }
}

@keyframes lhx-flow-xc-a-desk {
  0% { transform: translate3d(-30%, 0, 0); }
  100% { transform: translate3d(32%, 0, 0); }
}
@keyframes lhx-flow-xc-b-desk {
  0% { transform: translate3d(34%, -3%, 0) scaleX(1.12); }
  100% { transform: translate3d(-36%, 3%, 0) scaleX(0.88); }
}
@keyframes lhx-glow-xc-desk {
  0%, 100% { opacity: 0.52; }
  50% { opacity: 0.95; }
}

@keyframes lhx-flow-hj-a-desk {
  0% { transform: translate3d(-20%, 0, 0); opacity: 0.72; }
  100% { transform: translate3d(22%, 0, 0); opacity: 1; }
}
@keyframes lhx-flow-hj-b-desk {
  0% { transform: translate3d(-52%, 42%, 0) rotate(32deg) scaleX(0.82); opacity: 0.45; }
  100% { transform: translate3d(58%, -48%, 0) rotate(32deg) scaleX(1.18); opacity: 0.88; }
}

@keyframes lhx-flow-gold-a-desk {
  0% { transform: translate3d(-28%, 0, 0); }
  50% { transform: translate3d(6%, 0, 0); }
  100% { transform: translate3d(30%, 0, 0); }
}
@keyframes lhx-flow-gold-b-desk {
  0% { transform: translate3d(24%, 0, 0); opacity: 0.4; }
  100% { transform: translate3d(-22%, 0, 0); opacity: 0.72; }
}

/* 手机详情药丸：粒子层漂移 / 闪烁（仅 max-width，与桌面分流） */
@keyframes lhx-mob-pu-part {
  0%, 100% {
    background-position: 0 0, 5px 6px, 2px 4px, 9px 3px;
    transform: translate3d(0, 0, 0);
    opacity: 0.2;
  }
  50% {
    background-position: 9px 7px, 3px 12px, 12px 5px, 5px 10px;
    transform: translate3d(-1.5px, 1px, 0);
    opacity: 0.4;
  }
}

@keyframes lhx-mob-part-liang {
  0% {
    background-position: 0 0, 7px 6px;
    transform: translate3d(0, 0, 0);
    opacity: 0.32;
  }
  100% {
    background-position: 11px 9px, 4px 12px;
    transform: translate3d(-2px, 1.5px, 0);
    opacity: 0.58;
  }
}

@keyframes lhx-mob-part-xc {
  0% {
    background-position: 0 0, 6px 7px, 4px 5px;
    opacity: 0.38;
  }
  100% {
    background-position: 11px 5px, 3px 10px, 9px 9px;
    opacity: 0.68;
  }
}

@keyframes lhx-mob-part-hj {
  0%, 100% {
    background-position: 0 0, 8px 7px;
    opacity: 0.28;
    transform: translate3d(0, 0, 0);
  }
  50% {
    background-position: 6px 9px, 11px 4px;
    opacity: 0.52;
    transform: translate3d(1.5px, -1px, 0);
  }
}

@keyframes lhx-mob-part-gold {
  0%, 100% {
    background-position: 0 0, 6px 6px;
    opacity: 0.36;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    background-position: 8px 7px, 5px 11px;
    opacity: 0.62;
    transform: translate3d(-1px, 0.5px, 0) scale(1.03);
  }
}

.lh-detail-xe-page .type-badge {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* 促合成层：与全站 style.css 顶栏扫光同理，避免 Chrome 桌面子层无限动画不重绘 */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -10px 20px rgba(0, 0, 0, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.35);
  padding: 0.2rem 0.65rem;
  /* 无 skin 类时的兜底（与旧版普号灰接近） */
  background: linear-gradient(165deg, #64748b 0%, #475569 48%, #334155 100%);
}

/* 屏蔽主题 common.css 里仍存在的斜向白扫光（无刷新路由若残留旧节点也不显示） */
.lh-detail-xe-page .type-badge .type-badge-shine,
.lh-detail-xe-page .type-badge .type-badge-shine-secondary {
  display: none !important;
}

/* 流光层 ①②：仅对 transform/opacity 做动画，禁止与 filter 同层（Chrome 桌面易冻结） */
.lh-detail-xe-page .type-badge::before {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: -68%;
  width: 236%;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.82;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: lhx-flow-pu-a 4.4s ease-in-out infinite alternate;
}

/* 流光层 ②：辅光 / 反向波 / 斜线（与主层错频） */
.lh-detail-xe-page .type-badge::after {
  content: "";
  position: absolute;
  top: -18%;
  bottom: -18%;
  left: -72%;
  width: 244%;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.4;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  animation: lhx-flow-pu-b 5.8s ease-in-out infinite alternate;
}

/* —— 各类型：底色 + 双层流光渐变 + 内光晕 —— */
.lh-detail-xe-page .type-badge--skin-pu {
  background: linear-gradient(155deg, #5b6d86 0%, #475569 42%, #2f3b4c 100%);
  border-color: rgba(186, 210, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -10px 22px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(148, 180, 220, 0.08),
    0 10px 28px rgba(0, 0, 0, 0.35);
}

.lh-detail-xe-page .type-badge--skin-pu::before {
  background-image: linear-gradient(
    90deg,
    rgba(100, 140, 190, 0) 0%,
    rgba(186, 210, 255, 0.18) 18%,
    rgba(240, 249, 255, 0.62) 48%,
    rgba(200, 225, 255, 0.28) 62%,
    rgba(148, 180, 210, 0.12) 78%,
    rgba(100, 140, 190, 0) 100%
  );
  animation-name: lhx-flow-pu-a;
  animation-duration: 4.6s;
  opacity: 0.88;
}

.lh-detail-xe-page .type-badge--skin-pu::after {
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(224, 242, 254, 0.12) 35%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(224, 242, 254, 0.1) 65%,
    rgba(255, 255, 255, 0) 100%
  );
  animation-name: lhx-flow-pu-b;
  animation-duration: 6.2s;
  animation-delay: -1.2s;
}

.lh-detail-xe-page .type-badge--skin-pu .type-badge-glow {
  overflow: hidden;
  background: radial-gradient(120% 120% at 24% 8%, rgba(255, 255, 255, 0.38), rgba(186, 220, 255, 0.1) 46%, rgba(255, 255, 255, 0) 74%);
  animation-duration: 3.4s;
}

/* 与手机同源：加密冰尘粒子，全端可见（桌面此前仅弱漂移，易被误认为「流光不动」） */
.lh-detail-xe-page .type-badge--skin-pu .type-badge-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0 0.52px, transparent 0.92px),
    radial-gradient(circle at 50% 50%, rgba(210, 230, 255, 0.92) 0 0.42px, transparent 0.78px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.82) 0 0.36px, transparent 0.68px),
    radial-gradient(circle at 50% 50%, rgba(186, 220, 255, 0.78) 0 0.32px, transparent 0.62px);
  background-size: 9px 10px, 14px 12px, 6px 7px, 11px 9px;
  background-position: 0 0, 5px 4px, 2px 7px, 8px 2px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  animation: lhx-mob-pu-part 6.5s ease-in-out infinite alternate;
}

.lh-detail-xe-page .type-badge--skin-liang {
  background: linear-gradient(155deg, #fb7c1c 0%, #ea580c 40%, #9a3412 100%);
  border-color: rgba(255, 237, 200, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -12px 24px rgba(124, 28, 0, 0.35),
    0 0 20px rgba(251, 146, 60, 0.22),
    0 10px 28px rgba(0, 0, 0, 0.32);
}

.lh-detail-xe-page .type-badge--skin-liang::before {
  background-image: linear-gradient(
    90deg,
    rgba(255, 200, 120, 0) 0%,
    rgba(255, 140, 60, 0.45) 22%,
    rgba(255, 255, 255, 0.75) 48%,
    rgba(255, 220, 150, 0.5) 58%,
    rgba(255, 100, 40, 0.25) 72%,
    rgba(255, 200, 120, 0) 100%
  );
  animation-name: lhx-flow-liang-a;
  animation-duration: 2.35s;
  animation-timing-function: cubic-bezier(0.45, 0, 0.2, 1);
  animation-direction: alternate;
  opacity: 0.92;
}

.lh-detail-xe-page .type-badge--skin-liang::after {
  background-image: linear-gradient(
    90deg,
    rgba(255, 60, 0, 0) 0%,
    rgba(255, 80, 0, 0.35) 40%,
    rgba(255, 200, 100, 0.45) 50%,
    rgba(220, 50, 0, 0.3) 60%,
    rgba(255, 60, 0, 0) 100%
  );
  animation-name: lhx-flow-liang-b;
  animation-duration: 3.1s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  opacity: 0.52;
}

.lh-detail-xe-page .type-badge--skin-liang .type-badge-glow {
  background: radial-gradient(120% 120% at 22% 6%, rgba(255, 255, 255, 0.45), rgba(255, 200, 120, 0.15) 48%, rgba(255, 255, 255, 0) 76%);
  animation-duration: 1.9s;
}

.lh-detail-xe-page .type-badge--skin-xuancai {
  background: linear-gradient(155deg, #c084fc 0%, #7c3aed 38%, #4c1d95 100%);
  border-color: rgba(196, 181, 253, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -10px 24px rgba(59, 7, 100, 0.45),
    0 0 24px rgba(167, 139, 250, 0.35),
    0 10px 28px rgba(0, 0, 0, 0.35);
}

.lh-detail-xe-page .type-badge--skin-xuancai::before {
  background-image: linear-gradient(
    90deg,
    rgba(34, 211, 238, 0) 0%,
    rgba(34, 211, 238, 0.4) 16%,
    rgba(244, 114, 182, 0.55) 34%,
    rgba(250, 250, 255, 0.65) 50%,
    rgba(167, 139, 250, 0.5) 66%,
    rgba(52, 211, 153, 0.35) 82%,
    rgba(34, 211, 238, 0) 100%
  );
  animation-name: lhx-flow-xc-a;
  animation-duration: 2.65s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  opacity: 0.94;
}

.lh-detail-xe-page .type-badge--skin-xuancai::after {
  background-image: linear-gradient(
    90deg,
    rgba(139, 92, 246, 0) 0%,
    rgba(236, 72, 153, 0.3) 38%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(56, 189, 248, 0.35) 62%,
    rgba(139, 92, 246, 0) 100%
  );
  animation-name: lhx-flow-xc-b;
  animation-duration: 2.05s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-direction: alternate;
  opacity: 0.58;
}

.lh-detail-xe-page .type-badge--skin-xuancai .type-badge-glow {
  background: radial-gradient(120% 120% at 20% 10%, rgba(255, 255, 255, 0.32), rgba(196, 181, 253, 0.18) 44%, rgba(255, 255, 255, 0) 76%);
  animation: lhx-glow-xc 2.8s ease-in-out infinite;
}

.lh-detail-xe-page .type-badge--skin-heijin {
  background: linear-gradient(155deg, #1e293b 0%, #0c1222 45%, #020617 100%);
  border-color: rgba(252, 211, 77, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -14px 28px rgba(0, 0, 0, 0.55),
    0 0 18px rgba(245, 158, 11, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.45);
}

.lh-detail-xe-page .type-badge--skin-heijin::before {
  background-image: linear-gradient(
    90deg,
    rgba(180, 83, 9, 0) 0%,
    rgba(217, 119, 6, 0.35) 24%,
    rgba(253, 230, 138, 0.72) 50%,
    rgba(245, 158, 11, 0.45) 68%,
    rgba(120, 53, 15, 0.2) 82%,
    rgba(180, 83, 9, 0) 100%
  );
  animation-name: lhx-flow-hj-a;
  animation-duration: 3.85s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  opacity: 0.78;
}

.lh-detail-xe-page .type-badge--skin-heijin::after {
  width: 160%;
  left: -30%;
  top: -40%;
  bottom: -40%;
  background-image: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 42%,
    rgba(255, 253, 231, 0.55) 49.5%,
    rgba(252, 211, 77, 0.85) 50%,
    rgba(255, 253, 231, 0.55) 50.5%,
    rgba(255, 255, 255, 0) 58%
  );
  animation-name: lhx-flow-hj-b;
  animation-duration: 2.4s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-direction: alternate;
  opacity: 0.55;
}

.lh-detail-xe-page .type-badge--skin-heijin .type-badge-glow {
  background: radial-gradient(120% 120% at 28% 8%, rgba(253, 230, 138, 0.35), rgba(245, 158, 11, 0.08) 48%, rgba(255, 255, 255, 0) 76%);
  animation-duration: 3.2s;
}

.lh-detail-xe-page .type-badge--skin-gold {
  background: linear-gradient(155deg, #eab308 0%, #b45309 42%, #713f12 100%);
  border-color: rgba(254, 243, 199, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -12px 26px rgba(69, 26, 3, 0.45),
    0 0 22px rgba(253, 224, 71, 0.28),
    0 10px 28px rgba(0, 0, 0, 0.32);
}

.lh-detail-xe-page .type-badge--skin-gold::before {
  background-image: linear-gradient(
    90deg,
    rgba(254, 215, 0, 0) 0%,
    rgba(253, 224, 71, 0.5) 26%,
    rgba(255, 255, 255, 0.88) 50%,
    rgba(250, 204, 21, 0.55) 72%,
    rgba(180, 83, 9, 0.2) 88%,
    rgba(254, 215, 0, 0) 100%
  );
  animation-name: lhx-flow-gold-a;
  animation-duration: 2.75s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  opacity: 0.9;
}

.lh-detail-xe-page .type-badge--skin-gold::after {
  background-image: linear-gradient(
    90deg,
    rgba(255, 251, 235, 0) 0%,
    rgba(254, 249, 195, 0.35) 45%,
    rgba(255, 237, 160, 0.5) 50%,
    rgba(254, 249, 195, 0.3) 55%,
    rgba(255, 251, 235, 0) 100%
  );
  animation-name: lhx-flow-gold-b;
  animation-duration: 3.45s;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  animation-delay: -0.6s;
  opacity: 0.48;
}

.lh-detail-xe-page .type-badge--skin-gold .type-badge-glow {
  background: radial-gradient(120% 120% at 22% 6%, rgba(255, 255, 255, 0.42), rgba(253, 224, 71, 0.2) 46%, rgba(255, 255, 255, 0) 76%);
  animation-duration: 2.2s;
}

/* 全端与手机一致：靓号/炫彩/黑金/黄金 的 glow 粒子层（桌面此前无此层，仅靠伪元素流光） */
.lh-detail-xe-page .type-badge--skin-liang .type-badge-glow,
.lh-detail-xe-page .type-badge--skin-xuancai .type-badge-glow,
.lh-detail-xe-page .type-badge--skin-heijin .type-badge-glow,
.lh-detail-xe-page .type-badge--skin-gold .type-badge-glow {
  overflow: hidden;
}

.lh-detail-xe-page .type-badge--skin-liang .type-badge-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0 0.52px, transparent 0.95px),
    radial-gradient(circle at 50% 50%, rgba(255, 180, 70, 0.88) 0 0.44px, transparent 0.82px);
  background-size: 8px 9px, 12px 11px;
  background-position: 0 0, 5px 5px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  animation: lhx-mob-part-liang 3.8s ease-in-out infinite alternate;
}

.lh-detail-xe-page .type-badge--skin-xuancai .type-badge-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92) 0 0.46px, transparent 0.82px),
    radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.88) 0 0.4px, transparent 0.72px),
    radial-gradient(circle at 50% 50%, rgba(244, 114, 182, 0.82) 0 0.38px, transparent 0.68px);
  background-size: 7px 8px, 10px 9px, 8px 7px;
  background-position: 0 0, 4px 6px, 7px 3px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  animation: lhx-mob-part-xc 2.85s ease-in-out infinite alternate;
}

.lh-detail-xe-page .type-badge--skin-heijin .type-badge-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 253, 230, 0.95) 0 0.44px, transparent 0.78px),
    radial-gradient(circle at 50% 50%, rgba(252, 211, 77, 0.78) 0 0.36px, transparent 0.68px);
  background-size: 11px 10px, 9px 11px;
  background-position: 0 0, 6px 4px;
  background-repeat: repeat;
  mix-blend-mode: screen;
  animation: lhx-mob-part-hj 4.2s ease-in-out infinite;
}

.lh-detail-xe-page .type-badge--skin-gold .type-badge-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0 0.52px, transparent 0.9px),
    radial-gradient(circle at 50% 50%, rgba(253, 224, 71, 0.9) 0 0.42px, transparent 0.78px);
  background-size: 7px 8px, 13px 11px;
  background-position: 0 0, 5px 6px;
  background-repeat: repeat;
  mix-blend-mode: soft-light;
  animation: lhx-mob-part-gold 3.2s ease-in-out infinite alternate;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .type-badge {
    padding: 0.35rem 1rem;
    /* Chrome 桌面：父级 backdrop-filter 与伪元素 transform 动画同层时易不重绘，表现为「流光冻住」 */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  /* 加宽光层，桌面更易看见扫过的体积感 */
  .lh-detail-xe-page .type-badge::before {
    left: -82%;
    width: 264%;
    top: -14%;
    bottom: -14%;
    opacity: 0.94;
  }

  .lh-detail-xe-page .type-badge::after {
    left: -88%;
    width: 276%;
    top: -22%;
    bottom: -22%;
    opacity: 0.62;
  }

  /* 普号 */
  .lh-detail-xe-page .type-badge--skin-pu {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      inset 0 -10px 22px rgba(0, 0, 0, 0.18),
      0 0 0 1px rgba(148, 180, 220, 0.14),
      0 0 28px rgba(148, 186, 230, 0.22),
      0 12px 32px rgba(0, 0, 0, 0.38);
  }

  .lh-detail-xe-page .type-badge--skin-pu::before {
    animation-name: lhx-flow-pu-a-desk;
    animation-duration: 3.5s;
    opacity: 0.96;
    background-image: linear-gradient(
      90deg,
      rgba(100, 140, 190, 0) 0%,
      rgba(186, 210, 255, 0.28) 16%,
      rgba(248, 252, 255, 0.82) 48%,
      rgba(200, 225, 255, 0.38) 62%,
      rgba(148, 180, 210, 0.18) 78%,
      rgba(100, 140, 190, 0) 100%
    );
  }

  .lh-detail-xe-page .type-badge--skin-pu::after {
    animation-name: lhx-flow-pu-b-desk;
    animation-duration: 4.6s;
    background-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(224, 242, 254, 0.22) 32%,
      rgba(255, 255, 255, 0.38) 50%,
      rgba(224, 242, 254, 0.18) 68%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .lh-detail-xe-page .type-badge--skin-pu .type-badge-glow {
    animation-duration: 2.6s;
  }

  /* 靓号 */
  .lh-detail-xe-page .type-badge--skin-liang {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      inset 0 -12px 24px rgba(124, 28, 0, 0.38),
      0 0 32px rgba(251, 146, 60, 0.42),
      0 12px 36px rgba(0, 0, 0, 0.36);
  }

  .lh-detail-xe-page .type-badge--skin-liang::before {
    animation-name: lhx-flow-liang-a-desk;
    animation-duration: 1.75s;
    opacity: 1;
    background-image: linear-gradient(
      90deg,
      rgba(255, 200, 120, 0) 0%,
      rgba(255, 120, 40, 0.55) 20%,
      rgba(255, 255, 255, 0.92) 48%,
      rgba(255, 200, 120, 0.62) 58%,
      rgba(255, 80, 20, 0.35) 74%,
      rgba(255, 200, 120, 0) 100%
    );
  }

  .lh-detail-xe-page .type-badge--skin-liang::after {
    animation-name: lhx-flow-liang-b-desk;
    animation-duration: 2.35s;
    opacity: 0.68;
  }

  .lh-detail-xe-page .type-badge--skin-liang .type-badge-glow {
    animation-duration: 1.45s;
  }

  /* 炫彩靓号：桌面加强霓虹感与色相摆动 */
  .lh-detail-xe-page .type-badge--skin-xuancai {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      inset 0 -10px 26px rgba(59, 7, 100, 0.5),
      0 0 40px rgba(192, 132, 252, 0.55),
      0 0 72px rgba(124, 58, 237, 0.35),
      0 12px 36px rgba(0, 0, 0, 0.38);
  }

  .lh-detail-xe-page .type-badge--skin-xuancai::before {
    animation-name: lhx-flow-xc-a-desk;
    animation-duration: 1.85s;
    opacity: 1;
    background-image: linear-gradient(
      90deg,
      rgba(34, 211, 238, 0) 0%,
      rgba(34, 211, 238, 0.55) 14%,
      rgba(244, 114, 182, 0.68) 30%,
      rgba(255, 255, 255, 0.82) 50%,
      rgba(167, 139, 250, 0.62) 68%,
      rgba(52, 211, 153, 0.48) 84%,
      rgba(34, 211, 238, 0) 100%
    );
  }

  .lh-detail-xe-page .type-badge--skin-xuancai::after {
    animation-name: lhx-flow-xc-b-desk;
    animation-duration: 1.45s;
    opacity: 0.78;
    background-image: linear-gradient(
      90deg,
      rgba(139, 92, 246, 0) 0%,
      rgba(236, 72, 153, 0.45) 36%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(56, 189, 248, 0.48) 64%,
      rgba(139, 92, 246, 0) 100%
    );
  }

  .lh-detail-xe-page .type-badge--skin-xuancai .type-badge-glow {
    animation: lhx-glow-xc-desk 2.2s ease-in-out infinite;
  }

  /* 黑金 */
  .lh-detail-xe-page .type-badge--skin-heijin {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -14px 28px rgba(0, 0, 0, 0.58),
      0 0 32px rgba(245, 158, 11, 0.28),
      0 12px 40px rgba(0, 0, 0, 0.5);
  }

  .lh-detail-xe-page .type-badge--skin-heijin::before {
    animation-name: lhx-flow-hj-a-desk;
    animation-duration: 2.85s;
    opacity: 0.92;
    background-image: linear-gradient(
      90deg,
      rgba(180, 83, 9, 0) 0%,
      rgba(217, 119, 6, 0.48) 22%,
      rgba(253, 230, 138, 0.88) 50%,
      rgba(245, 158, 11, 0.55) 66%,
      rgba(120, 53, 15, 0.28) 80%,
      rgba(180, 83, 9, 0) 100%
    );
  }

  .lh-detail-xe-page .type-badge--skin-heijin::after {
    animation-name: lhx-flow-hj-b-desk;
    animation-duration: 1.85s;
    opacity: 0.72;
    width: 175%;
    left: -38%;
    background-image: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 253, 231, 0.72) 49%,
      rgba(252, 211, 77, 1) 50%,
      rgba(255, 253, 231, 0.72) 51%,
      rgba(255, 255, 255, 0) 60%
    );
  }

  .lh-detail-xe-page .type-badge--skin-heijin .type-badge-glow {
    animation-duration: 2.5s;
  }

  /* 黄金靓号 */
  .lh-detail-xe-page .type-badge--skin-gold {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      inset 0 -12px 26px rgba(69, 26, 3, 0.48),
      0 0 36px rgba(253, 224, 71, 0.45),
      0 0 56px rgba(234, 179, 8, 0.22),
      0 12px 36px rgba(0, 0, 0, 0.34);
  }

  .lh-detail-xe-page .type-badge--skin-gold::before {
    animation-name: lhx-flow-gold-a-desk;
    animation-duration: 2.1s;
    opacity: 0.98;
    background-image: linear-gradient(
      90deg,
      rgba(254, 215, 0, 0) 0%,
      rgba(253, 224, 71, 0.62) 24%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(250, 204, 21, 0.65) 70%,
      rgba(180, 83, 9, 0.28) 86%,
      rgba(254, 215, 0, 0) 100%
    );
  }

  .lh-detail-xe-page .type-badge--skin-gold::after {
    animation-name: lhx-flow-gold-b-desk;
    animation-duration: 2.65s;
    opacity: 0.62;
  }

  .lh-detail-xe-page .type-badge--skin-gold .type-badge-glow {
    animation-duration: 1.75s;
  }
}

/* 手机版：流光略提亮 + 阴影微调（粒子层已提升为全端共用，见上） */
@media (max-width: 767.98px) {
  .lh-detail-xe-page .type-badge::before {
    opacity: 0.91;
  }

  .lh-detail-xe-page .type-badge::after {
    opacity: 0.54;
  }

  .lh-detail-xe-page .type-badge--skin-pu::before {
    animation-duration: 3.9s;
    opacity: 0.94;
  }

  .lh-detail-xe-page .type-badge--skin-pu::after {
    animation-duration: 5.2s;
  }

  .lh-detail-xe-page .type-badge--skin-liang::before {
    animation-duration: 2.05s;
    opacity: 0.98;
  }

  .lh-detail-xe-page .type-badge--skin-liang::after {
    animation-duration: 2.75s;
    opacity: 0.58;
  }

  .lh-detail-xe-page .type-badge--skin-liang {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      inset 0 -12px 24px rgba(124, 28, 0, 0.35),
      0 0 26px rgba(251, 146, 60, 0.38),
      0 10px 28px rgba(0, 0, 0, 0.32);
  }

  .lh-detail-xe-page .type-badge--skin-xuancai::before {
    animation-duration: 2.25s;
    opacity: 0.98;
  }

  .lh-detail-xe-page .type-badge--skin-xuancai::after {
    animation-duration: 1.75s;
    opacity: 0.66;
  }

  .lh-detail-xe-page .type-badge--skin-xuancai {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -10px 24px rgba(59, 7, 100, 0.45),
      0 0 32px rgba(167, 139, 250, 0.48),
      0 0 48px rgba(124, 58, 237, 0.28),
      0 10px 28px rgba(0, 0, 0, 0.35);
  }

  .lh-detail-xe-page .type-badge--skin-heijin::before {
    animation-duration: 3.25s;
    opacity: 0.86;
  }

  .lh-detail-xe-page .type-badge--skin-heijin::after {
    animation-duration: 2.05s;
    opacity: 0.62;
  }

  .lh-detail-xe-page .type-badge--skin-heijin {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -14px 28px rgba(0, 0, 0, 0.55),
      0 0 24px rgba(245, 158, 11, 0.22),
      0 10px 28px rgba(0, 0, 0, 0.45);
  }

  .lh-detail-xe-page .type-badge--skin-gold::before {
    animation-duration: 2.4s;
    opacity: 0.96;
  }

  .lh-detail-xe-page .type-badge--skin-gold::after {
    animation-duration: 3.05s;
    opacity: 0.55;
  }

  .lh-detail-xe-page .type-badge--skin-gold {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -12px 26px rgba(69, 26, 3, 0.45),
      0 0 28px rgba(253, 224, 71, 0.38),
      0 10px 28px rgba(0, 0, 0, 0.32);
  }
}

.lh-detail-xe-page .type-badge-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 9999px;
  background: radial-gradient(120% 120% at 18% 12%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0) 76%);
  animation: lhx-typeBadgeGlow 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .lh-detail-xe-page .type-badge::before,
  .lh-detail-xe-page .type-badge::after {
    animation: none !important;
    opacity: 0.36;
    transform: none;
    filter: none;
  }
  .lh-detail-xe-page .type-badge-glow {
    animation: none;
    opacity: 0.48;
    filter: none;
  }
  .lh-detail-xe-page .type-badge--skin-pu .type-badge-glow::after,
  .lh-detail-xe-page .type-badge--skin-liang .type-badge-glow::after,
  .lh-detail-xe-page .type-badge--skin-xuancai .type-badge-glow::after,
  .lh-detail-xe-page .type-badge--skin-heijin .type-badge-glow::after,
  .lh-detail-xe-page .type-badge--skin-gold .type-badge-glow::after {
    animation: none !important;
    opacity: 0;
    visibility: hidden;
  }
}

.lh-detail-xe-page .type-badge-label {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  font-family: inherit;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .type-badge-label {
    font-size: 11px;
    letter-spacing: 0.28em;
  }
}

.lh-detail-xe-page .lhx-copy-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.lh-detail-xe-page .lhx-btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  background: rgba(248, 250, 252, 0.96);
  color: #0f172a;
  border-radius: 0.5rem;
  padding: 0.25rem 0.65rem;
  font-size: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: background 0.15s, transform 0.1s;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-btn-copy {
    border-radius: 1rem;
    padding: 0.5rem 1.5rem;
    font-size: 12px;
    gap: 0.5rem;
  }
}

.lh-detail-xe-page .lhx-btn-copy:hover {
  background: #e8f0ff;
}

.lh-detail-xe-page .lhx-btn-copy:active {
  transform: scale(0.97);
}

.lh-detail-xe-page .lhx-btn-copy svg {
  width: 10px;
  height: 10px;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-btn-copy svg {
    width: 16px;
    height: 16px;
  }
}

/* 桌面四格属性 */
.lh-detail-xe-page .lhx-attrs--desktop {
  display: none;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-attrs--desktop {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    min-width: 0;
  }
}

.lh-detail-xe-page .lhx-attr-card {
  position: relative;
  background: var(--panel, #252525);
  border: 1px solid var(--border, #383838);
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.15s;
}

.lh-detail-xe-page .lhx-attr-card:hover {
  border-color: rgba(79, 140, 255, 0.35);
}

.lh-detail-xe-page .lhx-tip {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 6;
}

.lh-detail-xe-page .lhx-tip-btn {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  cursor: default;
  border: 0;
  padding: 0;
  font-family: inherit;
}

.lh-detail-xe-page .lhx-tip--blue .lhx-tip-btn {
  background: rgba(59, 130, 246, 0.2);
  color: #7eb7ff;
}

.lh-detail-xe-page .lhx-tip--green .lhx-tip-btn {
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
}

.lh-detail-xe-page .lhx-tip--purple .lhx-tip-btn {
  background: rgba(168, 85, 247, 0.2);
  color: #d8b4fe;
}

.lh-detail-xe-page .lhx-tip--orange .lhx-tip-btn {
  background: rgba(249, 115, 22, 0.2);
  color: #fdba74;
}

.lh-detail-xe-page .lhx-tip-pop {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 0.5rem;
  width: 14rem;
  background: #1a2332;
  color: #e8eef8;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  white-space: pre-line;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 50;
}

.lh-detail-xe-page .lhx-tip:hover .lhx-tip-pop,
.lh-detail-xe-page .lhx-tip:focus-within .lhx-tip-pop {
  opacity: 1;
  visibility: visible;
}

.lh-detail-xe-page .lhx-tip-arrow {
  position: absolute;
  top: 100%;
  right: 0.75rem;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #1a2332;
}

/* 窄屏：卡片内气泡易超出屏幕，改由 main.js 固定层 + 视口夹紧展示 */
@media (max-width: 960px) {
  .lh-detail-xe-page .lhx-tip-pop,
  .lh-detail-xe-page .lhx-tip:hover .lhx-tip-pop,
  .lh-detail-xe-page .lhx-tip:focus-within .lhx-tip-pop,
  .lh-detail-xe-page .lhx-tip.is-open .lhx-tip-pop {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.lh-detail-xe-page .lhx-attr-ico-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
}

.lh-detail-xe-page .lhx-attr-ico {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s;
}

.lh-detail-xe-page .lhx-attr-card:hover .lhx-attr-ico {
  transform: scale(1.08);
}

.lh-detail-xe-page .lhx-attr-ico--blue {
  background: rgba(59, 130, 246, 0.12);
  color: #7eb7ff;
}

.lh-detail-xe-page .lhx-attr-ico--green {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}

.lh-detail-xe-page .lhx-attr-ico--purple {
  background: rgba(168, 85, 247, 0.12);
  color: #d8b4fe;
}

.lh-detail-xe-page .lhx-attr-ico--orange {
  background: rgba(249, 115, 22, 0.12);
  color: #fdba74;
}

.lh-detail-xe-page .lhx-attr-ico svg {
  width: 1.5rem;
  height: 1.5rem;
}

.lh-detail-xe-page .lhx-attr-k {
  margin: 0 0 0.35rem;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--muted, #9e9e9e);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
}

.lh-detail-xe-page .lhx-attr-v {
  margin: 0;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-attr-v {
    font-size: 14px;
  }
}

.lh-detail-xe-page .lhx-attr-v--orange {
  color: #ffb26b;
}

/* 详情说明 桌面 */
.lh-detail-xe-page .lhx-desc--desktop {
  display: none;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-desc--desktop {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: var(--panel, #252525);
    border: 1px solid var(--border, #383838);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }
}

.lh-detail-xe-page .lhx-desc-title {
  margin: 0 0 0.75rem;
  font-size: 11px;
  font-weight: 800;
  color: #f8fafc;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: inherit;
}

.lh-detail-xe-page .lhx-desc-body {
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
  color: #b6c2d4;
  font-family: inherit;
}

.lh-detail-xe-page .lhx-desc-body a {
  color: var(--blue-glow, #4f8cff);
}

/* 侧栏 */
.lh-detail-xe-page .lhx-side {
  background: var(--panel, #252525);
  border: 1px solid var(--border, #383838);
  border-radius: 1.5rem;
  padding: 0.65rem 0.75rem 0.75rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-side {
    border-radius: 2.5rem;
    padding: 1.5rem;
  }
}

.lh-detail-xe-page .lhx-price-label {
  font-size: 9px;
  font-weight: 800;
  color: var(--muted, #9e9e9e);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-price-label {
    font-size: 10px;
  }
}

.lh-detail-xe-page .lhx-price-line {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-top: 0.15rem;
}

.lh-detail-xe-page .lhx-price {
  font-family: inherit;
  font-weight: 800;
  color: var(--lh-price-ref, #ff2f45);
  text-shadow: 0 0 12px rgba(255, 47, 69, 0.2);
}

.lh-detail-xe-page .lhx-price-y {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-price-y {
    font-size: 1.25rem;
  }
}

.lh-detail-xe-page .lhx-price-n {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-price-n {
    font-size: 2.25rem;
  }
}

.lh-detail-xe-page .lhx-shield-row {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 109, 0, 0.12);
  color: #ffc48a;
  border: 1px solid rgba(255, 140, 66, 0.22);
}

.lh-detail-xe-page .lhx-shield-row img {
  height: 14px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-shield-row img {
    height: 16px;
  }
}

.lh-detail-xe-page .lhx-shield-txt {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  font-family: inherit;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-shield-txt {
    font-size: 12px;
  }
}

.lh-detail-xe-page .lhx-side-stack {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-side-stack {
    gap: 1rem;
    margin-top: 0.25rem;
  }
}

.lh-detail-xe-page .lhx-level-block {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-level-block {
    padding-bottom: 1rem;
  }
}

.lh-detail-xe-page .lhx-level-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-level-head {
    margin-bottom: 0.75rem;
  }
}

.lh-detail-xe-page .lhx-level-head h3 {
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  color: #f8fafc;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: inherit;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-level-head h3 {
    font-size: 10px;
  }
}

.lh-detail-xe-page .lhx-level-val {
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  color: var(--blue-glow, #4f8cff);
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-level-val {
    font-size: 12px;
  }
}

.lh-detail-xe-page .lhx-level-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border, #383838);
  border-radius: 0.5rem;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-level-box {
    border-radius: 0.75rem;
    padding: 0.75rem;
  }
}

.lh-detail-xe-page .lhx-level-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  justify-content: center;
}

.lh-detail-xe-page .lhx-level-icons .qq-level-img {
  width: 1rem !important;
  height: 1rem !important;
  object-fit: contain;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-level-icons .qq-level-img {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }
}

.lh-detail-xe-page .lhx-level-empty {
  color: var(--muted, #9e9e9e);
  font-size: 14px;
  font-weight: 800;
}

/* VIP 网格 */
.lh-detail-xe-page .lhx-vip-block {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-vip-block {
    padding-bottom: 1rem;
  }
}

.lh-detail-xe-page .lhx-vip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-vip-grid {
    gap: 0.5rem;
  }
}

.lh-detail-xe-page .lhx-vip-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border, #383838);
  background: rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-vip-cell {
    padding: 0.5rem 0.5rem;
    border-radius: 0.75rem;
  }
}

.lh-detail-xe-page .lhx-vip-cell--muted {
  filter: grayscale(1);
  opacity: 0.88;
}

.lh-detail-xe-page .lhx-vip-cell-main {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-vip-cell-main {
    gap: 0.5rem;
  }
}

.lh-detail-xe-page .lhx-vip-ico {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-vip-ico {
    width: 2rem;
    height: 2rem;
  }
}

.lh-detail-xe-page .lhx-vip-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.35rem;
  background: rgba(148, 163, 184, 0.2);
  font-size: 10px;
  font-weight: 800;
  color: #e2e8f0;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-vip-fallback {
    width: 2rem;
    height: 2rem;
    font-size: 11px;
  }
}

.lh-detail-xe-page .lhx-vip-name {
  font-size: 10px;
  font-weight: 800;
  color: #e2e8f0;
  font-family: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-vip-name {
    font-size: 12px;
  }
}

.lh-detail-xe-page .lhx-vip-lv {
  font-family: inherit;
  font-size: 8px;
  font-weight: 800;
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  border: 1px solid var(--border, #383838);
  background: rgba(15, 23, 42, 0.5);
  color: #cbd5e1;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-vip-lv {
    font-size: 9px;
    padding: 0.15rem 0.5rem;
  }
}

.lh-detail-xe-page .qq-vip-fallback {
  flex-shrink: 0;
}

/* 手机属性四格 */
.lh-detail-xe-page .lhx-mattrs {
  display: block;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-mattrs {
    display: none;
  }
}

.lh-detail-xe-page .lhx-mattrs-title {
  margin: 0 0 0.25rem;
  font-size: 9px;
  font-weight: 800;
  color: #f8fafc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: inherit;
}

.lh-detail-xe-page .lhx-mgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.lh-detail-xe-page .lhx-mcell {
  position: relative;
  text-align: center;
  padding: 0.45rem 0.2rem 0.35rem;
  border-radius: 0.75rem;
}

.lh-detail-xe-page .lhx-mcell--blue {
  background: rgba(59, 130, 246, 0.1);
}

.lh-detail-xe-page .lhx-mcell--green {
  background: rgba(34, 197, 94, 0.1);
}

.lh-detail-xe-page .lhx-mcell--purple {
  background: rgba(168, 85, 247, 0.1);
}

.lh-detail-xe-page .lhx-mcell--orange {
  background: rgba(249, 115, 22, 0.1);
}

.lh-detail-xe-page .lhx-mcell .lhx-tip {
  position: absolute;
  top: 0.05rem;
  right: 0.05rem;
  z-index: 4;
}

.lh-detail-xe-page .lhx-mcell .lhx-tip-btn {
  position: static;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 9px;
}

.lh-detail-xe-page .lhx-mcell .lhx-tip-pop {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 11rem;
  font-size: 10px;
  padding: 0.6rem;
}

.lh-detail-xe-page .lhx-mcell .lhx-tip-arrow {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.lh-detail-xe-page .lhx-mk {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  color: var(--muted, #9e9e9e);
}

.lh-detail-xe-page .lhx-mv {
  margin: 0;
  font-size: 9px;
  font-weight: 800;
}

.lh-detail-xe-page .lhx-mcell--blue .lhx-mv {
  color: #7eb7ff;
}

.lh-detail-xe-page .lhx-mcell--green .lhx-mv {
  color: #4ade80;
}

.lh-detail-xe-page .lhx-mcell--purple .lhx-mv {
  color: #d8b4fe;
}

.lh-detail-xe-page .lhx-mcell--orange .lhx-mv {
  color: #fdba74;
}

/* 手机详情说明 */
.lh-detail-xe-page .lhx-desc--mobile {
  display: block;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-desc--mobile {
    display: none;
  }
}

.lh-detail-xe-page .lhx-desc--mobile .lhx-desc-title {
  margin-bottom: 0.25rem;
}

.lh-detail-xe-page .lhx-desc--mobile .lhx-desc-body {
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 侧栏按钮 */
.lh-detail-xe-page .lhx-actions {
  margin-top: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-actions {
    margin-top: 1.5rem;
    gap: 0.5rem;
  }
}

.lh-detail-xe-page .lhx-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border: 0;
  border-radius: 0.75rem;
  padding: 0.65rem;
  font-family: inherit;
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.15s, transform 0.1s;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-btn {
    padding: 0.75rem;
    font-size: 14px;
  }
}

.lh-detail-xe-page .lhx-btn svg {
  width: 14px;
  height: 14px;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-btn svg {
    width: 16px;
    height: 16px;
  }
}

.lh-detail-xe-page .lhx-btn--buy {
  background: linear-gradient(180deg, #3a74ff, #2b58f0);
  color: #fff;
  box-shadow: 0 12px 28px rgba(43, 88, 240, 0.28);
}

.lh-detail-xe-page .lhx-btn--buy:hover {
  filter: brightness(1.06);
}

.lh-detail-xe-page .lhx-btn--tel {
  background: linear-gradient(180deg, #1fd5a7, #0fbf8b);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 191, 139, 0.22);
}

.lh-detail-xe-page .lhx-btn--tel:hover {
  filter: brightness(1.06);
}

.lh-detail-xe-page .lhx-btn:active {
  transform: scale(0.98);
}

.lh-detail-xe-page .lhx-btn--desktop {
  display: none;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-btn--desktop {
    display: flex;
  }
  .lh-detail-xe-page .lhx-btn--mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .lh-detail-xe-page .lhx-btn--mobile {
    display: flex;
  }
}

/* 流程 */
.lh-detail-xe-page .lhx-flow {
  margin-top: 0.75rem;
  background: var(--panel, #252525);
  border: 1px solid var(--border, #383838);
  border-radius: 1rem;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-flow {
    margin-top: 1rem;
    border-radius: 1.85rem;
    padding: 2rem;
  }
}

.lh-detail-xe-page .lhx-flow-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 999px;
  margin-right: -8rem;
  margin-top: -8rem;
  filter: blur(48px);
  pointer-events: none;
}

.lh-detail-xe-page .lhx-flow-head {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-flow-head {
    margin-bottom: 1.5rem;
  }
}

.lh-detail-xe-page .lhx-flow-title {
  margin: 0 0 0.5rem;
  font-size: 14px;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.02em;
  font-family: inherit;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-flow-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }
}

.lh-detail-xe-page .lhx-flow-line {
  width: 2.5rem;
  height: 2px;
  background: var(--nav, #2b58f0);
  border-radius: 999px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-flow-line {
    width: 4rem;
    height: 4px;
  }
}

.lh-detail-xe-page .lhx-flow-desk {
  display: none;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-flow-desk {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.lh-detail-xe-page .lhx-flow-track {
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 0;
}

.lh-detail-xe-page .lhx-flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 1rem;
  z-index: 1;
}

.lh-detail-xe-page .lhx-flow-ico {
  width: 5rem;
  height: 5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: var(--bg-elevated, #2a2a2a);
  border: 1px solid var(--border, #383838);
  color: var(--blue-glow, #4f8cff);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.lh-detail-xe-page .lhx-flow-ico--done {
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #fff;
  border-color: transparent;
}

.lh-detail-xe-page .lhx-flow-ico svg {
  width: 2rem;
  height: 2rem;
}

.lh-detail-xe-page .lhx-flow-st {
  font-size: 10px;
  font-weight: 800;
  color: var(--muted, #9e9e9e);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.lh-detail-xe-page .lhx-flow-txt {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #e8eef8;
  font-family: inherit;
}

.lh-detail-xe-page .lhx-flow-mob {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-flow-mob {
    display: none;
  }
}

.lh-detail-xe-page .lhx-flow-mob-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.lh-detail-xe-page .lhx-flow-mob-line {
  position: absolute;
  top: 1rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.lh-detail-xe-page .lhx-flow-mstep {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lh-detail-xe-page .lhx-flow-mico {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.lh-detail-xe-page .lhx-flow-mico--blue {
  background: #2b58f0;
  color: #fff;
}

.lh-detail-xe-page .lhx-flow-mico--green {
  background: #16a34a;
  color: #fff;
}

.lh-detail-xe-page .lhx-flow-mico svg {
  width: 1rem;
  height: 1rem;
}

.lh-detail-xe-page .lhx-flow-mnum {
  font-size: 7px;
  font-weight: 700;
  color: var(--muted, #9e9e9e);
}

.lh-detail-xe-page .lhx-flow-mlab {
  margin: 0.1rem 0 0;
  font-size: 8px;
  font-weight: 800;
  color: #cbd5e1;
  text-align: center;
  line-height: 1.2;
}

.lh-detail-xe-page .lhx-flow-foot {
  text-align: center;
  margin-top: 1rem;
  font-size: 12px;
  font-weight: 800;
  color: var(--red-hot, #ff2d55);
  position: relative;
  z-index: 2;
  font-family: inherit;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-flow-foot {
    margin-top: 0.75rem;
    font-size: 16px;
  }
}

/* 联系我们 */
.lh-detail-xe-page .lhx-contact {
  margin-top: 0.75rem;
  background: var(--panel, #252525);
  border: 1px solid var(--border, #383838);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-contact {
    margin-top: 1rem;
    border-radius: 2.5rem;
    padding: 3rem;
  }
}

.lh-detail-xe-page .lhx-contact-title {
  margin: 0 0 0.75rem;
  font-size: 14px;
  font-weight: 800;
  color: #f8fafc;
  font-family: inherit;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-contact-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.lh-detail-xe-page .lhx-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 1rem;
  }
}

.lh-detail-xe-page .lhx-contact-item,
.lh-detail-xe-page button.lhx-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 0.75rem;
  border: 1px solid var(--border, #383838);
  text-align: left;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-contact-item,
  .lh-detail-xe-page button.lhx-contact-item {
    border-radius: 1rem;
    gap: 1rem;
    padding: 1rem 1rem;
  }
}

.lh-detail-xe-page .lhx-contact-item:hover {
  border-color: rgba(79, 140, 255, 0.35);
}

.lh-detail-xe-page .lhx-contact-ico {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-contact-ico {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
  }
}

.lh-detail-xe-page .lhx-contact-ico--blue {
  background: rgba(59, 130, 246, 0.15);
  color: #7eb7ff;
}

.lh-detail-xe-page .lhx-contact-ico--green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.lh-detail-xe-page .lhx-contact-ico svg {
  width: 1rem;
  height: 1rem;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-contact-ico svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.lh-detail-xe-page .lhx-contact-k {
  display: block;
  font-size: 8px;
  font-weight: 700;
  color: var(--muted, #9e9e9e);
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-contact-k {
    font-size: 10px;
  }
}

.lh-detail-xe-page .lhx-contact-v {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #f1f5f9;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-contact-v {
    font-size: 14px;
  }
}

/* 服务说明与全站模块衔接 */
.lh-detail-xe-page .lh-guarantees {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lh-guarantees {
    margin-top: 1.25rem;
  }
}

/* 客服抽屉暗色 */
/* 手机客服抽屉（不依赖 Tailwind） */
.lh-detail-xe-page .lhx-chat-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  box-sizing: border-box;
}

.lh-detail-xe-page .lhx-chat-overlay.hidden {
  display: none !important;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-chat-overlay {
    display: none !important;
    pointer-events: none;
  }
}

.lh-detail-xe-page .lhx-chat-dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.lh-detail-xe-page .lhx-chat-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.lh-detail-xe-page .lhx-chat-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.5rem 0.75rem;
  border-radius: 1rem 1rem 0 0;
  background: var(--panel, #252525);
  border-bottom: 1px solid var(--border, #383838);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.45);
}

.lh-detail-xe-page .lhx-chat-close {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
}

.lh-detail-xe-page .lhx-chat-close:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #fecaca;
}

.lh-detail-xe-page #chat-iframe {
  flex: 1;
  width: 100%;
  border: 0;
  background: #0f1419;
}
