/* ===== lijiang_design_snowpeak · 雪山古镇 东巴纸纹 ===== */
:root {
  --brand: #0f766e;
  --brand-deep: #115e59;
  --accent: #c2410c;
  --accent-deep: #9a3412;
  --bg: #faf9f5;
  --surface: #ffffff;
  --ink: #1c1917;
  --text: #292524;
  --text-soft: #57534e;
  --text-light: #6b7280;
  --gray: #94a3b8;
  --gray-light: #cbd5e1;
  --radius: 4px;
  --shadow: 0 6px 24px rgba(28,25,23,.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; font-size: 16px; }
a { color: var(--brand); text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ===== 导航：雪山渐变深色通栏 ===== */
.lj-nav { position: sticky; top: 0; z-index: 200; background: linear-gradient(180deg, #134e4a 0%, #0f766e 100%); color: #fff; transition: box-shadow .25s; }
.lj-nav.is-solid { box-shadow: 0 4px 18px rgba(19,78,74,.35); }
.lj-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.lj-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 19px; font-weight: 700; letter-spacing: 1px; }
.lj-nav__menu { display: flex; align-items: center; gap: 6px; }
.lj-nav__link { display: inline-flex; align-items: center; gap: 5px; color: rgba(255,255,255,.88); font-size: 15px; padding: 8px 14px; border-radius: var(--radius); text-decoration: none; transition: background .2s, color .2s; }
.lj-nav__link:hover { background: rgba(255,255,255,.12); color: #fff; }
.lj-nav__link.is-active { color: #fdba74; font-weight: 600; }
.lj-drop { position: relative; }
.lj-drop__panel { position: absolute; top: 100%; left: 0; min-width: 168px; background: #fff; border-top: 3px solid var(--accent); box-shadow: var(--shadow); border-radius: 0 0 var(--radius) var(--radius); opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .22s; padding: 8px 0; }
.lj-drop:hover .lj-drop__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.lj-drop__panel a { display: block; padding: 9px 18px; color: var(--text); font-size: 14px; }
.lj-drop__panel a:hover { background: #f0fdfa; color: var(--brand); }
.lj-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.lj-burger span { width: 24px; height: 2.5px; background: #fff; border-radius: 2px; }
/* 东巴菱格装饰条 */
.lj-nav__dongba { display: flex; height: 6px; }
.lj-nav__dongba span { flex: 1; }
.lj-nav__dongba span:nth-child(2n+1) { background: var(--accent); }
.lj-nav__dongba span:nth-child(2n) { background: #0d9488; }

/* ===== Hero：雪山层叠视差 ===== */
.lj-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #0c4a6e 0%, #0f766e 58%, #faf9f5 100%); color: #fff; min-height: 620px; display: flex; align-items: flex-end; cursor: crosshair; }
.lj-hero__layers { position: absolute; inset: 0; pointer-events: none; }
.lj-hero__layer { position: absolute; left: -4%; width: 108%; bottom: -12px; transition: transform .15s linear; }
.lj-hero__layer svg { display: block; width: 100%; height: auto; }
.lj-hero__content { position: relative; z-index: 3; padding: 90px 0 110px; max-width: 640px; }
.lj-hero__kicker { display: inline-block; background: rgba(194,65,12,.9); color: #fff; font-size: 13px; letter-spacing: 3px; padding: 6px 16px; border-radius: 2px; margin-bottom: 22px; }
.lj-hero__title { font-size: 42px; line-height: 1.3; margin-bottom: 20px; }
.lj-hero__title em { font-style: normal; color: #fdba74; }
.lj-hero__desc { font-size: 17px; color: rgba(255,255,255,.82); margin-bottom: 32px; }
.lj-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; }
/* 水波晕开 */
.lj-ripple { position: absolute; width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); pointer-events: none; transform: translate(-50%,-50%); animation: ljRipple 1.1s ease-out forwards; z-index: 2; }
@keyframes ljRipple { to { width: 260px; height: 260px; opacity: 0; } }

/* ===== 通用按钮 ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: var(--radius); font-size: 15px; font-weight: 600; transition: all .25s; border: none; cursor: pointer; position: relative; overflow: hidden; }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-deep); color: #fff; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-deep); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.75); }
.btn--ghost:hover { background: rgba(255,255,255,.14); color: #fff; }
.btn--line { background: transparent; color: var(--brand); border: 1.5px solid var(--brand); }
.btn--line:hover { background: var(--brand); color: #fff; }

/* ===== 区块通用 ===== */
.section { padding: 84px 0; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 44px; flex-wrap: wrap; }
.sec-head h2 { font-size: 32px; color: var(--ink); position: relative; padding-left: 18px; }
.sec-head h2::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 5px; background: linear-gradient(180deg, var(--accent), var(--brand)); border-radius: 2px; }
.sec-aux { color: var(--text-light); font-size: 14px; }

/* 东巴菱格分隔（网页内区块之间） */
.dongba-sep { display: flex; justify-content: center; gap: 14px; padding: 26px 0; }
.dongba-sep i { width: 10px; height: 10px; transform: rotate(45deg); display: block; }
.dongba-sep i:nth-child(2n+1) { background: var(--accent); }
.dongba-sep i:nth-child(2n) { background: var(--brand); opacity: .45; }

/* ===== 业务卡：菱格顶边卡片（指纹 A） ===== */
.lj-biz__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.lj-biz-card { position: relative; background: var(--surface); border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 34px 24px 26px; transition: transform .25s, box-shadow .25s; display: block; }
.lj-biz-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: repeating-linear-gradient(90deg, var(--accent) 0 14px, var(--brand) 14px 28px); border-radius: var(--radius) var(--radius) 0 0; }
.lj-biz-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.lj-biz-ic { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: #f0fdfa; color: var(--brand); margin-bottom: 18px; transition: transform .3s; }
.lj-biz-card:hover .lj-biz-ic { transform: rotateY(180deg); }
.lj-biz-card h3 { font-size: 19px; color: var(--ink); margin-bottom: 10px; }
.lj-biz-card p { font-size: 14px; color: var(--text-soft); margin-bottom: 16px; }
.lj-biz-link { font-size: 14px; color: var(--accent); font-weight: 600; }
.lj-biz-link .arr { display: inline-block; transition: transform .25s; }
.lj-biz-card:hover .lj-biz-link .arr { transform: translateX(4px); }

/* ===== 信任条（指纹 E：宣纸大数字排） ===== */
.lj-trust { background: linear-gradient(90deg, #134e4a, #0f766e); color: #fff; padding: 60px 0; }
.lj-trust__grid { display: flex; justify-content: space-around; gap: 20px; flex-wrap: wrap; }
.lj-stat { text-align: center; min-width: 150px; }
.stat-num { font-size: 44px; font-weight: 800; color: #fdba74; font-variant-numeric: tabular-nums; }
.lj-stat-label { display: block; font-size: 14px; color: rgba(255,255,255,.78); margin-top: 4px; }

/* ===== 流程：纵向水路（指纹 E） ===== */
.lj-flow__wrap { max-width: 760px; margin: 0 auto; position: relative; padding-left: 46px; }
.lj-flow__wrap::before { content: ''; position: absolute; left: 17px; top: 12px; bottom: 12px; width: 2px; background: repeating-linear-gradient(180deg, var(--brand) 0 8px, transparent 8px 14px); }
.lj-flow-node { position: relative; margin-bottom: 34px; }
.lj-flow-node__ic { position: absolute; left: -46px; top: 0; width: 36px; height: 36px; border-radius: 50%; background: var(--surface); border: 2.5px solid var(--brand); color: var(--brand); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; animation: ljPulse 3s ease-in-out infinite; }
.lj-flow-node:nth-child(2) .lj-flow-node__ic { animation-delay: .5s; }
.lj-flow-node:nth-child(3) .lj-flow-node__ic { animation-delay: 1s; }
.lj-flow-node:nth-child(4) .lj-flow-node__ic { animation-delay: 1.5s; }
@keyframes ljPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(15,118,110,.3); } 50% { box-shadow: 0 0 0 10px rgba(15,118,110,0); } }
.lj-flow-node h3 { font-size: 19px; color: var(--ink); margin-bottom: 6px; }
.lj-flow-node p { color: var(--text-soft); font-size: 15px; }

/* ===== 资讯（指纹 E：卡片 3 列） ===== */
.lj-news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lj-news-card { background: var(--surface); border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.lj-news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.lj-news-card__cover { height: 130px; background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%); color: rgba(255,255,255,.55); display: flex; align-items: center; justify-content: center; }
.lj-news-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.lj-news-card__tag { align-self: flex-start; font-size: 12px; color: var(--accent-deep); background: #fff7ed; padding: 3px 10px; border-radius: 2px; margin-bottom: 10px; }
.lj-news-card h3 { font-size: 16px; color: var(--ink); margin-bottom: 8px; line-height: 1.5; }
.lj-news-card .meta { font-size: 13px; color: var(--gray); margin-top: auto; }

/* ===== CTA（指纹 D：菱格底纹横幅） ===== */
.lj-cta { position: relative; background: var(--ink); color: #fff; padding: 64px 0; overflow: hidden; }
.lj-cta::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(194,65,12,.14) 0 2px, transparent 2px 22px); }
.lj-cta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.lj-cta h2 { font-size: 28px; margin-bottom: 8px; color: #fff; }
.lj-cta p { color: rgba(255,255,255,.72); }
.lj-cta__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.lj-cta svg.lj-cta__mo { color: var(--accent); opacity: .8; }

/* ===== 页头（内页） ===== */
.page-header { position: relative; background: linear-gradient(120deg, #134e4a 0%, #0f766e 70%, #0d9488 100%); color: #fff; padding: 56px 0; overflow: hidden; }
.page-header h1 { font-size: 32px; margin-bottom: 10px; color: #fff; }
.breadcrumb { font-size: 14px; color: rgba(255,255,255,.72); }
.breadcrumb a { color: rgba(255,255,255,.85); }
.lj-page-mo { position: absolute; right: 6%; bottom: 0; color: rgba(255,255,255,.25); }

/* ===== 列表/详情布局 ===== */
.list-layout { display: grid; grid-template-columns: 1fr 300px; gap: 34px; padding: 64px 20px; max-width: 1200px; margin: 0 auto; }
.article-card { display: block; background: var(--surface); border: 1px solid var(--gray-light); border-left: 4px solid var(--brand); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 18px; transition: box-shadow .25s, transform .25s; }
.article-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.article-card h3 { font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.article-card p { font-size: 14px; color: var(--text-soft); margin-bottom: 10px; }
.meta { font-size: 13px; color: var(--gray); }
.side-panel { background: var(--surface); border: 1px solid var(--gray-light); border-radius: var(--radius); padding: 22px; margin-bottom: 22px; }
.side-panel h3 { font-size: 17px; color: var(--ink); padding-bottom: 12px; border-bottom: 2px solid var(--accent); margin-bottom: 14px; }
.side-panel ul { list-style: none; }
.side-panel li { padding: 8px 0; border-bottom: 1px dashed var(--gray-light); font-size: 14px; }
.detail-meta { font-size: 13px; color: var(--gray); margin-bottom: 18px; }
.detail__content { font-size: 15px; color: var(--text-soft); line-height: 1.9; }
.detail__content h2, .detail__content h3 { color: var(--ink); margin: 20px 0 10px; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.pagination a, .pagination .cur { min-width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--radius); border: 1px solid var(--gray-light); font-size: 14px; color: var(--text-soft); }
.pagination .cur { background: var(--brand); border-color: var(--brand); color: #fff; }
.pagination a:hover { border-color: var(--brand); color: var(--brand); }

/* 案例 */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.case-card { background: var(--surface); border: 1px solid var(--gray-light); border-radius: var(--radius); overflow: hidden; transition: transform .25s, box-shadow .25s; display: block; }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.case-card__cover { height: 140px; background: linear-gradient(135deg, #0d9488, #134e4a); color: rgba(255,255,255,.6); display: flex; align-items: center; justify-content: center; }
.case-card__body { padding: 20px; }
.case-card__body h3 { font-size: 17px; color: var(--ink); margin-bottom: 8px; }
.case-card__body p { font-size: 14px; color: var(--text-soft); margin-bottom: 12px; }
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.case-tags span { font-size: 12px; background: #f0fdfa; color: var(--brand-deep); padding: 3px 10px; border-radius: 2px; }

/* 表单 */
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 14px; color: var(--text-soft); margin-bottom: 7px; }
.form-row input, .form-row textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--gray-light); border-radius: var(--radius); font-size: 15px; font-family: inherit; color: var(--text); background: #fff; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(15,118,110,.12); }
.flash-ok { background: #f0fdf4; border: 1px solid #86efac; color: #166534; padding: 12px 16px; border-radius: var(--radius); margin-bottom: 18px; font-size: 14px; }
.flash-err { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; padding: 12px 16px; border-radius: var(--radius); margin-bottom: 18px; font-size: 14px; }

/* ===== 页脚 ===== */
.lj-footer { background: #1c1917; color: rgba(255,255,255,.8); }
.lj-footer__dongba { display: flex; height: 6px; }
.lj-footer__dongba span { flex: 1; }
.lj-footer__dongba span:nth-child(2n+1) { background: var(--accent); }
.lj-footer__dongba span:nth-child(2n) { background: #0d9488; }
.lj-footer__top { display: flex; justify-content: space-between; gap: 40px; padding: 48px 20px; flex-wrap: wrap; }
.lj-footer__brand { max-width: 320px; }
.lj-footer__brand p { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 12px; }
.lj-footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.lj-footer__col { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.lj-footer__col h4 { color: #fff; font-size: 15px; margin-bottom: 4px; }
.lj-footer__col a { color: rgba(255,255,255,.65); }
.lj-footer__col a:hover { color: #fdba74; }
.lj-footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-bottom a { color: rgba(255,255,255,.65); margin-left: 14px; }

/* ===== 滚动渐显 ===== */
.lj-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.lj-reveal.is-in { opacity: 1; transform: none; }

/* ===== zfkf 悬浮客服（统一标准组件） ===== */
.zfkf-float { position: fixed; right: 20px; bottom: 120px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.zfkf-item { position: relative; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; box-shadow: 0 4px 14px rgba(0,0,0,.18); transition: all .25s; cursor: pointer; }
.zfkf-item:hover { transform: scale(1.08); color: #fff; }
.zfkf-phone { background: #2563eb; }
.zfkf-wechat { background: #07c160; }
.zfkf-consult { background: #f59e0b; }
.zfkf-top { background: #334155; }
.zfkf-tip { position: absolute; right: 56px; top: 50%; transform: translateY(-50%); background: rgba(28,25,23,.9); color: #fff; font-size: 12px; padding: 5px 10px; border-radius: 4px; white-space: nowrap; opacity: 0; visibility: hidden; transition: all .2s; }
.zfkf-item:hover .zfkf-tip { opacity: 1; visibility: visible; }
.zfkf-wechat-mask { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 10000; display: none; align-items: center; justify-content: center; }
.zfkf-wechat-mask.is-show { display: flex; }
.zfkf-wechat-box { background: #fff; border-radius: 10px; padding: 28px 34px; text-align: center; position: relative; }
.zfkf-wechat-box img { width: 200px; height: 200px; object-fit: contain; margin: 0 auto; }
.zfkf-wechat-box p { margin-top: 12px; color: var(--text); font-size: 14px; }
.zfkf-wechat-noimg { width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; background: #f0fdfa; border: 2px dashed var(--brand); border-radius: 8px; font-size: 22px; font-weight: 700; color: var(--brand); }
.zfkf-wechat-close { position: absolute; top: 8px; right: 14px; font-size: 22px; color: var(--gray); cursor: pointer; }

/* ===== 响应式 ===== */
@media (max-width: 980px) {
  .lj-biz__grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid, .lj-news__grid { grid-template-columns: repeat(2, 1fr); }
  .list-layout { grid-template-columns: 1fr; }
  .lj-nav__menu { display: none; position: absolute; top: 68px; left: 0; right: 0; background: #134e4a; flex-direction: column; padding: 14px 20px 20px; align-items: stretch; }
  .lj-nav.is-open .lj-nav__menu { display: flex; }
  .lj-burger { display: flex; }
  .lj-hero__title { font-size: 30px; }
  .lj-cta__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .lj-biz__grid, .case-grid, .lj-news__grid { grid-template-columns: 1fr; }
  .lj-hero { min-height: 540px; }
  .lj-hero__title { font-size: 26px; }
  .section { padding: 60px 0; }
}

/* ===== 动效降级 ===== */
@media (prefers-reduced-motion: reduce) {
  .lj-reveal { opacity: 1; transform: none; transition: none; }
  .lj-flow-node__ic { animation: none; }
  .lj-ripple { display: none; }
  * { scroll-behavior: auto !important; }
}

/* ===== tz-rich-text typography (auto-appended) ===== */
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article)>:first-child{margin-top:0}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article)>:last-child{margin-bottom:0}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) p{margin:0 0 1.05em;line-height:1.9}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h1,:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h2{margin:1.6em 0 .7em;line-height:1.4;font-weight:700}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h1{font-size:1.6em}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h2{font-size:1.4em}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h3{margin:1.4em 0 .6em;font-size:1.2em;line-height:1.45;font-weight:700}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h4{margin:1.2em 0 .5em;font-size:1.08em;font-weight:700}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h5,:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) h6{margin:1.1em 0 .5em;font-size:1em;font-weight:700}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) ul,:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) ol{margin:0 0 1.05em;padding-left:1.7em}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) li{margin:.35em 0;line-height:1.8}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) img{max-width:100%;height:auto;border-radius:8px}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) figure{margin:1.2em 0}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) figcaption{margin-top:.5em;font-size:.85em;opacity:.7;text-align:center}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) blockquote{margin:1.2em 0;padding:.2em 0 .2em 1em;border-left:3px solid currentColor;opacity:.85}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) table{width:100%;border-collapse:collapse;margin:1.2em 0;font-size:.96em}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) th,:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) td{border:1px solid rgba(127,127,127,.3);padding:.5em .75em;text-align:left}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) th{font-weight:700;background:rgba(127,127,127,.06)}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) hr{margin:1.6em 0;border:0;border-top:1px solid rgba(127,127,127,.28)}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) pre{overflow:auto;padding:.8em 1em;border-radius:8px;background:rgba(127,127,127,.1);font-size:.92em}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) code{font-size:.94em}
:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) strong,:where(.rich-text,.detail__content,.detail-content,.article-body,.article-content,.article__body,.article--body,.rich-content,.prose,.detail-body,.detail-body__content,.page-content,.content-card,.hd-article-body,.lf-article-body,.cq-article-body,.sq-article-body,.lh-article) b{font-weight:700}
:where(.rich-text) ul{list-style:disc}
:where(.rich-text) ol{list-style:decimal}
:where(.rich-text) a{text-decoration:underline;text-underline-offset:3px}

/* ===== tz-footer-legal (auto-appended) ===== */
.zf-legal-line a{color:inherit;text-decoration:none;opacity:.92}
.zf-legal-line a:hover{opacity:1;text-decoration:underline;text-underline-offset:3px}
.zf-legal-line .zf-legal-all{font-weight:600}
.zf-legal-line .zf-legal-copy{opacity:.95}
.zf-legal-line .zf-legal-addr{opacity:.82}
.zf-legal-line .zf-legal-police{text-decoration:none}
@media (max-width:640px){.zf-legal-line{column-gap:.55em;line-height:1.7}}
