:root {
  --qs-bg: #221818;
  --qs-text: #ffffff;
  --qs-muted: #d6d8d9;
  --qs-brand: #b81c22;
  --qs-card-bg: #ffffff;
  --qs-divider: rgba(231, 231, 231, 0.6);
  --qs-desc: #595757;
  --qs-content: 83.333vw;
  --zs-brand: #b81c22;
  --zs-muted: #d6d8d9;
  --zs-inner: 83.333vw;
}

body.zs-question {
  background: var(--qs-bg);
  color: var(--qs-text);
}

.qs-page {
  width: 100%;
  overflow-x: hidden;
}


.zs-question .hero-nav {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1.041vw);
  -webkit-backdrop-filter: blur(1.041vw);
}

.qs-hero {
  position: relative;
  width: 100%;
  min-height: 28.333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.qs-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.qs-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.qs-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.qs-hero-inner {
  width: var(--qs-content);
  padding: 8.333vw 3.125vw 5.208vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.989vw;
}

.qs-hero-title {
  margin: 0;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: -0.052vw;
}

.qs-hero-desc {
  margin: 0;
  max-width: 56.77vw;
  color: #ffffff;
  line-height: 1.5;
}

.qs-faq {
  width: 100%;
  padding: 4.791vw 0 10.416vw;
}

.qs-faq-inner {
  width: var(--qs-content);
  margin: 0 auto;
  padding: 0 8.333vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 3.489vw;
}

.qs-tabs {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2.5vw;
  flex-wrap: wrap;
}

.qs-tab {
  position: relative;
  background: transparent;
  border: none;
  padding: 0 0 0.364vw;
  font-family: inherit;
  color: #ffffff;
  cursor: pointer;
  line-height: 1.5;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.26vw;
  transition: color 0.2s ease;
}

.qs-tab:hover {
  color: var(--qs-brand);
}

.qs-tab.is-active {
  color: var(--qs-brand);
}

.qs-tab.is-active::after {
  content: "";
  display: block;
  width: 4.166vw;
  max-width: 100%;
  height: 0.104vw;
  background: var(--qs-brand);
  border-radius: 0.104vw;
}

.qs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.666vw;
}

.qs-item {
  position: relative;
  background: transparent;
  border-radius: 0;
  padding: 0.833vw 0;
  transition: background 0.3s ease, padding 0.3s ease, border-radius 0.3s ease,
    box-shadow 0.3s ease;
}

.qs-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(1.666vw * -0.5 - 0.026vw);
  height: 0.052vw;
  background: rgba(231, 231, 231, 0.3);
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.qs-item.is-open {
  background: #ffffff;
  border-radius: 1.041vw;
  padding: 1.562vw 1.666vw;
  box-shadow: 0 0.625vw 1.666vw rgba(0, 0, 0, 0.2);
  margin: 0 -1.041vw;
}

.qs-item.is-open::after {
  opacity: 0;
}

.qs-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.041vw;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: #ffffff;
  min-height: 1.875vw;
  transition: color 0.25s ease;
}

.qs-q-text {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.5;
  color: #ffffff;
  transition: color 0.25s ease;
}

.qs-item.is-open .qs-q-text {
  color: var(--qs-brand);
}

.qs-q:hover .qs-q-text {
  color: var(--qs-brand);
}

.qs-arrow {
  position: relative;
  width: 1.77vw;
  height: 1.77vw;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.25s ease, color 0.25s ease;
}

.qs-arrow::before {
  content: "";
  width: 0.468vw;
  height: 0.468vw;
  border-top: 0.104vw solid currentColor;
  border-right: 0.104vw solid currentColor;
  transform: rotate(45deg);
}

.qs-item.is-open .qs-arrow {
  color: var(--qs-brand);
  transform: rotate(90deg);
}

.qs-q:hover .qs-arrow {
  color: var(--qs-brand);
}

.qs-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.25s ease;
}

.qs-item.is-open .qs-a {
  max-height: 31.25vw;
  opacity: 1;
  padding-top: 1.145vw;
}

.qs-a p {
  margin: 0;
  color: var(--qs-desc);
  line-height: 1.5;
  max-width: 63.333vw;
}

.qs-contact {
  position: relative;
  width: 100%;
  min-height: 26.666vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.qs-contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.qs-contact-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.qs-contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: -1;
}

.qs-contact-inner {
  width: var(--qs-content);
  padding: 8.125vw 3.125vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5vw;
}

.qs-contact-title {
  margin: 0;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: -0.026vw;
  max-width: 37.5vw;
}

.qs-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}

.qs-contact-item {
  display: flex;
  align-items: center;
  gap: 1.666vw;
  color: #ffffff;
  line-height: 1.5;
}

.qs-contact-icon {
  width: 1.77vw;
  height: 1.77vw;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--qs-brand);
}

.qs-contact-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.qs-contact-text {
  color: #ffffff;
  line-height: 1.5;
  word-break: break-word;
}

.page-shell {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}



/* 
*======================================================media===============================================================
*/
@media screen and (max-width:768px) {
  :root {
    --qs-content: 92%;
    --zs-inner: 92%;
  }

  .qs-page {
    width: 100%;
  }

  .zs-question .hero-nav {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .qs-hero {
    width: 100%;
    min-height: 440px;
    display: flex;
  }

  .qs-hero-bg img {
    width: 100%;
    height: 100%;
  }

  .qs-hero-inner {
    width: 100%;
    max-width: 100%;
    padding: 104px 16px 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .qs-hero-title {
    letter-spacing: -0.5px;
  }

  .qs-hero-desc {
    max-width: 100%;
  }

  .qs-faq {
    width: 100%;
    padding: 48px 0 64px;
  }

  .qs-faq-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .qs-tabs {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px 24px;
    flex-wrap: wrap;
  }

  .qs-tab {
    padding: 0 0 6px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .qs-tab.is-active::after {
    width: 48px;
    max-width: 100%;
    height: 2px;
    border-radius: 2px;
  }

  .qs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .qs-item {
    padding: 12px 0;
  }

  .qs-item::after {
    bottom: calc(20px * -0.5 - 0.5px);
    height: 1px;
  }

  .qs-item.is-open {
    border-radius: 12px;
    padding: 20px 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    margin: 0;
  }

  .qs-q {
    width: 100%;
    display: flex;
    gap: 12px;
    min-height: 40px;
  }

  .qs-q-text {
    flex: 1 1 auto;
    min-width: 0;
  }

  .qs-arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: inline-flex;
  }

  .qs-arrow::before {
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
  }

  .qs-item.is-open .qs-a {
    max-height: 800px;
    padding-top: 16px;
  }

  .qs-a p {
    max-width: 100%;
  }

  .qs-contact {
    width: 100%;
    min-height: auto;
    display: flex;
  }

  .qs-contact-bg img {
    width: 100%;
    height: 100%;
  }

  .qs-contact-inner {
    width: 100%;
    max-width: 100%;
    padding: 64px 16%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .qs-contact-title {
    letter-spacing: -0.25px;
    max-width: 100%;
  }

  .qs-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .qs-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .qs-contact-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: inline-flex;
  }

  .qs-contact-icon img {
    width: 100%;
    height: 100%;
  }

  .page-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}