/* 软件案例详情弹窗 */
.modal-dialog.modal-dialog--software {
  max-width: 720px;
  max-height: 90vh;
}

.modal-dialog.modal-dialog--software .modal-body {
  max-height: calc(90vh - 140px);
  overflow-y: auto;
}

.case-modal-subcat {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: 100px;
  font-size: 0.6875rem;
  color: #6ee7b7;
  vertical-align: middle;
}

.case-sw-cat {
  display: inline-block;
  padding: 2px 8px;
  margin-bottom: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  font-size: 0.6875rem;
  color: #6ee7b7;
}

.case-modal-features {
  margin: 20px 0;
}

.case-modal-features h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.case-modal-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-modal-features li {
  position: relative;
  padding-left: 18px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.case-modal-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.case-modal-guide {
  margin: 20px 0;
}

.case-modal-guide > h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.case-guide-section {
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(10, 36, 99, 0.03);
  border: 1px solid rgba(10, 36, 99, 0.08);
}

.case-guide-section h5 {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.case-guide-section p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.case-guide-figure {
  margin: 12px 0 0;
}

.case-guide-figure img {
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(10, 36, 99, 0.08);
  cursor: zoom-in;
}

.case-modal-doc-link[hidden] {
  display: none !important;
}

.case-modal-gallery {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.case-modal-gallery h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.case-gallery-main {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  cursor: zoom-in;
}

.case-gallery-main img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  background: rgba(6, 11, 24, 0.5);
}

.case-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-gallery-thumb {
  width: 72px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s, border-color 0.2s;
  background: rgba(0, 0, 0, 0.2);
  padding: 0;
}

.case-gallery-thumb:hover,
.case-gallery-thumb.active {
  opacity: 1;
  border-color: var(--accent-blue);
}

.case-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card .case-btn-detail:only-child {
  flex: 1;
}

/* 图片灯箱 */
.case-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.88);
  padding: 24px 72px;
  cursor: zoom-out;
}

.case-lightbox[hidden] {
  display: none !important;
}

.case-lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(96vw, 1200px);
  cursor: default;
}

.case-lightbox img {
  max-width: min(96vw, 1200px);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.case-lightbox-caption {
  margin: 12px 0 0;
  max-width: min(96vw, 720px);
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.case-lightbox-nav {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.case-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.05);
}

.case-lightbox-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.case-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 640px) {
  .case-lightbox {
    flex-direction: column;
    padding: 56px 12px 16px;
    gap: 10px;
  }

  .case-lightbox-stage {
    order: 1;
    width: 100%;
  }

  .case-lightbox img {
    max-width: 100vw;
    max-height: 68vh;
    border-radius: 6px;
  }

  .case-lightbox-nav {
    position: absolute;
    bottom: 20px;
    width: 44px;
    height: 44px;
    z-index: 2;
  }

  .case-lightbox-prev {
    left: 16px;
  }

  .case-lightbox-next {
    right: 16px;
  }

  .case-lightbox-caption {
    font-size: 0.8125rem;
    margin-top: 8px;
  }

  .case-lightbox-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .modal-dialog.modal-dialog--software {
    max-width: calc(100vw - 24px);
  }

  .case-gallery-thumb {
    width: 60px;
    height: 45px;
  }
}

/* 软件三 · 项目介绍模块 */
.software3-project {
  margin-bottom: 36px;
}

.software3-project[hidden] {
  display: none !important;
}

.sw3-panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(ellipse 75% 55% at 8% 0%, rgba(99, 102, 241, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 100%, rgba(62, 146, 204, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(238, 242, 255, 0.78) 100%);
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow:
    0 24px 64px rgba(10, 36, 99, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.sw3-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 36, 99, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 36, 99, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 80%);
  pointer-events: none;
}

.sw3-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  margin-bottom: 36px;
}

.sw3-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #4338ca 0%, #6366F1 55%, #3E92CC 100%);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.32);
}

.sw3-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.22);
}

.sw3-title {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(135deg, #312e81 0%, #6366F1 50%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sw3-subtitle {
  margin: 0 0 16px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--text-primary);
}

.sw3-tagline {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.sw3-intro-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.sw3-intro-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.sw3-intro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366F1, #2563eb);
}

.sw3-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.sw3-stat {
  padding: 14px 12px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 36, 99, 0.07);
  box-shadow: 0 6px 20px rgba(10, 36, 99, 0.04);
}

.sw3-stat strong {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #4338ca;
  line-height: 1.2;
}

.sw3-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sw3-stat small {
  display: block;
  margin-top: 2px;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.sw3-doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #4338ca 0%, #6366F1 55%, #2563eb 100%);
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sw3-doc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.38);
}

.sw3-doc-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sw3-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 400px);
}

.sw3-visual-glow {
  position: absolute;
  inset: 10% -15% -5%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.sw3-poster {
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 28px 56px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.sw3-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.sw3-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.sw3-section-head h4 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sw3-section-head span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.sw3-modules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.sw3-module {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 20px;
  color: #fff;
  overflow: hidden;
  min-height: 148px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sw3-module:hover {
  transform: translateY(-3px);
}

.sw3-module--blue {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #3b82f6 100%);
  box-shadow: 0 14px 36px rgba(37, 99, 235, 0.28);
}

.sw3-module--orange {
  background: linear-gradient(135deg, #c2410c 0%, #ea580c 55%, #fb923c 100%);
  box-shadow: 0 14px 36px rgba(234, 88, 12, 0.26);
}

.sw3-module--purple {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 55%, #a78bfa 100%);
  box-shadow: 0 14px 36px rgba(124, 58, 237, 0.26);
}

.sw3-module-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.75rem;
  opacity: 0.85;
}

.sw3-module h5 {
  margin: 0 0 8px;
  padding-right: 36px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.sw3-module p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  opacity: 0.92;
}

.sw3-plans-wrap {
  margin-bottom: 28px;
}

.sw3-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sw3-plan {
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: 0 10px 28px rgba(10, 36, 99, 0.05);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.sw3-plan:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(10, 36, 99, 0.08);
}

.sw3-plan--member {
  border-color: rgba(37, 99, 235, 0.18);
}

.sw3-plan--agent {
  border-color: rgba(234, 179, 8, 0.28);
  background: linear-gradient(165deg, rgba(255, 251, 235, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
}

.sw3-plan--custom {
  border-color: rgba(124, 58, 237, 0.22);
  background: linear-gradient(165deg, rgba(245, 243, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
}

.sw3-plan-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.sw3-plan-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.375rem;
  background: rgba(99, 102, 241, 0.1);
}

.sw3-plan--agent .sw3-plan-icon {
  background: rgba(234, 179, 8, 0.15);
}

.sw3-plan--custom .sw3-plan-icon {
  background: rgba(124, 58, 237, 0.12);
}

.sw3-plan-head strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sw3-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
}

.sw3-plan-price em {
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #4338ca;
}

.sw3-plan--agent .sw3-plan-price em {
  color: #b45309;
}

.sw3-plan--custom .sw3-plan-price em {
  color: #6d28d9;
}

.sw3-plan-price span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sw3-plan p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.sw3-values {
  padding-top: 24px;
  border-top: 1px solid rgba(10, 36, 99, 0.08);
}

.sw3-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sw3-value-item {
  padding: 18px 14px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 36, 99, 0.07);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sw3-value-item:hover {
  border-color: rgba(99, 102, 241, 0.18);
  box-shadow: 0 8px 24px rgba(10, 36, 99, 0.06);
}

.sw3-value-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.sw3-value-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sw3-value-item p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.sw3-footer {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px dashed rgba(10, 36, 99, 0.1);
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
  text-align: center;
}

html[data-theme="dark"] .sw3-panel {
  background:
    radial-gradient(ellipse 75% 55% at 8% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, rgba(15, 23, 42, 0.92) 0%, rgba(49, 46, 129, 0.28) 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

html[data-theme="dark"] .sw3-stat,
html[data-theme="dark"] .sw3-plan,
html[data-theme="dark"] .sw3-value-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .sw3-stat strong {
  color: #a5b4fc;
}

html[data-theme="dark"] .sw3-plan--agent {
  background: linear-gradient(165deg, rgba(234, 179, 8, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
}

html[data-theme="dark"] .sw3-plan--custom {
  background: linear-gradient(165deg, rgba(124, 58, 237, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

@media (max-width: 1024px) {
  .sw3-modules,
  .sw3-plans {
    grid-template-columns: 1fr;
  }

  .sw3-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .sw3-hero {
    grid-template-columns: 1fr;
  }

  .sw3-visual {
    order: -1;
    width: min(100%, 340px);
  }
}

@media (max-width: 640px) {
  .sw3-panel {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .sw3-stats {
    gap: 8px;
  }

  .sw3-stat {
    padding: 10px 6px;
  }

  .sw3-stat strong {
    font-size: 1.125rem;
  }

  .sw3-doc-btn {
    width: 100%;
    justify-content: center;
  }

  .sw3-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* 小程序开发 · 合伙人招募置顶模块 */
.mini-partner-project {
  margin-bottom: 36px;
}

.mini-partner-project[hidden] {
  display: none !important;
}

.mp-panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(ellipse 75% 55% at 8% 0%, rgba(239, 68, 68, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 100%, rgba(249, 115, 22, 0.12) 0%, transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 247, 237, 0.82) 100%);
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow:
    0 24px 64px rgba(185, 28, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.mp-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220, 38, 38, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 80%);
  pointer-events: none;
}

.mp-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  margin-bottom: 32px;
}

.mp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #b91c1c 0%, #ef4444 55%, #f97316 100%);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.32);
}

.mp-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fde047;
  box-shadow: 0 0 0 4px rgba(253, 224, 71, 0.25);
  animation: mpPulse 2s ease-in-out infinite;
}

@keyframes mpPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

.mp-title {
  margin: 0 0 10px;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 45%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mp-subtitle {
  margin: 0 0 14px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--text-primary);
}

.mp-tagline {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.mp-intro-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.mp-intro-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.mp-intro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.mp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.mp-stat {
  padding: 14px 12px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: 0 6px 20px rgba(185, 28, 28, 0.05);
}

.mp-stat strong {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #b91c1c;
  line-height: 1.2;
}

.mp-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mp-stat small {
  display: block;
  margin-top: 2px;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.mp-doc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mp-doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #b91c1c 0%, #ef4444 55%, #f97316 100%);
  box-shadow: 0 10px 28px rgba(239, 68, 68, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.mp-doc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(239, 68, 68, 0.34);
}

.mp-doc-btn--outline {
  color: #b91c1c;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(220, 38, 38, 0.22);
  box-shadow: 0 6px 18px rgba(185, 28, 28, 0.06);
}

.mp-doc-btn--outline:hover {
  background: rgba(254, 242, 242, 0.95);
  border-color: rgba(220, 38, 38, 0.35);
}

.mp-doc-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mp-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 380px);
}

.mp-visual-glow {
  position: absolute;
  inset: 10% -15% -5%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.mp-poster {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  cursor: zoom-in;
  background: none;
  box-shadow:
    0 28px 56px rgba(127, 29, 29, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mp-poster:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 64px rgba(127, 29, 29, 0.26);
}

.mp-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.mp-pricing-banner {
  position: relative;
  margin-bottom: 32px;
  padding: 24px 28px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(254, 242, 242, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 2px solid rgba(220, 38, 38, 0.18);
  box-shadow: 0 12px 32px rgba(185, 28, 28, 0.08);
}

.mp-pricing-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #991b1b;
  text-transform: uppercase;
}

.mp-pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.mp-pricing-original {
  font-size: 1.125rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
}

.mp-pricing-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: #991b1b;
}

.mp-pricing-current em {
  font-style: normal;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #dc2626;
}

.mp-pricing-note {
  margin: 10px 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ef4444;
}

.mp-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.mp-section-head h4 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mp-section-head span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.mp-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.mp-benefit {
  display: flex;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mp-benefit:hover {
  border-color: rgba(239, 68, 68, 0.2);
  box-shadow: 0 10px 28px rgba(185, 28, 28, 0.06);
}

.mp-benefit-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28);
}

.mp-benefit strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mp-benefit p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.mp-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.mp-product-group {
  padding: 20px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(249, 115, 22, 0.22);
}

.mp-product-group--licensed {
  border-color: rgba(220, 38, 38, 0.18);
}

.mp-product-head {
  margin-bottom: 14px;
}

.mp-product-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #dc2626, #f97316);
}

.mp-product-head p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.mp-product-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.mp-product-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.mp-product-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 700;
}

.mp-policies {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.mp-policy {
  display: flex;
  gap: 14px;
  padding: 22px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.mp-policy--partner {
  background: linear-gradient(165deg, rgba(254, 242, 242, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
  border-color: rgba(220, 38, 38, 0.2);
}

.mp-policy-icon {
  flex-shrink: 0;
  font-size: 1.75rem;
  line-height: 1;
}

.mp-policy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #991b1b;
}

.mp-policy p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.mp-monetize {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.mp-monetize-item {
  padding: 18px 14px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mp-monetize-item:hover {
  border-color: rgba(239, 68, 68, 0.18);
  box-shadow: 0 8px 24px rgba(185, 28, 28, 0.06);
}

.mp-monetize-icon {
  display: block;
  font-size: 1.375rem;
  margin-bottom: 8px;
}

.mp-monetize-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mp-monetize-item p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.mp-build-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.mp-build-plan {
  position: relative;
  padding: 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(249, 115, 22, 0.2);
  text-align: center;
}

.mp-build-plan--permanent {
  background: linear-gradient(165deg, rgba(254, 242, 242, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
  border: 2px solid rgba(220, 38, 38, 0.28);
  box-shadow: 0 12px 32px rgba(185, 28, 28, 0.1);
}

.mp-build-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  background: linear-gradient(135deg, #dc2626, #f97316);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.28);
}

.mp-build-highlight {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #dc2626;
  background: rgba(254, 226, 226, 0.85);
  border: 1px solid rgba(220, 38, 38, 0.25);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08);
  animation: mpHighlightPulse 2.2s ease-in-out infinite;
}

@keyframes mpHighlightPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.08); }
  50% { transform: scale(1.02); box-shadow: 0 0 0 5px rgba(239, 68, 68, 0.14); }
}

.mp-build-plan p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.mp-build-plan--permanent p {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mp-build-plan strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mp-build-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.mp-build-price em {
  font-style: normal;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ea580c;
}

.mp-build-price span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.mp-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}

.mp-highlight-item {
  padding: 16px 12px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 38, 38, 0.07);
}

.mp-highlight-icon {
  display: block;
  font-size: 1.375rem;
  margin-bottom: 6px;
}

.mp-highlight-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mp-highlight-item p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.mp-footer {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px dashed rgba(220, 38, 38, 0.12);
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
  text-align: center;
}

html[data-theme="dark"] .mp-panel {
  background:
    radial-gradient(ellipse 75% 55% at 8% 0%, rgba(239, 68, 68, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, rgba(15, 23, 42, 0.92) 0%, rgba(127, 29, 29, 0.22) 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .mp-stat,
html[data-theme="dark"] .mp-benefit,
html[data-theme="dark"] .mp-product-group,
html[data-theme="dark"] .mp-policy,
html[data-theme="dark"] .mp-monetize-item,
html[data-theme="dark"] .mp-build-plan,
html[data-theme="dark"] .mp-highlight-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .mp-stat strong,
html[data-theme="dark"] .mp-policy strong {
  color: #fca5a5;
}

html[data-theme="dark"] .mp-pricing-banner {
  background: rgba(127, 29, 29, 0.18);
  border-color: rgba(248, 113, 113, 0.2);
}

html[data-theme="dark"] .mp-doc-btn--outline {
  color: #fca5a5;
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1024px) {
  .mp-benefits,
  .mp-products,
  .mp-policies,
  .mp-build-plans {
    grid-template-columns: 1fr;
  }

  .mp-monetize {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mp-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .mp-hero {
    grid-template-columns: 1fr;
  }

  .mp-visual {
    order: -1;
    width: min(100%, 320px);
  }
}

@media (max-width: 640px) {
  .mp-panel {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .mp-stats {
    gap: 8px;
  }

  .mp-stat {
    padding: 10px 6px;
  }

  .mp-stat strong {
    font-size: 1.125rem;
  }

  .mp-doc-links {
    flex-direction: column;
  }

  .mp-doc-btn {
    width: 100%;
    justify-content: center;
  }

  .mp-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .mp-monetize {
    grid-template-columns: 1fr;
  }

  .mp-highlights {
    grid-template-columns: 1fr;
  }
}

/* 右下角悬浮操作区 · 微信按钮 */
.wechat-float {
  position: relative;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(7, 193, 96, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.wechat-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(7, 193, 96, 0.45);
}

.wechat-float-icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.wechat-float-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 8px 14px;
  background: rgba(20, 25, 35, 0.95);
  border: 1px solid rgba(7, 193, 96, 0.4);
  border-radius: 8px;
  font-size: 0.8125rem;
  color: #6ee7b7;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.wechat-float-tip.show {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 640px) {
  .float-actions {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .wechat-float {
    width: 48px;
    height: 48px;
  }

  .float-actions .back-to-top {
    width: 44px;
    height: 44px;
  }

  .wechat-float-tip {
    right: auto;
    left: 50%;
    top: auto;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(4px);
  }

  .wechat-float-tip.show {
    transform: translateX(-50%) translateY(0);
  }
}

/* 小程序案例 · 医务资料详情 */
.modal-dialog.modal-dialog--mini-detail {
  max-width: 760px;
  max-height: 92vh;
}

.modal-dialog.modal-dialog--mini-detail .modal-body {
  max-height: calc(92vh - 140px);
  overflow-y: auto;
}

.modal-dialog.modal-dialog--mini-detail .case-modal-cover-img {
  object-fit: cover;
}

.case-modal-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 4px;
}

.case-modal-stat {
  text-align: center;
  padding: 14px 8px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  border: 1px solid rgba(234, 88, 12, 0.16);
}

.case-modal-stat strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: #c2410c;
  margin-bottom: 4px;
  line-height: 1.2;
}

.case-modal-stat span {
  display: block;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.modal-dialog--mini-detail .case-modal-features li::before {
  background: #ea580c;
}

.case-guide-section--medical {
  background: linear-gradient(160deg, rgba(255, 247, 237, 0.55) 0%, rgba(255, 255, 255, 0.35) 100%);
  border-color: rgba(234, 88, 12, 0.12);
}

.case-guide-section--medical h5 {
  color: #c2410c;
}

.case-detail-bullets {
  margin: 10px 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 6px;
}

.case-detail-bullets li {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

html[data-theme="dark"] .case-modal-stat {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(251, 146, 60, 0.18);
}

html[data-theme="dark"] .case-modal-stat strong {
  color: #fdba74;
}

html[data-theme="dark"] .case-guide-section--medical {
  background: rgba(234, 88, 12, 0.08);
  border-color: rgba(251, 146, 60, 0.15);
}

html[data-theme="dark"] .case-guide-section--medical h5 {
  color: #fdba74;
}

@media (max-width: 640px) {
  .case-modal-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 小程序招商招募说明弹窗 */
.modal.mini-invest-modal .modal-dialog {
  z-index: 2;
}

.modal-dialog.modal-dialog--mini-invest {
  max-width: min(960px, 96vw);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fffbf5;
  border: none;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.modal-dialog.modal-dialog--mini-invest.modal-dialog--netbiz {
  background: #fffef8;
}

html[data-theme="dark"] .modal-dialog.modal-dialog--mini-invest {
  background: #1e1c1a;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

.modal-dialog--mini-invest .modal-close {
  top: 12px;
  right: 12px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

html[data-theme="dark"] .modal-dialog--mini-invest .modal-close {
  background: rgba(30, 30, 30, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
}

.mini-invest-modal-body {
  max-height: 92vh;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: var(--radius-xl);
  scrollbar-width: thin;
  background: #fffbf5;
}

.mini-invest-modal-body:has(.nb-panel--modal) {
  background: #fffef8;
}

html[data-theme="dark"] .mini-invest-modal-body {
  background: #1e1c1a;
}

.mini-invest-modal-body .sp-panel--modal,
.mini-invest-modal-body .nb-panel--modal {
  margin: 0;
  border-radius: var(--radius-xl);
  background-color: #fffbf5 !important;
  background-image:
    radial-gradient(ellipse 75% 55% at 8% 0%, rgba(234, 88, 12, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 100%, rgba(22, 163, 74, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #fff7ed 100%) !important;
  isolation: isolate;
}

.mini-invest-modal-body .nb-panel--modal {
  background-color: #fffef8 !important;
  background-image:
    radial-gradient(ellipse 80% 60% at 5% 0%, rgba(220, 38, 38, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 95% 100%, rgba(234, 179, 8, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #fffbeb 100%) !important;
}

.mini-invest-modal-body .sp-panel--modal > *,
.mini-invest-modal-body .nb-panel--modal > * {
  position: relative;
  z-index: 1;
}

.mini-invest-modal-body .sp-highlight:not(.sp-highlight--accent),
.mini-invest-modal-body .nb-highlight:not(.nb-highlight--accent) {
  background: #ffffff !important;
}

.mini-invest-modal-body .sp-highlight--accent {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.22) !important;
}

.mini-invest-modal-body .sp-highlight--accent strong {
  color: #fff !important;
}

.mini-invest-modal-body .sp-highlight--accent p {
  color: rgba(255, 255, 255, 0.88) !important;
}

.mini-invest-modal-body .sp-highlight--accent .sp-highlight-icon {
  background: rgba(255, 255, 255, 0.15) !important;
}

.mini-invest-modal-body .nb-highlight--accent {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 55%, #f97316 100%) !important;
  border-color: transparent !important;
  box-shadow: 0 14px 36px rgba(220, 38, 38, 0.25) !important;
}

.mini-invest-modal-body .nb-highlight--accent strong {
  color: #fff !important;
}

.mini-invest-modal-body .nb-highlight--accent p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.mini-invest-modal-body .nb-highlight--accent .nb-highlight-icon {
  background: rgba(255, 255, 255, 0.18) !important;
}

.mini-invest-modal-body .sp-feature,
.mini-invest-modal-body .nb-feature,
.mini-invest-modal-body .sp-stat,
.mini-invest-modal-body .nb-stat,
.mini-invest-modal-body .sp-monetize-item,
.mini-invest-modal-body .nb-monetize-item,
.mini-invest-modal-body .sp-detail-card,
.mini-invest-modal-body .nb-detail-card {
  background: #ffffff !important;
}

html[data-theme="dark"] .mini-invest-modal-body .sp-panel--modal,
html[data-theme="dark"] .mini-invest-modal-body .nb-panel--modal {
  background-color: #1e1c1a !important;
  background-image: linear-gradient(165deg, #1e1c1a 0%, #292524 100%) !important;
}

html[data-theme="dark"] .mini-invest-modal-body .sp-highlight:not(.sp-highlight--accent),
html[data-theme="dark"] .mini-invest-modal-body .nb-highlight:not(.nb-highlight--accent),
html[data-theme="dark"] .mini-invest-modal-body .sp-feature,
html[data-theme="dark"] .mini-invest-modal-body .nb-feature,
html[data-theme="dark"] .mini-invest-modal-body .sp-stat,
html[data-theme="dark"] .mini-invest-modal-body .nb-stat,
html[data-theme="dark"] .mini-invest-modal-body .sp-monetize-item,
html[data-theme="dark"] .mini-invest-modal-body .nb-monetize-item,
html[data-theme="dark"] .mini-invest-modal-body .sp-detail-card,
html[data-theme="dark"] .mini-invest-modal-body .nb-detail-card {
  background: rgba(255, 255, 255, 0.06) !important;
}

html[data-theme="dark"] .mini-invest-modal-body .sp-panel--modal {
  background-color: #1e1c1a;
}

html[data-theme="dark"] .mini-invest-modal-body .nb-panel--modal {
  background-color: #1c1917;
}

@media (max-width: 640px) {
  .modal-dialog--mini-invest {
    max-height: 94vh;
  }

  .mini-invest-modal-body {
    max-height: 94vh;
  }

  .modal-dialog--mini-invest .modal-close {
    top: 8px;
    right: 8px;
  }

  .mini-invest-modal-body .sp-panel--modal,
  .mini-invest-modal-body .nb-panel--modal {
    padding-top: clamp(40px, 10vw, 52px);
  }
}

/* 学科资料小程序 · 项目招商模块（主推款风格） */
.subject-project {
  margin: 40px 0 36px;
  scroll-margin-top: 96px;
}

.subject-project[hidden] {
  display: none !important;
}

.cases-grid-wrap.is-subject-detail-hidden,
.mini-partner-project.is-subject-detail-hidden,
.cases-expand-wrap.is-subject-detail-hidden {
  display: none !important;
}

.sp-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(234, 88, 12, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #c2410c;
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sp-back:hover {
  background: rgba(255, 247, 237, 0.95);
  border-color: rgba(234, 88, 12, 0.4);
  transform: translateX(-2px);
}

html[data-theme="dark"] .sp-back {
  color: #fdba74;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(251, 146, 60, 0.25);
}

html[data-theme="dark"] .sp-back:hover {
  background: rgba(251, 146, 60, 0.1);
}

.sp-panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(ellipse 75% 55% at 8% 0%, rgba(234, 88, 12, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 100%, rgba(22, 163, 74, 0.1) 0%, transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 251, 235, 0.82) 100%);
  border: 1px solid rgba(234, 88, 12, 0.12);
  box-shadow:
    0 24px 64px rgba(234, 88, 12, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.sp-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(234, 88, 12, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 88, 12, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 80%);
  pointer-events: none;
}

.sp-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
  position: relative;
}

.sp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 55%, #16a34a 100%);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.28);
}

.sp-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fde047;
  box-shadow: 0 0 0 4px rgba(253, 224, 71, 0.25);
  animation: spPulse 2s ease-in-out infinite;
}

@keyframes spPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

.sp-title {
  margin: 0 0 10px;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(135deg, #c2410c 0%, #ea580c 45%, #16a34a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sp-title small {
  display: block;
  margin-top: 6px;
  font-size: 0.55em;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.sp-subtitle {
  margin: 0 0 12px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.sp-subtitle strong {
  color: var(--text-primary);
  font-weight: 700;
}

.sp-tagline {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.sp-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
}

.sp-highlight {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(234, 88, 12, 0.1);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.05);
}

.sp-highlight--accent {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.22);
}

.sp-highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
  background: rgba(234, 88, 12, 0.1);
}

.sp-highlight--accent .sp-highlight-icon {
  background: rgba(255, 255, 255, 0.15);
}

.sp-highlight strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.sp-highlight--accent strong {
  color: #fff;
}

.sp-highlight p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.sp-highlight--accent p {
  color: rgba(255, 255, 255, 0.88);
}

.sp-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin-bottom: 40px;
}

.sp-intro-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.sp-intro-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.sp-intro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ea580c, #16a34a);
}

.sp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.sp-stat {
  padding: 14px 12px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(234, 88, 12, 0.1);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.05);
}

.sp-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #c2410c;
  margin-bottom: 4px;
  line-height: 1.2;
}

.sp-stat span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sp-stat small {
  display: block;
  margin-top: 2px;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.sp-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.sp-feature {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(234, 88, 12, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sp-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.08);
}

.sp-feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-size: 1.0625rem;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.12) 0%, rgba(22, 163, 74, 0.1) 100%);
}

.sp-feature b {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.sp-feature small {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.sp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.sp-btn:hover {
  transform: translateY(-1px);
}

.sp-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.28);
}

.sp-btn--primary:hover {
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.35);
}

.sp-btn--outline {
  color: #c2410c;
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(234, 88, 12, 0.35);
}

.sp-btn--outline:hover {
  background: rgba(255, 247, 237, 0.95);
  border-color: #ea580c;
}

.sp-visual {
  position: relative;
}

.sp-visual-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(234, 88, 12, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sp-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  cursor: zoom-in;
  background: #fff7ed;
  box-shadow:
    0 20px 48px rgba(234, 88, 12, 0.12),
    0 0 0 1px rgba(234, 88, 12, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sp-poster:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 56px rgba(234, 88, 12, 0.18);
}

.sp-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.sp-poster-caption {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sp-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 20px;
}

.sp-section-head h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
}

.sp-section-head span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.sp-monetize {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.sp-monetize-item {
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(234, 88, 12, 0.08);
}

.sp-monetize-icon {
  display: block;
  font-size: 1.375rem;
  margin-bottom: 10px;
}

.sp-monetize-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.sp-monetize-item p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.sp-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.sp-plan {
  position: relative;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(234, 88, 12, 0.1);
}

.sp-plan--permanent {
  background: linear-gradient(160deg, rgba(255, 247, 237, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
  border-color: rgba(234, 88, 12, 0.2);
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.1);
}

.sp-plan-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ea580c, #f97316);
}

.sp-plan strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.sp-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.sp-plan-price em {
  font-style: normal;
  font-size: 1.75rem;
  font-weight: 800;
  color: #c2410c;
  line-height: 1;
}

.sp-plan-price span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.sp-plan p {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.sp-plan-earn {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #c2410c;
  background: rgba(234, 88, 12, 0.1);
}

.sp-agent-note {
  margin: 0 0 32px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background: rgba(22, 163, 74, 0.06);
  border: 1px solid rgba(22, 163, 74, 0.12);
}

.sp-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.sp-detail-card {
  padding: 20px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(234, 88, 12, 0.08);
}

.sp-detail-card h4 {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text-primary);
}

.sp-detail-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 8px;
}

.sp-detail-card li {
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.sp-footer-back {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(234, 88, 12, 0.08);
}

.sp-back--bottom {
  margin-bottom: 0;
  padding: 10px 20px 10px 14px;
  font-size: 0.875rem;
}

.sp-footer-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.sp-btn--article {
  color: #fff;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.25);
  padding: 14px 28px;
}

.sp-btn--article svg {
  width: 18px;
  height: 18px;
}

.sp-btn--article:hover {
  box-shadow: 0 12px 32px rgba(22, 163, 74, 0.32);
}

.sp-footer {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding-top: 8px;
  border-top: 1px solid rgba(234, 88, 12, 0.08);
}

html[data-theme="dark"] .sp-panel {
  background:
    radial-gradient(ellipse 75% 55% at 8% 0%, rgba(234, 88, 12, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 100%, rgba(22, 163, 74, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, rgba(30, 30, 30, 0.96) 0%, rgba(40, 35, 30, 0.9) 100%);
  border-color: rgba(251, 146, 60, 0.15);
}

html[data-theme="dark"] .sp-highlight,
html[data-theme="dark"] .sp-feature,
html[data-theme="dark"] .sp-stat,
html[data-theme="dark"] .sp-monetize-item,
html[data-theme="dark"] .sp-plan,
html[data-theme="dark"] .sp-detail-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(251, 146, 60, 0.12);
}

html[data-theme="dark"] .sp-stat strong,
html[data-theme="dark"] .sp-plan-price em {
  color: #fdba74;
}

html[data-theme="dark"] .sp-btn--outline {
  color: #fdba74;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(251, 146, 60, 0.3);
}

@media (max-width: 1024px) {
  .sp-showcase {
    grid-template-columns: 1fr;
  }

  .sp-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .sp-highlights,
  .sp-monetize,
  .sp-details {
    grid-template-columns: 1fr;
  }

  .sp-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sp-stats,
  .sp-plans {
    grid-template-columns: 1fr;
  }

  .sp-actions {
    flex-direction: column;
  }

  .sp-btn {
    width: 100%;
  }
}

/* 网创资料小程序 · 项目招商模块（红金主题） */
.netbiz-project {
  margin: 40px 0 36px;
  scroll-margin-top: 96px;
}

.netbiz-project[hidden] {
  display: none !important;
}

.nb-panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(ellipse 80% 60% at 5% 0%, rgba(239, 68, 68, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 95% 100%, rgba(234, 179, 8, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 60%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(254, 252, 232, 0.88) 100%);
  border: 1px solid rgba(220, 38, 38, 0.12);
  box-shadow:
    0 28px 72px rgba(220, 38, 38, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.nb-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220, 38, 38, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 82%);
  pointer-events: none;
}

.nb-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #b91c1c;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nb-back:hover {
  background: #fef2f2;
  border-color: rgba(220, 38, 38, 0.4);
  transform: translateX(-2px);
}

.nb-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
  position: relative;
}

.nb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #dc2626 0%, #ec4899 45%, #eab308 100%);
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.3);
}

.nb-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fef08a;
  box-shadow: 0 0 0 4px rgba(254, 240, 138, 0.3);
  animation: nbPulse 2s ease-in-out infinite;
}

@keyframes nbPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

.nb-title {
  margin: 0 0 10px;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 40%, #ca8a04 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nb-subtitle {
  margin: 0 0 12px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.nb-subtitle strong { color: var(--text-primary); font-weight: 700; }

.nb-tagline {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.nb-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
}

.nb-highlight {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.05);
}

.nb-highlight--accent {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 55%, #f97316 100%);
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(220, 38, 38, 0.25);
}

.nb-highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
  background: rgba(220, 38, 38, 0.1);
}

.nb-highlight--accent .nb-highlight-icon { background: rgba(255, 255, 255, 0.18); }

.nb-highlight strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.nb-highlight--accent strong { color: #fff; }

.nb-highlight p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.nb-highlight--accent p { color: rgba(255, 255, 255, 0.9); }

.nb-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin-bottom: 40px;
}

.nb-intro-list { margin: 0 0 24px; padding: 0; list-style: none; }

.nb-intro-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.nb-intro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc2626, #eab308);
}

.nb-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.nb-stat {
  padding: 14px 12px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.05);
}

.nb-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #b91c1c;
  margin-bottom: 4px;
  line-height: 1.2;
}

.nb-stat span { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-primary); }
.nb-stat small { display: block; margin-top: 2px; font-size: 0.6875rem; color: var(--text-muted); }

.nb-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.nb-feature {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nb-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.1);
}

.nb-feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  font-size: 1.0625rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.12) 0%, rgba(234, 179, 8, 0.12) 100%);
}

.nb-feature b {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.nb-feature small {
  display: block;
  font-size: 0.6875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.nb-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.nb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.nb-btn:hover { transform: translateY(-1px); }

.nb-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.28);
}

.nb-btn--primary:hover { box-shadow: 0 12px 32px rgba(220, 38, 38, 0.35); }

.nb-btn--outline {
  color: #b91c1c;
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(220, 38, 38, 0.3);
}

.nb-btn--outline:hover { background: #fef2f2; border-color: #dc2626; }

.nb-visual { position: relative; }

.nb-visual-glow {
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse at center, rgba(234, 179, 8, 0.15) 0%, rgba(220, 38, 38, 0.08) 45%, transparent 72%);
  pointer-events: none;
}

.nb-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  cursor: zoom-in;
  background: #fef9c3;
  box-shadow:
    0 24px 56px rgba(220, 38, 38, 0.14),
    0 0 0 1px rgba(234, 179, 8, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nb-poster:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 32px 64px rgba(220, 38, 38, 0.2);
}

.nb-poster img { display: block; width: 100%; height: auto; }

.nb-poster-caption {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.nb-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 20px;
}

.nb-section-head h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
}

.nb-section-head span { font-size: 0.8125rem; color: var(--text-muted); }

.nb-monetize {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.nb-monetize-item {
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nb-monetize-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.08);
}

.nb-monetize-icon { display: block; font-size: 1.375rem; margin-bottom: 10px; }

.nb-monetize-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.nb-monetize-item p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.nb-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.nb-plan {
  position: relative;
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.nb-plan--permanent {
  background: linear-gradient(160deg, rgba(254, 249, 195, 0.95) 0%, rgba(254, 226, 226, 0.85) 100%);
  border-color: rgba(236, 72, 153, 0.25);
  box-shadow: 0 14px 36px rgba(236, 72, 153, 0.12);
}

.nb-plan-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ec4899, #dc2626);
}

.nb-plan strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.nb-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.nb-plan-price em {
  font-style: normal;
  font-size: 1.75rem;
  font-weight: 800;
  color: #b91c1c;
  line-height: 1;
}

.nb-plan-price span { font-size: 0.8125rem; color: var(--text-muted); }
.nb-plan p { margin: 0 0 8px; font-size: 0.8125rem; line-height: 1.65; color: var(--text-secondary); }

.nb-plan-earn {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #b91c1c;
  background: rgba(220, 38, 38, 0.1);
}

.nb-agent-note {
  margin: 0 0 32px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background: linear-gradient(135deg, rgba(254, 249, 195, 0.5) 0%, rgba(254, 226, 226, 0.4) 100%);
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.nb-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.nb-detail-card {
  padding: 20px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.nb-detail-card h4 {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text-primary);
}

.nb-detail-card ul { margin: 0; padding-left: 1.1rem; display: grid; gap: 8px; }

.nb-detail-card li {
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.nb-footer-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.nb-btn--article {
  color: #fff;
  background: linear-gradient(135deg, #dc2626 0%, #ec4899 100%);
  box-shadow: 0 8px 28px rgba(220, 38, 38, 0.28);
  padding: 14px 28px;
}

.nb-btn--article svg { width: 18px; height: 18px; }
.nb-btn--article:hover { box-shadow: 0 12px 36px rgba(236, 72, 153, 0.32); }

.nb-footer {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding-top: 8px;
  border-top: 1px solid rgba(220, 38, 38, 0.08);
}

.nb-footer-back {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(220, 38, 38, 0.08);
}

.nb-back--bottom {
  margin-bottom: 0;
  padding: 10px 20px 10px 14px;
  font-size: 0.875rem;
}

html[data-theme="dark"] .nb-panel {
  background:
    radial-gradient(ellipse 80% 60% at 5% 0%, rgba(220, 38, 38, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 95% 100%, rgba(234, 179, 8, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, rgba(28, 25, 23, 0.96) 0%, rgba(40, 30, 28, 0.92) 100%);
  border-color: rgba(248, 113, 113, 0.15);
}

html[data-theme="dark"] .nb-highlight,
html[data-theme="dark"] .nb-feature,
html[data-theme="dark"] .nb-stat,
html[data-theme="dark"] .nb-monetize-item,
html[data-theme="dark"] .nb-plan,
html[data-theme="dark"] .nb-detail-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(248, 113, 113, 0.12);
}

html[data-theme="dark"] .nb-stat strong,
html[data-theme="dark"] .nb-plan-price em { color: #fca5a5; }

html[data-theme="dark"] .nb-back {
  color: #fca5a5;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(248, 113, 113, 0.25);
}

html[data-theme="dark"] .nb-btn--outline {
  color: #fca5a5;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(248, 113, 113, 0.3);
}

@media (max-width: 1024px) {
  .nb-showcase { grid-template-columns: 1fr; }
  .nb-visual { order: -1; max-width: 400px; margin: 0 auto; }
  .nb-highlights, .nb-monetize, .nb-details { grid-template-columns: 1fr; }
  .nb-features { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nb-stats, .nb-plans { grid-template-columns: 1fr; }
  .nb-actions { flex-direction: column; }
  .nb-btn { width: 100%; }
}

/* ========== 软件一 · 语雀软件库展示 ========== */
.software1-showcase,
.software2-showcase {
  margin-top: 8px;
}

.software1-showcase[hidden],
.software2-showcase[hidden] {
  display: none !important;
}

/* ========== 软件二 · 运营大管家三列卡片 ========== */
.sw2-panel {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sw2-hero {
  text-align: center;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 55%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(239, 246, 255, 0.8) 100%);
  border: 1px solid rgba(10, 36, 99, 0.08);
}

.sw2-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.12);
}

.sw2-hero-title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  color: #0a2463;
}

.sw2-hero-desc {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

.sw2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.sw2-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: 0 8px 28px rgba(10, 36, 99, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.sw2-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(10, 36, 99, 0.1);
}

.sw2-card-shot {
  flex: 0 0 auto;
  aspect-ratio: 16 / 10;
  background: #f1f5f9;
  border-bottom: 1px solid rgba(10, 36, 99, 0.06);
  cursor: zoom-in;
  overflow: hidden;
}

.sw2-card-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  background: #f8fafc;
}

.sw2-card-shot--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  cursor: default;
}

.sw2-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  padding: 16px 18px 18px;
  min-height: 0;
}

.sw2-card-meta {
  display: flex;
  align-items: center;
}

.sw2-card-index {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.12);
}

.sw2-card-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #0a2463;
}

.sw2-card-desc {
  position: relative;
  margin: 0;
  flex: 1 1 auto;
}

.sw2-card-desc-inner {
  font-size: 13px;
  line-height: 1.75;
  color: #4b5563;
  text-align: justify;
  word-break: break-word;
}

.sw2-card-desc.is-collapsible.is-collapsed {
  max-height: 5.25rem;
  overflow: hidden;
}

.sw2-card-desc.is-collapsible.is-expanded {
  max-height: none;
  overflow: visible;
}

.sw2-card-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 88%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sw2-card-desc.is-collapsed .sw2-card-fade {
  opacity: 1;
}

.sw2-card-expand {
  align-self: flex-start;
  padding: 0;
  border: none;
  background: none;
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
  cursor: pointer;
}

.sw2-card-expand:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.sw2-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
}

.sw2-card-actions .sw2-btn {
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  font-size: 13px;
}

.sw2-cta {
  text-align: center;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(239, 246, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.sw2-cta h4 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #0a2463;
}

.sw2-cta p {
  margin: 0 0 18px;
  color: #64748b;
  line-height: 1.7;
}

.sw2-btn--outline {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.sw2-btn--outline:hover {
  background: rgba(59, 130, 246, 0.14);
}

.sw2-btn--lg {
  min-height: 46px;
  padding: 0 28px;
  font-size: 15px;
}

.sw2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.sw2-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.sw2-btn--primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

@media (max-width: 1024px) {
  .sw2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sw2-grid {
    grid-template-columns: 1fr;
  }

  .sw2-card-actions {
    grid-template-columns: 1fr;
  }
}

html[data-theme="dark"] .sw2-hero,
html[data-theme="dark"] .sw2-card,
html[data-theme="dark"] .sw2-cta {
  background: rgba(15, 23, 42, 0.88);
  border-color: rgba(148, 163, 184, 0.16);
}

html[data-theme="dark"] .sw2-hero-title,
html[data-theme="dark"] .sw2-card-title,
html[data-theme="dark"] .sw2-cta h4 {
  color: #e2e8f0;
}

html[data-theme="dark"] .sw2-hero-desc,
html[data-theme="dark"] .sw2-card-desc-inner,
html[data-theme="dark"] .sw2-cta p {
  color: #94a3b8;
}

html[data-theme="dark"] .sw2-card-shot {
  background: #0f172a;
  border-bottom-color: rgba(148, 163, 184, 0.12);
}

html[data-theme="dark"] .sw2-card-fade {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.96) 88%);
}

.sw1-panel {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sw1-hero {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.92) 0%, rgba(16, 185, 129, 0.18) 55%, rgba(10, 36, 99, 0.88) 100%);
  border: 1px solid rgba(110, 231, 183, 0.2);
  box-shadow: 0 24px 64px rgba(10, 36, 99, 0.18);
}

.sw1-hero-glow {
  position: absolute;
  inset: -40% -20% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.sw1-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.sw1-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(110, 231, 183, 0.3);
  margin-bottom: 16px;
}

.sw1-hero-title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.sw1-hero-desc {
  margin: 0 0 24px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.sw1-hero-desc strong {
  color: #6ee7b7;
  font-weight: 700;
}

.sw1-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.sw1-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 88px;
}

.sw1-stat strong {
  font-size: 1.375rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.sw1-stat span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.sw1-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6ee7b7;
  text-decoration: none;
  transition: opacity 0.2s;
}

.sw1-hero-link:hover {
  opacity: 0.85;
  text-decoration: underline;
}

.sw1-category-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.sw1-category-head h4 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.sw1-category-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.35), transparent);
}

.sw1-modules {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sw1-module {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 28px;
  border-radius: 20px;
  background: var(--bg-card, #fff);
  border: 1px solid rgba(10, 36, 99, 0.08);
  box-shadow: 0 8px 32px rgba(10, 36, 99, 0.06);
  transition: box-shadow 0.25s, transform 0.25s;
}

.sw1-module:hover {
  box-shadow: 0 16px 48px rgba(10, 36, 99, 0.1);
  transform: translateY(-2px);
}

.sw1-module--reverse {
  direction: rtl;
}

.sw1-module--reverse > * {
  direction: ltr;
}

.sw1-module-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sw1-module-poster {
  border-radius: 16px;
  overflow: hidden;
  background: rgba(10, 36, 99, 0.04);
  border: 1px solid rgba(10, 36, 99, 0.08);
  aspect-ratio: 16 / 10;
  cursor: zoom-in;
}

.sw1-module-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8fafc;
}

.sw1-module-poster--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.sw1-module-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.sw1-thumb {
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
  opacity: 0.75;
  transition: opacity 0.2s, border-color 0.2s;
  background: rgba(10, 36, 99, 0.04);
  aspect-ratio: 4 / 3;
}

.sw1-thumb:hover {
  opacity: 1;
  border-color: var(--accent-blue, #3b82f6);
}

.sw1-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sw1-module-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sw1-module-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #0a2463, #10b981);
}

.sw1-module-cat {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #059669;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.sw1-module-title {
  margin: 0 0 16px;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.4;
}

.sw1-module-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sw1-module-features li {
  position: relative;
  padding-left: 18px;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.sw1-module-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

.sw1-module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sw1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.sw1-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #0a2463 0%, #10b981 100%);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.sw1-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.sw1-btn--outline {
  color: var(--text-primary);
  background: transparent;
  border-color: rgba(10, 36, 99, 0.15);
}

.sw1-btn--outline:hover {
  background: rgba(10, 36, 99, 0.04);
  border-color: rgba(16, 185, 129, 0.4);
  color: #059669;
}

.sw1-btn--lg {
  padding: 14px 32px;
  font-size: 0.9375rem;
}

.sw1-cta {
  text-align: center;
  padding: 40px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, rgba(10, 36, 99, 0.04) 100%);
  border: 1px dashed rgba(16, 185, 129, 0.25);
}

.sw1-cta h4 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.sw1-cta p {
  margin: 0 0 20px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.case-btn-consult {
  color: #059669;
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.06);
}

.case-btn-consult:hover {
  background: rgba(16, 185, 129, 0.12);
}

html[data-theme="dark"] .sw1-module {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

html[data-theme="dark"] .sw1-module:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .sw1-btn--outline {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

html[data-theme="dark"] .sw1-cta {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(110, 231, 183, 0.2);
}

@media (max-width: 900px) {
  .sw1-module,
  .sw1-module--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .sw1-module-visual {
    order: -1;
  }

  .sw1-hero {
    padding: 32px 24px;
  }

  .sw1-module-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sw1-module-actions {
    flex-direction: column;
  }

  .sw1-btn {
    width: 100%;
  }
}

/* 网赚项目 · 独立大板块（分类 + 三列卡片） */
.netearn-section {
  background: var(--bg-primary);
  scroll-margin-top: 88px;
}

.netearn-section .ne-category-tabs {
  margin-bottom: 40px;
}

.netearn-section .cases-tab {
  color: #5b21b6;
  background: rgba(124, 58, 237, 0.06);
  border-color: rgba(124, 58, 237, 0.2);
}

.netearn-section .cases-tab:hover {
  color: #6d28d9;
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.35);
}

.netearn-section .cases-tab.active {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.5);
  color: #5b21b6;
  font-weight: 600;
  box-shadow: none;
}

.netearn-section .ne-projects-grid {
  margin-bottom: 0;
}

.netearn-section .ne-project-card .case-cover {
  height: 180px;
}

.netearn-section .ne-project-card .case-cat-label {
  color: #fde68a;
  background: rgba(88, 28, 135, 0.82);
}

.ne-empty {
  grid-column: 1 / -1;
  padding: 48px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  color: var(--text-muted);
  font-size: 0.9375rem;
}

html[data-theme="dark"] .netearn-section .cases-tab.active {
  background: rgba(124, 58, 237, 0.22);
  border-color: rgba(168, 85, 247, 0.5);
  color: #f3e8ff;
}

.netearn-showcase[hidden] {
  display: none !important;
}

.ne-panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(24px, 3.5vw, 40px);
  background:
    radial-gradient(ellipse 75% 55% at 8% 0%, rgba(124, 58, 237, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 100%, rgba(234, 179, 8, 0.14) 0%, transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(254, 252, 232, 0.88) 100%);
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 24px 64px rgba(124, 58, 237, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
}

.ne-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}

.ne-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 55%, #a855f7 100%);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.28);
}

.ne-section-title {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 45%, #ca8a04 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ne-section-subtitle {
  margin: 0 0 8px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--text-primary);
}

.ne-section-tagline {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.ne-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.ne-subtab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid rgba(124, 58, 237, 0.15);
  background: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ne-subtab small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.ne-subtab:hover {
  border-color: rgba(124, 58, 237, 0.35);
  transform: translateY(-1px);
}

.ne-subtab--active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.28);
}

.ne-subtab--active small {
  color: rgba(255, 255, 255, 0.82);
}

.ne-intro-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(234, 179, 8, 0.2);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.06);
}

.ne-intro-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ne-intro-card--reverse .ne-intro-visual {
  order: -1;
}

.ne-intro-card--alliance {
  border-color: rgba(219, 39, 119, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(253, 244, 255, 0.82) 100%);
  box-shadow: 0 12px 40px rgba(219, 39, 119, 0.08);
}

.ne-intro-card--alliance .ne-intro-badge {
  background: linear-gradient(135deg, #be185d 0%, #db2777 55%, #a855f7 100%);
  box-shadow: 0 6px 18px rgba(219, 39, 119, 0.28);
}

.ne-intro-card--alliance .ne-stat strong {
  color: #be185d;
}

.ne-intro-card--alliance .ne-stat {
  background: linear-gradient(135deg, rgba(219, 39, 119, 0.06) 0%, rgba(168, 85, 247, 0.08) 100%);
  border-color: rgba(219, 39, 119, 0.12);
}

.ne-intro-card--alliance .ne-platform {
  color: #be185d;
  background: rgba(219, 39, 119, 0.08);
  border-color: rgba(219, 39, 119, 0.14);
}

.ne-intro-card--alliance .ne-btn--primary {
  background: linear-gradient(135deg, #be185d 0%, #db2777 55%, #a855f7 100%);
  box-shadow: 0 10px 28px rgba(219, 39, 119, 0.28);
}

.ne-intro-card--alliance .ne-btn--outline {
  color: #be185d;
  border-color: rgba(219, 39, 119, 0.25);
}

.ne-intro-card--alliance .ne-visual-glow {
  background: radial-gradient(circle, rgba(219, 39, 119, 0.2) 0%, transparent 68%);
}

.ne-intro-card--alliance .ne-poster {
  box-shadow: 0 16px 48px rgba(219, 39, 119, 0.2);
  background: #fdf4ff;
}

@media (min-width: 901px) {
  .ne-intro-card--reverse {
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  }

  .ne-intro-card--reverse .ne-intro-visual {
    order: 0;
  }
}

.ne-intro-badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.22);
}

.ne-intro-title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
}

.ne-intro-lead {
  margin: 0 0 18px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.ne-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.ne-stat {
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(234, 179, 8, 0.08) 100%);
  border: 1px solid rgba(124, 58, 237, 0.1);
  text-align: center;
}

.ne-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #6d28d9;
  line-height: 1.2;
}

.ne-stat span {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.ne-stat small {
  display: block;
  margin-top: 2px;
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.ne-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ne-platform {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.14);
}

.ne-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ne-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ne-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 55%, #a855f7 100%);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.28);
}

.ne-btn--outline {
  color: #6d28d9;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.ne-btn:hover {
  transform: translateY(-1px);
}

.ne-intro-visual {
  position: relative;
}

.ne-visual-glow {
  position: absolute;
  inset: -12%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.22) 0%, transparent 68%);
  pointer-events: none;
}

.ne-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.18);
  background: #fef08a;
}

.ne-poster img {
  display: block;
  width: 100%;
  height: auto;
}

.ne-poster-caption {
  margin: 10px 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .ne-intro-card {
    grid-template-columns: 1fr;
  }

  .ne-intro-visual {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }

  .ne-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ne-intro-actions {
    flex-direction: column;
  }

  .ne-btn {
    width: 100%;
  }
}

/* 影视 VIP 卡 · 招商详情（紫黄主题） */
.modal-dialog.modal-dialog--mini-invest.modal-dialog--movie-vip {
  background: #fefce8;
}

.mini-invest-modal-body:has(.mv-panel--modal) {
  background: #fefce8;
}

.mv-panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(ellipse 80% 60% at 5% 0%, rgba(124, 58, 237, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 95% 100%, rgba(234, 179, 8, 0.14) 0%, transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(254, 252, 232, 0.88) 100%);
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 28px 72px rgba(124, 58, 237, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.mv-panel--modal {
  margin: 0;
  border-radius: var(--radius-xl);
  background-color: #fefce8 !important;
  background-image:
    radial-gradient(ellipse 80% 60% at 5% 0%, rgba(124, 58, 237, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 95% 100%, rgba(234, 179, 8, 0.1) 0%, transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #fefce8 100%) !important;
}

.mv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 45%, #eab308 100%);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.28);
}

.mv-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fef08a;
  box-shadow: 0 0 0 4px rgba(254, 240, 138, 0.3);
  animation: mvPulse 2s ease-in-out infinite;
}

@keyframes mvPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

.mv-header { text-align: center; max-width: 780px; margin: 0 auto 40px; position: relative; }

.mv-title {
  margin: 0 0 10px;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 40%, #ca8a04 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mv-subtitle { margin: 0 0 12px; font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-secondary); line-height: 1.6; }
.mv-subtitle strong { color: var(--text-primary); font-weight: 700; }
.mv-tagline { margin: 0; font-size: 0.9375rem; line-height: 1.75; color: var(--text-muted); }

.mv-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.mv-highlight {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.05);
}

.mv-highlight--accent {
  background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 55%, #a855f7 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 36px rgba(124, 58, 237, 0.25);
}

.mv-highlight--accent strong,
.mv-highlight--accent p { color: #fff; }

.mv-highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
  background: rgba(124, 58, 237, 0.1);
}

.mv-highlight--accent .mv-highlight-icon { background: rgba(255, 255, 255, 0.18); }

.mv-highlight strong { display: block; margin-bottom: 4px; font-size: 0.9375rem; }
.mv-highlight:not(.mv-highlight--accent) p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.mv-highlight--accent strong {
  color: #fff;
}

.mv-highlight--accent p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
}

.mv-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin-bottom: 40px;
}

.mv-intro-list {
  margin: 0 0 24px;
  padding-left: 1.2em;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.mv-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.mv-stat {
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.mv-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #6d28d9; line-height: 1.2; }
.mv-stat span { display: block; margin-top: 4px; font-size: 0.8125rem; font-weight: 600; }
.mv-stat small { display: block; margin-top: 2px; font-size: 0.6875rem; color: var(--text-muted); }

.mv-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.mv-feature {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.mv-feature-icon { font-size: 1.25rem; flex-shrink: 0; }
.mv-feature b { display: block; font-size: 0.875rem; margin-bottom: 2px; }
.mv-feature small { font-size: 0.75rem; line-height: 1.55; color: var(--text-muted); }

.mv-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.mv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mv-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.28);
}

.mv-btn--outline,
.mv-btn--article {
  color: #6d28d9;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(124, 58, 237, 0.22);
}

.mv-btn:hover { transform: translateY(-1px); }

.mv-visual { position: relative; }

.mv-visual-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.mv-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 20px 56px rgba(124, 58, 237, 0.18);
  background: #fef08a;
}

.mv-poster img { display: block; width: 100%; height: auto; }

.mv-poster-caption {
  margin: 12px 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  color: var(--text-muted);
}

.mv-visual-block {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.mv-visual-block h5 {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.mv-platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mv-platform-chip {
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #6d28d9;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.mv-quick-plays {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mv-quick-play {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.04);
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.mv-quick-play-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(124, 58, 237, 0.1);
}

.mv-quick-play strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.mv-quick-play p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.mv-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.mv-section-head h4 { margin: 0; font-size: 1.125rem; font-weight: 800; }
.mv-section-head span { font-size: 0.8125rem; color: var(--text-muted); }

.mv-monetize {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.mv-monetize-item {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.mv-monetize-icon { display: block; font-size: 1.25rem; margin-bottom: 8px; }
.mv-monetize-item strong { display: block; margin-bottom: 6px; font-size: 0.9375rem; }
.mv-monetize-item p { margin: 0; font-size: 0.8125rem; line-height: 1.65; color: var(--text-secondary); }

.mv-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.mv-plan {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.mv-plan--permanent {
  border-color: rgba(234, 179, 8, 0.35);
  background: linear-gradient(135deg, rgba(254, 252, 232, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.mv-plan-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.mv-plan strong { display: block; margin-bottom: 8px; font-size: 1rem; }
.mv-plan-price { margin-bottom: 10px; }
.mv-plan-price em { font-style: normal; font-size: 2rem; font-weight: 800; color: #6d28d9; }
.mv-plan-price span { margin-left: 4px; font-size: 0.875rem; color: var(--text-muted); }
.mv-plan p { margin: 0 0 8px; font-size: 0.8125rem; line-height: 1.65; color: var(--text-secondary); }
.mv-plan-earn { display: inline-block; padding: 4px 10px; border-radius: 8px; font-size: 0.75rem; font-weight: 600; color: #6d28d9; background: rgba(124, 58, 237, 0.08); }

.mv-agent-note {
  margin: 0 0 32px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background: rgba(124, 58, 237, 0.06);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.mv-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.mv-detail-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.mv-detail-card h4 { margin: 0 0 12px; font-size: 0.9375rem; }
.mv-detail-card ul { margin: 0; padding-left: 1.1em; font-size: 0.8125rem; line-height: 1.75; color: var(--text-secondary); }

.mv-footer-actions { display: flex; justify-content: center; margin-bottom: 16px; }

.mv-footer {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.mini-invest-modal-body .mv-highlight:not(.mv-highlight--accent) {
  background: #ffffff !important;
}

.mini-invest-modal-body .mv-highlight--accent {
  background: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%) !important;
}

.mini-invest-modal-body .mv-highlight--accent strong,
.mini-invest-modal-body .mv-highlight--accent p {
  color: #fff !important;
}

.mini-invest-modal-body .mv-visual-block {
  background: #ffffff !important;
}

@media (max-width: 1024px) {
  .mv-showcase,
  .mv-highlights,
  .mv-monetize,
  .mv-details {
    grid-template-columns: 1fr;
  }

  .mv-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .mv-features { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .mv-stats,
  .mv-plans {
    grid-template-columns: 1fr;
  }

  .mv-actions { flex-direction: column; }
  .mv-btn { width: 100%; }
}

/* 全域赚钱联盟 · 合伙人招募（洋红紫主题） */
.modal-dialog.modal-dialog--mini-invest.modal-dialog--alliance {
  background: #fdf4ff;
}

.mini-invest-modal-body:has(.al-panel--modal) {
  background: #fdf4ff;
}

.al-panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(ellipse 80% 60% at 5% 0%, rgba(219, 39, 119, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 95% 100%, rgba(168, 85, 247, 0.14) 0%, transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(253, 244, 255, 0.88) 100%);
  border: 1px solid rgba(219, 39, 119, 0.12);
  box-shadow: 0 28px 72px rgba(219, 39, 119, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.al-panel--modal {
  margin: 0;
  border-radius: var(--radius-xl);
  background-color: #fdf4ff !important;
  background-image:
    radial-gradient(ellipse 80% 60% at 5% 0%, rgba(219, 39, 119, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 95% 100%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #fdf4ff 100%) !important;
}

.al-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #be185d 0%, #db2777 45%, #a855f7 100%);
  box-shadow: 0 8px 28px rgba(219, 39, 119, 0.28);
}

.al-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fef08a;
  box-shadow: 0 0 0 4px rgba(254, 240, 138, 0.3);
  animation: alPulse 2s ease-in-out infinite;
}

@keyframes alPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

.al-header { text-align: center; max-width: 780px; margin: 0 auto 40px; position: relative; }

.al-title {
  margin: 0 0 10px;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(135deg, #9d174d 0%, #db2777 40%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.al-subtitle { margin: 0 0 12px; font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-secondary); line-height: 1.6; }
.al-subtitle strong { color: var(--text-primary); font-weight: 700; }
.al-tagline { margin: 0; font-size: 0.9375rem; line-height: 1.75; color: var(--text-muted); }

.al-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.al-highlight {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 39, 119, 0.1);
  box-shadow: 0 8px 24px rgba(219, 39, 119, 0.05);
}

.al-highlight--accent {
  background: linear-gradient(135deg, #be185d 0%, #db2777 55%, #a855f7 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 36px rgba(219, 39, 119, 0.25);
}

.al-highlight--accent strong,
.al-highlight--accent p { color: #fff; }

.al-highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
  background: rgba(219, 39, 119, 0.1);
}

.al-highlight--accent .al-highlight-icon { background: rgba(255, 255, 255, 0.18); }

.al-highlight strong { display: block; margin-bottom: 4px; font-size: 0.9375rem; }
.al-highlight:not(.al-highlight--accent) p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.al-highlight--accent p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
}

.al-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin-bottom: 40px;
}

.al-intro-list { margin: 0 0 24px; padding-left: 1.2em; font-size: 0.9375rem; line-height: 1.75; color: var(--text-secondary); }

.al-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.al-stat {
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(219, 39, 119, 0.1);
}

.al-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: #be185d; line-height: 1.2; }
.al-stat span { display: block; margin-top: 4px; font-size: 0.8125rem; font-weight: 600; }
.al-stat small { display: block; margin-top: 2px; font-size: 0.6875rem; color: var(--text-muted); }

.al-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.al-feature {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(219, 39, 119, 0.08);
}

.al-feature-icon { font-size: 1.25rem; flex-shrink: 0; }
.al-feature b { display: block; font-size: 0.875rem; margin-bottom: 2px; }
.al-feature small { font-size: 0.75rem; line-height: 1.55; color: var(--text-muted); }

.al-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.al-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.al-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #be185d 0%, #db2777 100%);
  box-shadow: 0 10px 28px rgba(219, 39, 119, 0.28);
}

.al-btn--outline,
.al-btn--article {
  color: #be185d;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 39, 119, 0.22);
}

.al-btn:hover { transform: translateY(-1px); }

.al-visual { position: relative; }

.al-visual-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.al-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 20px 56px rgba(219, 39, 119, 0.18);
  background: #fdf4ff;
}

.al-poster img { display: block; width: 100%; height: auto; }

.al-poster-caption {
  margin: 12px 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  color: var(--text-muted);
}

.al-visual-block {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 39, 119, 0.1);
}

.al-visual-block h5 {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.al-platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.al-platform-chip {
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #be185d;
  background: rgba(219, 39, 119, 0.08);
  border: 1px solid rgba(219, 39, 119, 0.12);
}

.al-quick-plays {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.al-quick-play {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(219, 39, 119, 0.04);
  border: 1px solid rgba(219, 39, 119, 0.08);
}

.al-quick-play-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(219, 39, 119, 0.1);
}

.al-quick-play strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.al-quick-play p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.al-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.al-section-head h4 { margin: 0; font-size: 1.125rem; font-weight: 800; }
.al-section-head span { font-size: 0.8125rem; color: var(--text-muted); }

.al-monetize {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.al-monetize-item {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 39, 119, 0.1);
}

.al-monetize-icon { display: block; font-size: 1.25rem; margin-bottom: 8px; }
.al-monetize-item strong { display: block; margin-bottom: 6px; font-size: 0.9375rem; }
.al-monetize-item p { margin: 0; font-size: 0.8125rem; line-height: 1.65; color: var(--text-secondary); }

.al-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.al-plan {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 39, 119, 0.12);
}

.al-plan--annual {
  border-color: rgba(219, 39, 119, 0.28);
  background: linear-gradient(135deg, rgba(253, 244, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.al-plan--permanent {
  border-color: rgba(168, 85, 247, 0.2);
}

.al-plan-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #be185d, #db2777);
}

.al-plan strong { display: block; margin-bottom: 8px; font-size: 1rem; }
.al-plan-price { margin-bottom: 10px; }
.al-plan-price em { font-style: normal; font-size: 2rem; font-weight: 800; color: #be185d; }
.al-plan-price span { margin-left: 4px; font-size: 0.875rem; color: var(--text-muted); }
.al-plan p { margin: 0 0 8px; font-size: 0.8125rem; line-height: 1.65; color: var(--text-secondary); }
.al-plan-earn { display: inline-block; padding: 4px 10px; border-radius: 8px; font-size: 0.75rem; font-weight: 600; color: #be185d; background: rgba(219, 39, 119, 0.08); }

.al-agent-note {
  margin: 0 0 32px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background: rgba(219, 39, 119, 0.06);
  border: 1px solid rgba(219, 39, 119, 0.12);
}

.al-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.al-detail-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 39, 119, 0.1);
}

.al-detail-card h4 { margin: 0 0 12px; font-size: 0.9375rem; }
.al-detail-card ul { margin: 0; padding-left: 1.1em; font-size: 0.8125rem; line-height: 1.75; color: var(--text-secondary); }

.al-footer-actions { display: flex; justify-content: center; margin-bottom: 16px; }

.al-footer {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.mini-invest-modal-body .al-highlight:not(.al-highlight--accent) {
  background: #ffffff !important;
}

.mini-invest-modal-body .al-highlight--accent {
  background: linear-gradient(135deg, #be185d 0%, #db2777 100%) !important;
}

.mini-invest-modal-body .al-highlight--accent strong,
.mini-invest-modal-body .al-highlight--accent p {
  color: #fff !important;
}

.mini-invest-modal-body .al-visual-block {
  background: #ffffff !important;
}

@media (max-width: 1024px) {
  .al-showcase,
  .al-highlights,
  .al-monetize,
  .al-details {
    grid-template-columns: 1fr;
  }

  .al-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .al-features { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .al-stats,
  .al-plans {
    grid-template-columns: 1fr;
  }

  .al-actions { flex-direction: column; }
  .al-btn { width: 100%; }
}

.nav-link--netearn {
  color: #eab308 !important;
  font-weight: 600;
}

.nav-link--netearn::after {
  content: '自营';
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  vertical-align: middle;
}

@media (max-width: 1100px) {
  .nav-link--netearn::after {
    display: none;
  }
}

/* 飞书文档复制工具 · 功能介绍（青蓝主题） */
.modal-dialog.modal-dialog--mini-invest.modal-dialog--feishu-doc {
  background: #ecfeff;
}

.mini-invest-modal-body:has(.fd-panel--modal) {
  background: #ecfeff;
}

.fd-panel {
  position: relative;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(ellipse 80% 60% at 5% 0%, rgba(6, 182, 212, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 95% 100%, rgba(34, 211, 238, 0.14) 0%, transparent 50%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(254, 252, 232, 0.88) 100%);
  border: 1px solid rgba(6, 182, 212, 0.12);
  box-shadow: 0 28px 72px rgba(6, 182, 212, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.fd-panel--modal {
  margin: 0;
  border-radius: var(--radius-xl);
  background-color: #ecfeff !important;
  background-image:
    radial-gradient(ellipse 80% 60% at 5% 0%, rgba(6, 182, 212, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 55% at 95% 100%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #ecfeff 100%) !important;
}

.fd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(135deg, #0e7490 0%, #0891b2 45%, #eab308 100%);
  box-shadow: 0 8px 28px rgba(6, 182, 212, 0.28);
}

.fd-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cffafe;
  box-shadow: 0 0 0 4px rgba(254, 240, 138, 0.3);
  animation: fdPulse 2s ease-in-out infinite;
}

@keyframes fdPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.75; transform: scale(0.92); }
}

.fd-header { text-align: center; max-width: 780px; margin: 0 auto 40px; position: relative; }

.fd-title {
  margin: 0 0 10px;
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(135deg, #5b21b6 0%, #0891b2 40%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fd-subtitle { margin: 0 0 12px; font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-secondary); line-height: 1.6; }
.fd-subtitle strong { color: var(--text-primary); font-weight: 700; }
.fd-tagline { margin: 0; font-size: 0.9375rem; line-height: 1.75; color: var(--text-muted); }

.fd-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.fd-highlight {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(6, 182, 212, 0.1);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.05);
}

.fd-highlight--accent {
  background: linear-gradient(135deg, #0e7490 0%, #0891b2 55%, #22d3ee 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 36px rgba(6, 182, 212, 0.25);
}

.fd-highlight--accent strong,
.fd-highlight--accent p { color: #fff; }

.fd-highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
  background: rgba(6, 182, 212, 0.1);
}

.fd-highlight--accent .fd-highlight-icon { background: rgba(255, 255, 255, 0.18); }

.fd-highlight strong { display: block; margin-bottom: 4px; font-size: 0.9375rem; }
.fd-highlight:not(.fd-highlight--accent) p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.fd-highlight--accent strong {
  color: #fff;
}

.fd-highlight--accent p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
}

.fd-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin-bottom: 40px;
}

.fd-intro-list {
  margin: 0 0 24px;
  padding-left: 1.2em;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.fd-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.fd-stat {
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(6, 182, 212, 0.1);
}

.fd-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fd-stat span { display: block; margin-top: 4px; font-size: 0.8125rem; font-weight: 600; }
.fd-stat small { display: block; margin-top: 2px; font-size: 0.6875rem; color: var(--text-muted); }

.fd-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.fd-feature {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 182, 212, 0.08);
}

.fd-feature-icon { font-size: 1.25rem; flex-shrink: 0; }
.fd-feature b { display: block; font-size: 0.875rem; margin-bottom: 2px; }
.fd-feature small { font-size: 0.75rem; line-height: 1.55; color: var(--text-muted); }

.fd-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.fd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fd-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.28);
}

.fd-btn--outline,
.fd-btn--article {
  color: #0e7490;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(6, 182, 212, 0.22);
}

.fd-btn:hover { transform: translateY(-1px); }

.fd-visual { position: relative; }

.fd-visual-glow {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.fd-poster {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 20px 56px rgba(6, 182, 212, 0.18);
  background: #cffafe;
}

.fd-poster img { display: block; width: 100%; height: auto; }

.fd-poster-caption {
  margin: 12px 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
  color: var(--text-muted);
}

.fd-visual-block {
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 182, 212, 0.1);
}

.fd-visual-block h5 {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.fd-platform-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fd-platform-chip {
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #0e7490;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.12);
}

.fd-quick-plays {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fd-quick-play {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.08);
}

.fd-quick-play-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(6, 182, 212, 0.1);
}

.fd-quick-play strong {
  display: block;
  margin-bottom: 2px;
  font-size: 0.8125rem;
  color: var(--text-primary);
}

.fd-quick-play p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.fd-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.fd-section-head h4 { margin: 0; font-size: 1.125rem; font-weight: 800; }
.fd-section-head span { font-size: 0.8125rem; color: var(--text-muted); }

.fd-monetize {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 36px;
}

.fd-monetize-item {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(6, 182, 212, 0.1);
}

.fd-monetize-icon { display: block; font-size: 1.25rem; margin-bottom: 8px; }
.fd-monetize-item strong { display: block; margin-bottom: 6px; font-size: 0.9375rem; }
.fd-monetize-item p { margin: 0; font-size: 0.8125rem; line-height: 1.65; color: var(--text-secondary); }

.fd-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.fd-plan {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 182, 212, 0.12);
  display: flex;
  flex-direction: column;
}

.fd-plan--personal {
  border-color: rgba(6, 182, 212, 0.22);
  background: linear-gradient(160deg, rgba(236, 254, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.fd-plan--permanent {
  border-color: rgba(8, 145, 178, 0.35);
  background: linear-gradient(160deg, rgba(207, 250, 254, 0.95) 0%, rgba(255, 255, 255, 0.92) 100%);
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.1);
}

.fd-plan-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #0e7490, #06b6d4);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

.fd-plan strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #0f766e;
  letter-spacing: -0.01em;
}

.fd-plan-price {
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.12);
}

.fd-plan-price em {
  font-style: normal;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fd-plan-price span {
  margin-left: 4px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0891b2;
}

.fd-plan-tiers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.fd-plan-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(6, 182, 212, 0.14);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.fd-plan-tier--featured {
  border-color: rgba(6, 182, 212, 0.45);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(34, 211, 238, 0.08) 100%);
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.12);
}

.fd-plan-tier-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #134e4a;
  line-height: 1.3;
}

.fd-plan-tier-label small {
  display: block;
  margin-top: 2px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0891b2;
  text-transform: uppercase;
}

.fd-plan-tier-price em {
  font-style: normal;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
  color: #0e7490;
}

.fd-plan-tier--featured .fd-plan-tier-price em {
  font-size: 1.5rem;
  background: linear-gradient(135deg, #0e7490 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fd-plan-tier-price span {
  margin-left: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0891b2;
}

.fd-plan p {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.fd-plan-notice {
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.55;
  color: #b45309;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.fd-plan-earn {
  display: inline-block;
  margin-top: auto;
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0e7490;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.14);
}

.fd-agent-note {
  margin: 0 0 32px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background: rgba(6, 182, 212, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.12);
}

.fd-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.fd-detail-card {
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(6, 182, 212, 0.1);
}

.fd-detail-card h4 { margin: 0 0 12px; font-size: 0.9375rem; }
.fd-detail-card ul { margin: 0; padding-left: 1.1em; font-size: 0.8125rem; line-height: 1.75; color: var(--text-secondary); }

.fd-footer-actions { display: flex; justify-content: center; margin-bottom: 16px; }

.fd-footer {
  margin: 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.mini-invest-modal-body .fd-highlight:not(.fd-highlight--accent) {
  background: #ffffff !important;
}

.mini-invest-modal-body .fd-highlight--accent {
  background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%) !important;
}

.mini-invest-modal-body .fd-highlight--accent strong,
.mini-invest-modal-body .fd-highlight--accent p {
  color: #fff !important;
}

.mini-invest-modal-body .fd-visual-block {
  background: #ffffff !important;
}

.mini-invest-modal-body .fd-plan-tier,
.mini-invest-modal-body .fd-plan {
  background: #ffffff !important;
}

.mini-invest-modal-body .fd-plan--personal {
  background: linear-gradient(160deg, #ecfeff 0%, #ffffff 100%) !important;
}

.mini-invest-modal-body .fd-plan--permanent {
  background: linear-gradient(160deg, #ecfeff 0%, #f0fdfa 100%) !important;
}

@media (max-width: 1024px) {
  .fd-showcase,
  .fd-highlights,
  .fd-monetize,
  .fd-details {
    grid-template-columns: 1fr;
  }

  .fd-visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .fd-features { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .fd-stats,
  .fd-plans {
    grid-template-columns: 1fr;
  }

  .fd-actions { flex-direction: column; }
  .fd-btn { width: 100%; }
}


/* 软件零售 · 分类展示 */
.desktop-showcase[hidden] { display: none !important; }
.desktop-showcase .dr-category-tabs { margin-bottom: 40px; }
.desktop-showcase .cases-tab { color: #0e7490; background: rgba(6, 182, 212, 0.06); border-color: rgba(6, 182, 212, 0.2); }
.desktop-showcase .cases-tab:hover { color: #0891b2; background: rgba(6, 182, 212, 0.1); border-color: rgba(6, 182, 212, 0.35); }
.desktop-showcase .cases-tab.active { background: rgba(6, 182, 212, 0.14); border-color: rgba(6, 182, 212, 0.5); color: #0e7490; font-weight: 600; box-shadow: none; }
.desktop-showcase .dr-projects-grid { margin-bottom: 0; }
.desktop-showcase .dr-project-card .case-cover { height: 180px; }
.desktop-showcase .dr-project-card .case-cat-label { color: #cffafe; background: rgba(14, 116, 144, 0.88); }
.dr-empty { grid-column: 1 / -1; padding: 48px 24px; text-align: center; border-radius: var(--radius-lg); border: 1px dashed var(--border); color: var(--text-muted); font-size: 0.9375rem; }
