:root {
  --faq-common-problems-detail-page-bg: rgba(245, 246, 247, 1);
  --faq-common-problems-detail-text-main: rgba(31, 41, 55, 1);
  --faq-common-problems-detail-text-normal: rgba(51, 51, 51, 1);
  --faq-common-problems-detail-text-muted: rgba(102, 102, 102, 1);
  --faq-common-problems-detail-text-light: rgba(153, 153, 153, 1);
  --faq-common-problems-detail-accent: rgba(218, 36, 29, 1);
  --faq-common-problems-detail-shell: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
}

body.faq-common-problems-detail-body {
  margin: 0;
  background: var(--faq-common-problems-detail-page-bg);
  color: var(--faq-common-problems-detail-text-normal);
  font-family: "SourceHanSansCN-Regular", "Microsoft YaHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.faq-common-problems-detail-page {
  width: 100%;
  background: var(--faq-common-problems-detail-page-bg);
}

.faq-common-problems-detail-shell {
  width: min(100%, var(--faq-common-problems-detail-shell));
  padding-inline: 0;
}

.faq-common-problems-detail-breadcrumb-bar,
.faq-common-problems-detail-category-bar,
.faq-common-problems-detail-article {
  display: flex;
  justify-content: center;
}

.faq-common-problems-detail-breadcrumb-bar {
  min-height: 48px;
  background: rgba(242, 242, 242, 1);
}

.faq-common-problems-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: var(--faq-common-problems-detail-text-light);
  font-family: "AlibabaPuHuiTi-Regular", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 16px;
  flex-wrap: wrap;
}

.faq-common-problems-detail-breadcrumb-link,
.faq-common-problems-detail-breadcrumb-link:visited,
.faq-common-problems-detail-breadcrumb-link:hover,
.faq-common-problems-detail-breadcrumb-link:active {
  color: rgba(153, 153, 153, 1);
}

.faq-common-problems-detail-breadcrumb-current {
  color: rgba(153, 153, 153, 1);
}

.faq-common-problems-detail-category-bar {
  background: rgba(255, 255, 255, 1);
  margin-bottom: 6px;
}

.faq-common-problems-detail-category-row {
  display: flex;
  align-items: end;
  gap: 0;
  padding: 11px 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.faq-common-problems-detail-category-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 153px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(218, 36, 29, 1);
  background: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 1);
  font-family: "SourceHanSansCN-Regular", "Source Han Sans CN", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.faq-common-problems-detail-category-pill-active {
  border-top: 1px solid rgba(218, 36, 29, 1);
  border-right: 1px solid rgba(218, 36, 29, 1);
  border-left: 1px solid rgba(218, 36, 29, 1);
  border-bottom: 0;
  color: var(--faq-common-problems-detail-accent);
}

.faq-common-problems-detail-category-fill {
  min-width: 120px;
  flex: 1 0 120px;
  height: 34px;
  border-bottom: 1px solid rgba(218, 36, 29, 1);
  background: rgba(255, 255, 255, 1);
}

.faq-common-problems-detail-main {
  background: rgba(255, 255, 255, 1);
  padding-top: 20px;
}

.faq-common-problems-detail-article {
  padding-block: 0 60px;
  background: rgba(255, 255, 255, 1);
}

.faq-common-problems-detail-article-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-common-problems-detail-title {
  margin: 0;
  color: var(--faq-common-problems-detail-text-main);
  font-family: "AlibabaPuHuiTi-Bold", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
}

.faq-common-problems-detail-meta {
  display: flex;
  align-items: center;
  gap: 72px;
  color: var(--faq-common-problems-detail-text-muted);
  font-size: 14px;
  line-height: 20px;
}

.faq-common-problems-detail-cover {
  width: 856px;
  max-width: 100%;
  aspect-ratio: 856 / 487;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.faq-common-problems-detail-content {
  width: min(100%, 1200px);
  color: var(--faq-common-problems-detail-text-normal);
  font-size: 16px;
  line-height: 1.9;
}

.faq-common-problems-detail-bottom-strip {
  width: 100%;
  height: 12px;
  background: var(--faq-common-problems-detail-page-bg);
}

.faq-common-problems-detail-clickable,
.faq-common-problems-detail-clickable * {
  cursor: pointer;
}

@media (max-width: 1320px) {
  .faq-common-problems-detail-shell {
    width: calc(100% - 48px);
  }
}

@media (max-width: 980px) {
  .faq-common-problems-detail-category-row {
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 11px;
  }

  .faq-common-problems-detail-category-pill,
  .faq-common-problems-detail-category-pill-active {
    width: auto;
    min-width: 0;
  }

  .faq-common-problems-detail-category-fill {
    display: none;
  }

  .faq-common-problems-detail-article {
    padding-block: 28px 60px;
  }

  .faq-common-problems-detail-meta {
    gap: 24px;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .faq-common-problems-detail-shell {
    width: calc(100% - 32px);
  }

  .faq-common-problems-detail-breadcrumb {
    padding-block: 12px;
    line-height: 1.6;
  }

  .faq-common-problems-detail-title {
    font-size: 22px;
    line-height: 32px;
  }

  .faq-common-problems-detail-content {
    font-size: 15px;
    line-height: 1.8;
  }
}
