/* 常见疑问解答页专属样式 */
.search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.category-wrap {
  flex: 1;
  min-width: 280px;
}
.search-form {
  flex-shrink: 0;
}
.search-input-wrap {
  position: relative;
  width: 380px;
  max-width: 100%;
}
.search-input {
  width: 100%;
  height: 42px;
  padding: 0 80px 0 44px;
  border-radius: 21px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  background: #fff;
  transition: all 0.3s ease;
}
.search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(217, 33, 33, 0.1);
}
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  pointer-events: none;
}
.search-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  height: 34px;
  padding: 0 20px;
  border-radius: 17px;
  background: var(--primary-color);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-btn:hover {
  background: #b81c1c;
}
.article-list .article-card {
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}
.article-list .article-card:hover {
  border-left-color: var(--primary-color);
}
.faq-cta {
  margin-top: 48px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #fff8f8 0%, #fff 100%);
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid #ffe5e5;
}
.faq-cta h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.faq-cta p {
  font-size: 15px;
  color: #666;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
/* 移动端适配 */
@media (max-width: 768px) {
  .search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .search-input-wrap {
    width: 100%;
  }
  .faq-cta {
    margin-top: 32px;
    padding: 28px 16px;
  }
  .faq-cta h3 {
    font-size: 18px;
  }
}