/**
 * 详情页：暗黑主题 + 与「新建文件夹」模板一致的版式（纯 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: 1.15rem;
}

@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: stretch;
    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%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 1024px) {
  /* 左右边栏等宽等高 */
  .lh-detail-xe-page .lhx-col--main,
  .lh-detail-xe-page .lhx-col--side {
    flex: 1 1 0%;
    width: 50%;
    max-width: 50%;
  }
  .lh-detail-xe-page .lhx-col--main .lhx-hero-wrap,
  .lh-detail-xe-page .lhx-col--side .lhx-side {
    flex: 1 1 auto;
    height: 100%;
    box-sizing: border-box;
  }
  .lh-detail-xe-page .lhx-col--main .lhx-hero-wrap {
    display: flex;
    flex-direction: column;
  }
  .lh-detail-xe-page .lhx-col--main .lhx-hero {
    flex: 1 1 auto;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }
  .lh-detail-xe-page .lhx-col--main .lhx-hero-inner--dingdan {
    flex: 1 1 auto;
    height: 100%;
    box-sizing: border-box;
  }
  /* 电脑版：提示紧跟注册时间，不贴底 */
  .lh-detail-xe-page .lhx-col--side .lhx-actions {
    margin-top: auto;
  }
}

/* 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-hero-fx {
  display: none;
}
.lh-detail-xe-page .lhx-hero--dingdan .lhx-hero-fx {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
  }
  .lh-detail-xe-page .lhx-hero--dingdan .lhx-hero-dots {
    opacity: 0.1;
    animation: lhx-fx-dots-drift 28s linear infinite;
    background-size: 20px 20px;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.55) 1px, transparent 0);
  }
  /* 关掉原红/蓝光晕，改成冷灰金属光 */
  .lh-detail-xe-page .lhx-hero--dingdan .lhx-hero-glow1,
  .lh-detail-xe-page .lhx-hero--dingdan .lhx-hero-glow2 {
    background: rgba(255, 255, 255, 0.07) !important;
    width: 20rem;
    height: 20rem;
    opacity: 0.45;
    filter: blur(52px);
  }
  .lh-detail-xe-page .lhx-hero--dingdan .lhx-hero-glow1 {
    animation: lhx-fx-glow-a 12s ease-in-out infinite;
  }
  .lh-detail-xe-page .lhx-hero--dingdan .lhx-hero-glow2 {
    animation: lhx-fx-glow-b 15s ease-in-out infinite;
  }
  .lh-detail-xe-page .lhx-hero-fx-shade {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 60% at 78% 28%, rgba(255, 255, 255, 0.07), transparent 58%),
      radial-gradient(ellipse 55% 50% at 62% 88%, rgba(255, 255, 255, 0.04), transparent 55%),
      linear-gradient(135deg, transparent 40%, rgba(0, 0, 0, 0.22) 100%);
  }
  .lh-detail-xe-page .lhx-hero-fx-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(36px);
    will-change: transform, opacity;
  }
  .lh-detail-xe-page .lhx-hero-fx-spot--a {
    width: 52%;
    height: 62%;
    right: -6%;
    top: -12%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(210, 210, 220, 0.06) 42%, transparent 70%);
    animation: lhx-fx-spot-a 10s ease-in-out infinite;
  }
  .lh-detail-xe-page .lhx-hero-fx-spot--b {
    width: 42%;
    height: 48%;
    right: 12%;
    bottom: -16%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 68%);
    animation: lhx-fx-spot-b 13s ease-in-out infinite;
  }
  .lh-detail-xe-page .lhx-hero-fx-shine {
    position: absolute;
    inset: -50% -30%;
    background: linear-gradient(
      118deg,
      transparent 0%,
      transparent 42%,
      rgba(255, 255, 255, 0.015) 47%,
      rgba(255, 255, 255, 0.14) 50%,
      rgba(255, 255, 255, 0.02) 53%,
      transparent 58%,
      transparent 100%
    );
    animation: lhx-fx-shine 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }
  .lh-detail-xe-page .lhx-hero-fx-scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 28%;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(255, 255, 255, 0.045),
      transparent
    );
    animation: lhx-fx-scan 8.5s ease-in-out infinite;
  }
  .lh-detail-xe-page .lhx-hero-fx-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.22),
      transparent
    );
    opacity: 0;
  }
  .lh-detail-xe-page .lhx-hero-fx-line--1 {
    top: 34%;
    left: 28%;
    width: 58%;
    animation: lhx-fx-line 6s ease-in-out infinite;
  }
  .lh-detail-xe-page .lhx-hero-fx-line--2 {
    top: 72%;
    left: 36%;
    width: 48%;
    animation: lhx-fx-line 6s ease-in-out 1.8s infinite;
  }
  .lh-detail-xe-page .lhx-hero-fx-veil {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image: linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );
    background-size: 100% 36px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
    animation: lhx-fx-veil 16s linear infinite;
  }
  .lh-detail-xe-page .lhx-hero-fx-dust {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.45);
    left: calc(40% + (var(--i) * 6.5%));
    top: calc(16% + ((var(--i) * 19%) % 70%));
    opacity: 0;
    animation: lhx-fx-dust 4.8s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.35s);
  }
  @keyframes lhx-fx-dots-drift {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 20px 20px;
    }
  }
  @keyframes lhx-fx-glow-a {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.28;
    }
    50% {
      transform: translate(14%, 18%) scale(1.15);
      opacity: 0.48;
    }
  }
  @keyframes lhx-fx-glow-b {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.22;
    }
    50% {
      transform: translate(-16%, -12%) scale(1.2);
      opacity: 0.42;
    }
  }
  @keyframes lhx-fx-spot-a {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.45;
    }
    50% {
      transform: translate(-14%, 20%) scale(1.12);
      opacity: 0.8;
    }
  }
  @keyframes lhx-fx-spot-b {
    0%,
    100% {
      transform: translate(0, 0) scale(1);
      opacity: 0.35;
    }
    50% {
      transform: translate(-18%, -14%) scale(1.18);
      opacity: 0.7;
    }
  }
  @keyframes lhx-fx-shine {
    0% {
      transform: translateX(-42%);
      opacity: 0;
    }
    18% {
      opacity: 0.9;
    }
    55% {
      opacity: 0.55;
    }
    100% {
      transform: translateX(42%);
      opacity: 0;
    }
  }
  @keyframes lhx-fx-scan {
    0% {
      transform: translateY(-40%);
      opacity: 0;
    }
    20% {
      opacity: 0.7;
    }
    80% {
      opacity: 0.5;
    }
    100% {
      transform: translateY(280%);
      opacity: 0;
    }
  }
  @keyframes lhx-fx-line {
    0%,
    100% {
      opacity: 0;
      transform: scaleX(0.35);
    }
    40% {
      opacity: 0.75;
      transform: scaleX(1);
    }
    70% {
      opacity: 0.2;
      transform: scaleX(0.85);
    }
  }
  @keyframes lhx-fx-veil {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 0 36px;
    }
  }
  @keyframes lhx-fx-dust {
    0%,
    100% {
      opacity: 0;
      transform: translateY(6px) scale(0.5);
    }
    30% {
      opacity: 0.75;
    }
    70% {
      opacity: 0.45;
      transform: translateY(-22px) scale(1);
    }
    100% {
      opacity: 0;
      transform: translateY(-40px) scale(0.35);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .lh-detail-xe-page .lhx-hero--dingdan .lhx-hero-dots,
    .lh-detail-xe-page .lhx-hero--dingdan .lhx-hero-glow1,
    .lh-detail-xe-page .lhx-hero--dingdan .lhx-hero-glow2,
    .lh-detail-xe-page .lhx-hero-fx-spot,
    .lh-detail-xe-page .lhx-hero-fx-shine,
    .lh-detail-xe-page .lhx-hero-fx-scan,
    .lh-detail-xe-page .lhx-hero-fx-line,
    .lh-detail-xe-page .lhx-hero-fx-veil,
    .lh-detail-xe-page .lhx-hero-fx-dust {
      animation: none;
    }
    .lh-detail-xe-page .lhx-hero-fx-dust {
      opacity: 0.35;
    }
  }

.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.38; }
  40% { opacity: 0.95; }
  70% { opacity: 0.55; }
}

/* 炫彩外圈霓虹呼吸（仅 box-shadow，不碰 filter） */
@keyframes lhx-xc-neon {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -10px 24px rgba(59, 7, 100, 0.48),
      0 0 16px rgba(167, 139, 250, 0.38),
      0 0 32px rgba(236, 72, 153, 0.18),
      0 10px 28px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      inset 0 -10px 24px rgba(59, 7, 100, 0.32),
      0 0 28px rgba(192, 132, 252, 0.72),
      0 0 52px rgba(244, 114, 182, 0.48),
      0 0 78px rgba(34, 211, 238, 0.28),
      0 10px 28px rgba(0, 0, 0, 0.35);
  }
}

/* —— 普号：冰蓝霜刃扫过（单向 + 熄灭，冷色） —— */
@keyframes lhx-flow-pu-a {
  0% {
    transform: translate3d(-58%, 0, 0) skewX(-16deg);
    opacity: 0;
  }
  8% { opacity: 1; }
  52% {
    transform: translate3d(6%, 0, 0) skewX(-16deg);
    opacity: 1;
  }
  82% {
    transform: translate3d(70%, 0, 0) skewX(-16deg);
    opacity: 0.85;
  }
  92%, 100% {
    transform: translate3d(105%, 0, 0) skewX(-16deg);
    opacity: 0;
  }
}
@keyframes lhx-flow-pu-b {
  0%, 18% {
    transform: translate3d(-70%, 6%, 0) skewX(12deg) scaleX(0.8);
    opacity: 0;
  }
  28% { opacity: 0.75; }
  62% {
    transform: translate3d(4%, -3%, 0) skewX(12deg) scaleX(1);
    opacity: 0.9;
  }
  90%, 100% {
    transform: translate3d(100%, -8%, 0) skewX(12deg) scaleX(1.1);
    opacity: 0;
  }
}
@keyframes lhx-pu-neon {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      inset 0 -10px 22px rgba(0, 0, 0, 0.2),
      0 0 0 1px rgba(148, 180, 220, 0.1),
      0 0 16px rgba(148, 186, 230, 0.28),
      0 10px 28px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      inset 0 -10px 22px rgba(0, 0, 0, 0.14),
      0 0 0 1px rgba(186, 220, 255, 0.22),
      0 0 28px rgba(186, 220, 255, 0.48),
      0 0 52px rgba(125, 211, 252, 0.28),
      0 10px 28px rgba(0, 0, 0, 0.35);
  }
}

/* 普号：极弱冰尘粒子（叠在 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;
  }
}

/* —— 靓号：烈焰光刃 + 余烬斜扫 —— */
@keyframes lhx-flow-liang-a {
  0% {
    transform: translate3d(-60%, 0, 0) skewX(-20deg);
    opacity: 0;
  }
  5% { opacity: 1; }
  45% {
    transform: translate3d(10%, 0, 0) skewX(-20deg);
    opacity: 1;
  }
  75% {
    transform: translate3d(68%, 0, 0) skewX(-20deg);
    opacity: 0.9;
  }
  88%, 100% {
    transform: translate3d(110%, 0, 0) skewX(-20deg);
    opacity: 0;
  }
}
@keyframes lhx-flow-liang-b {
  0%, 10% {
    transform: translate3d(85%, -6%, 0) skewX(14deg) scaleX(0.85);
    opacity: 0;
  }
  18% { opacity: 0.85; }
  55% {
    transform: translate3d(-5%, 2%, 0) skewX(14deg) scaleX(1.05);
    opacity: 1;
  }
  88%, 100% {
    transform: translate3d(-95%, 8%, 0) skewX(14deg) scaleX(1.15);
    opacity: 0;
  }
}
@keyframes lhx-liang-neon {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      inset 0 -12px 24px rgba(124, 28, 0, 0.38),
      0 0 18px rgba(251, 146, 60, 0.32),
      0 10px 28px rgba(0, 0, 0, 0.32);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 -12px 24px rgba(124, 28, 0, 0.28),
      0 0 32px rgba(251, 146, 60, 0.65),
      0 0 58px rgba(239, 68, 68, 0.35),
      0 0 80px rgba(253, 186, 116, 0.22),
      0 10px 28px rgba(0, 0, 0, 0.32);
  }
}
@keyframes lhx-glow-liang {
  0%, 100% { opacity: 0.42; }
  40% { opacity: 0.92; }
  70% { opacity: 0.55; }
}

/* —— 炫彩靓号：斜向光刃扫过（单向循环 + 短暂熄灭，仅 transform/opacity） —— */
@keyframes lhx-flow-xc-a {
  0% {
    transform: translate3d(-62%, 0, 0) skewX(-24deg);
    opacity: 0;
  }
  6% { opacity: 1; }
  48% {
    transform: translate3d(8%, 0, 0) skewX(-24deg);
    opacity: 1;
  }
  78% {
    transform: translate3d(72%, 0, 0) skewX(-24deg);
    opacity: 0.88;
  }
  90%, 100% {
    transform: translate3d(108%, 0, 0) skewX(-24deg);
    opacity: 0;
  }
}
@keyframes lhx-flow-xc-b {
  0%, 14% {
    transform: translate3d(-78%, 10%, 0) skewX(20deg) scaleX(0.72);
    opacity: 0;
  }
  22% { opacity: 0.9; }
  58% {
    transform: translate3d(6%, -4%, 0) skewX(20deg) scaleX(1.05);
    opacity: 1;
  }
  88% {
    transform: translate3d(98%, -12%, 0) skewX(20deg) scaleX(1.18);
    opacity: 0;
  }
  100% {
    transform: translate3d(110%, -12%, 0) skewX(20deg) scaleX(1.18);
    opacity: 0;
  }
}

/* —— 黑金：厚重金属浪 + 锐利金脊激光 —— */
@keyframes lhx-flow-hj-a {
  0% {
    transform: translate3d(-52%, 0, 0) skewX(-10deg);
    opacity: 0;
  }
  10% { opacity: 0.9; }
  50% {
    transform: translate3d(8%, 0, 0) skewX(-10deg);
    opacity: 1;
  }
  80% {
    transform: translate3d(65%, 0, 0) skewX(-10deg);
    opacity: 0.85;
  }
  92%, 100% {
    transform: translate3d(102%, 0, 0) skewX(-10deg);
    opacity: 0;
  }
}
@keyframes lhx-flow-hj-b {
  0% {
    transform: translate3d(-70%, 48%, 0) rotate(34deg) scaleX(0.7);
    opacity: 0;
  }
  8% { opacity: 0.95; }
  55% {
    transform: translate3d(5%, -5%, 0) rotate(34deg) scaleX(1.05);
    opacity: 1;
  }
  88%, 100% {
    transform: translate3d(85%, -55%, 0) rotate(34deg) scaleX(1.25);
    opacity: 0;
  }
}
@keyframes lhx-hj-neon {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -14px 28px rgba(0, 0, 0, 0.58),
      0 0 16px rgba(245, 158, 11, 0.22),
      0 10px 28px rgba(0, 0, 0, 0.45);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(253, 230, 138, 0.22),
      inset 0 -14px 28px rgba(0, 0, 0, 0.48),
      0 0 28px rgba(252, 211, 77, 0.55),
      0 0 52px rgba(245, 158, 11, 0.35),
      0 0 72px rgba(217, 119, 6, 0.2),
      0 10px 28px rgba(0, 0, 0, 0.45);
  }
}
@keyframes lhx-glow-hj {
  0%, 100% { opacity: 0.38; }
  45% { opacity: 0.88; }
  70% { opacity: 0.5; }
}

/* —— 黄金靓号：香槟金刃 + 柔光副扫 —— */
@keyframes lhx-flow-gold-a {
  0% {
    transform: translate3d(-58%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
  6% { opacity: 1; }
  48% {
    transform: translate3d(8%, 0, 0) skewX(-18deg);
    opacity: 1;
  }
  78% {
    transform: translate3d(70%, 0, 0) skewX(-18deg);
    opacity: 0.9;
  }
  90%, 100% {
    transform: translate3d(108%, 0, 0) skewX(-18deg);
    opacity: 0;
  }
}
@keyframes lhx-flow-gold-b {
  0%, 16% {
    transform: translate3d(-75%, 8%, 0) skewX(16deg) scaleX(0.78);
    opacity: 0;
  }
  24% { opacity: 0.88; }
  58% {
    transform: translate3d(5%, -4%, 0) skewX(16deg) scaleX(1.05);
    opacity: 1;
  }
  90%, 100% {
    transform: translate3d(102%, -10%, 0) skewX(16deg) scaleX(1.15);
    opacity: 0;
  }
}
@keyframes lhx-gold-neon {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      inset 0 -12px 26px rgba(69, 26, 3, 0.48),
      0 0 18px rgba(253, 224, 71, 0.35),
      0 10px 28px rgba(0, 0, 0, 0.32);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.55),
      inset 0 -12px 26px rgba(69, 26, 3, 0.35),
      0 0 34px rgba(253, 224, 71, 0.7),
      0 0 60px rgba(234, 179, 8, 0.42),
      0 0 88px rgba(250, 204, 21, 0.22),
      0 10px 28px rgba(0, 0, 0, 0.32);
  }
}
@keyframes lhx-glow-gold {
  0%, 100% { opacity: 0.4; }
  40% { opacity: 0.95; }
  70% { opacity: 0.55; }
}

/* —— 桌面端专用：更大幅度 / 更高亮 / 更快频（与手机版分流，min-width 与详情页其它断点一致） —— */
@keyframes lhx-flow-pu-a-desk {
  0% {
    transform: translate3d(-55%, 0, 1px) skewX(-14deg);
    opacity: 0;
  }
  7% { opacity: 1; }
  50% {
    transform: translate3d(8%, 0, 1px) skewX(-14deg);
    opacity: 1;
  }
  80% {
    transform: translate3d(68%, 0, 1px) skewX(-14deg);
    opacity: 0.88;
  }
  92%, 100% {
    transform: translate3d(105%, 0, 1px) skewX(-14deg);
    opacity: 0;
  }
}
@keyframes lhx-flow-pu-b-desk {
  0%, 15% {
    transform: translate3d(-68%, 5%, 1px) skewX(10deg) scaleX(0.82);
    opacity: 0;
  }
  25% { opacity: 0.82; }
  60% {
    transform: translate3d(6%, -2%, 1px) skewX(10deg) scaleX(1);
    opacity: 0.95;
  }
  90%, 100% {
    transform: translate3d(100%, -8%, 1px) skewX(10deg) scaleX(1.12);
    opacity: 0;
  }
}
@keyframes lhx-pu-neon-desk {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.3),
      inset 0 -10px 22px rgba(0, 0, 0, 0.18),
      0 0 0 1px rgba(148, 180, 220, 0.16),
      0 0 24px rgba(148, 186, 230, 0.32),
      0 12px 32px rgba(0, 0, 0, 0.38);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      inset 0 -10px 22px rgba(0, 0, 0, 0.12),
      0 0 0 1px rgba(186, 220, 255, 0.28),
      0 0 36px rgba(186, 220, 255, 0.55),
      0 0 68px rgba(125, 211, 252, 0.32),
      0 12px 32px rgba(0, 0, 0, 0.38);
  }
}
@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(-58%, 0, 1px) skewX(-18deg);
    opacity: 0;
  }
  5% { opacity: 1; }
  44% {
    transform: translate3d(12%, 0, 1px) skewX(-18deg);
    opacity: 1;
  }
  74% {
    transform: translate3d(70%, 0, 1px) skewX(-18deg);
    opacity: 0.9;
  }
  88%, 100% {
    transform: translate3d(110%, 0, 1px) skewX(-18deg);
    opacity: 0;
  }
}
@keyframes lhx-flow-liang-b-desk {
  0%, 8% {
    transform: translate3d(90%, -5%, 1px) skewX(12deg) scaleX(0.8);
    opacity: 0;
  }
  16% { opacity: 0.9; }
  52% {
    transform: translate3d(-2%, 2%, 1px) skewX(12deg) scaleX(1.08);
    opacity: 1;
  }
  88%, 100% {
    transform: translate3d(-100%, 8%, 1px) skewX(12deg) scaleX(1.18);
    opacity: 0;
  }
}
@keyframes lhx-liang-neon-desk {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      inset 0 -12px 24px rgba(124, 28, 0, 0.4),
      0 0 28px rgba(251, 146, 60, 0.45),
      0 12px 36px rgba(0, 0, 0, 0.36);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.55),
      inset 0 -12px 24px rgba(124, 28, 0, 0.28),
      0 0 42px rgba(251, 146, 60, 0.75),
      0 0 72px rgba(239, 68, 68, 0.4),
      0 0 100px rgba(253, 186, 116, 0.25),
      0 12px 36px rgba(0, 0, 0, 0.36);
  }
}
@keyframes lhx-glow-liang-desk {
  0%, 100% { opacity: 0.48; }
  40% { opacity: 1; }
  70% { opacity: 0.58; }
}

@keyframes lhx-flow-xc-a-desk {
  0% {
    transform: translate3d(-58%, 0, 1px) skewX(-22deg);
    opacity: 0;
  }
  5% { opacity: 1; }
  46% {
    transform: translate3d(10%, 0, 1px) skewX(-22deg);
    opacity: 1;
  }
  76% {
    transform: translate3d(68%, 0, 1px) skewX(-22deg);
    opacity: 0.9;
  }
  88%, 100% {
    transform: translate3d(105%, 0, 1px) skewX(-22deg);
    opacity: 0;
  }
}
@keyframes lhx-flow-xc-b-desk {
  0%, 12% {
    transform: translate3d(-72%, 8%, 1px) skewX(18deg) scaleX(0.75);
    opacity: 0;
  }
  20% { opacity: 0.92; }
  55% {
    transform: translate3d(8%, -3%, 1px) skewX(18deg) scaleX(1.08);
    opacity: 1;
  }
  86% {
    transform: translate3d(96%, -10%, 1px) skewX(18deg) scaleX(1.2);
    opacity: 0;
  }
  100% {
    transform: translate3d(110%, -10%, 1px) skewX(18deg) scaleX(1.2);
    opacity: 0;
  }
}
@keyframes lhx-glow-xc-desk {
  0%, 100% { opacity: 0.48; }
  35% { opacity: 1; }
  65% { opacity: 0.62; }
}
@keyframes lhx-xc-neon-desk {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.35),
      inset 0 -10px 26px rgba(59, 7, 100, 0.5),
      0 0 28px rgba(192, 132, 252, 0.48),
      0 0 56px rgba(124, 58, 237, 0.28),
      0 12px 36px rgba(0, 0, 0, 0.38);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      inset 0 -10px 26px rgba(59, 7, 100, 0.35),
      0 0 42px rgba(192, 132, 252, 0.78),
      0 0 78px rgba(244, 114, 182, 0.42),
      0 0 110px rgba(34, 211, 238, 0.28),
      0 12px 36px rgba(0, 0, 0, 0.38);
  }
}

@keyframes lhx-flow-hj-a-desk {
  0% {
    transform: translate3d(-50%, 0, 1px) skewX(-8deg);
    opacity: 0;
  }
  8% { opacity: 0.95; }
  48% {
    transform: translate3d(10%, 0, 1px) skewX(-8deg);
    opacity: 1;
  }
  78% {
    transform: translate3d(68%, 0, 1px) skewX(-8deg);
    opacity: 0.88;
  }
  92%, 100% {
    transform: translate3d(105%, 0, 1px) skewX(-8deg);
    opacity: 0;
  }
}
@keyframes lhx-flow-hj-b-desk {
  0% {
    transform: translate3d(-75%, 50%, 1px) rotate(34deg) scaleX(0.68);
    opacity: 0;
  }
  6% { opacity: 1; }
  52% {
    transform: translate3d(8%, -4%, 1px) rotate(34deg) scaleX(1.1);
    opacity: 1;
  }
  88%, 100% {
    transform: translate3d(90%, -58%, 1px) rotate(34deg) scaleX(1.3);
    opacity: 0;
  }
}
@keyframes lhx-hj-neon-desk {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -14px 28px rgba(0, 0, 0, 0.58),
      0 0 28px rgba(245, 158, 11, 0.32),
      0 12px 40px rgba(0, 0, 0, 0.5);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(253, 230, 138, 0.28),
      inset 0 -14px 28px rgba(0, 0, 0, 0.48),
      0 0 40px rgba(252, 211, 77, 0.65),
      0 0 72px rgba(245, 158, 11, 0.42),
      0 0 100px rgba(217, 119, 6, 0.22),
      0 12px 40px rgba(0, 0, 0, 0.5);
  }
}
@keyframes lhx-glow-hj-desk {
  0%, 100% { opacity: 0.42; }
  40% { opacity: 0.95; }
  70% { opacity: 0.55; }
}

@keyframes lhx-flow-gold-a-desk {
  0% {
    transform: translate3d(-55%, 0, 1px) skewX(-16deg);
    opacity: 0;
  }
  5% { opacity: 1; }
  46% {
    transform: translate3d(10%, 0, 1px) skewX(-16deg);
    opacity: 1;
  }
  76% {
    transform: translate3d(70%, 0, 1px) skewX(-16deg);
    opacity: 0.9;
  }
  88%, 100% {
    transform: translate3d(108%, 0, 1px) skewX(-16deg);
    opacity: 0;
  }
}
@keyframes lhx-flow-gold-b-desk {
  0%, 14% {
    transform: translate3d(-72%, 6%, 1px) skewX(14deg) scaleX(0.8);
    opacity: 0;
  }
  22% { opacity: 0.9; }
  55% {
    transform: translate3d(6%, -3%, 1px) skewX(14deg) scaleX(1.08);
    opacity: 1;
  }
  90%, 100% {
    transform: translate3d(102%, -10%, 1px) skewX(14deg) scaleX(1.18);
    opacity: 0;
  }
}
@keyframes lhx-gold-neon-desk {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      inset 0 -12px 26px rgba(69, 26, 3, 0.48),
      0 0 32px rgba(253, 224, 71, 0.48),
      0 0 52px rgba(234, 179, 8, 0.25),
      0 12px 36px rgba(0, 0, 0, 0.34);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.6),
      inset 0 -12px 26px rgba(69, 26, 3, 0.35),
      0 0 48px rgba(253, 224, 71, 0.8),
      0 0 82px rgba(234, 179, 8, 0.5),
      0 0 110px rgba(250, 204, 21, 0.28),
      0 12px 36px rgba(0, 0, 0, 0.34);
  }
}
@keyframes lhx-glow-gold-desk {
  0%, 100% { opacity: 0.45; }
  40% { opacity: 1; }
  70% { opacity: 0.58; }
}

/* 手机详情药丸：粒子层漂移 / 闪烁（仅 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, #6b7f9a 0%, #475569 42%, #2f3b4c 100%);
  border-color: rgba(186, 210, 255, 0.28);
  animation: lhx-pu-neon 3.2s ease-in-out infinite;
}

.lh-detail-xe-page .type-badge--skin-pu::before {
  left: -88%;
  width: 275%;
  background-image: linear-gradient(
    108deg,
    rgba(100, 140, 190, 0) 0%,
    rgba(100, 140, 190, 0) 36%,
    rgba(125, 211, 252, 0.45) 43%,
    rgba(224, 242, 254, 0.85) 48%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(186, 210, 255, 0.75) 53%,
    rgba(148, 180, 220, 0.35) 58%,
    rgba(100, 140, 190, 0) 66%,
    rgba(100, 140, 190, 0) 100%
  );
  animation-name: lhx-flow-pu-a;
  animation-duration: 3.4s;
  animation-timing-function: cubic-bezier(0.25, 0.6, 0.3, 1);
  animation-direction: normal;
  opacity: 1;
}

.lh-detail-xe-page .type-badge--skin-pu::after {
  left: -92%;
  width: 285%;
  background-image: linear-gradient(
    72deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(186, 230, 253, 0.4) 46%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(147, 197, 253, 0.4) 54%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  animation-name: lhx-flow-pu-b;
  animation-duration: 4.2s;
  animation-timing-function: cubic-bezier(0.33, 0.1, 0.25, 1);
  animation-direction: normal;
  animation-delay: 0.35s;
  opacity: 0.75;
}

.lh-detail-xe-page .type-badge--skin-pu .type-badge-glow {
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 22% 8%, rgba(255, 255, 255, 0.42), rgba(186, 220, 255, 0.18) 42%, rgba(255, 255, 255, 0) 74%),
    radial-gradient(90% 80% at 78% 72%, rgba(125, 211, 252, 0.18), rgba(255, 255, 255, 0) 70%);
  animation-duration: 2.8s;
}

/* 与手机同源：加密冰尘粒子，全端可见（桌面此前仅弱漂移，易被误认为「流光不动」） */
.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, #fb923c 0%, #ea580c 38%, #9a3412 100%);
  border-color: rgba(255, 237, 200, 0.42);
  animation: lhx-liang-neon 2.3s ease-in-out infinite;
}

.lh-detail-xe-page .type-badge--skin-liang::before {
  left: -90%;
  width: 280%;
  background-image: linear-gradient(
    105deg,
    rgba(255, 200, 120, 0) 0%,
    rgba(255, 200, 120, 0) 34%,
    rgba(255, 120, 40, 0.65) 42%,
    rgba(255, 237, 160, 0.9) 47%,
    rgba(255, 255, 255, 0.98) 50%,
    rgba(255, 160, 60, 0.85) 53%,
    rgba(239, 68, 68, 0.45) 58%,
    rgba(255, 200, 120, 0) 66%,
    rgba(255, 200, 120, 0) 100%
  );
  animation-name: lhx-flow-liang-a;
  animation-duration: 1.95s;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-direction: normal;
  opacity: 1;
}

.lh-detail-xe-page .type-badge--skin-liang::after {
  left: -95%;
  width: 290%;
  background-image: linear-gradient(
    78deg,
    rgba(255, 60, 0, 0) 0%,
    rgba(255, 60, 0, 0) 38%,
    rgba(255, 80, 0, 0.55) 45%,
    rgba(255, 200, 100, 0.8) 50%,
    rgba(220, 38, 38, 0.5) 55%,
    rgba(255, 60, 0, 0) 62%,
    rgba(255, 60, 0, 0) 100%
  );
  animation-name: lhx-flow-liang-b;
  animation-duration: 2.55s;
  animation-timing-function: cubic-bezier(0.33, 0.1, 0.25, 1);
  animation-direction: normal;
  opacity: 0.82;
}

.lh-detail-xe-page .type-badge--skin-liang .type-badge-glow {
  background:
    radial-gradient(120% 120% at 20% 6%, rgba(255, 255, 255, 0.5), rgba(255, 180, 80, 0.22) 42%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(90% 80% at 80% 75%, rgba(239, 68, 68, 0.2), rgba(255, 255, 255, 0) 70%);
  animation: lhx-glow-liang 1.85s ease-in-out infinite;
}

.lh-detail-xe-page .type-badge--skin-xuancai {
  background: linear-gradient(155deg, #d8b4fe 0%, #a855f7 28%, #7c3aed 58%, #4c1d95 100%);
  border-color: rgba(216, 180, 254, 0.55);
  animation: lhx-xc-neon 2.4s ease-in-out infinite;
}

.lh-detail-xe-page .type-badge--skin-xuancai::before {
  left: -90%;
  width: 280%;
  background-image: linear-gradient(
    105deg,
    rgba(34, 211, 238, 0) 0%,
    rgba(34, 211, 238, 0) 36%,
    rgba(34, 211, 238, 0.55) 43%,
    rgba(244, 114, 182, 0.78) 47%,
    rgba(255, 255, 255, 0.98) 50%,
    rgba(167, 139, 250, 0.82) 53%,
    rgba(52, 211, 153, 0.5) 58%,
    rgba(34, 211, 238, 0) 65%,
    rgba(34, 211, 238, 0) 100%
  );
  animation-name: lhx-flow-xc-a;
  animation-duration: 2.65s;
  animation-timing-function: cubic-bezier(0.25, 0.55, 0.3, 1);
  animation-direction: normal;
  opacity: 1;
}

.lh-detail-xe-page .type-badge--skin-xuancai::after {
  left: -95%;
  width: 290%;
  background-image: linear-gradient(
    78deg,
    rgba(139, 92, 246, 0) 0%,
    rgba(139, 92, 246, 0) 40%,
    rgba(236, 72, 153, 0.55) 46%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(56, 189, 248, 0.6) 54%,
    rgba(139, 92, 246, 0) 60%,
    rgba(139, 92, 246, 0) 100%
  );
  animation-name: lhx-flow-xc-b;
  animation-duration: 2.05s;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-direction: normal;
  opacity: 0.85;
}

.lh-detail-xe-page .type-badge--skin-xuancai .type-badge-glow {
  background:
    radial-gradient(120% 120% at 18% 8%, rgba(255, 255, 255, 0.42), rgba(244, 114, 182, 0.22) 38%, rgba(167, 139, 250, 0.12) 58%, rgba(255, 255, 255, 0) 78%),
    radial-gradient(90% 80% at 82% 70%, rgba(34, 211, 238, 0.22), rgba(255, 255, 255, 0) 70%);
  animation: lhx-glow-xc 2.1s 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.42);
  animation: lhx-hj-neon 2.8s ease-in-out infinite;
}

.lh-detail-xe-page .type-badge--skin-heijin::before {
  left: -88%;
  width: 275%;
  background-image: linear-gradient(
    100deg,
    rgba(180, 83, 9, 0) 0%,
    rgba(180, 83, 9, 0) 36%,
    rgba(217, 119, 6, 0.55) 43%,
    rgba(253, 230, 138, 0.9) 48%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(252, 211, 77, 0.85) 53%,
    rgba(180, 83, 9, 0.4) 58%,
    rgba(180, 83, 9, 0) 66%,
    rgba(180, 83, 9, 0) 100%
  );
  animation-name: lhx-flow-hj-a;
  animation-duration: 2.65s;
  animation-timing-function: cubic-bezier(0.25, 0.55, 0.3, 1);
  animation-direction: normal;
  opacity: 1;
}

.lh-detail-xe-page .type-badge--skin-heijin::after {
  width: 180%;
  left: -40%;
  top: -45%;
  bottom: -45%;
  background-image: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 253, 231, 0.55) 48%,
    rgba(252, 211, 77, 1) 50%,
    rgba(255, 253, 231, 0.55) 52%,
    rgba(255, 255, 255, 0) 60%
  );
  animation-name: lhx-flow-hj-b;
  animation-duration: 2.05s;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-direction: normal;
  opacity: 0.78;
}

.lh-detail-xe-page .type-badge--skin-heijin .type-badge-glow {
  background:
    radial-gradient(120% 120% at 26% 8%, rgba(253, 230, 138, 0.4), rgba(245, 158, 11, 0.12) 46%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(80% 70% at 75% 70%, rgba(252, 211, 77, 0.15), rgba(255, 255, 255, 0) 70%);
  animation: lhx-glow-hj 2.4s ease-in-out infinite;
}

.lh-detail-xe-page .type-badge--skin-gold {
  background: linear-gradient(155deg, #facc15 0%, #b45309 42%, #713f12 100%);
  border-color: rgba(254, 243, 199, 0.55);
  animation: lhx-gold-neon 2.35s ease-in-out infinite;
}

.lh-detail-xe-page .type-badge--skin-gold::before {
  left: -90%;
  width: 280%;
  background-image: linear-gradient(
    105deg,
    rgba(254, 215, 0, 0) 0%,
    rgba(254, 215, 0, 0) 34%,
    rgba(253, 224, 71, 0.65) 42%,
    rgba(254, 243, 199, 0.92) 47%,
    rgba(255, 255, 255, 1) 50%,
    rgba(250, 204, 21, 0.88) 53%,
    rgba(217, 119, 6, 0.45) 58%,
    rgba(254, 215, 0, 0) 66%,
    rgba(254, 215, 0, 0) 100%
  );
  animation-name: lhx-flow-gold-a;
  animation-duration: 2.15s;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  animation-direction: normal;
  opacity: 1;
}

.lh-detail-xe-page .type-badge--skin-gold::after {
  left: -95%;
  width: 290%;
  background-image: linear-gradient(
    78deg,
    rgba(255, 251, 235, 0) 0%,
    rgba(255, 251, 235, 0) 38%,
    rgba(254, 249, 195, 0.55) 45%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(253, 224, 71, 0.55) 55%,
    rgba(255, 251, 235, 0) 62%,
    rgba(255, 251, 235, 0) 100%
  );
  animation-name: lhx-flow-gold-b;
  animation-duration: 2.7s;
  animation-timing-function: cubic-bezier(0.33, 0.1, 0.25, 1);
  animation-direction: normal;
  opacity: 0.8;
}

.lh-detail-xe-page .type-badge--skin-gold .type-badge-glow {
  background:
    radial-gradient(120% 120% at 20% 6%, rgba(255, 255, 255, 0.5), rgba(253, 224, 71, 0.28) 42%, rgba(255, 255, 255, 0) 76%),
    radial-gradient(90% 80% at 82% 72%, rgba(250, 204, 21, 0.22), rgba(255, 255, 255, 0) 70%);
  animation: lhx-glow-gold 1.95s ease-in-out infinite;
}

/* 全端与手机一致：靓号/炫彩/黑金/黄金 的 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;
}

/* 桌面流光承载层：手机隐藏，由 type-badge 伪元素动画；桌面见 min-width:768px */
.lh-detail-xe-page .type-badge-flow {
  display: none;
}

@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;
    -webkit-transform: none;
    transform: none;
  }

  .lh-detail-xe-page .type-badge-flow {
    display: block;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
  }

  /*
   * Chrome Win：type-badge 双伪元素无限 transform 常整段冻结（手机 WebKit 正常）。
   * 桌面改由真实 DOM .type-badge-flow 承载流光，伪元素只保留静态底（见各 skin 底色）。
   */
  .lh-detail-xe-page .type-badge::before,
  .lh-detail-xe-page .type-badge::after {
    -webkit-animation: none !important;
    animation: none !important;
    visibility: hidden;
    opacity: 0 !important;
  }

  .lh-detail-xe-page .type-badge-flow::before,
  .lh-detail-xe-page .type-badge-flow::after {
    content: "";
    position: absolute;
    border-radius: inherit;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
  }

  .lh-detail-xe-page .type-badge-flow::before {
    top: -14%;
    bottom: -14%;
    left: -82%;
    width: 264%;
    z-index: 0;
    opacity: 0.94;
  }

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

  /* 普号：冰蓝霜刃 */
  .lh-detail-xe-page .type-badge--skin-pu {
    -webkit-animation: lhx-pu-neon-desk 2.8s ease-in-out infinite;
    animation: lhx-pu-neon-desk 2.8s ease-in-out infinite;
  }

  .lh-detail-xe-page .type-badge--skin-pu .type-badge-flow::before {
    left: -92%;
    width: 285%;
    -webkit-animation-name: lhx-flow-pu-a-desk;
    animation-name: lhx-flow-pu-a-desk;
    -webkit-animation-duration: 2.85s;
    animation-duration: 2.85s;
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.6, 0.3, 1);
    animation-timing-function: cubic-bezier(0.25, 0.6, 0.3, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
    opacity: 1;
    background-image: linear-gradient(
      108deg,
      rgba(100, 140, 190, 0) 0%,
      rgba(100, 140, 190, 0) 34%,
      rgba(125, 211, 252, 0.55) 42%,
      rgba(224, 242, 254, 0.9) 47%,
      rgba(255, 255, 255, 1) 50%,
      rgba(186, 210, 255, 0.82) 53%,
      rgba(148, 180, 220, 0.4) 58%,
      rgba(100, 140, 190, 0) 66%,
      rgba(100, 140, 190, 0) 100%
    );
  }

  .lh-detail-xe-page .type-badge--skin-pu .type-badge-flow::after {
    left: -96%;
    width: 295%;
    -webkit-animation-name: lhx-flow-pu-b-desk;
    animation-name: lhx-flow-pu-b-desk;
    -webkit-animation-duration: 3.6s;
    animation-duration: 3.6s;
    -webkit-animation-timing-function: cubic-bezier(0.33, 0.1, 0.25, 1);
    animation-timing-function: cubic-bezier(0.33, 0.1, 0.25, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
    opacity: 0.82;
    background-image: linear-gradient(
      72deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 38%,
      rgba(186, 230, 253, 0.5) 45%,
      rgba(255, 255, 255, 0.82) 50%,
      rgba(147, 197, 253, 0.48) 55%,
      rgba(255, 255, 255, 0) 62%,
      rgba(255, 255, 255, 0) 100%
    );
  }

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

  /* 靓号：烈焰光刃 */
  .lh-detail-xe-page .type-badge--skin-liang {
    -webkit-animation: lhx-liang-neon-desk 2.1s ease-in-out infinite;
    animation: lhx-liang-neon-desk 2.1s ease-in-out infinite;
  }

  .lh-detail-xe-page .type-badge--skin-liang .type-badge-flow::before {
    left: -95%;
    width: 290%;
    -webkit-animation-name: lhx-flow-liang-a-desk;
    animation-name: lhx-flow-liang-a-desk;
    -webkit-animation-duration: 1.65s;
    animation-duration: 1.65s;
    -webkit-animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
    opacity: 1;
    background-image: linear-gradient(
      105deg,
      rgba(255, 200, 120, 0) 0%,
      rgba(255, 200, 120, 0) 32%,
      rgba(255, 120, 40, 0.7) 40%,
      rgba(255, 237, 160, 0.95) 46%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 160, 60, 0.9) 54%,
      rgba(239, 68, 68, 0.5) 60%,
      rgba(255, 200, 120, 0) 68%,
      rgba(255, 200, 120, 0) 100%
    );
  }

  .lh-detail-xe-page .type-badge--skin-liang .type-badge-flow::after {
    left: -100%;
    width: 300%;
    -webkit-animation-name: lhx-flow-liang-b-desk;
    animation-name: lhx-flow-liang-b-desk;
    -webkit-animation-duration: 2.2s;
    animation-duration: 2.2s;
    -webkit-animation-timing-function: cubic-bezier(0.33, 0.1, 0.25, 1);
    animation-timing-function: cubic-bezier(0.33, 0.1, 0.25, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
    opacity: 0.88;
    background-image: linear-gradient(
      78deg,
      rgba(255, 60, 0, 0) 0%,
      rgba(255, 60, 0, 0) 36%,
      rgba(255, 80, 0, 0.6) 44%,
      rgba(255, 200, 100, 0.88) 50%,
      rgba(220, 38, 38, 0.55) 56%,
      rgba(255, 60, 0, 0) 64%,
      rgba(255, 60, 0, 0) 100%
    );
  }

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

  /* 炫彩靓号：桌面光刃扫过 + 霓虹呼吸 */
  .lh-detail-xe-page .type-badge--skin-xuancai {
    -webkit-animation: lhx-xc-neon-desk 2.2s ease-in-out infinite;
    animation: lhx-xc-neon-desk 2.2s ease-in-out infinite;
  }

  .lh-detail-xe-page .type-badge--skin-xuancai .type-badge-flow::before {
    left: -95%;
    width: 290%;
    -webkit-animation-name: lhx-flow-xc-a-desk;
    animation-name: lhx-flow-xc-a-desk;
    -webkit-animation-duration: 1.75s;
    animation-duration: 1.75s;
    -webkit-animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
    opacity: 1;
    background-image: linear-gradient(
      105deg,
      rgba(34, 211, 238, 0) 0%,
      rgba(34, 211, 238, 0) 34%,
      rgba(34, 211, 238, 0.65) 42%,
      rgba(244, 114, 182, 0.85) 47%,
      rgba(255, 255, 255, 1) 50%,
      rgba(167, 139, 250, 0.88) 53%,
      rgba(52, 211, 153, 0.55) 58%,
      rgba(34, 211, 238, 0) 66%,
      rgba(34, 211, 238, 0) 100%
    );
  }

  .lh-detail-xe-page .type-badge--skin-xuancai .type-badge-flow::after {
    left: -100%;
    width: 300%;
    -webkit-animation-name: lhx-flow-xc-b-desk;
    animation-name: lhx-flow-xc-b-desk;
    -webkit-animation-duration: 2.35s;
    animation-duration: 2.35s;
    -webkit-animation-timing-function: cubic-bezier(0.33, 0.1, 0.25, 1);
    animation-timing-function: cubic-bezier(0.33, 0.1, 0.25, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
    opacity: 0.9;
    background-image: linear-gradient(
      78deg,
      rgba(139, 92, 246, 0) 0%,
      rgba(139, 92, 246, 0) 38%,
      rgba(236, 72, 153, 0.62) 45%,
      rgba(255, 255, 255, 0.88) 50%,
      rgba(56, 189, 248, 0.68) 55%,
      rgba(139, 92, 246, 0) 62%,
      rgba(139, 92, 246, 0) 100%
    );
  }

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

  /* 黑金：金脊激光 */
  .lh-detail-xe-page .type-badge--skin-heijin {
    -webkit-animation: lhx-hj-neon-desk 2.5s ease-in-out infinite;
    animation: lhx-hj-neon-desk 2.5s ease-in-out infinite;
  }

  .lh-detail-xe-page .type-badge--skin-heijin .type-badge-flow::before {
    left: -92%;
    width: 285%;
    -webkit-animation-name: lhx-flow-hj-a-desk;
    animation-name: lhx-flow-hj-a-desk;
    -webkit-animation-duration: 2.25s;
    animation-duration: 2.25s;
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.55, 0.3, 1);
    animation-timing-function: cubic-bezier(0.25, 0.55, 0.3, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
    opacity: 1;
    background-image: linear-gradient(
      100deg,
      rgba(180, 83, 9, 0) 0%,
      rgba(180, 83, 9, 0) 34%,
      rgba(217, 119, 6, 0.6) 42%,
      rgba(253, 230, 138, 0.95) 47%,
      rgba(255, 255, 255, 1) 50%,
      rgba(252, 211, 77, 0.9) 53%,
      rgba(180, 83, 9, 0.45) 58%,
      rgba(180, 83, 9, 0) 66%,
      rgba(180, 83, 9, 0) 100%
    );
  }

  .lh-detail-xe-page .type-badge--skin-heijin .type-badge-flow::after {
    -webkit-animation-name: lhx-flow-hj-b-desk;
    animation-name: lhx-flow-hj-b-desk;
    -webkit-animation-duration: 1.7s;
    animation-duration: 1.7s;
    -webkit-animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
    opacity: 0.88;
    width: 185%;
    left: -42%;
    top: -48%;
    bottom: -48%;
    background-image: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0) 38%,
      rgba(255, 253, 231, 0.75) 48%,
      rgba(252, 211, 77, 1) 50%,
      rgba(255, 253, 231, 0.75) 52%,
      rgba(255, 255, 255, 0) 62%
    );
  }

  .lh-detail-xe-page .type-badge--skin-heijin .type-badge-glow {
    animation: lhx-glow-hj-desk 2.1s ease-in-out infinite;
  }

  /* 黄金靓号：香槟金刃 */
  .lh-detail-xe-page .type-badge--skin-gold {
    -webkit-animation: lhx-gold-neon-desk 2.15s ease-in-out infinite;
    animation: lhx-gold-neon-desk 2.15s ease-in-out infinite;
  }

  .lh-detail-xe-page .type-badge--skin-gold .type-badge-flow::before {
    left: -95%;
    width: 290%;
    -webkit-animation-name: lhx-flow-gold-a-desk;
    animation-name: lhx-flow-gold-a-desk;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
    opacity: 1;
    background-image: linear-gradient(
      105deg,
      rgba(254, 215, 0, 0) 0%,
      rgba(254, 215, 0, 0) 32%,
      rgba(253, 224, 71, 0.7) 40%,
      rgba(254, 243, 199, 0.95) 46%,
      rgba(255, 255, 255, 1) 50%,
      rgba(250, 204, 21, 0.9) 54%,
      rgba(217, 119, 6, 0.5) 60%,
      rgba(254, 215, 0, 0) 68%,
      rgba(254, 215, 0, 0) 100%
    );
  }

  .lh-detail-xe-page .type-badge--skin-gold .type-badge-flow::after {
    left: -100%;
    width: 300%;
    -webkit-animation-name: lhx-flow-gold-b-desk;
    animation-name: lhx-flow-gold-b-desk;
    -webkit-animation-duration: 2.35s;
    animation-duration: 2.35s;
    -webkit-animation-timing-function: cubic-bezier(0.33, 0.1, 0.25, 1);
    animation-timing-function: cubic-bezier(0.33, 0.1, 0.25, 1);
    -webkit-animation-direction: normal;
    animation-direction: normal;
    opacity: 0.85;
    background-image: linear-gradient(
      78deg,
      rgba(255, 251, 235, 0) 0%,
      rgba(255, 251, 235, 0) 36%,
      rgba(254, 249, 195, 0.62) 44%,
      rgba(255, 255, 255, 0.92) 50%,
      rgba(253, 224, 71, 0.62) 56%,
      rgba(255, 251, 235, 0) 64%,
      rgba(255, 251, 235, 0) 100%
    );
  }

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

/* 手机版：保持各皮肤光刃节奏，勿覆盖霓虹 box-shadow 动画 */
@media (max-width: 767.98px) {
  .lh-detail-xe-page .type-badge--skin-pu::before,
  .lh-detail-xe-page .type-badge--skin-liang::before,
  .lh-detail-xe-page .type-badge--skin-xuancai::before,
  .lh-detail-xe-page .type-badge--skin-heijin::before,
  .lh-detail-xe-page .type-badge--skin-gold::before {
    opacity: 1;
  }

  .lh-detail-xe-page .type-badge--skin-pu::after,
  .lh-detail-xe-page .type-badge--skin-liang::after,
  .lh-detail-xe-page .type-badge--skin-xuancai::after,
  .lh-detail-xe-page .type-badge--skin-heijin::after,
  .lh-detail-xe-page .type-badge--skin-gold::after {
    opacity: 0.8;
  }
}

.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,
  .lh-detail-xe-page .type-badge-flow::before,
  .lh-detail-xe-page .type-badge-flow::after {
    -webkit-animation: none !important;
    animation: none !important;
    opacity: 0.36;
    transform: none;
    filter: none;
  }
  .lh-detail-xe-page .type-badge-glow {
    -webkit-animation: none;
    animation: none;
    opacity: 0.48;
    filter: none;
  }
  .lh-detail-xe-page .type-badge--skin-pu,
  .lh-detail-xe-page .type-badge--skin-liang,
  .lh-detail-xe-page .type-badge--skin-xuancai,
  .lh-detail-xe-page .type-badge--skin-heijin,
  .lh-detail-xe-page .type-badge--skin-gold {
    -webkit-animation: none !important;
    animation: none !important;
  }
  .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;
}

.lh-detail-xe-page .type-badge--skin-pu .type-badge-label {
  text-shadow:
    0 0 8px rgba(186, 220, 255, 0.35),
    0 1px 2px rgba(15, 23, 42, 0.65);
}

.lh-detail-xe-page .type-badge--skin-liang .type-badge-label {
  text-shadow:
    0 0 8px rgba(255, 200, 120, 0.4),
    0 1px 2px rgba(124, 28, 0, 0.7);
}

.lh-detail-xe-page .type-badge--skin-xuancai .type-badge-label {
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.35),
    0 1px 2px rgba(49, 10, 101, 0.65);
}

.lh-detail-xe-page .type-badge--skin-heijin .type-badge-label {
  text-shadow:
    0 0 8px rgba(252, 211, 77, 0.4),
    0 1px 2px rgba(0, 0, 0, 0.85);
}

.lh-detail-xe-page .type-badge--skin-gold .type-badge-label {
  text-shadow:
    0 0 8px rgba(254, 243, 199, 0.45),
    0 1px 2px rgba(69, 26, 3, 0.7);
}

@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--side {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  width: 100%;
  min-width: 0;
  margin: 0.85rem 0 0;
  box-sizing: border-box;
}

.lh-detail-xe-page .lhx-attr-k-short,
.lh-detail-xe-page .lhx-attr-v-short {
  display: none;
}

@media (min-width: 420px) {
  .lh-detail-xe-page .lhx-attrs--side {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
  }
}

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

.lh-detail-xe-page .lhx-attrs--side .lhx-attr-card {
  padding: 0.85rem 0.55rem 0.75rem;
  border-radius: 1rem;
  min-width: 0;
}

.lh-detail-xe-page .lhx-attrs--side .lhx-attr-ico {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.75rem;
}

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

.lh-detail-xe-page .lhx-attrs--side .lhx-attr-k {
  font-size: 9px;
  letter-spacing: 0.06em;
}

.lh-detail-xe-page .lhx-attrs--side .lhx-attr-v {
  font-size: 12px;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-card {
    padding: 1rem 0.65rem 0.85rem;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-ico {
    width: 2.75rem;
    height: 2.75rem;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-v {
    font-size: 13px;
  }
}

/* 手机：按参考图一横排四格（短文案 + 彩色底 + 右上角问号，无大图标） */
@media (max-width: 767px) {
  .lh-detail-xe-page .lhx-attrs--side {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px;
    margin-top: 0.65rem;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-ico-wrap {
    display: none !important;
  }
  .lh-detail-xe-page .lhx-attr-k-full,
  .lh-detail-xe-page .lhx-attr-v-full {
    display: none !important;
  }
  .lh-detail-xe-page .lhx-attr-k-short,
  .lh-detail-xe-page .lhx-attr-v-short {
    display: inline !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-card {
    padding: 0.5rem 0.2rem 0.4rem;
    border-radius: 0.7rem;
    border: 0;
    box-shadow: none;
    overflow: hidden;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-card--blue {
    background: rgba(59, 130, 246, 0.14) !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-card--green {
    background: rgba(34, 197, 94, 0.14) !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-card--purple {
    background: rgba(168, 85, 247, 0.14) !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-card--orange {
    background: rgba(249, 115, 22, 0.14) !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-card:hover {
    border-color: transparent;
    box-shadow: none;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-tip {
    top: 0.12rem;
    right: 0.12rem;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-tip-btn {
    width: 0.95rem;
    height: 0.95rem;
    font-size: 8px;
    font-weight: 800;
    color: #fff !important;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-tip--blue .lhx-tip-btn {
    background: #3b82f6 !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-tip--green .lhx-tip-btn {
    background: #22c55e !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-tip--purple .lhx-tip-btn {
    background: #a855f7 !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-tip--orange .lhx-tip-btn {
    background: #f97316 !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-k {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0;
    text-transform: none;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-v {
    margin: 0.18rem 0 0;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    color: #f1f5f9;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-card--blue .lhx-attr-v {
    color: #7eb7ff !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-card--green .lhx-attr-v {
    color: #4ade80 !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-card--purple .lhx-attr-v {
    color: #d8b4fe !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-card--orange .lhx-attr-v,
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-v--orange {
    color: #fdba74 !important;
  }
  .lh-detail-xe-page .lhx-attrs--side .lhx-attr-k {
    color: rgba(255, 255, 255, 0.55) !important;
  }
}

/* 旧外置四格：已迁入侧栏，强制隐藏 */
.lh-detail-xe-page .lhx-attrs:not(.lhx-attrs--side),
.lh-detail-xe-page .lhx-attrs--row:not(.lhx-attrs--side),
.lh-detail-xe-page .lhx-attrs--desktop:not(.lhx-attrs--side) {
  display: none !important;
}

.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),
    0 8px 24px rgba(0, 0, 0, 0.85);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lh-detail-xe-page .lhx-attr-card:hover {
  border-color: rgba(79, 140, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.85);
}

.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;
}

/* 全端：卡片内气泡仅作文案源，展示由 main.js fixed 层负责（避免盖住复制按钮） */
.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-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;
}

.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: #fdba74;
}

/* 详情说明 桌面 */
.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),
      0 8px 24px rgba(0, 0, 0, 0.85);
  }
}

.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: none !important;
}

.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: 6px;
}

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

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

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

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

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

.lh-detail-xe-page .lhx-mcell .lhx-mtip-dot {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.lh-detail-xe-page .lhx-mcell--blue .lhx-mtip-dot {
  background: rgba(59, 130, 246, 0.35);
  color: #bfdbfe;
}
.lh-detail-xe-page .lhx-mcell--green .lhx-mtip-dot {
  background: rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
}
.lh-detail-xe-page .lhx-mcell--purple .lhx-mtip-dot {
  background: rgba(168, 85, 247, 0.35);
  color: #e9d5ff;
}
.lh-detail-xe-page .lhx-mcell--orange .lhx-mtip-dot {
  background: rgba(249, 115, 22, 0.35);
  color: #fed7aa;
}

.lh-detail-xe-page .lhx-mk {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

.lh-detail-xe-page .lhx-mv {
  margin: 0.15rem 0 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  word-break: keep-all;
  white-space: normal;
}

.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;
}

/* 手机四格：问号可点，说明走 fixed 浮层 */
.lh-detail-xe-page .lhx-mcell .lhx-tip {
  position: absolute;
  top: 0.15rem;
  right: 0.15rem;
  z-index: 5;
}
.lh-detail-xe-page .lhx-mcell .lhx-tip-btn {
  width: 1.15rem;
  height: 1.15rem;
  font-size: 9px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.lh-detail-xe-page .lhx-mcell--blue .lhx-tip-btn {
  background: rgba(59, 130, 246, 0.35);
  color: #bfdbfe;
}
.lh-detail-xe-page .lhx-mcell--green .lhx-tip-btn {
  background: rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
}
.lh-detail-xe-page .lhx-mcell--purple .lhx-tip-btn {
  background: rgba(168, 85, 247, 0.35);
  color: #e9d5ff;
}
.lh-detail-xe-page .lhx-mcell--orange .lhx-tip-btn {
  background: rgba(249, 115, 22, 0.35);
  color: #fed7aa;
}

/* 手机详情说明 */
.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-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 0.45rem;
  }
  .lh-detail-xe-page .lhx-actions .lhx-btn--mobile {
    display: flex;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    padding: 0.55rem 0.4rem;
    font-size: 12px;
    letter-spacing: 0.02em;
    text-transform: none;
    border-radius: 999px;
  }
  .lh-detail-xe-page .lhx-actions .lhx-btn--mobile svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
}

/* 流程 */
.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),
    0 8px 24px rgba(0, 0, 0, 0.85);
}

@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-notes {
  margin-top: 0.75rem;
  background: var(--panel, #252525);
  border: 1px solid var(--border, #383838);
  border-radius: 1rem;
  padding: 1rem 1rem 1.15rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.85);
}

/* 相关推荐：同位数同类型精品卡 */
.lh-detail-xe-page .lhx-related {
  margin-top: 0.75rem;
  background: var(--panel, #252525);
  border: 1px solid var(--border, #383838);
  border-radius: 1rem;
  padding: 1rem 0.85rem 1.1rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.85);
}

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

.lh-detail-xe-page .lhx-related-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  font-family: inherit;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-related-title {
    gap: 0.55rem;
    margin-bottom: 1.1rem;
    font-size: 1.35rem;
  }
}

.lh-detail-xe-page .lhx-related-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.3rem;
  background: #e74c3c;
  color: #fff;
  box-shadow: 0 0 10px rgba(231, 76, 60, 0.45);
}

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

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

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

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

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

.lh-detail-xe-page .lhx-related-grid .num-card.num-card--showcase.num-card--jingpin {
  width: 100%;
  max-width: none;
  margin: 0;
}

.lh-detail-xe-page .lhx-related-grid .num-card--jingpin .jp-tip {
  display: none;
}

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

.lh-detail-xe-page .lhx-notes-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  font-size: 15px;
  font-weight: 800;
  color: #e74c3c;
  font-family: inherit;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-notes-title {
    gap: 0.5rem;
    margin-bottom: 1.15rem;
    font-size: 1.35rem;
  }
}

.lh-detail-xe-page .lhx-notes-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  background: #e74c3c;
  color: #fff;
}

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

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

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

.lh-detail-xe-page .lhx-notes-block + .lhx-notes-block {
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-notes-block + .lhx-notes-block {
    margin-top: 1.35rem;
  }
}

.lh-detail-xe-page .lhx-notes-sub {
  margin: 0 0 0.45rem;
  font-size: 13px;
  font-weight: 800;
  color: #e74c3c;
  font-family: inherit;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-notes-sub {
    margin-bottom: 0.6rem;
    font-size: 1.05rem;
  }
}

.lh-detail-xe-page .lhx-notes-list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  list-style: decimal;
  color: #f1f5f9;
  font-size: 12px;
  line-height: 1.75;
  font-family: inherit;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-notes-list {
    padding-left: 1.35rem;
    font-size: 14px;
    line-height: 1.85;
  }
}

.lh-detail-xe-page .lhx-notes-list li + li {
  margin-top: 0.2rem;
}

@media (min-width: 768px) {
  .lh-detail-xe-page .lhx-notes-list li + li {
    margin-top: 0.28rem;
  }
}

/* 联系我们 */
.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),
    0 8px 24px rgba(0, 0, 0, 0.85);
}

@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;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.75);
}

@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);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.75);
}

.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;
}
