.faq-detail-section {
  padding: 40px 0;
  background: #f7f8fa;
}

.faq-detail-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-main {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.faq-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff7d00, #ff9500);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.faq-question {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin: 0;
}

.faq-content {
  margin-bottom: 28px;
}

.faq-answer-box {
  background: #f8f9fc;
  border-radius: 10px;
  padding: 24px;
  border-left: 2px solid #ff7d00;
}

.answer-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #ff7d00;
  margin-bottom: 16px;
}

.answer-label i {
  font-size: 18px;
}

.answer-text {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

.faq-actions {
  display: flex;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}

.action-btn:hover {
  background: #f7f8fa;
  border-color: #ff7d00;
  color: #ff7d00;
}

.like-btn i {
  color: #ff7d00;
}

.like-btn.clicked {
  background: #f0fdf4;
  border-color:#ff7d00;
  color: #ff7d00;
}

.like-btn.clicked i {
  color: #ff7d00;
}

.share-btn i {
  color: #ff7d00;
}

/* 侧边栏 */
.sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  height: fit-content;
}

.sidebar-section {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.sidebar-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-title i {
  color: #ff7d00;
}

/* 热门问题 */
.hot-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hot-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hot-list li:last-child {
  border-bottom: none;
}

.hot-list a {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.hot-list a:hover {
  color: #ff7d00;
}

/* 分类列表 */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.category-list li:last-child {
  border-bottom: none;
}

.category-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: #ff7d00;
}

.category-list i {
  width: 20px;
  height: 20px;
  background: #fff8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #ff7d00;
}

/* 联系客服 */
.contact-box {
  background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
}

.contact-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

.contact-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #ff7d00, #ff9500);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
}

.contact-btn:hover {
  opacity: 0.9;
}

.contact-info {
  padding-top: 16px;
  border-top: 1px solid #ffe4cc;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
  margin: 8px 0;
}

.contact-info i {
  color: #ff7d00;
}

/* 快速链接 */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  padding: 8px 0;
}

.quick-links a {
  font-size: 14px;
  color: #666;
  transition: color 0.3s ease;
}

.quick-links a:hover {
  color: #ff7d00;
}
/* 响应式 */
@media (max-width: 768px) {
  .faq-detail-container {
    grid-template-columns: 1fr;
  }

  .faq-main {
    padding: 24px;
  }

  .faq-question {
    font-size: 22px;
  }

  .faq-answer-box {
    padding: 18px;
  }

  .answer-text {
    font-size: 15px;
  }
}