/* 费用相关问题页专属样式 */
.page-banner {
  position: relative;
  height: 400px;
}
.page-banner .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.page-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(30, 64, 175, 0.85), rgba(30, 64, 175, 0.75));
  z-index: 2;
}
.page-banner .banner-content {
  position: relative;
  z-index: 3;
}
.breadcrumb {
  padding: 24px 0;
  font-size: 14px;
  color: var(--text-light);
}
.breadcrumb a {
  color: var(--accent-color);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--primary-color);
}
.breadcrumb span {
  margin: 0 8px;
  color: var(--text-lighter);
}
.discount-tip {
  background: #eff6ff;
  border-left: 4px solid var(--accent-color);
  padding: 16px 20px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--primary-color);
  line-height: 1.7;
}
.list-toolbar {
  margin-bottom: 8px;
}
.fee-consult-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: var(--border-radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.fee-consult-cta .cta-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
.fee-consult-cta .cta-content p {
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}
.fee-consult-cta .cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.fee-consult-cta .cta-btn {
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}
.fee-consult-cta .cta-btn.primary {
  background: #fff;
  color: var(--primary-color);
}
.fee-consult-cta .cta-btn.primary:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
.fee-consult-cta .cta-btn.outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.fee-consult-cta .cta-btn.outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* 响应式适配 */
@media (max-width: 768px) {
  .page-banner {
    height: 280px;
  }
  .page-banner .banner-title {
    font-size: 26px;
  }
  .page-banner .banner-desc {
    font-size: 14px;
  }
  .breadcrumb {
    padding: 16px 0;
    font-size: 13px;
  }
  .discount-tip {
    padding: 12px 16px;
    font-size: 13px;
    margin-bottom: 24px;
  }
  .fee-consult-cta {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    margin-top: 32px;
  }
  .fee-consult-cta .cta-content h3 {
    font-size: 20px;
  }
  .fee-consult-cta .cta-buttons {
    width: 100%;
    flex-direction: column;
  }
  .fee-consult-cta .cta-btn {
    width: 100%;
    justify-content: center;
  }
}