/* ==========================================================
   鱼饵之家 — 汽车之家风格 · 光明主题 · 信息密集 · 专业实用
   ========================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #333;
  background: #f5f5f5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: #0066cc; text-decoration: none; }
a:hover { color: #c00; text-decoration: underline; }
ul, ol { list-style: none; }
img { max-width: 100%; vertical-align: middle; }
button, input, select { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }
input, select {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 6px 10px;
  outline: none;
  background: #fff;
  transition: border-color .2s;
}
input:focus, select:focus { border-color: #0066cc; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ---- Topbar 顶部通栏 ---- */
.topbar {
  background: #2c3e50;
  color: #bfc9d1;
  font-size: 12px;
  line-height: 32px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-text { color: #eee; }
.topbar-links a {
  color: #bfc9d1;
  margin-left: 16px;
  font-size: 12px;
}
.topbar-links a:hover { color: #fff; text-decoration: none; }

/* ---- Header 主导航 ---- */
.header {
  background: #fff;
  border-bottom: 3px solid #c00;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 56px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: baseline;
  font-weight: 700;
  color: #c00;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 24px;
  color: #c00;
}
.logo-name {
  font-size: 22px;
  color: #333;
  margin-left: 2px;
}
.logo:hover { text-decoration: none; }

/* 搜索栏 */
.header-search {
  display: flex;
  flex: 1;
  max-width: 420px;
}
.header-search input {
  flex: 1;
  height: 34px;
  border-radius: 4px 0 0 4px;
  border-right: none;
  font-size: 13px;
}
.search-btn {
  height: 34px;
  padding: 0 20px;
  background: #c00;
  color: #fff;
  border: 1px solid #c00;
  border-radius: 0 4px 4px 0;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.search-btn:hover { background: #a00; }

/* 导航 */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-link {
  padding: 6px 12px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-link:hover { background: #f5f5f5; color: #c00; text-decoration: none; }
.nav-link.active { color: #c00; font-weight: 700; }

/* 二级分类导航 */
.subnav {
  background: #fafafa;
  border-top: 1px solid #eee;
  line-height: 36px;
  font-size: 13px;
  overflow-x: auto;
  white-space: nowrap;
}
.subnav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
}
.subnav-link {
  padding: 0 10px;
  color: #555;
  border-radius: 3px;
}
.subnav-link:hover { color: #c00; background: #fff3f3; text-decoration: none; }
.subnav-sep { color: #d9d9d9; margin: 0 4px; user-select: none; }

/* mobile menu */
.mobile-menu-btn {
  display: none;
  font-size: 22px;
  color: #333;
  padding: 4px 8px;
}

/* ---- Section Base ---- */
.section { padding: 20px 0 40px; }
.breadcrumb {
  font-size: 12px;
  color: #999;
  margin-bottom: 16px;
}

/* ---- Panel 通用面板（类 autohome 卡片） ---- */
.panel {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #eee;
  margin-bottom: 16px;
  overflow: hidden;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
}
.panel-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  border-left: 3px solid #c00;
  padding-left: 10px;
  line-height: 1.2;
}
.panel-more {
  font-size: 13px;
  color: #999;
}
.panel-more:hover { color: #c00; text-decoration: none; }

/* ---- Home 首页 ---- */
.home-finder {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #eee;
  padding: 16px;
  margin-bottom: 16px;
}
.finder-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  border-left: 3px solid #c00;
  padding-left: 10px;
}
.finder-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.finder-group label {
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
  display: block;
}
.finder-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ftag {
  padding: 4px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  font-size: 13px;
  color: #555;
  background: #fafafa;
  transition: all .15s;
}
.ftag:hover {
  border-color: #c00;
  color: #c00;
  background: #fff5f5;
}

/* 首页三栏 */
.home-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 16px;
  align-items: start;
}
.home-main { min-width: 0; }
.home-side { display: flex; flex-direction: column; gap: 16px; }

/* 卡片网格 */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  padding: 16px;
}

/* 单个假饵卡片 */
.lure-card {
  border: 1px solid #eee;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
  cursor: pointer;
  position: relative;
}
.lure-card:hover {
  border-color: #c00;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.lure-card-img {
  width: 100%;
  height: 140px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 12px;
  overflow: hidden;
}
.lure-card-img img { width: 100%; height: 100%; object-fit: cover; }
.lure-card-body { padding: 10px 12px; }
.lure-card-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  height: 36px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.lure-card-brand {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}
.lure-card-tags {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.lure-tag {
  font-size: 11px;
  padding: 1px 6px;
  border-radius: 2px;
  background: #f0f7ff;
  color: #0066cc;
}
.lure-tag.fish { background: #fff0f0; color: #c00; }
.lure-tag.scenario { background: #f0fff0; color: #080; }
.lure-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #f5f5f5;
}
.lure-card-price {
  font-size: 18px;
  font-weight: 700;
  color: #c00;
}
.lure-card-price .unit { font-size: 12px; font-weight: 400; }
.lure-card-score {
  font-size: 12px;
  color: #999;
}
.lure-card-score b {
  color: #f90;
  font-size: 15px;
}
.lure-card-compare {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: transparent;
  transition: all .15s;
  z-index: 2;
}
.lure-card-compare:hover { border-color: #c00; }
.lure-card-compare.checked {
  background: #c00;
  border-color: #c00;
  color: #fff;
}

/* 指南卡片 */
.guide-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
}
.guide-card {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
}
.guide-card:hover { border-color: #c00; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.guide-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.guide-card p {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}
.guide-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 11px;
  padding: 1px 8px;
  border-radius: 2px;
  color: #fff;
  background: #f90;
  font-weight: 600;
}

/* 品牌缩略 */
.brand-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
}
.brand-chip {
  padding: 4px 14px;
  border: 1px solid #eee;
  border-radius: 3px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: all .15s;
  background: #fafafa;
}
.brand-chip:hover { border-color: #c00; color: #c00; background: #fff3f3; }
.brand-chip .country { font-size: 11px; color: #999; margin-left: 4px; }

/* 侧栏排行 */
.side-panel { background: #fff; }
.rank-tabs {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
  padding: 0 16px;
}
.rank-tab {
  padding: 8px 12px;
  font-size: 13px;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: all .15s;
}
.rank-tab:hover { color: #c00; }
.rank-tab.active {
  color: #c00;
  border-bottom-color: #c00;
  font-weight: 600;
}
.rank-list {
  padding: 8px 16px 12px;
  counter-reset: rank;
}
.rank-item {
  display: flex;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed #f0f0f0;
  cursor: pointer;
  counter-increment: rank;
  font-size: 13px;
}
.rank-item:hover .rank-name { color: #c00; }
.rank-item::before {
  content: counter(rank);
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
  background: #f5f5f5;
  color: #999;
}
.rank-item:nth-child(1)::before { background: #c00; color: #fff; }
.rank-item:nth-child(2)::before { background: #f60; color: #fff; }
.rank-item:nth-child(3)::before { background: #f90; color: #fff; }
.rank-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}
.rank-score {
  font-size: 12px;
  color: #f90;
  font-weight: 600;
  margin-left: 8px;
}

/* 口碑列表 */
.review-list { padding: 12px 16px; }
.review-item {
  padding: 8px 0;
  border-bottom: 1px dashed #f0f0f0;
}
.review-item:last-child { border-bottom: none; }
.review-lure {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.review-text {
  font-size: 12px;
  color: #777;
  margin-top: 2px;
  line-height: 1.4;
}
.review-stars {
  color: #f90;
  font-size: 12px;
  margin-left: 8px;
}

/* 统计面板 */
.stats-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 16px;
  border: 1px solid #eee;
}
.stat-item {
  text-align: center;
  padding: 10px 0;
}
.stat-num {
  font-size: 28px;
  font-weight: 700;
  color: #c00;
  line-height: 1.2;
}
.stat-label {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

/* ---- Database 选假饵 ---- */
.db-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: start;
}
.filter-sidebar {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 16px;
  position: sticky;
  top: 100px;
}
.sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.filter-group {
  margin-bottom: 12px;
}
.filter-group label {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
}
.filter-group select {
  width: 100%;
  height: 30px;
  font-size: 13px;
}
.btn-reset {
  width: 100%;
  padding: 6px 0;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}
.btn-reset:hover { border-color: #c00; color: #c00; }

/* 数据库工具栏 */
.db-content { min-width: 0; }
.db-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 10px 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.db-search { flex: 1; min-width: 200px; }
.db-search input {
  width: 100%;
  height: 30px;
  font-size: 13px;
}
.db-sort { display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.db-sort label { font-size: 12px; color: #999; }
.db-sort select { height: 30px; font-size: 13px; }
.db-view { display: flex; gap: 4px; }
.view-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-btn:hover { border-color: #c00; color: #c00; }
.view-btn.active { background: #c00; color: #fff; border-color: #c00; }
.result-count { font-size: 12px; color: #999; white-space: nowrap; }

/* 数据表格 */
.table-wrap { overflow-x: auto; margin-bottom: 16px; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #eee;
  font-size: 13px;
}
.data-table thead {
  background: #fafafa;
}
.data-table th {
  padding: 8px 10px;
  font-size: 12px;
  color: #999;
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}
.data-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #f5f5f5;
  color: #333;
  white-space: nowrap;
}
.data-table tbody tr:hover {
  background: #fafafa;
}
.data-table .td-name {
  color: #0066cc;
  cursor: pointer;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.data-table .td-name:hover { color: #c00; text-decoration: underline; }
.data-table .td-price { color: #c00; font-weight: 600; }
.data-table .td-score { color: #f90; font-weight: 600; }
.data-table .td-compare input { cursor: pointer; }
.td-btn {
  padding: 2px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 12px;
  color: #666;
  background: #fff;
}
.td-btn:hover { border-color: #c00; color: #c00; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
}

/* ---- Modal 详情弹窗 ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 500;
  overflow-y: auto;
  padding: 40px 16px;
}
.modal-overlay.show { display: flex; justify-content: center; align-items: flex-start; }
.modal {
  background: #fff;
  border-radius: 6px;
  width: 100%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  color: #999;
  z-index: 10;
}
.modal-close:hover { color: #c00; }

/* 详情页 */
.detail-header {
  padding: 20px 24px;
  border-bottom: 1px solid #f0f0f0;
}
.detail-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}
.detail-subtitle {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}
.detail-body { padding: 20px 24px; }
.detail-img-wrap { text-align: center; margin-bottom: 16px; }
.detail-img-wrap img { max-height: 220px; max-width: 100%; border-radius: 8px; object-fit: contain; background: #f5f5f5; }
.detail-img-wrap svg { max-height: 180px; max-width: 60%; }
.detail-score-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.detail-big-score {
  text-align: center;
}
.detail-big-num {
  font-size: 42px;
  font-weight: 700;
  color: #f90;
  line-height: 1;
}
.detail-big-label {
  font-size: 12px;
  color: #999;
}
.detail-price-box {
  padding: 10px 16px;
  background: #fff5f5;
  border-radius: 4px;
  border: 1px solid #ffe0e0;
}
.detail-price {
  font-size: 28px;
  font-weight: 700;
  color: #c00;
}
.detail-price .unit { font-size: 14px; font-weight: 400; }
.detail-price-range { font-size: 12px; color: #999; }

/* 详情参数表 */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.spec-table th {
  background: #fafafa;
  padding: 8px 12px;
  font-size: 13px;
  color: #999;
  font-weight: 500;
  text-align: left;
  border: 1px solid #f0f0f0;
  width: 100px;
}
.spec-table td {
  padding: 8px 12px;
  font-size: 13px;
  color: #333;
  border: 1px solid #f0f0f0;
}

/* 优缺点 */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.pros-box, .cons-box { padding: 12px 16px; border-radius: 4px; font-size: 13px; }
.pros-box { background: #f0fff0; border: 1px solid #d4f5d4; }
.cons-box { background: #fff5f0; border: 1px solid #ffe0d0; }
.pros-box h4 { color: #080; margin-bottom: 6px; font-size: 13px; }
.cons-box h4 { color: #c60; margin-bottom: 6px; font-size: 13px; }
.pros-box li, .cons-box li { color: #555; padding: 2px 0; padding-left: 14px; position: relative; }
.pros-box li::before { content: "+"; position: absolute; left: 0; color: #080; font-weight: 700; }
.cons-box li::before { content: "-"; position: absolute; left: 0; color: #c60; font-weight: 700; }

.detail-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #f9f9f9;
  border-radius: 4px;
}
.detail-tips {
  font-size: 13px;
  color: #555;
  padding: 12px 16px;
  background: #fffbe6;
  border: 1px solid #ffe58f;
  border-radius: 4px;
  margin-bottom: 20px;
}
.detail-tips strong { color: #d48806; }
.detail-actions {
  display: flex;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid #f0f0f0;
}

/* 购买链接 */
.detail-buy { margin-bottom: 16px; }
.buy-links { display: flex; gap: 8px; flex-wrap: wrap; }
.buy-link {
  display: inline-block;
  padding: 8px 20px;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s;
}
.buy-link:hover { opacity: .85; color: #fff; text-decoration: none; }

/* ---- Compare 对比 ---- */
.compare-info { font-size: 13px; color: #999; }
.compare-info a { color: #c00; }
.compare-hint { text-align: center; padding: 40px; color: #999; font-size: 14px; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.compare-table th {
  background: #fafafa;
  padding: 8px 12px;
  text-align: left;
  font-size: 12px;
  color: #999;
  font-weight: 500;
  border: 1px solid #f0f0f0;
  width: 90px;
}
.compare-table td {
  padding: 8px 12px;
  border: 1px solid #f0f0f0;
  color: #333;
  vertical-align: top;
}
.compare-table td.best { background: #fff5f0; color: #c00; font-weight: 600; }
.compare-remove {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  color: #999;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-top: 4px;
}
.compare-remove:hover { color: #c00; border-color: #c00; }

/* ---- Ranking 排行榜页 ---- */
.rank-page-tabs {
  display: flex;
  padding: 0 16px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
  overflow-x: auto;
}
.rp-tab {
  padding: 12px 20px;
  font-size: 14px;
  color: #666;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.rp-tab:hover { color: #c00; }
.rp-tab.active { color: #c00; border-bottom-color: #c00; font-weight: 600; }

.rank-page-list { padding: 16px; }
.rank-page-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  transition: background .15s;
}
.rank-page-item:hover { background: #fafafa; }
.rank-num {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: #f5f5f5;
  color: #999;
  flex-shrink: 0;
}
.rank-page-item:nth-child(1) .rank-num { background: #c00; color: #fff; }
.rank-page-item:nth-child(2) .rank-num { background: #f60; color: #fff; }
.rank-page-item:nth-child(3) .rank-num { background: #f90; color: #fff; }
.rank-page-info { flex: 1; min-width: 0; }
.rank-page-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.rank-page-meta {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
.rank-page-score {
  font-size: 20px;
  font-weight: 700;
  color: #f90;
  white-space: nowrap;
}
.rank-page-price {
  font-size: 16px;
  font-weight: 600;
  color: #c00;
  white-space: nowrap;
}

/* ---- Fish / Techniques 百科 & 钓法 ---- */
.fish-tabs, .tech-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.fish-tab, .tech-tab {
  padding: 8px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #555;
  background: #fff;
}
.fish-tab:hover, .tech-tab:hover { border-color: #c00; color: #c00; }
.fish-tab.active, .tech-tab.active {
  background: #c00;
  color: #fff;
  border-color: #c00;
}

.fish-article, .tech-article {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 24px;
  line-height: 1.8;
}
.fish-article h2, .tech-article h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}
.fish-article h3, .tech-article h3 {
  font-size: 16px;
  color: #333;
  margin: 20px 0 10px;
  border-left: 3px solid #c00;
  padding-left: 10px;
}
.fish-article p, .tech-article p { margin-bottom: 10px; color: #555; font-size: 14px; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 16px 0;
}
.info-item {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 12px;
}
.info-item-label { font-size: 12px; color: #999; }
.info-item-value { font-size: 14px; color: #333; font-weight: 600; margin-top: 2px; }
.steps-list { padding-left: 0; counter-reset: step; }
.steps-list li {
  counter-increment: step;
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 14px;
  color: #555;
  border-bottom: 1px dashed #f0f0f0;
}
.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #c00;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Recommend 选饵工具 ---- */
.rec-subtitle {
  font-size: 13px;
  color: #999;
}
.rec-layout { padding: 20px 16px; }
.wiz-step { display: none; }
.wiz-step.active { display: block; }
.wiz-step h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 14px;
}
.wiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.wiz-btn {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-align: left;
  background: #fff;
  transition: all .15s;
}
.wiz-btn b {
  font-size: 15px;
  color: #333;
}
.wiz-btn span {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
.wiz-btn:hover {
  border-color: #c00;
  background: #fff5f5;
}
.wiz-btn:hover b { color: #c00; }

.rec-result { padding: 0 16px 16px; }
.ai-result-summary {
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 16px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}
.ai-lure-card {
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: #fff;
  transition: border-color .2s;
}
.ai-lure-card:hover { border-color: #c00; }
.ai-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ai-card-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.ai-card-price {
  font-size: 18px;
  font-weight: 700;
  color: #c00;
}
.ai-card-brand {
  font-size: 12px;
  color: #999;
  margin: 4px 0 6px;
}
.ai-card-reason {
  font-size: 13px;
  color: #555;
  background: #f9f9f9;
  padding: 6px 10px;
  border-radius: 3px;
  margin-bottom: 6px;
}
.ai-card-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #999;
}
.ai-card-spec { background: #f5f5f5; padding: 2px 8px; border-radius: 2px; }
.ai-extra-advice {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  border-radius: 4px;
  padding: 16px;
  margin-top: 16px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}
.ai-extra-advice h4 {
  color: #d48806;
  margin-bottom: 8px;
  font-size: 14px;
}
.ai-extra-advice ul { padding-left: 20px; }
.ai-extra-advice li { margin-bottom: 4px; }
.ai-restart {
  text-align: center;
  margin-top: 20px;
}

/* 预设 & 自由输入 */
.rec-presets {
  padding: 12px 16px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.preset-label { font-size: 12px; color: #999; white-space: nowrap; }
.preset-btn {
  padding: 4px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  font-size: 13px;
  color: #555;
  background: #fafafa;
}
.preset-btn:hover { border-color: #c00; color: #c00; }
.rec-free {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
}
.rec-free input { flex: 1; height: 36px; font-size: 13px; }

/* 通用按钮 */
.btn-primary {
  padding: 8px 24px;
  background: #c00;
  color: #fff;
  border: 1px solid #c00;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.btn-primary:hover { background: #a00; }
.btn { display: inline-block; padding: 4px 14px; background: #c00; color: #fff; border-radius: 3px; font-size: 12px; border: 1px solid #c00; }
.btn:hover { background: #a00; text-decoration: none; color: #fff; }
.btn-sm { padding: 3px 10px; font-size: 12px; }
.btn-outline {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #555;
  font-size: 13px;
  background: #fff;
}
.btn-outline:hover { border-color: #c00; color: #c00; text-decoration: none; }
.btn-compare {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-size: 12px;
  color: #666;
  background: #fff;
  margin-left: 6px;
}
.btn-compare:hover { border-color: #c00; color: #c00; }

/* ---- Footer ---- */
.footer {
  background: #2c3e50;
  color: #a0aec0;
  padding: 40px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
}
.footer-col p {
  font-size: 12px;
  line-height: 1.7;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: #a0aec0;
  padding: 3px 0;
}
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  text-align: center;
  padding: 16px 0;
  font-size: 12px;
  color: #6b7a8d;
}

/* ---- Back to top ---- */
.back-top {
  position: fixed;
  bottom: 40px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  font-size: 18px;
  color: #666;
  display: none;
  z-index: 200;
}
.back-top:hover { border-color: #c00; color: #c00; }
.back-top.show { display: flex; align-items: center; justify-content: center; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .home-grid { grid-template-columns: 1fr; }
  .db-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .guide-cards { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; height: auto; padding: 8px 16px; gap: 8px; }
  .header-search { order: 3; max-width: 100%; width: 100%; }
  .nav { display: none; flex-direction: column; width: 100%; gap: 0; order: 4; background: #fff; border-top: 1px solid #eee; }
  .nav.open { display: flex; }
  .nav-link { padding: 10px 0; border-bottom: 1px solid #f5f5f5; display: block; }
  .mobile-menu-btn { display: block; margin-left: auto; }
  .subnav { display: none; }
  .finder-row { flex-direction: column; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 16px; }
  .detail-score-row { flex-direction: column; align-items: flex-start; }
  .rank-page-item { flex-direction: column; align-items: flex-start; gap: 6px; }
}
@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .wiz-options { grid-template-columns: 1fr; }
}
