/* 情报列表卡片（机会情报 / 股市机会情报共用结构） */
body.intel-list-page {
  --intel-accent: #e8c820;
  --intel-accent-soft: rgba(232, 200, 32, 0.08);
  --intel-accent-border: rgba(232, 200, 32, 0.22);
  --intel-accent-chip: rgba(232, 200, 32, 0.06);
  --intel-summary-border: rgba(244, 197, 66, 0.35);
  --intel-page-glow: rgba(232, 200, 32, 0.07);
}
body.intel-list-page--stock,
.intel-list-page--stock {
  --intel-accent: #7ec8e8;
  --intel-accent-soft: rgba(126, 200, 232, 0.08);
  --intel-accent-border: rgba(126, 200, 232, 0.25);
  --intel-accent-chip: rgba(126, 200, 232, 0.06);
  --intel-summary-border: rgba(126, 200, 232, 0.35);
  --intel-page-glow: rgba(126, 200, 232, 0.08);
}

.intel-list-page .filter-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 10px;
  flex-wrap: wrap;
}
.intel-list-page .filter-chip {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer;
  transition: 0.2s;
  font-family: var(--font-body);
}
.intel-list-page .filter-chip:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.intel-list-page .filter-chip.active {
  background: var(--intel-accent-soft);
  border-color: var(--intel-accent-border);
  color: var(--intel-accent);
}

.intel-list-page .free-notice {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  margin-bottom: 12px;
  background: var(--intel-accent-chip);
  border: 1px solid var(--intel-accent-border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.intel-list-page .free-notice-link {
  color: var(--intel-accent);
  font-weight: 600;
  text-decoration: none;
}
.intel-list-page .free-notice-link:hover {
  text-decoration: underline;
}

.intel-list-page .date-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.intel-list-page .date-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.intel-list-page .opp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid var(--border-card, var(--border-subtle));
  border-radius: 10px;
  margin-bottom: 8px;
  background: var(--bg-card);
}
.intel-list-page .opp-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.12);
}
.intel-list-page .opp-item.locked {
  opacity: 0.72;
}
.intel-list-page .opp-item.locked:hover {
  opacity: 0.85;
}
.intel-list-page .opp-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  min-width: 26px;
  padding-top: 2px;
}
.intel-list-page .opp-body {
  flex: 1;
  min-width: 0;
}
.intel-list-page .opp-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.intel-list-page .opp-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.intel-list-page .opp-tag {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.intel-list-page .opp-tag--stage {
  color: var(--intel-accent);
  background: var(--intel-accent-soft);
  border: 1px solid var(--intel-accent-border);
}
.intel-list-page .opp-tag--track {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.intel-list-page .opp-tag--rec {
  color: var(--intel-accent);
  background: var(--intel-accent-chip);
  border: 1px solid var(--intel-accent-border);
}
.intel-list-page .opp-demand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  min-width: 0;
}
.intel-list-page .opp-demand-k {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.intel-list-page .opp-demand-body {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.intel-list-page .opp-demand-meter {
  flex: 1;
  min-width: 72px;
  max-width: 160px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.intel-list-page .opp-demand-seg {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.intel-list-page .opp-demand-seg.is-on {
  background: rgba(120, 168, 196, 0.42);
}
.intel-list-page .opp-demand-seg.is-cur {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.intel-list-page .opp-demand--medium .opp-demand-seg.is-on {
  background: rgba(96, 176, 196, 0.52);
}
.intel-list-page .opp-demand--strong .opp-demand-seg.is-on {
  background: rgba(232, 200, 32, 0.58);
}
.intel-list-page .opp-demand--must_have .opp-demand-seg.is-on {
  background: rgba(255, 120, 72, 0.72);
}
.intel-list-page .opp-demand-val {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(120, 168, 196, 0.95);
  white-space: nowrap;
}
.intel-list-page .opp-demand--medium .opp-demand-val {
  color: rgba(112, 198, 220, 0.95);
}
.intel-list-page .opp-demand--strong .opp-demand-val {
  color: rgba(232, 200, 32, 0.92);
}
.intel-list-page .opp-demand--must_have .opp-demand-val {
  color: rgba(255, 138, 88, 0.96);
}
.intel-list-page .opp-summary {
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 2px solid var(--intel-summary-border);
}
.intel-list-page .opp-summary-k {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.intel-list-page .opp-summary-v {
  max-width: 80%;
  font-size: 13px;
  font-weight: 400;
  color: #999;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.intel-list-page .opp-sum-pause {
  letter-spacing: 0.04em;
}
.intel-list-page .opp-sum-hl {
  font-weight: 500;
}
.intel-list-page .opp-sum-hl--risk {
  color: #e8684a;
}
.intel-list-page .opp-sum-hl--turn {
  color: #d4a017;
}
.intel-list-page .opp-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
  color: var(--text-muted);
}
.intel-list-page .opp-arrow {
  color: var(--text-muted);
  font-size: 18px;
  padding-top: 2px;
  flex-shrink: 0;
  transition: 0.2s;
}
.intel-list-page .opp-item:not(.locked):hover .opp-arrow {
  color: var(--intel-accent);
}

.intel-list-page .pagination-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 48px;
}
.intel-list-page .btn-load-more {
  padding: 10px 28px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
  font-family: var(--font-body);
}
.intel-list-page .btn-load-more:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.intel-list-page .page-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
}
.intel-list-page .page-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: 0.2s;
  font-family: var(--font-body);
}
.intel-list-page .page-btn:hover {
  border-color: var(--intel-accent);
  color: var(--intel-accent);
}
.intel-list-page .page-btn.active {
  background: var(--intel-accent);
  color: #050508;
  border-color: var(--intel-accent);
  font-weight: 700;
}

/* 股市机会情报 · 与产业机会研报同卡片结构（标签 + 强度条 + 摘要） */
.intel-list-page--stock .opp-tag--anomaly,
.intel-list-page--stock .opp-tag--protagonist {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.intel-list-page--stock .opp-tag--conduction,
.intel-list-page--stock .opp-tag--sector,
.intel-list-page--stock .opp-tag--concept {
  color: var(--intel-accent);
  background: var(--intel-accent-soft);
  border: 1px solid var(--intel-accent-border);
}
.intel-list-page--stock .opp-tag--capital,
.intel-list-page--stock .opp-tag--lifecycle {
  color: rgba(158, 212, 240, 0.95);
  background: var(--intel-accent-chip);
  border: 1px solid rgba(126, 200, 232, 0.18);
}
.intel-list-page--stock .opp-mapping-meter {
  grid-template-columns: repeat(5, 1fr);
  max-width: 200px;
}
.intel-list-page--stock .opp-mapping .opp-demand-seg.is-on {
  background: rgba(126, 200, 232, 0.45);
}
.intel-list-page--stock .opp-mapping--4 .opp-demand-seg.is-on,
.intel-list-page--stock .opp-mapping--5 .opp-demand-seg.is-on {
  background: rgba(126, 200, 232, 0.72);
}
.intel-list-page--stock .opp-mapping .opp-demand-val {
  color: rgba(158, 212, 240, 0.95);
}
.intel-list-page--stock .opp-core-logic {
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 2px solid rgba(126, 200, 232, 0.28);
}
.intel-list-page--stock .opp-core-logic-k {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.intel-list-page--stock .opp-core-logic-v {
  font-size: 12px;
  font-weight: 500;
  color: rgba(158, 212, 240, 0.88);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.intel-list-page--stock .opp-stock-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-bottom: 12px;
  min-width: 0;
}
.intel-list-page--stock .opp-stock-row-k {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.intel-list-page--stock .opp-stock-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}
.intel-list-page--stock .opp-stock-chip {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(126, 200, 232, 0.22);
  background: rgba(126, 200, 232, 0.06);
  color: rgba(158, 212, 240, 0.95);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.intel-list-page--stock .opp-stock-chip--more {
  color: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
