/* page10 证书区别对比 - 页面专属样式 */
/* Banner */
.page10-banner {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page10-banner::before {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.72) 0%, rgba(30, 64, 175, 0.48) 100%);
}

/* Page Main */
.page-main {
  padding: 48px 0 60px;
}

/* Page Intro */
.page-intro {
  background: var(--secondary-color);
  border-left: 4px solid var(--primary-color);
  padding: 20px 28px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin-bottom: 40px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}

/* Content Section */
.content-section {
  margin-bottom: 56px;
}
.section-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 24px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Compare Table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 800px;
}
.compare-table th,
.compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  line-height: 1.6;
}
.compare-table th {
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.compare-table th.highlight,
.compare-table td.highlight {
  background: rgba(30, 64, 175, 0.06);
  color: var(--primary-color);
  font-weight: 500;
}
.compare-table tbody tr:hover {
  background: rgba(245, 247, 250, 0.7);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* Advantage Grid */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.advantage-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-top-color: var(--primary-color);
}
.advantage-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.advantage-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 12px;
}
.advantage-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Article List Section */
.article-list-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.article-list-wrap .article-card {
  flex-direction: column;
  margin-bottom: 0;
}
.article-list-wrap .article-card .card-thumb {
  width: 100%;
  height: 220px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(180, 148, 62, 0.08) 100%);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
}
.cta-section p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .page10-banner {
    background-attachment: scroll;
  }
  .page-main {
    padding: 32px 0 40px;
  }
  .page-intro {
    padding: 16px 20px;
    font-size: 14px;
    margin-bottom: 28px;
  }
  .content-section {
    margin-bottom: 40px;
  }
  .section-desc {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
  }
  .compare-table th,
  .compare-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .advantage-card {
    padding: 24px 20px;
    text-align: left;
  }
  .advantage-icon {
    font-size: 32px;
    margin-bottom: 12px;
  }
  .article-list-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .article-list-wrap .article-card .card-thumb {
    height: 200px;
  }
  .cta-section {
    padding: 28px 20px;
  }
  .cta-section p {
    font-size: 15px;
  }
}