.threadTitle{
  margin-top:20px;
  margin-bottom: 14px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.threadTitle h1{
  font-size:32px;
  font-weight: bold;
  line-height:1.25;
  margin:0;
}
.titleBadges{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}

/* ============ 18 横幅广告布局（合理安排） ============ */
/* 桌面：3列 * 6行；平板：2列；手机：1列 */
.ads-wrapper{
  margin-top: 2px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.ad-container{
  display:block;
  margin:0;
  padding:0;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  height: 86px;
  border-radius: 6px; /* 少圆角 */
  overflow:hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ad-container img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* 适配 */
@media (max-width:1680px){
  .ads-wrapper{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width:980px){
  .ads-wrapper{grid-template-columns: 1fr;}
  .ad-container{height: 92px;}
}


/* ============ Hover Glow / 流光效果 ============ */
.glow, .card, .post, .navItem, .ad-container, .stat, .notice, .topbar, .userBox, .tab, .chip, .tag {
  position: relative;
  overflow: hidden;
}

/* 光带（hover 才出现） */
.glow::before,
.card::before,
.post::before,
.ad-container::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: linear-gradient(120deg,
    rgba(86,242,255,0) 10%,
    rgba(86,242,255,.45) 35%,
    rgba(247,201,75,.35) 55%,
    rgba(86,242,255,0) 80%);
  transform: translateX(-120%);
  opacity: 0;
  filter: blur(10px);
  pointer-events:none;
}

.glow:hover::before,
.card:hover::before,
.post:hover::before,
.ad-container:hover::before{
  opacity: 1;
  transform: translateX(120%);
  transition: transform .9s ease, opacity .25s ease;
}

/* 轻微提亮与边框强化 */
.card:hover,
.post:hover,
.ad-container:hover{
  border-color: rgba(86,242,255,.28);
  box-shadow: 0 18px 55px rgba(0,0,0,.55), 0 0 0 1px rgba(247,201,75,.12);
}

/* 广告：保持你的放大逻辑，但改成更柔和 */
.ad-container:hover{
  transform: translateY(-1px) scale(1.02);
}

/* ============ V1.1 右侧更全面：模块样式与美化 ============ */
.right{
  position: sticky;
  top: 18px;
  align-self: start;
}

/* Tool grid */
.toolGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.toolBtn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: 8px;
  padding:10px 10px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
.toolBtn .tI{
  width:32px;height:32px;border-radius:8px;
  display:grid;place-items:center;
  border:1px solid var(--line);
  background: radial-gradient(120px 60px at 30% 25%, rgba(86,242,255,.18), transparent 55%), rgba(0,0,0,.18);
}
.toolBtn .tT{font-weight:950}
.toolBtn .tS{
  margin-left:auto;
  font-size:12px;
  color: var(--muted);
}
.toolBtn:hover{border-color: rgba(86,242,255,.26)}

/* Hot list */
.hotList{display:flex;flex-direction:column;gap:10px}
.hotItem{
  display:flex;align-items:center;gap:10px;
  padding:10px 10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: 8px;
}
.hRank{
  width:26px;height:26px;border-radius:8px;
  display:grid;place-items:center;
  border:1px solid var(--line);
  color: var(--muted);
  font-weight:950;
}
.hMain{min-width:0;display:flex;flex-direction:column;gap:3px;flex:1}
.hTitle{
  font-weight:950;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.hMeta{font-size:12px;color:var(--muted)}
.hTag{
  font-size:12px;
  font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  white-space:nowrap;
}
.hTag.ok{border-color: rgba(76,255,155,.35); color:#bfffdc}
.hTag.warn{border-color: rgba(247,201,75,.35); color:#ffe7a7}
.hTag.danger{border-color: rgba(255,76,122,.35); color:#ffd6df}
.hTag.info{border-color: rgba(86,242,255,.35); color:#c8fbff}

/* Official module */
.glassCard{
  background:
    radial-gradient(800px 220px at 10% 10%, rgba(86,242,255,.16), transparent 55%),
    radial-gradient(800px 220px at 90% 30%, rgba(247,201,75,.12), transparent 55%),
    rgba(255,255,255,.02);
}
.official{display:flex;flex-direction:column;gap:12px}
.officialRow{
  display:flex;align-items:center;gap:10px;
  padding:10px 10px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  border-radius: 8px;
}
.oIcon{
  width:34px;height:34px;border-radius:8px;
  display:grid;place-items:center;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.oMain{flex:1;min-width:0}
.oTitle{font-weight:950}
.oSub{font-size:12px;color:var(--muted);margin-top:2px}

/* Risk box */
.riskBox{
  border:1px dashed rgba(247,201,75,.28);
  background: rgba(247,201,75,.06);
  border-radius: 8px;
  padding:10px 10px;
}
.riskTitle{font-weight:950;color:#ffe7a7}
.riskText{margin-top:6px;font-size:12px;color:rgba(234,240,255,.86);line-height:1.55}

/* Small screen: disable sticky to avoid awkward scroll */
@media (max-width:1180px){
  .right{position: static}
}


/* ============ 1.2 FINAL 布局修复：广告归左列，右侧无空隙 ============ */
.leftCol{
  display:flex;
  flex-direction:column;
  gap:14px;
  min-width:0;
}
.leftCol .ads{margin-top:0;}
.layout{align-items:start;}

@media (max-width:1180px){
  .leftCol{gap:12px}
}


/* ============ 1.3 顶部平台化头部 ============ */
.marketStrip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
  padding:12px 12px;
}
.msLeft{display:flex;flex-direction:column;gap:2px}
.msK{font-size:12px;color:var(--muted);letter-spacing:.6px}
.msV{font-size:14px;font-weight:980}
.msUp{
  display:inline-grid;place-items:center;
  width:18px;height:18px;border-radius:6px;
  border:1px solid rgba(76,255,155,.22);
  background: rgba(76,255,155,.10);
  color:#bfffdc;
  margin-right:6px;
}
.msMid{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: 8px;
  padding:10px 10px;
  overflow:hidden;
  white-space:nowrap;
}
.msItem{font-size:12px;color:rgba(234,240,255,.90)}
.msDot{color:rgba(255,255,255,.22)}
.msTag{
  display:inline-flex;align-items:center;gap:6px;
  font-weight:980;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  margin-right:6px;
  color:var(--muted);
}
.msTag.ok{border-color:rgba(76,255,155,.22);color:#bfffdc}
.msTag.warn{border-color:rgba(247,201,75,.22);color:#ffe7a7}
.msTag.info{border-color:rgba(86,242,255,.22);color:#c8fbff}
.msRight{display:flex;gap:10px;flex-wrap:wrap}

.trustRow{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.trustCard{padding:14px}
.trustHead{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  margin-bottom:10px;
}
.trustTitle{font-weight:980}
.trustBadge{
  font-size:12px;
  font-weight:980;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.trustBadge.ok{border-color:rgba(76,255,155,.22);color:#bfffdc}
.trustBadge.warn{border-color:rgba(247,201,75,.22);color:#ffe7a7}
.trustBadge.info{border-color:rgba(86,242,255,.22);color:#c8fbff}
.trustText{
  color: rgba(234,240,255,.88);
  line-height:1.6;
  font-size:12px;
}
.trustActions{margin-top:12px;display:flex;gap:10px;flex-wrap:wrap}

/* ============ 1.4 官方服务区（自营业务入口） ============ */
.officialServices{margin-top:14px}
.osHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.osTitle{
  font-size:16px;
  font-weight:980;
  letter-spacing:.2px;
}
.osBadges{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.osBadge{
  display:inline-flex;align-items:center;gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  color: rgba(234,240,255,.86);
  font-size:12px;
  font-weight:900;
}
.osIcon{opacity:.9}

.osGrid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.osCard{
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(650px 220px at 10% 15%, rgba(86,242,255,.12), transparent 60%),
    radial-gradient(650px 220px at 90% 35%, rgba(247,201,75,.10), transparent 60%),
    rgba(255,255,255,.02);
  border-radius: 8px;
  padding:12px 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,.30);
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:0;
}
.osTop{display:flex;align-items:center;justify-content:space-between;gap:10px}
.osMark{
  font-size:10px;
  letter-spacing:1px;
  padding:5px 8px;
  border-radius:999px;
  border:1px solid rgba(86,242,255,.20);
  color:#c8fbff;
  background: rgba(86,242,255,.06);
  font-weight:950;
}
.osPill{
  font-size:12px;
  font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: var(--muted);
}
.osPill.ok{border-color:rgba(76,255,155,.22);color:#bfffdc}
.osPill.warn{border-color:rgba(247,201,75,.22);color:#ffe7a7}
.osPill.info{border-color:rgba(86,242,255,.22);color:#c8fbff}

.osName{font-size:15px;font-weight:980}
.osDesc{font-size:12px;color: rgba(234,240,255,.86);line-height:1.55;min-height:38px}
.osTags{display:flex;flex-wrap:wrap;gap:8px}
.tagMini{
  font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color: var(--muted);
}

.osCTA{
  margin-top:auto;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.osHint{
  font-size:12px;
  color: rgba(159,176,208,.92);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.osCard:hover{
  border-color: rgba(86,242,255,.28);
  transform: translateY(-2px);
  transition: transform .25s ease, border-color .25s ease;
}

/* 响应（你说暂不考虑移动端，但这里保底不炸） */
@media (max-width:1180px){
  .trustRow{grid-template-columns: 1fr}
  .marketStrip{flex-direction:column;align-items:stretch}
  .msMid{order:3}
  .msRight{justify-content:flex-start}
  .osGrid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width:980px){
  .osGrid{grid-template-columns: 1fr;}
  .osBadges{justify-content:flex-start}
}


/* ============ 1.4 FLAT 强化：防 Discuz 覆盖的微圆角残留 ============ */
.quater_2026_openclawV12 .card,
.quater_2026_openclawV12 .card-lite,
.quater_2026_openclawV12 .btn,
.quater_2026_openclawV12 .tab,
.quater_2026_openclawV12 .pill,
.quater_2026_openclawV12 .tag,
.quater_2026_openclawV12 .tagMini,
.quater_2026_openclawV12 .chip,
.quater_2026_openclawV12 input,
.quater_2026_openclawV12 select,
.quater_2026_openclawV12 textarea,
.quater_2026_openclawV12 .ad-container,
.quater_2026_openclawV12 .post,
.quater_2026_openclawV12 .navItem,
.quater_2026_openclawV12 .toolBtn,
.quater_2026_openclawV12 .ccBtn,
.quater_2026_openclawV12 .hotItem,
.quater_2026_openclawV12 .vendor,
.quater_2026_openclawV12 .bar,
.quater_2026_openclawV12 .msMid,
.quater_2026_openclawV12 .msTag,
.quater_2026_openclawV12 .osCard,
.quater_2026_openclawV12 .osBadge,
.quater_2026_openclawV12 .trustBadge,
.quater_2026_openclawV12 .chkI,
.quater_2026_openclawV12 .msUp,
.quater_2026_openclawV12 .hTag,
.quater_2026_openclawV12 .vBadge{
  border-radius: 0 !important;
}

/* 查看详情位置：统一靠右 */
.quater_2026_openclawV12 .postActions{
  display:flex;
  align-items:center;
  gap:10px;
}
.quater_2026_openclawV12 .paSpacer{
  flex:1;
}


/* =========================
   Thread Page 1.0（帖子内容页）
   继承 1.4-flat-clean 的整体风格：直角、暗黑、流光
   ========================= */

/* Layout */
.threadWrap{
  display:grid;
  grid-template-columns: 260px 1fr 360px;
  gap:14px;
  align-items:start;
  margin-top:14px;
}
.threadMain{min-width:0}
.threadSide{position:sticky;top:18px;align-self:start}
@media (max-width:1180px){
  .threadWrap{grid-template-columns: 1fr}
  .threadSide{position:static}
}

/* Post shell */
.postShell{
  margin-top:14px;
  display:grid;
  grid-template-columns: 220px 1fr;
  gap:14px;
}
@media (max-width:980px){
  .postShell{grid-template-columns: 1fr}
}
.authorCard{
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding:14px;
}
.authorTop{display:flex;align-items:center;gap:12px}
.avatar{
  width:60px;height:60px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  display:grid;place-items:center;
  font-weight:980;
}
.authorName{font-weight:980}
.authorMeta{font-size:12px;color:var(--muted);margin-top: 8px}
.authorStats{
  margin-top:12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.statBox{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding:10px;
}
.statN{font-weight:980}
.statL{font-size:12px;color:var(--muted);margin-top:4px}
.authorTags{margin-top:12px;display:flex;flex-wrap:wrap;gap:8px}
.chip{
  font-size:12px;
  padding:7px 10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  color:var(--muted);
}

/* Content */
.contentCard{
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 320px at 10% 10%, rgba(86,242,255,.08), transparent 60%),
    rgba(255,255,255,.02);
  padding:14px;
  min-width:0;
}
.metaRow{
  margin: 14px 0 0 0;
  display:flex;align-items:center;gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.metaRow .dot{color:rgba(255,255,255,.22)}
.kv{
  display:flex;align-items:center;gap:8px;
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  color: rgba(234,240,255,.86);
}
.kv b{font-weight:980}
.threadBody{
  margin-top:12px;
  color: rgba(234,240,255,.90);
  line-height:1.75;
  font-size:14px;
}
.threadBody p{margin:0 0 12px 0}
.threadBody ul{margin:0 0 12px 18px}
.callout{
  border:1px dashed rgba(247,201,75,.25);
  background: rgba(247,201,75,.06);
  padding:12px;
  margin-top:12px;
}
.calloutTitle{font-weight:980;color:#ffe7a7;margin-bottom:6px}
.codeLike{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  padding:10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12px;
  overflow:auto;
}

/* Attachments */
.attachments{
  margin-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:12px;
}
.attachHead{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
.attachTitle{font-weight:980}
.attachGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:10px;
}
@media (max-width:980px){
  .attachGrid{grid-template-columns: 1fr}
}
.fileItem{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding:10px;
  display:flex;align-items:center;gap:10px;
  min-width:0;
}
.fileIcon{
  width:34px;height:34px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  display:grid;place-items:center;
  font-weight:980;
}
.fileMain{min-width:0;flex:1}
.fileName{font-weight:980;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.fileMeta{font-size:12px;color:var(--muted);margin-top:2px}
.fileBtn{margin-left:auto}

/* Replies */
.repliesCard{
  margin-top:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding:14px;
}
.repliesHead{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.repliesTitle{font-weight:980}
.replyList{margin-top:12px;display:flex;flex-direction:column;gap:12px}
.reply{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding:12px;
}
.replyTop{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
.replyUser{display:flex;align-items:center;gap:10px;min-width:0}
.avSm{
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  display:grid;place-items:center;
  font-weight:980;
  border-radius: 6px;
  flex:0 0 auto;
}
.replyName{font-weight:980;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.replyTime{font-size:12px;color:var(--muted);white-space:nowrap}
.replyBody{font-size:13px;line-height:1.7;color: rgba(234,240,255,.90)}
.replyActions{margin-top:10px;display:flex;gap:10px;flex-wrap:wrap}

/* Reply editor */
.editor{
  margin-top: 0;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding:12px;
}
.editorTop{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
.editorTitle{font-weight:980}
.textarea{
  width:100%;
  min-height:120px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color: rgba(234,240,255,.90);
  padding:10px;
  outline:none;
  resize:vertical;
}
.editorBar{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end;margin-top:10px}

/* Right side widgets */
.sideCard{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding:14px;
}
.sideCard + .sideCard{margin-top:14px}
.sideTitle{font-weight:980;margin-bottom:10px}
.sideList{display:flex;flex-direction:column;gap:10px}
.sideItem{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding:10px;
  display:flex;gap:10px;align-items:flex-start;
}
.sideItem .n{
  width:22px;height:22px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  display:grid;place-items:center;
  font-weight:980;
  flex:0 0 auto;
}
.sideItem .t{font-weight:980;font-size:12px;line-height:1.35}
.sideItem .m{font-size:12px;color:var(--muted);margin-top:4px}

/* Flat enforcement for thread page (prevent Discuz style leakage) */
.threadWrap *{border-radius:0 !important}


/* ============ 修复：帖子页不要继承首页 .app 两列网格（避免左侧空白列） ============ */
.threadPage .app{
  display:block !important;
  grid-template-columns: none !important;
}
