.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-accordion dd {
  margin: 0;
}

.faq-acc-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.faq-acc-item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.faq-acc-q {
  width: 100%;
  padding: 20px 24px;
  background: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: background-color 0.2s ease;
}

.faq-acc-q:hover {
  background: #fafafa;
}

.faq-acc-qtext {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  flex: 1;
}

.faq-accordion  .faq-acc-icon {
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s ease;
  color: #212121;
  font-size: 28px !important;
}

.faq-accordion  .faq-acc-icon--open {
  transform: rotate(180deg);
}

.faq-acc-q[aria-expanded="true"] {
  background: #fafafa;
}

.faq-acc-a {
  padding: 0 24px;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-acc-a--open {
  max-height: 500px;
  padding-bottom: 16px;
}

.faq-acc-atext {
  display: block;
  padding: 16px 0;
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.faq-acc-atext strong {
  font-weight: 700;
  color: #333;
}

/* 移动端优化 */
@media (max-width: 768px) {
  .faq-acc-q {
    padding: 16px 0px !important;
  }

  .faq-acc-qtext {
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .faq-acc-a {
    padding: 0 20px 0 20px;
  }

  .faq-acc-atext {
    padding: 14px;
    font-size: 14px;
  }

 
}

.help-center-page {
  width: 100%;
  min-height: 95vh;
  background: #ffffff;
}

/* Banner 区域 */
/* Banner 区域 */
.help-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 346px;
  /* 浓郁绿色渐变 — 不再太浅 */
  background: radial-gradient(30% 40% at 15% 40%, rgba(47, 178, 106, 0.25) 0%, transparent 60%),
    radial-gradient(25% 35% at 88% 20%, rgba(74, 222, 128, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, #26984f 0%, #1aa74d 50%, #22a55b 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
}

/* 底层山丘 —— 最远处（中浅绿） */
.help-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: rgba(74, 222, 128, 0.5);
  /* brand-400 */
  clip-path: polygon(0% 100%,
      0% 45%,
      6% 38%,
      12% 32%,
      18% 28%,
      25% 25%,
      32% 24%,
      40% 26%,
      48% 30%,
      56% 32%,
      64% 30%,
      72% 26%,
      80% 24%,
      88% 28%,
      94% 34%,
      100% 38%,
      100% 100%);
  z-index: 1;
  pointer-events: none;
}

/* 中层山丘 —— 主轮廓（中绿） */
.help-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, rgba(47, 178, 106, 0.55), rgba(74, 222, 128, 0.4));
  clip-path: polygon(0% 100%,
      0% 68%,
      5% 62%,
      12% 55%,
      20% 50%,
      28% 47%,
      36% 45%,
      44% 47%,
      52% 51%,
      60% 53%,
      68% 50%,
      76% 46%,
      84% 44%,
      92% 50%,
      100% 55%,
      100% 100%);
  z-index: 2;
  pointer-events: none;
}

/* 前景沙地 —— 最近处（深绿） */
.help-banner .sand-foreground {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(to top, rgba(28, 138, 77, 0.6), rgba(34, 165, 91, 0.45));
  /* brand-700 → brand-600 */
  clip-path: polygon(0% 100%,
      0% 58%,
      12% 52%,
      28% 62%,
      42% 55%,
      58% 60%,
      72% 52%,
      86% 58%,
      100% 50%,
      100% 100%);
  z-index: 3;
  pointer-events: none;
}

/* 月亮光晕 — 暖黄色带绿调 */
.help-banner .moon-glow {
  position: absolute;
  top: 15%;
  right: 12%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(220, 240, 180, 0.5) 0%, rgba(74, 222, 128, 0.25) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}

/* 星光点缀 */
.help-banner .stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 220, 0.5), rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 60% 15%, rgba(255, 255, 220, 0.4), rgba(0, 0, 0, 0)),
    radial-gradient(1.5px 1.5px at 85% 45%, rgba(255, 255, 220, 0.5), rgba(0, 0, 0, 0)),
    radial-gradient(1px 1px at 40% 55%, rgba(255, 255, 220, 0.35), rgba(0, 0, 0, 0)),
    radial-gradient(2px 2px at 10% 70%, rgba(255, 255, 220, 0.45), rgba(0, 0, 0, 0));
  background-repeat: no-repeat;
  background-size: 200px 200px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* 确保内容在最上层 */
.help-banner>*:not(.sand-foreground):not(.moon-glow):not(.stars) {
  position: relative;
  z-index: 10;
}

.website-help .help-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
 
}


.help-center-page .faq-accordion {
  border: none !important;
}

.help-center-page .faq-acc-q {
  padding: 30px 0;
}

.help-center-page .faq-acc-a {
   padding: unset;
}

.help-center-page .faq-acc-q[aria-expanded="true"] {
  background-color: unset;
}

.help-center-page .faq-acc-qtext {
  display: block;
  font-weight: 600 !important;
  color: #212121;
}

.help-center-page .faq-acc-atext {
  color: #212121;
  font-size: 16px;
  line-height: 2;
  padding: 16px 10px;
  background-color: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 30px;
}


.help-center-page .help-center-container .help-faq .help-content-list .faq-acc-item:last-child {
  border-bottom: 1px solid #f0f0f0 !important;
}



.help-banner-jump-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
}
.help-banner-jump-box > * {
  margin-left: 6px;
  margin-bottom: 6px;
}
.help-banner-jump-box > *:nth-child(1n) {
  margin-left: 0;
}
@supports (gap: 12px) {
  .help-banner-jump-box {
    gap: 12px;
  }
  .help-banner-jump-box > * {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.help-banner-jump-item {
  padding: 16px 20px;
  height: 93px;
  border-radius: 8px;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-fg);
  background: #ffffff;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.help-center-jump-left{
  display: flex;
  align-items: center;
}
.help-center-jump-left i{
  font-size: 58px;
}



.help-center-jump-left h3 {
  margin-left: 12px;
  margin-bottom: unset !important;
}

.help-banner-title {
  margin: 0 0 30px;
  color: #ffffff;
  font-size: 32px !important;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  text-align: left;
}

.help-banner-bigbox {
  width: 100%;
  background-color: #f5f5f5;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* max-width: 1280px;
  height: 220px;
  background-color: #f5f5f5; */

  /* max-width: 680px; */
}

.help-banner-bigbox .help-category-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;

  text-align: left;
}




.help-banner-bigbox  .help-banner-search-box {
  display: flex;
  align-items: center;
  height: 44px;
  border-radius: 8px;
  margin: 0 auto;
  overflow: hidden;
}

.help-banner-search-input {
  flex: 1;
  height: 100%;
  background: #ffffff;
  border-radius: 8px 0 0 8px;
  padding: 0;
  color: #333333;
  font-size: 16px;
  text-indent: 12px;
  border: none;
  outline: none;
}

.help-banner-search-input::placeholder {
  color: #c9c9c9;
}

.help-banner-search-btn {
  min-width: 120px;
  height: 100%;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  background: var(--color-brand);
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.help-banner-search-btn:hover:not(:disabled) {
  opacity: 0.92;
}

.help-banner-search-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.help-banner-search-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.help-banner-clear-btn {
  min-width: 50px;
  height: 100%;
  color: #212121;
  font-size: 16px;
  font-weight: 600;
  background: #f3f4f6;
  border: 1px solid #212121;
  margin-left: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.help-banner-clear-btn:hover {
  background: #e5e7eb;
}

.help-banner-clear-btn:active {
  transform: scale(0.98);
}

/* 容器 */
.help-center-container {
 
  margin: 0 auto;
 
}

/* FAQ 区域 */
.help-faq {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 50px 0 0;
}

.help-content-title {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  color: #111827;
  font-size: 24px;
  font-weight: 600;
}
.help-content-title > * {
  margin-left: 2px;
}
.help-content-title > *:first-child {
  margin-left: 0;
}
@supports (gap: 2px) {
  .help-content-title {
    gap: 2px;
  }
  .help-content-title > * {
    margin-left: 0;
  }
}

.help-search-count {
  font-size: 14px;
  font-weight: 400;
  color: #212121;
  margin-left: 8px;
}

.help-content-list {
  width: 100%;
}

.help-search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #212121;
}

.help-search-empty p {
  margin: 0 0 20px;
  font-size: 16px;
}

.help-clear-search-btn {
  padding: 10px 24px;
  color: var(--color-brand);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  border: 1px solid var(--color-brand);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 20px;
}

.help-clear-search-btn:hover {
  background: var(--color-brand);
  color: #ffffff;
}

/* 分类区域 */
.help-category-section {
  margin: 60px auto 60px;
}

.help-category-title {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
  color: #1f2937;
}

.help-category-panel {

  background: #fff;
}

.help-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}
.help-category-grid > * {
  margin-left: 14px;
  margin-bottom: 18px;
}
.help-category-grid > *:nth-child(4n+1) {
  margin-left: 0;
}
@supports (gap: 36px 28px) {
  .help-category-grid {
    gap: 36px 28px;
  }
  .help-category-grid > * {
    margin-left: 0;
    margin-bottom: 0;
  }
}

.help-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 132px;
  padding: 20px 0px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  box-sizing: border-box;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); */
  cursor: pointer;
  transition: all 0.2s ease;
}

.help-category-card i {
  font-size: 100px;
  margin-bottom: 10px;
  color: var(--color-brand);

}

.help-category-card:hover {
  background: #ffffff;
  border-color: #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}



.help-category-thumb {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #f3f4f6;
}

.help-category-name {
  font-size: 18px;
  line-height: 24px;
  color: #111827;
  text-align: center;
}

/* 移动端适配 */
@media (max-width: 768px) {
  .help-banner {
    height: 200px;
  }

  .help-faq{
    margin-top: 20px !important;
  }

  .website-help .help-banner-content{
    width: 100%;
  }

  .help-banner-content {
    padding: 0 16px;
  }

  .help-banner-title {
    width: 100%;
    margin-bottom: 18px;
  }

  .help-banner-search-box {
    width: 100%;
    padding: unset !important;
  }

  .help-banner-bigbox {
    padding: unset !important;
    background-color: unset !important;
  }

  .help-banner-bigbox .help-category-title {
    display: none !important;
  }

  .help-banner-jump-item {
    height: 80px !important;
  }

  .help-banner-jump-box {
    grid-template-columns: unset !important;
  }



  .help-banner-search-input {
    font-size: 16px !important;
    flex: 1;
    min-width: calc(100% - 145px);
  }

  .help-banner-search-btn {
    min-width: 70px;

    font-size: 16px;
  }

  .help-banner-clear-btn {
    min-width: 45px;
    margin-left: 12px;
    font-size: 16px;
    border: unset !important;
  }

  .help-center-container {
    padding: 0 16px;
  }



  .help-faq .faq-acc-qtext {
    font-size: 16px;
  }

  .help-category-panel {
    border: none !important;
  }

  .help-content-title {
    font-size: 18px;
    margin-bottom: unset !important;
  }

  .help-category-section {
    margin: 26px auto 60px;
  }

  .help-category-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .help-category-grid {
    grid-template-columns: unset !important;
  }
  .help-category-grid > * {
    margin-bottom: 12px;
  }
  .help-category-grid > *:last-child {
    margin-bottom: 0;
  }
  @supports (gap: 12px) {
    .help-category-grid {
      gap: 12px;
    }
    .help-category-grid > * {
      margin-bottom: 0;
    }
  }

  .help-category-card {
    min-height: 80px;
    padding: 16px 12px;
    flex-direction: row !important;
    border: 1px solid #eee;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25); */
  }

  .help-category-card i {
    margin-right: 12px;
    margin-bottom: unset !important;
    font-size: 70px !important;
  }

  .help-category-thumb {
    width: 56px;
    height: 56px;
    margin-bottom: unset !important;
    margin-right: 12px;
    border-radius: 12px;
  }

  .help-category-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
  }

  .help-search-empty {
    padding: 40px 16px;
  }

  .help-search-empty p {
    font-size: 14px;
  }

  .help-clear-search-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/*# sourceMappingURL=website-route-help-center.88d4fc27.chunk.css.map*/