/* 小程序专题批次页：共用样式（蓝色主色，与整站一致） */

.topic-page-batch .topic-hero-accent {
  background: linear-gradient(135deg, #a8c4ff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tp-sec { padding: 100px 0; }
.tp-sec-cream { background: var(--cream); }

.tp-cards-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.tp-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.tp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 22px;
  box-shadow: var(--sh);
  transition: var(--tr);
}

.tp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-m);
  border-color: rgba(24, 77, 196, .2);
}

.tp-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-bg);
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 12px;
}

.tp-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
  line-height: 1.45;
}

.tp-card-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  margin: 0;
}

.tp-card-unit {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--blue-bg);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.tp-flow { margin-top: 12px; }

.tp-flow-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.tp-flow-item:last-child { border-bottom: none; }

.tp-flow-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(24, 77, 196, .25);
}

.tp-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
}

.tp-compare-table th,
.tp-compare-table td {
  padding: 16px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.65;
  text-align: left;
}

.tp-compare-table thead th {
  background: var(--blue-bg);
  font-weight: 700;
  color: var(--dark);
}

.tp-compare-table tr:last-child td { border-bottom: none; }

.tp-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-s);
  padding: 20px 22px;
  margin-bottom: 12px;
  box-shadow: var(--sh);
}

.tp-faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}

.tp-faq-a {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.8;
  margin: 0;
}

.tp-review-card {
  background: #fff;
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--sh);
  height: 100%;
}

.tp-review-meta {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.tp-vs-grid .tp-card { text-align: center; }
.tp-vs-grid .tp-card-title { color: var(--blue); }

.tp-team-card .tp-card-desc { margin-top: 6px; }
.tp-team-role {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 6px;
}

.tp-price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
}

.tp-price-table th,
.tp-price-table td {
  padding: 16px 18px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.tp-price-table thead th {
  background: var(--blue-bg);
  font-weight: 700;
}

.tp-price-table td:last-child {
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

@media (max-width: 992px) {
  .tp-cards-2, .tp-cards-3 { grid-template-columns: 1fr; }
}
