﻿.hero-row { display: grid; gap: 14px; margin-top: 12px; }

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 188px;
  background: #15396f;
  box-shadow: 0 14px 32px rgba(19, 60, 119, .18);
}
.carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.08) 48%, transparent 56%);
  background-size: 220% 100%;
  animation: softShimmer 5.5s ease-in-out infinite;
  mix-blend-mode: soft-light;
  opacity: .7;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s var(--ease);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 20, 47, .74) 0%, rgba(5, 20, 47, .28) 60%, rgba(5, 20, 47, .08) 100%);
}

.slide img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s linear;
}
.slide.is-live img.cover { transform: scale(1.1); }

.slide-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 22px 20px 31px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.slide-kicker {
  display: inline-flex;
  width: max-content;
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 99px;
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(6px);
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.9;
  font-weight: var(--fw-regular);
}

.slide h3 {
  font-size: 23px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0;
  margin: 8px 0 4px;
}

.slide p { font-size: 14px; opacity: 0.9; font-weight: var(--fw-regular); }

.slide-art { position: absolute; inset: 0; }

.slide-1 .slide-art {
  background:
    radial-gradient(360px 190px at 88% 12%, rgba(66, 207, 255, .42), transparent 58%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, #122e63 0%, #1e65c9 58%, #31a6e7 100%);
}

.slide-2 .slide-art {
  background:
    radial-gradient(280px 180px at 82% 18%, rgba(89, 255, 215, .26), transparent 60%),
    linear-gradient(135deg, #0b3a68 0%, #0a8a6e 100%);
}

.slide-3 .slide-art {
  background:
    radial-gradient(300px 190px at 84% 12%, rgba(255, 208, 74, .32), transparent 60%),
    linear-gradient(135deg, #1a3a6e 0%, #2f6fd4 55%, #c99512 120%);
}

.slide-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.slide-deco i {
  position: absolute;
  right: 10%;
  border: 1px solid rgba(255,255,255,.24);
  transform: rotate(45deg);
  animation: decoFloat 5.5s var(--ease) infinite;
}
.slide-deco i:nth-child(1) { width: 82px; height: 82px; top: 28px; border-radius: 22px; }
.slide-deco i:nth-child(2) {
  width: 48px;
  height: 48px;
  top: 62px;
  right: 18%;
  border-radius: 14px;
  animation-delay: -.8s;
}
.slide-deco i:nth-child(3) {
  width: 118px;
  height: 118px;
  right: -30px;
  bottom: -52px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  animation: none;
  transform: none;
}
.slide-deco::after {
  content: "";
  position: absolute;
  right: 14%;
  top: 22%;
  width: 54px;
  height: 64px;
  opacity: .28;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 76' fill='none'%3E%3Cpath d='M32 4c12 6 24 8 30 8.5v28c0 16-10 28-30 36C12 40.5 2 28.5 2 40.5v-28C8 12 20 10 32 4Z' stroke='white' stroke-width='3'/%3E%3Cpath d='M20 40l8 8 16-18' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / contain no-repeat;
  animation: decoFloat 6.5s var(--ease) infinite;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 5px;
}
.carousel-dots i {
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255,255,255,.45);
}
.carousel-dots i.is-on {
  width: 14px;
  background: #fff;
}

.consult-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 56px;
  height: 56px;
  padding: 0 14px 0 16px;
  border-radius: 12px;
  color: #fff;
  text-align: left;
  background: linear-gradient(105deg, #256ef5 0%, #168eea 52%, #1aa87a 100%);
  background-size: 160% 100%;
  animation: softShimmer 7s ease-in-out infinite alternate;
  box-shadow: 0 8px 18px rgba(40, 126, 235, 0.16);
  overflow: hidden;
  position: relative;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.consult-banner:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(40, 126, 235, 0.22);
}

.consult-banner > div,
.consult-arrow { position: relative; z-index: 2; }

.consult-banner > div {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 12px;
  min-width: 0;
}

.consult-label {
  display: none;
}

.consult-banner strong {
  display: block;
  font-size: 16px;
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

.consult-banner em {
  display: block;
  margin-top: 0;
  font-style: normal;
  font-size: 13px;
  opacity: 0.88;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.consult-arrow {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  font-size: 19px;
  font-weight: var(--fw-medium);
}

.consult-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
}
.consult-orb-a { width: 72px; height: 72px; right: 40px; top: -36px; }
.consult-orb-b { width: 40px; height: 40px; right: -8px; bottom: -18px; }

.wish-pool-wrap {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  padding: 14px 8px 4px;
  border-top: 1px solid #eef1f5;
}
.wish-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 14px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, #a78bfa 0%, #7c3aed 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(124, 58, 237, .2);
  transition: opacity .2s, transform .15s, box-shadow .2s;
  -webkit-tap-highlight-color: transparent;
}
.wish-entry:hover {
  opacity: .92;
  box-shadow: 0 5px 14px rgba(124, 58, 237, .26);
}
.wish-entry:active {
  transform: scale(.97);
  box-shadow: 0 2px 8px rgba(124, 58, 237, .16);
}
.wish-entry-ico {
  flex: none;
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
}
.wish-entry-ico svg {
  width: 14px;
  height: 14px;
  display: block;
  stroke: #fff;
}
.wish-entry-txt {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .02em;
}

.tools-panel {
  padding: 18px 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(230, 234, 240, .95);
}

.tools-overview {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  margin-top: 16px;
  padding: 22px;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(220px 140px at 85% 20%, rgba(78, 220, 255, .3), transparent 65%),
    linear-gradient(120deg, #164ba6, #2587ee);
  box-shadow: 0 14px 30px rgba(28, 101, 196, .19);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.tools-overview span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .1em;
}
.tools-overview strong {
  display: block;
  margin-top: 5px;
  font-size: 21px;
}
.tools-overview p {
  margin-top: 7px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.tools-overview b {
  position: relative;
  flex: none;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 28px;
  line-height: 1;
}
.tools-overview b small {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  font-weight: var(--fw-medium);
  opacity: .78;
}

@media (min-width: 900px) {
  .hero-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .carousel { height: 252px; }
  .slide-inner { padding: 30px 32px 40px; }
  .slide h3 { font-size: 31px; }
  .slide p { font-size: 15px; }
  .consult-banner {
    height: 52px;
    min-height: 52px;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 0 16px 0 18px;
    border-radius: 11px;
  }
  .consult-banner strong { font-size: 16px; }
  .consult-banner em { font-size: 13.5px; }
  .consult-arrow { width: 28px; height: 28px; }
  .tools-panel { padding: 24px 20px 20px; }
  .tools-overview { min-height: 160px; padding: 30px 34px; }
  .tools-overview strong { font-size: 27px; }
  .wish-pool-wrap { margin-top: 18px; padding-top: 16px; }
}

@media (max-width: 420px) {
  .consult-banner {
    height: auto;
    min-height: 52px;
    padding: 10px 12px 10px 14px;
  }
  .consult-banner > div { flex-direction: column; align-items: flex-start; gap: 2px; }
  .consult-banner em { white-space: normal; }
}

.inspect-page {
  max-width: 720px;
}

.inspect-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background:
    radial-gradient(180px 90px at 100% 0%, rgba(62, 200, 240, .18), transparent 70%),
    linear-gradient(110deg, #123a72 0%, #1f6fe0 58%, #2eb3d8 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(24, 92, 191, .18);
}
.inspect-hero-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
  flex: none;
}
.inspect-hero-ico svg { width: 22px; height: 22px; }
.inspect-hero h2 { font-size: 18px; font-weight: var(--fw-medium); }
.inspect-hero p { margin-top: 3px; font-size: 13px; opacity: .88; }

.quota-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(232, 235, 240, .95);
  box-shadow: 0 4px 14px rgba(31, 35, 41, .035);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}
.quota-bar b { color: var(--blue); }
.quota-tag {
  padding: 3px 8px;
  border-radius: 99px;
  background: #edf5ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: .04em;
}

.inspect-drop {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 22px;
  border: 1.5px dashed #b7cef0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 62%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 28px 20px 26px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s, background .2s;
}
.inspect-drop-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(47,134,255,.06) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 70%, rgba(47,134,255,.05) 0 1px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
}
.inspect-drop.is-drag,
.inspect-drop:active {
  border-color: #2f86ff;
  background: #f2f8ff;
  box-shadow: 0 0 0 4px rgba(47,134,255,.08);
}
.inspect-drop-ring {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, #7eb6ff, #2f86ff 55%, #22bfd1) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 12px 24px rgba(47,134,255,.16);
}
.inspect-drop-ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #4aa3ff, #2f86ff);
}
.inspect-drop-ico svg { width: 26px; height: 26px; }
.inspect-drop strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 19px;
  font-weight: var(--fw-medium);
}
.inspect-drop p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: var(--muted);
  max-width: 240px;
  line-height: 1.5;
}
.inspect-drop-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 6px 0 10px;
  padding: 0;
  list-style: none;
}
.inspect-drop-tags li {
  padding: 4px 10px;
  border-radius: 99px;
  background: #edf5ff;
  color: #2f6fd6;
  font-size: 12px;
  font-weight: var(--fw-medium);
}
.inspect-pick-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 13px;
  color: #fff;
  font-size: 15px;
  font-weight: var(--fw-medium);
  background: linear-gradient(90deg, #2b7fff, #4aa3ff);
  box-shadow: 0 10px 20px rgba(47,134,255,.24);
  pointer-events: none;
}
.inspect-pick-btn svg { width: 16px; height: 16px; }

.inspect-stage {
  display: grid;
  gap: 12px;
}
.inspect-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1628;
  box-shadow: 0 14px 32px rgba(11, 30, 64, .16);
  border: 1px solid rgba(15, 36, 72, .08);
}
.inspect-photo {
  display: block;
  width: 100%;
  min-height: 240px;
  position: relative;
}
.inspect-photo img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  margin: 0 auto;
  background:
    linear-gradient(45deg, #121c2e 25%, transparent 25%) -8px 0 / 16px 16px,
    linear-gradient(-45deg, #121c2e 25%, transparent 25%) -8px 0 / 16px 16px,
    linear-gradient(45deg, transparent 75%, #121c2e 75%) -8px 0 / 16px 16px,
    linear-gradient(-45deg, transparent 75%, #121c2e 75%) -8px 0 / 16px 16px,
    #0b1628;
}
.inspect-zoom {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 99px;
  background: rgba(8, 16, 32, .58);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14);
}
.inspect-zoom svg { width: 14px; height: 14px; }
.inspect-zoom i { font-style: normal; }

.inspect-float-ops {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.inspect-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 99px;
  background: rgba(255,255,255,.92);
  color: #1f2a3d;
  font-size: 13px;
  font-weight: var(--fw-medium);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.inspect-chip svg { width: 14px; height: 14px; }
.inspect-chip.is-danger { color: #cf1322; }
.inspect-chip:active { transform: scale(.96); }

.inspect-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,28,64,.18), rgba(8,28,64,.55));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  color: #fff;
  font-size: 14px;
}
.inspect-scan p { position: relative; z-index: 1; }

.inspect-filebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(232, 235, 240, .95);
  box-shadow: 0 4px 14px rgba(31, 35, 41, .035);
}
.inspect-file-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #edf5ff;
  color: var(--blue);
  flex: none;
}
.inspect-file-ico svg { width: 18px; height: 18px; }
.inspect-file-text strong {
  display: block;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 52vw;
}
.inspect-file-text p { margin-top: 3px; font-size: 13px; color: var(--muted); }

.inspect-run {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px 14px;
  border-radius: 18px;
  text-align: left;
  color: #fff;
  background: linear-gradient(105deg, #1f6fe0 0%, #2f86ff 48%, #22bfd1 100%);
  box-shadow: 0 14px 28px rgba(31, 111, 224, .24);
}
.inspect-run-ico {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  flex: none;
}
.inspect-run-ico svg { width: 20px; height: 20px; }
.inspect-run-txt { flex: 1; min-width: 0; }
.inspect-run-txt b { display: block; font-size: 17px; }
.inspect-run-txt small { display: block; margin-top: 2px; font-size: 13px; opacity: .86; }
.inspect-run-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  font-size: 19px;
  flex: none;
}
.inspect-run:active { transform: scale(.985); }

.inspect-loading-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #edf5ff;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: var(--fw-medium);
}
.inspect-loading-bar i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(47,134,255,.25);
  border-top-color: #2f86ff;
  animation: spin 0.8s linear infinite;
}

.scan-line {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7ec8ff, #fff);
  box-shadow: 0 0 16px rgba(94, 198, 255, .8);
  animation: scan 1.6s linear infinite;
  pointer-events: none;
}

.ai-note {
  margin: 12px 0;
  padding: 13px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f2f8ff, #eef5ff);
  border: 1px solid #dceaff;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.65;
}

.result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 18px 0 10px;
}
.result-head h2 { font-size: 18px; }
.result-head p { margin-top: 3px; font-size: 13px; color: var(--muted); }

.sev {
  font-size: 12px;
  font-weight: var(--fw-medium);
  padding: 3px 8px;
  border-radius: 99px;
  flex: none;
}
.sev-重大 { background: #ffe8e6; color: #cb2634; }
.sev-较大 { background: #fff4e5; color: #d46b08; }
.sev-一般 { background: #e8f3ff; color: #1d4ed8; }
.sev-低 { background: #e8ffea; color: #2a9a4a; }

.result-stack {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}
.result-block {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(232, 235, 240, .95);
  background: #fff;
  box-shadow: 0 6px 18px rgba(31, 35, 41, .04);
}
.result-block-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px 14px;
  font-size: 15px;
  font-weight: var(--fw-medium);
}
.result-block-h > span {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.col-sub {
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: #7b8da8;
  padding: 1px 6px;
  border-radius: 99px;
  background: rgba(123, 141, 168, .12);
}
.result-desc .result-block-h {
  color: #1d4ed8;
  background: #e8f1ff;
  border-bottom: 1px solid #d5e6ff;
}
.result-basis .result-block-h {
  color: #0f766e;
  background: #e7f7f4;
  border-bottom: 1px solid #cfece6;
}
.result-fix .result-block-h {
  color: #b45309;
  background: #fff4e5;
  border-bottom: 1px solid #ffe0b8;
}
.result-list {
  margin: 0;
  padding: 6px 14px 12px;
  list-style: none;
}
.result-list li {
  padding: 12px 0;
  border-top: 1px solid #eef1f5;
}
.result-list li:first-child { border-top: 0; }
.result-list li.result-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.result-no {
  flex: none;
  min-width: 1.35em;
  color: #5b6b84;
  font-size: 15px;
  font-weight: var(--fw-medium);
  line-height: 1.7;
}
.result-item-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  min-width: 0;
}
.result-item-top b {
  flex: none;
  color: #5b6b84;
  font-size: 15px;
  font-weight: var(--fw-medium);
}
.result-item-top strong {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--ink);
}
.result-list p {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 14px;
  color: var(--ink-2);
  white-space: pre-wrap;
  line-height: 1.7;
}
.result-list li:not(.result-row) p {
  padding-left: 1.15em;
}

@media (min-width: 840px) {
  .inspect-page { max-width: var(--content-max); }
  .inspect-photo img { max-height: 460px; }
}

@media (max-width: 420px) {
  .inspect-chip span { display: none; }
  .inspect-file-text strong { max-width: 48vw; }
}

.form-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  border: 1px solid rgba(230, 234, 240, .95);
  box-shadow: var(--shadow);
}
.form-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.form-head h2 { font-size: 19px; }
.form-head p { margin-top: 4px; font-size: 13px; color: var(--muted); }

.circle-compose-page .field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--ink-2);
}
.circle-compose-page .field input,
.circle-compose-page .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfcfe;
  border-radius: var(--radius-xs);
  padding: 12px 14px;
  outline: none;
  font-size: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.circle-compose-page .field textarea { min-height: 160px; resize: vertical; }
.circle-compose-page .field input:focus,
.circle-compose-page .field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 124, 246, .12);
  background: #fff;
}

/* ===== 我的 · 个人中心 ===== */
.mine-page { padding-bottom: 28px; }

.mine-hero {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  padding: 22px 18px 18px;
  color: #fff;
  background:
    radial-gradient(220px 140px at 100% -10%, rgba(125, 211, 252, .35), transparent 60%),
    radial-gradient(180px 120px at 0% 100%, rgba(56, 189, 248, .18), transparent 55%),
    linear-gradient(135deg, #0f3d8c 0%, #1a6fe0 48%, #0ea5a8 108%);
  box-shadow: 0 18px 40px rgba(15, 70, 160, .22);
}
.mine-hero-orbit {
  position: absolute;
  width: 140px;
  height: 140px;
  right: -36px;
  top: -40px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}
.mine-hero-orbit::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}
.mine-hero-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, #000 20%, transparent 90%);
  pointer-events: none;
}
.mine-hero-main {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mine-ava {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex: none;
  overflow: visible;
}
.mine-ava img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(255,255,255,.38), 0 10px 22px rgba(0,0,0,.2);
  background: rgba(255,255,255,.12);
}
.mine-ava-edit {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #1d4ed8;
  box-shadow: 0 4px 10px rgba(15, 23, 42, .18);
}
.mine-ava-edit svg { width: 13px; height: 13px; }
.mine-id { min-width: 0; flex: 1; }
.mine-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mine-name-row h2 {
  font-size: 23px;
  font-weight: var(--fw-semibold);
  letter-spacing: .01em;
}
.mine-hero .level-badge {
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.mine-hero .level-badge em { background: rgba(0,0,0,.2); }
.mine-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.mine-hero .chip {
  background: rgba(255,255,255,.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
}
.mine-hero .chip-vip {
  background: rgba(251, 191, 36, .22);
  color: #fff7ed;
}
.mine-career,
.mine-phone {
  margin-top: 6px;
  font-size: 13px;
  opacity: .88;
}
.mine-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.mine-stats > div {
  text-align: center;
  padding: 4px 2px;
}
.mine-stats b {
  display: block;
  font-size: 19px;
  font-weight: var(--fw-semibold);
  letter-spacing: .02em;
}
.mine-stats span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  opacity: .85;
}

.mine-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 14px 0 4px;
}
.mine-sc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid rgba(230, 234, 240, .95);
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s;
}
.mine-sc:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.mine-sc i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.mine-sc i svg { width: 18px; height: 18px; }
.mine-sc span {
  position: relative;
  font-size: 13px;
  color: var(--ink-2);
}
.mine-sc em {
  position: absolute;
  top: -10px;
  right: -14px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--danger);
  color: #fff;
  font-style: normal;
  font-size: 11px;
  display: grid;
  place-items: center;
}

.mine-guest-cta {
  margin: 14px 0 4px;
  padding: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(47,124,246,.08), rgba(14,165,168,.06)),
    var(--bg-elevated);
  border: 1px solid rgba(47, 124, 246, .12);
  box-shadow: var(--shadow-sm);
}
.mine-guest-cta strong {
  display: block;
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--ink);
}
.mine-guest-cta p {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.mine-guest-btns {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.mine-group { margin-top: 18px; }
.mine-group-h {
  margin: 0 4px 8px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--muted);
  letter-spacing: .06em;
}
.mine-panel {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid rgba(230, 234, 240, .95);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.mine-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid #eef1f5;
  transition: background .18s;
}
.mine-item:last-child { border-bottom: 0; }
.mine-item:hover { background: #f7f9fc; }
.mine-item:active { background: #eef3fa; }
.mine-item-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: none;
}
.mine-item-ico svg { width: 18px; height: 18px; }
.mine-item-txt {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mine-item-txt strong {
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--ink);
}
.mine-item-txt em {
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mine-item svg.chev {
  width: 16px;
  height: 16px;
  color: #c5cad3;
  flex: none;
}
.mine-pill {
  flex: none;
  font-style: normal;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 99px;
  background: #eef2f7;
  color: #64748b;
}
.mine-pill.is-vip {
  background: #fff7ed;
  color: #c2410c;
}
.mine-pill.is-dot {
  background: #fee2e2;
  color: #dc2626;
  min-width: 22px;
  text-align: center;
}

.mine-logout {
  width: 100%;
  margin-top: 18px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(230, 234, 240, .95);
  color: #64748b;
  font-size: 15px;
  font-weight: var(--fw-medium);
  box-shadow: var(--shadow-sm);
  transition: background .18s, color .18s;
}
.mine-logout svg { width: 16px; height: 16px; }
.mine-logout:hover { background: #fff5f5; color: #dc2626; }

.mine-foot {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: 18px 0 6px;
  letter-spacing: .04em;
  font-family: var(--font-en);
}

@media (max-width: 420px) {
  .mine-shortcuts { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .mine-sc { padding: 10px 2px 8px; }
  .mine-sc span { font-size: 12px; }
  .mine-ava, .mine-ava img { width: 64px; height: 64px; }
  .mine-name-row h2 { font-size: 21px; }
}

.feed-card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(232, 235, 240, .85);
  box-shadow: 0 6px 20px rgba(31, 35, 41, .035);
}
.feed-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.feed-ava {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2f86ff, #3ca9ff);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: var(--fw-medium);
}
.feed-card h3 { font-size: 16px; margin-bottom: 6px; }
.feed-card p { font-size: 14px; color: var(--ink-2); }

.planet-cta {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  padding: 16px;
  color: #fff;
  background:
    radial-gradient(140px 100px at 88% 10%, rgba(91, 229, 255, .32), transparent 70%),
    linear-gradient(100deg, #1c63d4 0%, #2d9bea 100%);
  margin-bottom: 12px;
  box-shadow: 0 12px 24px rgba(40, 126, 235, .17);
}
.planet-cta h3 { font-size: 18px; margin: 4px 0 6px; }

/* ===== 圈子论坛 ===== */
.circle-page { padding-bottom: 72px; }
/* 与工具页 tools-overview 同尺寸、同级 Banner */
.circle-overview {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  margin-top: 0;
  margin-bottom: 14px;
  padding: 22px;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(220px 140px at 85% 20%, rgba(78, 220, 255, .3), transparent 65%),
    linear-gradient(120deg, #164ba6, #2587ee);
  box-shadow: 0 14px 30px rgba(28, 101, 196, .19);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.circle-overview span {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .1em;
}
.circle-overview strong {
  display: block;
  margin-top: 5px;
  font-size: 21px;
}
.circle-overview p {
  margin-top: 7px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.circle-overview-cta {
  position: relative;
  flex: none;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 22px;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 4px;
  transition: transform .18s var(--ease), background .18s;
}
.circle-overview-cta:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.circle-overview-cta:active { transform: scale(.96); }
.circle-overview-cta svg { width: 22px; height: 22px; margin: 0 auto; }
.circle-overview-cta small {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-medium);
  opacity: .9;
}
@media (min-width: 900px) {
  .circle-overview { min-height: 160px; padding: 30px 34px; }
  .circle-overview strong { font-size: 27px; }
  .circle-overview-cta { width: 84px; height: 84px; border-radius: 24px; }
}
.circle-hero {
  display: none;
}
.circle-fab-inline {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 14px;
  font-weight: var(--fw-regular);
  border: 1px solid rgba(47, 124, 246, .12);
}
body.is-desktop .circle-fab-inline { display: inline-flex; }
.circle-fab-inline svg { width: 16px; height: 16px; }
.planet-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  margin: 14px 0 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(105deg, #1a5fd4 0%, #2f86ff 55%, #3db8e8 100%);
  color: #fff;
  font-size: 13px;
  font-weight: var(--fw-regular);
  box-shadow: 0 10px 22px rgba(32, 110, 230, .18);
}
.tools-page .planet-strip { margin-bottom: 0; }
.planet-strip em { font-style: normal; opacity: .92; }
/* 分类栅格：与首页 tool-grid 同排法；容器用 tools-panel */
.circle-cats {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.circle-cat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  width: 100%;
  padding: 2px 0;
  border-radius: 15px;
  animation: riseSoft 0.42s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 28ms);
  transition: transform .2s var(--ease);
}
.circle-cat:active { transform: scale(.94); }
.circle-cat span:last-child {
  font-size: 12px;
  color: var(--ink);
  font-weight: var(--fw-regular);
  text-align: center;
  width: 48px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.circle-cat-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 16px rgba(31, 35, 41, .12), inset 0 1px 0 rgba(255,255,255,.28);
  border: 2px solid transparent;
  transition: transform .22s var(--ease), box-shadow .22s, border-color .15s;
}
.circle-cat:hover .circle-cat-ico { transform: translateY(-2px); }
.circle-cat-ico svg { width: 22px; height: 22px; }
.circle-cat.is-on .circle-cat-ico {
  border-color: rgba(26, 31, 46, .55);
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(31, 35, 41, .16), inset 0 1px 0 rgba(255,255,255,.28);
}
.circle-cat.is-on span:last-child { color: var(--blue); font-weight: var(--fw-medium); }
.circle-page .tools-panel {
  margin-bottom: 14px;
}
.circle-filter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.chip-filter {
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: #eef1f6;
  color: #5b6b84;
  font-size: 13px;
  font-weight: var(--fw-regular);
}
.chip-filter.is-on {
  background: var(--blue-soft);
  color: var(--blue);
}
.circle-filter-tip { font-size: 13px; color: var(--muted); }
.circle-card {
  width: 100%;
  text-align: left;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 10px;
  border: 1px solid rgba(230, 234, 240, .95);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s var(--ease), transform .18s var(--ease);
  animation: riseSoft 0.4s var(--ease) both;
}
.circle-feed .circle-card:nth-child(1) { animation-delay: 40ms; }
.circle-feed .circle-card:nth-child(2) { animation-delay: 70ms; }
.circle-feed .circle-card:nth-child(3) { animation-delay: 100ms; }
.circle-feed .circle-card:nth-child(4) { animation-delay: 130ms; }
.circle-feed .circle-card:nth-child(5) { animation-delay: 160ms; }
.circle-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.circle-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.circle-card-top time { margin-left: auto; font-size: 12px; color: var(--muted); }
.circle-tag {
  font-size: 12px;
  font-weight: var(--fw-regular);
  padding: 2px 8px;
  border-radius: 99px;
}
.circle-pin {
  font-size: 12px;
  font-weight: var(--fw-regular);
  color: #d46b08;
  background: #fff4e5;
  padding: 2px 8px;
  border-radius: 99px;
}
.circle-card-main {
  display: block;
  width: 100%;
  text-align: left;
  color: inherit;
}
.circle-card-main:hover h3 { color: var(--blue); }
.circle-card h3 { font-size: 16px; font-weight: var(--fw-medium); margin-bottom: 6px; }
.circle-card p {
  font-size: 14px;
  color: var(--ink-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.55;
}
.circle-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}
.circle-reply-n { flex: none; white-space: nowrap; }

.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px 2px 4px;
  border-radius: 999px;
  background: #edf4ff;
  color: var(--lv, #2f7cf6);
  font-size: 12px;
  font-weight: var(--fw-regular);
  line-height: 1.2;
  flex: none;
  border: 1px solid rgba(47, 124, 246, .12);
}
.level-badge em {
  font-style: normal;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--lv, #2f7cf6);
  color: #fff;
  font-size: 11px;
  letter-spacing: .02em;
}
.level-badge b { font-weight: var(--fw-regular); }

.author-block {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  text-align: left;
  border-radius: 12px;
  padding: 2px 4px 2px 2px;
  transition: background .18s;
}
.author-block:hover { background: rgba(47, 124, 246, .06); }
.author-ava {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  box-shadow: 0 0 0 2px #fff, 0 4px 10px rgba(24, 39, 75, .12);
}
.author-ava img { width: 100%; height: 100%; object-fit: cover; }
.author-ava i {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2f86ff, #3ca9ff);
  color: #fff;
  font-style: normal;
  font-size: 14px;
  font-weight: var(--fw-medium);
}
.author-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.author-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.author-name-row strong {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.author-sub {
  font-size: 12px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.author-block.is-compact .author-ava { width: 28px; height: 28px; }
.author-block.is-compact .author-name-row strong { font-size: 13px; }
.reply-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 13px;
  flex-wrap: wrap;
}
.reply-meta time { margin-left: auto; color: var(--muted); }
.compose-identity {
  margin: 0 0 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, rgba(47,124,246,.06), rgba(26,168,122,.05));
  border: 1px solid rgba(47, 124, 246, .1);
}
.compose-identity > p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* 圈子名片 */
.circle-user-page { padding-bottom: 28px; }
.u-hero {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  padding: 20px 18px 16px;
  color: #fff;
  background:
    radial-gradient(180px 120px at 92% 0%, rgba(255,255,255,.22), transparent 70%),
    linear-gradient(125deg, #163a7a 0%, #1f6fe0 52%, #1aa87a 120%);
  box-shadow: 0 16px 36px rgba(24, 70, 160, .22);
}
.u-hero-glow {
  position: absolute;
  width: 140px;
  height: 140px;
  right: -30px;
  bottom: -50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
}
.u-hero-top {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  align-items: center;
}
.u-ava {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.35), 0 10px 20px rgba(0,0,0,.18);
  background: rgba(255,255,255,.16);
}
.u-ava img { width: 100%; height: 100%; object-fit: cover; }
.u-ava i {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 29px;
  font-weight: var(--fw-medium);
}
.u-hero-text h2 { font-size: 23px; font-weight: var(--fw-semibold); letter-spacing: 0; }
.u-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  align-items: center;
}
.u-hero .level-badge {
  background: rgba(255,255,255,.16);
  color: #fff;
}
.u-hero .level-badge em { background: rgba(0,0,0,.22); }
.u-sub {
  margin-top: 8px;
  font-size: 13px;
  opacity: .9;
}
.u-level-panel {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding: 12px 12px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.u-level-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: var(--fw-regular);
  margin-bottom: 8px;
}
.u-level-bar {
  height: 7px;
  border-radius: 99px;
  background: rgba(255,255,255,.2);
  overflow: hidden;
}
.u-level-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff, #cfe3ff);
  transition: width .4s var(--ease);
}
.u-level-panel > p {
  margin-top: 8px;
  font-size: 12px;
  opacity: .88;
  line-height: 1.45;
}
.u-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
}
.u-stats > div {
  text-align: center;
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid rgba(230, 234, 240, .95);
  box-shadow: var(--shadow-sm);
}
.u-stats b {
  display: block;
  font-size: 21px;
  font-weight: var(--fw-semibold);
  color: var(--ink);
  letter-spacing: .02em;
}
.u-stats span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.u-info-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 16px;
  border: 1px solid rgba(230, 234, 240, .95);
  box-shadow: var(--shadow-sm);
}
.u-info-card h3 { font-size: 16px; margin-bottom: 10px; }
.u-info-card ul { list-style: none; margin: 0; padding: 0; }
.u-info-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.u-info-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.u-info-card em { font-style: normal; color: var(--muted); }
.u-info-card span { color: var(--ink); font-weight: var(--fw-regular); text-align: right; }
.u-post-item {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  align-items: center;
  text-align: left;
  padding: 12px 14px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid rgba(230, 234, 240, .95);
  box-shadow: var(--shadow-sm);
}
.u-post-item strong {
  grid-column: 2;
  font-size: 15px;
  color: var(--ink);
}
.u-post-item time {
  grid-column: 2;
  font-size: 12px;
  color: var(--muted);
}
.u-post-item:hover strong { color: var(--blue); }

.circle-fab {
  position: fixed;
  /* 与工具页同宽：贴主内容区右缘 */
  right: max(var(--gutter), calc(50% - var(--page-max) / 2 + var(--gutter)));
  bottom: calc(var(--tabbar-h) + var(--safe-b) + 18px);
  z-index: 25;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #4aa3ff, #2f7cf6);
  box-shadow: 0 12px 28px rgba(47, 124, 246, .32);
  transition: transform .18s var(--ease), box-shadow .18s;
}
.circle-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(47, 124, 246, .38);
}
body.is-desktop .circle-fab { display: none; }
.circle-fab svg { width: 22px; height: 22px; }

.circle-cats.is-pick {
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.circle-pick-panel {
  margin-top: 4px;
  background: #f7f9fc;
}

.circle-detail-page { padding-bottom: calc(108px + var(--safe-b)); }
.circle-detail {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  padding: 18px 18px 20px;
  border: 1px solid rgba(230, 234, 240, .95);
  box-shadow: var(--shadow-sm);
}
.circle-detail h2 { font-size: 20px; font-weight: var(--fw-semibold); line-height: 1.45; margin: 10px 0 12px; }
.circle-detail-body {
  font-size: 16px;
  color: var(--ink-2);
  white-space: pre-wrap;
  line-height: 1.8;
}
.reply-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 12px;
}
.reply-toolbar h3 { font-size: 16px; font-weight: var(--fw-medium); }
.reply-item {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 8px;
  border: 1px solid rgba(230, 234, 240, .95);
  box-shadow: var(--shadow-sm);
}
.op-tag {
  font-style: normal;
  font-size: 11px;
  font-weight: var(--fw-regular);
  color: var(--blue);
  background: #edf5ff;
  padding: 1px 6px;
  border-radius: 99px;
}
.reply-item > p, .reply-child > p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
  white-space: pre-wrap;
}
.reply-link {
  margin-top: 8px;
  font-size: 13px;
  font-weight: var(--fw-regular);
  color: var(--blue);
}
.reply-children {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #f5f7fa;
}
.reply-child + .reply-child {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e8ecf2;
}
.empty.soft { padding: 36px 16px; }
.reply-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 26;
  padding: 10px var(--gutter) calc(10px + var(--safe-b));
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid rgba(230, 234, 240, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.reply-bar-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}
.circle-detail-page .reply-bar {
  bottom: calc(var(--tabbar-h) + var(--safe-b));
}
body.is-desktop .circle-detail-page .reply-bar { bottom: 0; }
.reply-ctx {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
.msg-toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
.field-label {
  display: block;
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: var(--ink-2);
}
.reply-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.reply-hint button { color: var(--blue); font-weight: var(--fw-regular); }
.reply-bar-row { display: flex; gap: 8px; align-items: center; }
.reply-bar-row input {
  flex: 1;
  min-width: 0;
  height: 42px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
  padding: 0 14px;
  background: #f7f9fc;
  transition: border-color .18s, box-shadow .18s;
}
.reply-bar-row input:focus {
  outline: none;
  border-color: #9fc2ff;
  box-shadow: 0 0 0 3px rgba(47, 124, 246, .12);
  background: #fff;
}
.reply-bar-row .btn { min-height: 42px; flex: none; }

@media (min-width: 720px) {
  .circle-cat-ico { width: 52px; height: 52px; border-radius: 15px; }
  .circle-cat span:last-child { width: 52px; font-size: 13px; }
}

.zsxq-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(232, 235, 240, .85);
  box-shadow: 0 8px 26px rgba(31, 35, 41, .06);
}
.zsxq-visual {
  background: #f7f8fa;
  padding: 22px 18px 10px;
  text-align: center;
}
.zsxq-visual img {
  width: min(240px, 70%);
  margin: 8px auto 0;
  border-radius: 12px;
}
.zsxq-body { padding: 16px 18px 20px; }
.zsxq-body ol {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 14px;
}

.msg-item {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
  border: 1px solid rgba(232, 235, 240, .85);
  box-shadow: 0 4px 14px rgba(31, 35, 41, .035);
}
.msg-item.is-unread { box-shadow: inset 3px 0 0 var(--blue); }
.msg-item h3 { font-size: 15px; margin-bottom: 4px; }
.msg-item p { font-size: 14px; color: var(--ink-2); }
.msg-item time { display: block; margin-top: 8px; font-size: 12px; color: var(--muted); }

.legal {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  font-size: 15px;
  color: var(--ink-2);
  border: 1px solid rgba(232, 235, 240, .85);
  box-shadow: 0 6px 22px rgba(31, 35, 41, .04);
}
.legal h2 { color: var(--ink); font-size: 17px; margin: 16px 0 8px; }
.legal p { margin-bottom: 10px; }

.admin-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.admin-thumbs label {
  display: block;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f3f5;
  position: relative;
  cursor: pointer;
}
.admin-thumbs img,
.admin-thumbs .ph {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.admin-thumbs .ph {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
}

.success-panel { text-align: center; padding: 28px 16px; }
.success-panel .ok-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8ffea;
  color: #2a9a4a;
  font-size: 29px;
}

.hidden-file {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

@media (min-width: 960px) {
  .mine-sc:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }
  .feed-card { padding: 18px; }
  .msg-item { padding: 16px 18px; }
}

/* ===== 微信登录 ===== */
.wx-login-card {
  max-width: 420px;
  margin: 0 auto;
  padding: 44px 28px 30px;
  text-align: center;
}
.wx-login-logo {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #07c160, #06ad56);
  box-shadow: 0 10px 24px rgba(7, 193, 96, .28);
}
.wx-login-logo svg { width: 40px; height: 40px; color: #fff; }
.wx-login-title {
  font-size: 19px;
  font-weight: var(--fw-semibold);
  color: var(--ink);
}
.wx-login-note {
  margin: 8px auto 28px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.wx-login-btn {
  width: 100%;
  height: 48px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #07c160;
  color: #fff;
  font-size: 16px;
  font-weight: var(--fw-medium);
  border: 0;
  cursor: pointer;
  transition: background .18s, transform .12s;
  box-shadow: 0 8px 20px rgba(7, 193, 96, .25);
}
.wx-login-btn:active { background: #06ad56; transform: scale(.98); }
.wx-login-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.wx-login-btn svg { width: 22px; height: 22px; }
.wx-agree {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}
.wx-agree input { accent-color: #07c160; }
.wx-agree a { color: #2f7cf6; }

/* 微信授权弹窗 */
.wx-auth-modal {
  width: 320px;
  max-width: 88vw;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.wx-auth-head {
  padding: 14px 16px;
  text-align: center;
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--ink);
  border-bottom: 1px solid #f0f2f5;
}
.wx-auth-body {
  padding: 26px 24px 22px;
  text-align: center;
}
.wx-auth-avatar {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e6f8ee, #d3f2e2);
  border: 1px solid #e2f5ea;
}
.wx-auth-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wx-auth-avatar svg { width: 32px; height: 32px; color: #07c160; }
.wx-auth-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  background: #07c160;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  vertical-align: 1px;
  margin-right: 6px;
}
.wx-auth-nick {
  width: 100%;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #e6eaf0;
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  text-align: center;
  transition: border-color .18s;
}
.wx-auth-nick:focus { border-color: #07c160; }
.wx-auth-nick::placeholder { color: #b6bdc7; }
.wx-auth-tip {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.wx-auth-btns {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.wx-auth-btns .btn {
  flex: 1;
  height: 42px;
  border-radius: 21px;
  font-size: 15px;
}
.btn-wx-allow {
  background: #07c160;
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: background .18s;
}
.btn-wx-allow:active { background: #06ad56; }
.btn-wx-allow:disabled { opacity: .6; cursor: not-allowed; }

/* ===== PC 微信扫码登录 ===== */
.wx-pc-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 36px;
  display: flex;
  gap: 44px;
  align-items: flex-start;
  justify-content: center;
}
.wx-pc-left {
  text-align: center;
  flex: 0 0 auto;
}
.wx-pc-header h2 {
  font-size: 20px;
  font-weight: var(--fw-semibold);
  color: var(--ink);
  margin: 0 0 4px;
}
.wx-pc-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.wx-pc-qr-wrap {
  position: relative;
  margin: 20px auto 0;
  width: 240px;
  height: 240px;
  border-radius: 12px;
  border: 1px solid var(--line, #e6eaf0);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(24,39,75,.06);
}
.wx-pc-qr-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.wx-qr-status {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(6px);
  font-size: 14px;
  color: var(--ink-2, #4a5568);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.wx-qr-status.show {
  opacity: 1;
}
.wx-qr-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #07c160;
  animation: qrPulse 1.4s ease-in-out infinite;
}
.wx-qr-status.scanned .wx-qr-dot {
  animation: none;
  background: #07c160;
  box-shadow: 0 0 0 4px rgba(7,193,96,.2);
}
.wx-qr-status.scanned .wx-qr-dot::after {
  content: '✓';
  display: block;
  line-height: 10px;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
@keyframes qrPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}
.wx-pc-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 16px;
  font-size: 13px;
}
.wx-pc-refresh, .wx-pc-switch {
  background: none;
  border: 0;
  color: #2f7cf6;
  cursor: pointer;
  font-size: 13px;
  padding: 4px 8px;
  transition: opacity .18s;
}
.wx-pc-refresh:hover, .wx-pc-switch:hover { opacity: .7; }
.wx-pc-divider {
  color: var(--line, #e6eaf0);
  margin: 0 4px;
}
.wx-pc-right {
  flex: 0 0 auto;
  text-align: center;
  padding-top: 12px;
}
.wx-pc-right img {
  width: 112px;
  height: 112px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid var(--line, #e6eaf0);
  padding: 4px;
  background: #fff;
}
.wx-pc-right figcaption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted, #8b95a5);
  white-space: nowrap;
}
.wx-pc-right-note {
  margin: 4px 0 0;
  font-size: 11px;
  color: #b6bdc7;
}


/* ===== 首页底部：公众号 / 知识星球 / 备案 ===== */
.axz-footer {
  margin: 28px auto 20px;
  padding: 0 16px 8px;
  text-align: center;
}
.axz-footer-qrs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 18px;
}
.axz-qr {
  margin: 0;
  width: max-content;
  max-width: 100%;
}
.axz-qr img {
  display: block;
  width: 128px;
  height: 128px;
  border-radius: 12px;
  border: 1px solid var(--line, #e6eaf0);
  background: #fff;
  padding: 6px;
  box-shadow: var(--shadow, 0 8px 24px rgba(24,39,75,.06));
}
.axz-qr figcaption {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted, #8b95a5);
  white-space: nowrap;
}
.axz-footer-beian {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--muted, #8b95a5);
}
.axz-footer-beian a {
  color: var(--muted, #8b95a5);
  text-decoration: none;
}
.axz-footer-beian a:hover { color: var(--blue, #2f7cf6); }
.axz-footer-copy {
  margin: 0;
  font-size: 12px;
  color: var(--muted, #8b95a5);
}
@media (max-width: 480px) {
  .axz-footer-qrs { gap: 28px; }
  .axz-qr, .axz-qr img { width: 112px; }
  .axz-qr img { height: 112px; }
}

/* ===== 首页：圈子热贴 ===== */
.home-hot {
  margin-top: 6px;
}
.hot-panel {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line, #e6eaf0);
  padding: 4px 14px;
  box-shadow: var(--shadow, 0 8px 24px rgba(24,39,75,.06));
}
.hot-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 2px;
  border-bottom: 1px solid #f0f2f6;
  text-decoration: none;
  color: inherit;
}
.hot-item:last-child { border-bottom: 0; }
.hot-item-main {
  flex: 1;
  min-width: 0;
}
.hot-item-title {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink, #1a1f2e);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hot-item-meta, .hot-item-author {
  margin: 4px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted, #8b95a5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hot-item-author {
  gap: 4px;
}
.hot-item-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: none;
  object-fit: cover;
  border: 1px solid var(--line, #e6eaf0);
}
.hot-item-name {
  color: var(--ink-2, #4a5568);
}
.hot-item-dot {
  color: var(--line, #d0d5dd);
}
.hot-item-time {
  color: var(--muted, #8b95a5);
}
.hot-item-stat {
  flex: none;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-size: 12px;
  color: var(--muted, #8b95a5);
  background: var(--blue-soft, #edf4ff);
  color: var(--blue, #2f7cf6);
  padding: 4px 10px;
  border-radius: 999px;
}
.hot-item-stat b {
  font-size: 14px;
  font-weight: 400;
}
.hot-empty {
  padding: 26px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--muted, #8b95a5);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 0;
  background: none;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--blue, #2f7cf6);
  font-weight: 500;
  cursor: pointer;
}
.link-more:hover { background: var(--blue-soft, #edf4ff); }
