.zhiting-after-sale {
  padding-top: 40px;
  background: var(--bg-color);
}

.zhiting-after-sale-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* 左侧图片 */
.zhiting-after-sale-image {
  width: 787px;
  flex-shrink: 0;
  aspect-ratio: 787/760;
  overflow: hidden;
}

.zhiting-after-sale-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 右侧内容 */
.zhiting-after-sale-content {
  flex: 1;
  min-width: 0;
}

.zhiting-after-sale-title {
  margin: 0 0 40px 0;
  font-family: var(--zhiting-font-accent);
  font-size: var(--font-48);
  font-weight: 700;
  line-height: normal;
  background: var(--zhiting-accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* FAQ手风琴 */
.zhiting-after-sale-faq {
  display: flex;
  flex-direction: column;
  gap: 65px;
}

.zhiting-faq-item {
  border-radius: 5px;
  border: 1px solid rgba(153, 174, 255, 0.24);
  background: #FFF;
  overflow: hidden;
  transition: all 0.3s ease;
}

.zhiting-faq-item.active {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
}

.zhiting-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 30px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.zhiting-faq-question-text {
  flex: 1;
  min-width: 0;
  color: #454545;
  font-family: var(--zhiting-font-accent);
  font-size: var(--font-22);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.zhiting-faq-item.active .zhiting-faq-question-icon {
  transform: rotate(180deg);
}

.zhiting-faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.zhiting-faq-item.active .zhiting-faq-answer {
  height: auto;
}

.zhiting-faq-answer-content {
  padding: 0 30px 25px 30px;
  color: #5B5B5B;
  font-family: var(--zhiting-font-accent);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5; /* 24px */
}

/* 响应式 */
@media screen and (max-width: 1500px) {
  .zhiting-after-sale-image{
    width: 50%;
  }
  .zhiting-after-sale-faq{
    gap: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .zhiting-after-sale-wrapper {
    gap: 30px;
  }
}

@media screen and (max-width: 991px) {
  .zhiting-after-sale-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .zhiting-after-sale-content{
    width: 100%;
  }

  .zhiting-after-sale-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {

  .zhiting-faq-question {
    padding: 20px;
    gap: 10px;
  }

  .zhiting-faq-answer-content {
    padding: 0 20px 20px 20px;
  }
}
