@font-face {
  font-family: "DreamscapeInterLight";
  src: url("/static/web/common/fonts/Inter-Light_1.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "DreamscapeOutfitRegular";
  src: url("/static/web/common/fonts/Outfit-Regular_1.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "DreamscapeOutfitSemiBold";
  src: url("/static/web/common/fonts/Outfit-SemiBold_1.ttf") format("truetype");
  font-display: swap;
}

:root {
  --site-width: 1290px;
  --site-header-height: 98px;
  --site-border-light: rgba(255, 255, 255, 0.2);
  --site-footer-border: rgba(255, 255, 255, 0.06);
  --site-footer-bg: #24272c;
  --site-text-dark: #000;
  --site-text-light: #fff;
  --site-text-muted: rgba(255, 255, 255, 0.6);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.site-body {
  min-width: var(--site-width);
  color: var(--site-text-dark);
  background: #fff;
  font-family: "DreamscapeOutfitRegular", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  width: 100%;
  flex: 1 0 auto;
}

.site-footer {
  margin-top: auto;
  flex-shrink: 0;
}

.site-breadcrumb {
  width: 100%;
}

.site-breadcrumb-shell {
  width: 100%;
  border-bottom: 1px solid rgba(236, 236, 236, 1);
  padding-bottom: 20px;
}

.site-breadcrumb-shell--top-gap {
  padding-top: 20px;
}

.site-breadcrumb__inner {
  width: calc(100% - 48px);
  max-width: var(--site-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-height: 20px;
}

.site-breadcrumb-shell .site-breadcrumb__inner {
  width: calc(100% - 48px);
  max-width: var(--site-width);
  margin: 0 auto;
}


.site-breadcrumb__item {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  font-family: "DreamscapeInterLight", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: rgba(182, 182, 182, 1);
  white-space: nowrap;
}

.site-breadcrumb__item[aria-current="page"] {
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-breadcrumb__item--home {
  color: rgba(216, 19, 36, 1);
  font-family: "DreamscapeOutfitSemiBold", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.site-breadcrumb__separator {
  width: 6px;
  height: 6px;
  border-top: 1.5px solid rgba(182, 182, 182, 1);
  border-right: 1.5px solid rgba(182, 182, 182, 1);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.site-header {
  width: 100%;
  height: var(--site-header-height);
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  width: calc(100% - 48px);
  max-width: var(--site-width);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo {
  width: 121px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.site-logo--has-image {
  width: 260px;
  height: 40px;
  min-width: 260px;
  max-width: 260px;
  justify-content: flex-start;
  overflow: hidden;
}

.site-logo__mark {
  width: 35px;
  height: 35px;
  background: center / contain no-repeat url("/static/web/common/images/logo-mark.png");
  flex: 0 0 auto;
}

.site-logo__image {
  display: block;
  width: auto;
  max-width: 110px;
  max-height: 40px;
  height: auto;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.site-logo__image--footer {
  max-width: 120px;
  max-height: 44px;
}

.site-logo--footer {
  width: 121px;
}

.site-logo--footer.site-logo--has-image {
  width: 290px;
  height: 44px;
  min-width: 290px;
  max-width: 290px;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-logo__cn {
  font-family: "DreamscapeOutfitSemiBold", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  line-height: 1;
  color: #000;
  white-space: nowrap;
}

.site-logo__en {
  margin-top: 4px;
  font-family: "DreamscapeInterLight", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #000;
  opacity: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex: 1 1 auto;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 98px;
  font-size: 16px;
  line-height: 1;
  color: #000;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #111;
}

.site-nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  height: 2px;
  border-radius: 999px;
  background: #000;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.site-header__action {
  width: 68px;
  height: 68px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(1.333333px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.site-header__action-icon {
  width: 32px;
  height: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.site-header__action-icon--left {
  background-image: url("/static/web/common/images/header-action-left.png");
}

.site-header__action-icon--right {
  background-image: url("/static/web/common/images/header-action-right.png");
}

.site-footer {
  width: 100%;
  background: var(--site-footer-bg);
  color: var(--site-text-light);
}

.site-footer__inner {
  width: 100%;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.site-footer__line {
  width: calc(100% - 48px);
  max-width: var(--site-width);
  height: 1px;
  background: var(--site-footer-border);
}

.site-footer__top,
.site-footer__bottom {
  width: calc(100% - 48px);
  max-width: var(--site-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: var(--site-text-light);
}

.site-footer__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  color: var(--site-text-light);
  opacity: 0.5;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-footer__social-icon {
  width: 20px;
  height: 20px;
  background: center / contain no-repeat url("/static/web/common/images/social-youtube.png");
  flex: 0 0 auto;
}

.site-logo--footer .site-logo__cn,
.site-logo--footer .site-logo__en {
  color: var(--site-text-light);
}

.site-footer__copyright {
  text-align: center;
  color: var(--site-text-light);
  white-space: nowrap;
}

.site-footer__copyright p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--site-text-muted);
}

.site-footer__copyright p + p {
  margin-top: 4px;
}
