html.has-modal-l body {
  overflow: hidden;
  background-color: #000;
}
html.has-modal-l body, html.fancybox-margin body {
  padding-inline-end: var(--modal-scrollbar-buffer, 0);
}

html {
  scroll-behavior: auto !important;
  overscroll-behavior-y: initial !important;
}

html.has-modal-l {
  overflow: hidden;
}

html.has-modal-l body, html.has-modal-l #localnav {
  padding-inline-end: var(--modal-scrollbar-buffer);
}

body {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}

.html-text-component {
  overflow: inherit;
}

.has-localnav .header-component nav {
  position: absolute;
  transform: none !important;
  border-bottom: 0 !important;
  background-color: transparent !important;
  backdrop-filter: none;
}

#localnav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  max-height: 50px;
  line-height: 50px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), max-height 0.6s cubic-bezier(0.52, 0.16, 0.24, 1);
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.8);
}

@supports (backdrop-filter: none) {
  #localnav {
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: saturate(150%) blur(20px);
  }
}
.localnav-show #localnav {
  transform: translateY(0%);
}

#localnav .ln-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 50px;
}

#localnav .ln-content::before, #localnav .ln-content::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background-color: #414141;
}

#localnav .ln-content::before {
  top: 50px;
}

#localnav .ln-content::after {
  bottom: 0;
}

#localnav .ln-title {
  flex-grow: 1;
  height: 50px;
  padding-left: 160px;
}

#localnav .ln-title .ln-link {
  display: inline-block;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
}

#localnav .button {
  overflow: visible;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: inherit;
  color: inherit;
  border: 0;
  outline: 0;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#localnav svg {
  display: block;
}

#localnav .ln-menu-trigger {
  display: none;
  width: 40px;
  padding: 16px 8px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#localnav .ln-menu {
  display: flex;
  margin-left: 12px;
}

#localnav .ln-menu-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#localnav .ln-link {
  position: relative;
  display: block;
  padding: 0 20px;
  font-size: 14px;
  line-height: 50px;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  color: #fff;
}

#localnav .ln-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 50px;
  margin-left: 20px;
  padding-right: 160px;
}

.localnav-collapse #localnav {
  max-height: 56px;
  line-height: 56px;
}

.localnav-collapse #localnav .ln-content {
  height: 100%;
}

.localnav-collapse #localnav .ln-content::before {
  top: 56px;
}

.localnav-collapse #localnav .ln-title {
  display: flex;
  flex-grow: 0;
  height: 56px;
  padding-left: 24px;
}

.localnav-collapse #localnav .ln-menu {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  height: auto;
  margin-left: 0;
  padding-right: 16px;
  padding-left: 16px;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.localnav-collapse #localnav .ln-menu::-webkit-scrollbar {
  display: none;
}

.localnav-collapse #localnav .ln-link {
  height: 56px;
  line-height: 56px;
}

.localnav-collapse #localnav .ln-action {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 56px;
  margin-left: 0;
  padding-right: 24px;
}

.localnav-collapse #localnav .ln-menu-item {
  transition: opacity 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  opacity: 0;
}

.localnav-collapse #localnav .ln-menu-item .ln-link {
  padding: 0 8px;
}

.localnav-collapse #localnav .ln-menu-trigger {
  display: block;
}

#localnav.ln-expanded {
  max-height: 100%;
}

#localnav.ln-expanded .ln-menu-trigger {
  transform: rotate(180deg);
}

#localnav.ln-expanded .ln-menu {
  visibility: visible;
  transition-delay: 0s;
}

#localnav.ln-expanded .ln-menu-item {
  opacity: 1;
}

@media only screen and (min-width: 1200.01px) {
  #localnav .ln-link::after {
    position: absolute;
    right: 20px;
    bottom: 1px;
    left: 20px;
    height: 2px;
    content: "";
    transition: transform 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: scaleX(0);
    transform-origin: center;
    background-color: #fff;
  }
  #localnav .ln-link:hover::after {
    transform: scaleX(1);
  }
  #localnav .ln-title .ln-link::after {
    display: none;
  }
}
@media only screen and (max-width: 1919px) {
  #localnav .ln-title {
    padding-left: 80px;
  }
  #localnav .ln-action {
    padding-right: 80px;
  }
}
@media only screen and (max-width: 1200px) {
  #localnav .ln-title {
    padding-left: 32px;
  }
  #localnav .ln-menu {
    margin-left: 20px;
  }
  #localnav .ln-link {
    padding: 0 12px;
  }
  #localnav .ln-link.current::after {
    right: 12px;
    left: 12px;
  }
  #localnav .ln-action {
    margin-left: 12px;
    padding-right: 32px;
  }
  #localnav .ln-menu-trigger {
    left: 0;
  }
}
#zunjie-v800-container {
  font-size: 1.145833vw;
  font-weight: 500;
  line-height: 1.6;
  color: #C4BAAF;
  background-color: #000;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container {
    font-size: 2.285714vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #zunjie-v800-container {
    font-size: 4.444444vw;
  }
}

#zunjie-v800-container *, #zunjie-v800-container *::before, #zunjie-v800-container *::after {
  box-sizing: border-box;
}
#zunjie-v800-container section {
  position: relative;
}
#zunjie-v800-container img, #zunjie-v800-container picture, #zunjie-v800-container video, #zunjie-v800-container canvas, #zunjie-v800-container svg {
  display: block;
  width: 100%;
}
#zunjie-v800-container svg {
  overflow: visible;
}
#zunjie-v800-container button {
  border: 0;
  background-color: transparent;
}
#zunjie-v800-container .sticky-content {
  position: sticky;
  top: 0;
}
#zunjie-v800-container .object-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#zunjie-v800-container .object-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#zunjie-v800-container .backdrop-filter {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
}
#zunjie-v800-container .blur-up {
  transition: filter 400ms;
  filter: blur(20px);
}
#zunjie-v800-container .blur-up.lazyloaded {
  filter: blur(0);
}
#zunjie-v800-container br {
  line-height: 0;
}
#zunjie-v800-container br.md, #zunjie-v800-container br.xs {
  display: none;
}
#zunjie-v800-container br.lg {
  display: block;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container br.lg, #zunjie-v800-container br.md {
    display: none;
  }
  #zunjie-v800-container br.xs {
    display: block;
  }
}
#zunjie-v800-container .absolute {
  position: absolute;
}
#zunjie-v800-container .relative {
  position: relative;
}
#zunjie-v800-container .sticky {
  position: sticky;
  top: 0;
}
#zunjie-v800-container .z-1 {
  z-index: 1;
}
#zunjie-v800-container .z-2 {
  z-index: 2;
}
#zunjie-v800-container .z-3 {
  z-index: 3;
}
#zunjie-v800-container .z-4 {
  z-index: 4;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .xs\:position-initial {
    position: initial;
  }
}
#zunjie-v800-container .overflow-hidden {
  overflow: hidden;
}
#zunjie-v800-container .overflow-visible {
  overflow: visible;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .xs\:overflow-hidden {
    overflow: hidden;
  }
  #zunjie-v800-container .xs\:overflow-visible {
    overflow: visible;
  }
}
#zunjie-v800-container .block {
  display: block;
}
#zunjie-v800-container .inline-block {
  display: inline-block;
}
#zunjie-v800-container .inline {
  display: inline;
}
#zunjie-v800-container .flex {
  display: flex;
}
#zunjie-v800-container .inline-flex {
  display: inline-flex;
}
#zunjie-v800-container .grid {
  display: grid;
}
#zunjie-v800-container .hidden {
  display: none;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .xs\:block {
    display: block;
  }
  #zunjie-v800-container .xs\:inline-block {
    display: inline-block;
  }
  #zunjie-v800-container .xs\:inline {
    display: inline;
  }
  #zunjie-v800-container .xs\:flex {
    display: flex;
  }
  #zunjie-v800-container .xs\:inline-flex {
    display: inline-flex;
  }
  #zunjie-v800-container .xs\:grid {
    display: grid;
  }
  #zunjie-v800-container .xs\:hidden {
    display: none;
  }
}
#zunjie-v800-container .flex-row-reverse {
  flex-direction: row-reverse;
}
#zunjie-v800-container .flex-col {
  flex-direction: column;
}
#zunjie-v800-container .flex-col-reverse {
  flex-direction: column-reverse;
}
#zunjie-v800-container .flex-wrap {
  flex-wrap: wrap;
}
#zunjie-v800-container .justify-start {
  justify-content: flex-start;
}
#zunjie-v800-container .justify-end {
  justify-content: flex-end;
}
#zunjie-v800-container .justify-center {
  justify-content: center;
}
#zunjie-v800-container .justify-between {
  justify-content: space-between;
}
#zunjie-v800-container .items-start {
  align-items: flex-start;
}
#zunjie-v800-container .items-end {
  align-items: flex-end;
}
#zunjie-v800-container .items-center {
  align-items: center;
}
#zunjie-v800-container .shrink-0 {
  flex-shrink: 0;
}
#zunjie-v800-container .order-1 {
  order: 1;
}
#zunjie-v800-container .order-2 {
  order: 2;
}
#zunjie-v800-container .order-3 {
  order: 3;
}
#zunjie-v800-container .order-4 {
  order: 4;
}
#zunjie-v800-container .order-5 {
  order: 5;
}
#zunjie-v800-container .order-6 {
  order: 6;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .xs\:flex-row {
    flex-direction: row;
  }
  #zunjie-v800-container .xs\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  #zunjie-v800-container .xs\:flex-col {
    flex-direction: column;
  }
  #zunjie-v800-container .xs\:flex-col-reverse {
    flex-direction: column-reverse;
  }
  #zunjie-v800-container .xs\:justify-start {
    justify-content: flex-start;
  }
  #zunjie-v800-container .xs\:justify-end {
    justify-content: flex-end;
  }
  #zunjie-v800-container .xs\:justify-center {
    justify-content: center;
  }
  #zunjie-v800-container .xs\:justify-between {
    justify-content: space-between;
  }
  #zunjie-v800-container .xs\:items-start {
    align-items: flex-start;
  }
  #zunjie-v800-container .xs\:items-end {
    align-items: flex-end;
  }
  #zunjie-v800-container .xs\:items-center {
    align-items: center;
  }
  #zunjie-v800-container .xs\:order-1 {
    order: 1;
  }
  #zunjie-v800-container .xs\:order-2 {
    order: 2;
  }
  #zunjie-v800-container .xs\:order-3 {
    order: 3;
  }
  #zunjie-v800-container .xs\:order-4 {
    order: 4;
  }
  #zunjie-v800-container .xs\:order-5 {
    order: 5;
  }
  #zunjie-v800-container .xs\:order-6 {
    order: 6;
  }
}
#zunjie-v800-container .rounded, #zunjie-v800-container .lg\:rounded, #zunjie-v800-container .rounded-left, #zunjie-v800-container .lg\:rounded-left, #zunjie-v800-container .rounded-right, #zunjie-v800-container .lg\:rounded-right {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#zunjie-v800-container .rounded, #zunjie-v800-container .lg\:rounded {
  border-radius: 0.833333vw;
}
#zunjie-v800-container .rounded-left, #zunjie-v800-container .lg\:rounded-left {
  border-top-left-radius: 0.833333vw;
  border-bottom-left-radius: 0.833333vw;
}
#zunjie-v800-container .rounded-right, #zunjie-v800-container .lg\:rounded-right {
  border-top-right-radius: 0.833333vw;
  border-bottom-right-radius: 0.833333vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .md\:rounded, #zunjie-v800-container .md\:rounded-left, #zunjie-v800-container .md\:rounded-right {
    border-radius: 0;
  }
  #zunjie-v800-container .xs\:rounded {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  #zunjie-v800-container .rounded, #zunjie-v800-container .xs\:rounded {
    border-radius: 2.222222vw;
  }
  #zunjie-v800-container .rounded-left, #zunjie-v800-container .xs\:rounded-left {
    border-top-left-radius: 2.222222vw;
    border-bottom-left-radius: 2.222222vw;
  }
  #zunjie-v800-container .rounded-right, #zunjie-v800-container .xs\:rounded-right {
    border-top-right-radius: 2.222222vw;
    border-bottom-right-radius: 2.222222vw;
  }
}
#zunjie-v800-container .stack-list {
  display: grid;
}
#zunjie-v800-container .stack-item {
  position: relative;
  width: 100%;
  transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition-property: opacity;
  opacity: 0;
  grid-area: 1/1;
}
#zunjie-v800-container .stack-item.current {
  z-index: 1;
  opacity: 1;
}
#zunjie-v800-container .speed-fade .stack-item {
  transition-duration: 200ms;
}
#zunjie-v800-container .speed-fade .stack-item.current {
  transition-delay: 200ms;
}
#zunjie-v800-container .speed-slide .stack-item {
  transition-duration: 400ms;
}
#zunjie-v800-container .speed-slide .stack-item.current {
  transition-delay: 400ms;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .speed-slide .stack-item {
    transition-duration: 300ms;
  }
  #zunjie-v800-container .speed-slide .stack-item.current {
    transition-delay: 300ms;
  }
}
#zunjie-v800-container .fadeup, #zunjie-v800-container .lg-fadeup {
  transition: opacity 500ms ease-in, transform 500ms cubic-bezier(0.26, 0.67, 0.48, 0.91);
  transform: translateY(4.166667vw);
  opacity: 0;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .fadeup, #zunjie-v800-container .xs-fadeup {
    transform: translateY(11.111111vw);
  }
  #zunjie-v800-container .lg-fadeup {
    transition: none;
    transform: none;
    opacity: 1;
  }
  #zunjie-v800-container .xs-fadeup {
    transition: opacity 500ms ease-in, transform 500ms cubic-bezier(0.26, 0.67, 0.48, 0.91);
    opacity: 0;
  }
}
#zunjie-v800-container .fadeup.animated, #zunjie-v800-container .lg-fadeup.animated, #zunjie-v800-container .xs-fadeup.animated {
  transform: translateY(0);
  opacity: 1;
}
#zunjie-v800-container .w-1560 {
  width: 81.25vw;
}
#zunjie-v800-container .w-1296 {
  width: 67.5vw;
}
#zunjie-v800-container .w-1080 {
  width: 56.25vw;
}
#zunjie-v800-container .w-1068 {
  width: 55.625vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .xs\:w-full {
    width: 100%;
  }
  #zunjie-v800-container .xs\:w-688 {
    width: 95.555556vw;
  }
  #zunjie-v800-container .xs\:w-656 {
    width: 91.111111vw;
  }
  #zunjie-v800-container .xs\:w-640 {
    width: 88.888889vw;
  }
  #zunjie-v800-container .xs\:w-592 {
    width: 82.222222vw;
  }
  #zunjie-v800-container .xs\:w-560 {
    width: 77.777778vw;
  }
}
#zunjie-v800-container .mt-1\.25 {
  margin-top: 1.25em;
}
#zunjie-v800-container .mt-1\.6 {
  margin-top: 1.6em;
}
#zunjie-v800-container .mb-0\.5, #zunjie-v800-container .lg\:mb-0\.5 {
  margin-bottom: 0.5em;
}
#zunjie-v800-container .mx-auto {
  margin-right: auto;
  margin-left: auto;
}
#zunjie-v800-container .mt-8, #zunjie-v800-container .lg\:mt-8 {
  margin-top: 0.416667vw;
}
#zunjie-v800-container .mt-16, #zunjie-v800-container .lg\:mt-16 {
  margin-top: 0.833333vw;
}
#zunjie-v800-container .mt-24, #zunjie-v800-container .lg\:mt-24 {
  margin-top: 1.25vw;
}
#zunjie-v800-container .mt-32, #zunjie-v800-container .lg\:mt-32 {
  margin-top: 1.666667vw;
}
#zunjie-v800-container .mt-40, #zunjie-v800-container .lg\:mt-40 {
  margin-top: 2.083333vw;
}
#zunjie-v800-container .mt-48, #zunjie-v800-container .lg\:mt-48 {
  margin-top: 2.5vw;
}
#zunjie-v800-container .mt-56, #zunjie-v800-container .lg\:mt-56 {
  margin-top: 2.916667vw;
}
#zunjie-v800-container .mt-64, #zunjie-v800-container .lg\:mt-64 {
  margin-top: 3.333333vw;
}
#zunjie-v800-container .mt-72, #zunjie-v800-container .lg\:mt-72 {
  margin-top: 3.75vw;
}
#zunjie-v800-container .mt-80, #zunjie-v800-container .lg\:mt-80 {
  margin-top: 4.166667vw;
}
#zunjie-v800-container .mt-88, #zunjie-v800-container .lg\:mt-88 {
  margin-top: 4.583333vw;
}
#zunjie-v800-container .mt-96, #zunjie-v800-container .lg\:mt-96 {
  margin-top: 5vw;
}
#zunjie-v800-container .mt-104, #zunjie-v800-container .lg\:mt-104 {
  margin-top: 5.416667vw;
}
#zunjie-v800-container .mt-112, #zunjie-v800-container .lg\:mt-112 {
  margin-top: 5.833333vw;
}
#zunjie-v800-container .mt-120, #zunjie-v800-container .lg\:mt-120 {
  margin-top: 6.25vw;
}
#zunjie-v800-container .mt-144, #zunjie-v800-container .lg\:mt-144 {
  margin-top: 7.5vw;
}
#zunjie-v800-container .mt-160, #zunjie-v800-container .lg\:mt-160 {
  margin-top: 8.333333vw;
}
#zunjie-v800-container .mt-200, #zunjie-v800-container .lg\:mt-200 {
  margin-top: 10.416667vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .xs\:mb-0\.5 {
    margin-bottom: 0.5em;
  }
  #zunjie-v800-container .xs\:mx-auto {
    margin-right: auto;
    margin-left: auto;
  }
  #zunjie-v800-container .mt-8, #zunjie-v800-container .xs\:mt-8 {
    margin-top: 1.111111vw;
  }
  #zunjie-v800-container .mt-16, #zunjie-v800-container .xs\:mt-16 {
    margin-top: 2.222222vw;
  }
  #zunjie-v800-container .mt-24, #zunjie-v800-container .xs\:mt-24 {
    margin-top: 3.333333vw;
  }
  #zunjie-v800-container .mt-32, #zunjie-v800-container .xs\:mt-32 {
    margin-top: 4.444444vw;
  }
  #zunjie-v800-container .mt-40, #zunjie-v800-container .xs\:mt-40 {
    margin-top: 5.555556vw;
  }
  #zunjie-v800-container .mt-48, #zunjie-v800-container .xs\:mt-48 {
    margin-top: 6.666667vw;
  }
  #zunjie-v800-container .mt-56, #zunjie-v800-container .xs\:mt-56 {
    margin-top: 7.777778vw;
  }
  #zunjie-v800-container .mt-64, #zunjie-v800-container .xs\:mt-64 {
    margin-top: 8.888889vw;
  }
  #zunjie-v800-container .mt-72, #zunjie-v800-container .xs\:mt-72 {
    margin-top: 10vw;
  }
  #zunjie-v800-container .mt-80, #zunjie-v800-container .xs\:mt-80 {
    margin-top: 11.111111vw;
  }
  #zunjie-v800-container .mt-88, #zunjie-v800-container .xs\:mt-88 {
    margin-top: 12.222222vw;
  }
  #zunjie-v800-container .mt-96, #zunjie-v800-container .xs\:mt-96 {
    margin-top: 13.333333vw;
  }
  #zunjie-v800-container .mt-104, #zunjie-v800-container .xs\:mt-104 {
    margin-top: 14.444444vw;
  }
  #zunjie-v800-container .mt-112, #zunjie-v800-container .xs\:mt-112 {
    margin-top: 15.555556vw;
  }
  #zunjie-v800-container .mt-120, #zunjie-v800-container .xs\:mt-120 {
    margin-top: 16.666667vw;
  }
  #zunjie-v800-container .mt-144, #zunjie-v800-container .xs\:mt-144 {
    margin-top: 20vw;
  }
  #zunjie-v800-container .mt-160, #zunjie-v800-container .xs\:mt-160 {
    margin-top: 22.222222vw;
  }
  #zunjie-v800-container .mt-200, #zunjie-v800-container .xs\:mt-200 {
    margin-top: 27.777778vw;
  }
  #zunjie-v800-container .xs\:mt-0 {
    margin-top: 0;
  }
  #zunjie-v800-container .xs\:mb-0 {
    margin-bottom: 0;
  }
}
#zunjie-v800-container .pt-200, #zunjie-v800-container .lg\:pt-200 {
  padding-top: 10.416667vw;
}
#zunjie-v800-container .pb-200, #zunjie-v800-container .lg\:pb-200 {
  padding-bottom: 10.416667vw;
}
#zunjie-v800-container .py-200, #zunjie-v800-container .lg\:py-200 {
  padding-top: 10.416667vw;
  padding-bottom: 10.416667vw;
}
#zunjie-v800-container .pt-160, #zunjie-v800-container .lg\:pt-160 {
  padding-top: 8.333333vw;
}
#zunjie-v800-container .pb-160, #zunjie-v800-container .lg\:pb-160 {
  padding-bottom: 8.333333vw;
}
#zunjie-v800-container .py-160, #zunjie-v800-container .lg\:py-160 {
  padding-top: 8.333333vw;
  padding-bottom: 8.333333vw;
}
#zunjie-v800-container .pt-120, #zunjie-v800-container .lg\:pt-120 {
  padding-top: 6.25vw;
}
#zunjie-v800-container .pb-120, #zunjie-v800-container .lg\:pb-120 {
  padding-bottom: 6.25vw;
}
#zunjie-v800-container .pt-112, #zunjie-v800-container .lg\:pt-112 {
  padding-top: 5.833333vw;
}
#zunjie-v800-container .pt-80, #zunjie-v800-container .lg\:pt-80 {
  padding-top: 4.166667vw;
}
#zunjie-v800-container .pb-80, #zunjie-v800-container .lg\:pb-80 {
  padding-bottom: 4.166667vw;
}
#zunjie-v800-container .pt-40, #zunjie-v800-container .lg\:pt-40 {
  padding-top: 2.083333vw;
}
#zunjie-v800-container .px-16 {
  padding-left: 0.833333vw;
  padding-right: 0.833333vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .pt-200, #zunjie-v800-container .xs\:pt-200 {
    padding-top: 27.777778vw;
  }
  #zunjie-v800-container .pb-200, #zunjie-v800-container .xs\:pb-200 {
    padding-bottom: 27.777778vw;
  }
  #zunjie-v800-container .py-200, #zunjie-v800-container .xs\:py-200 {
    padding-top: 27.777778vw;
    padding-bottom: 27.777778vw;
  }
  #zunjie-v800-container .pt-160, #zunjie-v800-container .xs\:pt-160 {
    padding-top: 22.222222vw;
  }
  #zunjie-v800-container .pb-160, #zunjie-v800-container .xs\:pb-160 {
    padding-bottom: 22.222222vw;
  }
  #zunjie-v800-container .py-160, #zunjie-v800-container .xs\:py-160 {
    padding-top: 22.222222vw;
    padding-bottom: 22.222222vw;
  }
  #zunjie-v800-container .pt-120, #zunjie-v800-container .xs\:pt-120 {
    padding-top: 16.666667vw;
  }
  #zunjie-v800-container .pb-120, #zunjie-v800-container .xs\:pb-120 {
    padding-bottom: 16.666667vw;
  }
  #zunjie-v800-container .pt-88, #zunjie-v800-container .xs\:pt-88 {
    padding-top: 12.222222vw;
  }
  #zunjie-v800-container .pt-80, #zunjie-v800-container .xs\:pt-80 {
    padding-top: 11.111111vw;
  }
  #zunjie-v800-container .px-16, #zunjie-v800-container xs\:px-16 {
    padding-left: 2.222222vw;
    padding-right: 2.222222vw;
  }
  #zunjie-v800-container .xs\:pt-0 {
    padding-top: 0;
  }
  #zunjie-v800-container .xs\:pb-0 {
    padding-bottom: 0;
  }
  #zunjie-v800-container .xs\:py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  #zunjie-v800-container .xs\:px-0 {
    padding-left: 0;
    padding-right: 0;
  }
}
#zunjie-v800-container h2, #zunjie-v800-container h3 {
  line-height: 1.25;
  color: #fff;
}
#zunjie-v800-container h2 {
  font-size: 2.5vw;
}
#zunjie-v800-container h3 {
  font-size: 1.666667vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container h2 {
    font-size: 8.888889vw;
  }
  #zunjie-v800-container h3 {
    font-size: 4.444444vw;
  }
}
#zunjie-v800-container strong {
  font-weight: 400;
  color: #FFF2E3;
}
#zunjie-v800-container .note {
  font-size: max(8px, 0.625vw);
  color: rgba(109, 109, 115, 0.6);
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .note {
    font-size: max(8px, 1.714286vw);
  }
}
@media (max-aspect-ratio: 7/10) {
  #zunjie-v800-container .note {
    font-size: max(8px, 3.333333vw);
  }
}
#zunjie-v800-container [data-footnote] {
  font-size: 0.6em;
  cursor: pointer;
}
#zunjie-v800-container .nowrap {
  display: inline-block;
  white-space: nowrap;
}
#zunjie-v800-container .text-gradient {
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
#zunjie-v800-container .text-left {
  text-align: left;
}
#zunjie-v800-container .text-center {
  text-align: center;
}
#zunjie-v800-container .text-right {
  text-align: right;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .xs\:text-left {
    text-align: left;
  }
  #zunjie-v800-container .xs\:text-center {
    text-align: center;
  }
  #zunjie-v800-container .xs\:text-right {
    text-align: right;
  }
}
#zunjie-v800-container .permalink {
  display: inline-flex;
  align-items: center;
  line-height: inherit;
  transition: opacity 300ms ease-out;
  color: inherit;
  --permalink-arrow: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"%3E%3Cpath d="M14.05 10.152L9.654 5.75a1.2 1.2 0 1 0-1.7 1.7L11.495 11l-3.544 3.541a1.2 1.2 0 1 0 1.7 1.7l4.399-4.386a1.21 1.21 0 0 0 0-1.7" fill="%23fff"/%3E%3C/svg%3E') center / 100% no-repeat;
  --permalink-arrow-purple: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"%3E%3Cpath d="M14.05 10.152L9.654 5.75a1.2 1.2 0 1 0-1.7 1.7L11.495 11l-3.544 3.541a1.2 1.2 0 1 0 1.7 1.7l4.399-4.386a1.21 1.21 0 0 0 0-1.7" fill="%238f6ab4"/%3E%3C/svg%3E') center / 100% no-repeat;
}
#zunjie-v800-container .permalink::after {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  content: "";
  background: var(--permalink-arrow);
}
html[dir=rtl] #zunjie-v800-container .permalink::after {
  transform: rotate(180deg);
}
@media (hover: hover) and (pointer: fine) {
  #zunjie-v800-container .permalink::after {
    transition: transform 300ms ease-out;
  }
  #zunjie-v800-container .permalink:hover {
    opacity: 0.6;
  }
  #zunjie-v800-container .permalink:hover::after {
    transform: translateX(4px);
  }
  html[dir=rtl] #zunjie-v800-container .permalink:hover::after {
    transform: rotate(180deg) translateX(4px);
  }
}
#zunjie-v800-container .permalink.arrow-purple::after {
  background: var(--permalink-arrow-purple);
}
#zunjie-v800-container .video-container {
  position: relative;
}
#zunjie-v800-container .inline-video {
  pointer-events: none;
}
#zunjie-v800-container .start-frame-mask::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: opacity 200ms 300ms ease-out;
  opacity: 0;
  background: var(--start-frame) center/cover no-repeat;
}
#zunjie-v800-container .start-frame-mask.show-start-frame::after {
  opacity: 1;
}
#zunjie-v800-container .play-pause-button {
  position: absolute;
  z-index: 2;
  right: 1.25vw;
  bottom: 1.25vw;
  overflow: hidden;
  width: 2.083333vw;
  height: 2.083333vw;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 300ms ease-out;
  border-radius: 50%;
  background-color: rgba(var(--arrownav-background-color), 1);
  --arrownav-background-color: 52, 53, 54;
}
@media (hover: hover) and (pointer: fine) {
  #zunjie-v800-container .play-pause-button:hover {
    background-color: rgba(var(--arrownav-background-color), 0.6);
  }
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .play-pause-button {
    right: 4.444444vw;
    bottom: 4.444444vw;
    width: 8.888889vw;
    height: 8.888889vw;
  }
}
#zunjie-v800-container .play-pause-button .button-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
#zunjie-v800-container .playing .icon-pause, #zunjie-v800-container .paused .icon-play, #zunjie-v800-container .ended .icon-replay {
  display: block;
}
#zunjie-v800-container .effect-fade .play-pause-button {
  transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
  transition-duration: 100ms;
  transition-property: transform, opacity;
  transform: scale(0.8);
  opacity: 0;
}
#zunjie-v800-container .effect-fade .swiper-slide-active .play-pause-button {
  transition-delay: 620ms;
  transform: scale(1);
  opacity: 1;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .effect-fade .swiper-slide-active .play-pause-button {
    transition-delay: 420ms;
  }
}
#zunjie-v800-container.no-inline-video .play-pause-button {
  display: none;
}
#zunjie-v800-container .replay-button {
  cursor: default;
  transition: opacity 300ms;
  pointer-events: none;
  opacity: 0;
}
#zunjie-v800-container .ended .replay-button {
  cursor: pointer;
  pointer-events: all;
  opacity: 1;
}
#zunjie-v800-container .modal-button-container {
  display: flex;
  justify-content: center;
}
#zunjie-v800-container .modal-button-container .modal-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 3.333333vw;
  padding-right: 0.833333vw;
  padding-left: 1.666667vw;
  cursor: pointer;
  transition: background-color 300ms ease-out;
  border-radius: 999px;
  background-color: rgba(var(--arrownav-background-color), 1);
  --arrownav-background-color: 52, 53, 54;
}
#zunjie-v800-container .modal-button-container .modal-button:hover {
  background-color: rgba(var(--arrownav-background-color), 0.6);
}
#zunjie-v800-container .modal-button-container .button-copy {
  font-size: 0.9375vw;
  font-weight: 500;
  color: #fff;
}
#zunjie-v800-container .modal-button-container .button-icon {
  width: 1.666667vw;
  margin-left: 0.833333vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .modal-button-container .modal-button {
    height: 6.857143vw;
    padding-right: 1.714286vw;
    padding-left: 3.428571vw;
  }
  #zunjie-v800-container .modal-button-container .button-copy {
    font-size: 2vw;
  }
  #zunjie-v800-container .modal-button-container .button-icon {
    width: 3.428571vw;
    margin-left: 1.714286vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #zunjie-v800-container .modal-button-container .modal-button {
    height: 13.333333vw;
    padding-right: 3.333333vw;
    padding-left: 6.666667vw;
  }
  #zunjie-v800-container .modal-button-container .button-copy {
    font-size: 3.888889vw;
  }
  #zunjie-v800-container .modal-button-container .button-icon {
    width: 6.666667vw;
    margin-left: 3.333333vw;
  }
}
#zunjie-v800-container .section-modal {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
  transition-duration: 600ms;
  transition-property: backdrop-filter, background-color;
  transform: translateZ(0);
  outline: 0;
  background-color: #000000;
}
#zunjie-v800-container .section-modal.modal-open .modal-container {
  transition: transform 800ms cubic-bezier(0.65, 0.05, 0.36, 1), opacity 200ms ease-in;
  opacity: 1;
}
.has-modal-l #zunjie-v800-container .section-modal .modal-container {
  transform: translate3d(0, 0, 0);
}
#zunjie-v800-container .section-modal.modal-focus {
  overflow: auto !important;
  padding-inline-end: 0;
}
#zunjie-v800-container .section-modal.modal-focus .modal-container {
  transition: opacity 600ms;
}
#zunjie-v800-container .section-modal .modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
#zunjie-v800-container .section-modal .modal-wrapper {
  position: relative;
  width: 81.25vw;
}
#zunjie-v800-container .section-modal .modal-content {
  position: relative;
  z-index: 1;
  overflow: hidden;
  flex-shrink: 0;
  padding-bottom: 4.166667vw;
  border-radius: 0.833333vw;
  background-color: #000;
}
#zunjie-v800-container .section-modal .modal-close-container {
  position: absolute;
  top: 1.666667vw;
  right: 1.666667vw;
  bottom: 0;
  width: 2.083333vw;
}
@supports (width: round(up, 1px, 2px)) {
  #zunjie-v800-container .section-modal .modal-close-container {
    width: round(up, 2.083333vw, 2px);
  }
}
#zunjie-v800-container .section-modal .modal-close-button {
  position: sticky;
  z-index: 10;
  top: 3.333333vw;
  width: 2.083333vw;
  height: 2.504167vw;
}
@supports (width: round(up, 1px, 2px)) {
  #zunjie-v800-container .section-modal .modal-close-button {
    width: round(up, 2.083333vw, 2px);
    height: round(up, 2.504167vw, 2px);
  }
}
#zunjie-v800-container .section-modal .modal-close-button {
  cursor: pointer;
  outline: 0;
  flex-shrink: 0;
  transition: all 0.3s ease-out;
}
#zunjie-v800-container .section-modal .modal-close-button .arrownav-item {
  width: 2.083333vw;
  height: 2.504167vw;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top;
          mask-position: top;
}
@supports (width: round(up, 1px, 2px)) {
  #zunjie-v800-container .section-modal .modal-close-button .arrownav-item {
    width: round(up, 2.083333vw, 2px);
    height: round(up, 2.504167vw, 2px);
  }
}
#zunjie-v800-container .section-modal .modal-close-button .arrownav-item .arrow-icon {
  width: 100%;
  height: 100%;
}
#zunjie-v800-container .section-modal .modal-close-button .arrownav-item-light-container {
  width: 100%;
  height: 100%;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
#zunjie-v800-container .section-modal .modal-close-button .icon-arrow-img {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
#zunjie-v800-container .section-modal .modal-close-button .icon-arrow-bg {
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  z-index: 2;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
#zunjie-v800-container .section-modal .modal-close-button .icon-arrow-border {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
#zunjie-v800-container .section-modal .modal-close-button .icon-arrow-border-light {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
#zunjie-v800-container .section-modal .modal-close-button .icon-arrow-border-light-inner {
  width: 3.417188vw;
  height: 17.765625vw;
  top: -11.614583vw;
  left: 0.802083vw;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: rotate(240deg) translate(0px);
}
@media (hover: hover) and (pointer: fine) {
  #zunjie-v800-container .section-modal .modal-close-button:hover .arrownav-item-light {
    transform: translate(50%, 14%) rotate(240deg);
  }
  #zunjie-v800-container .section-modal .modal-close-button:hover .icon-arrow-border-light-inner {
    transition: transform 0.8s ease-out;
    transform: rotate(240deg) translate(-6.291667vw);
  }
}
#zunjie-v800-container .section-modal .modal-close-icon {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-modal .modal-wrapper {
    width: 95.555556vw;
  }
  #zunjie-v800-container .section-modal .modal-content {
    padding-bottom: 19.444444vw;
    border-radius: 2.222222vw;
  }
  #zunjie-v800-container .section-modal .modal-close-container {
    top: 3.333333vw;
    right: 3.333333vw;
    width: 11.111111vw;
  }
  #zunjie-v800-container .section-modal .modal-close-button {
    top: 3.333333vw;
  }
}
#zunjie-v800-container .swiper:not(.swiper-fade) .swiper-wrapper, #zunjie-v800-container .swiper:not(.swiper-fade) [data-swiper-parallax-x], #zunjie-v800-container .swiper:not(.swiper-fade) [data-swiper-parallax-y], #zunjie-v800-container .swiper:not(.swiper-fade) [data-swiper-parallax-opacity], #zunjie-v800-container .swiper:not(.swiper-fade) [data-swiper-parallax-scale], #zunjie-v800-container .swiper:not(.swiper-fade) .transform-item {
  transition-timing-function: cubic-bezier(0.46, 0.03, 0.52, 0.96);
}
#zunjie-v800-container .swiper.swiper-touched .swiper-wrapper, #zunjie-v800-container .swiper.swiper-touched [data-swiper-parallax-x], #zunjie-v800-container .swiper.swiper-touched [data-swiper-parallax-y], #zunjie-v800-container .swiper.swiper-touched [data-swiper-parallax-opacity], #zunjie-v800-container .swiper.swiper-touched [data-swiper-parallax-scale], #zunjie-v800-container .swiper.swiper-touched .transform-item {
  transition-timing-function: ease !important;
}
#zunjie-v800-container .swiper.swiper-fade .swiper-slide, #zunjie-v800-container .swiper.swiper-fade .transform-item {
  transition-timing-function: cubic-bezier(0.65, 0.05, 0.36, 1);
}
#zunjie-v800-container .swiper.swiper-click .swiper-slide:not(.swiper-slide-visible) {
  cursor: pointer;
}
#zunjie-v800-container .swiper.swiper-click-inside .swiper-slide {
  cursor: pointer;
}
#zunjie-v800-container .swiper.swiper-click-inside .swiper-slide-active, #zunjie-v800-container .swiper.swiper-click-inside .swiper-slide-next {
  cursor: auto;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .swiper.swiper-click-inside .swiper-slide-next {
    cursor: pointer;
  }
}
#zunjie-v800-container .arrownav-list {
  display: flex;
  --arrownav-background-color: 0, 0, 0;
}
#zunjie-v800-container .arrownav-list .arrownav-item {
  position: relative;
  width: 2.5vw;
  height: 2.916667vw;
}
@supports (width: round(down, 1px, 2px)) {
  #zunjie-v800-container .arrownav-list .arrownav-item {
    width: round(down, 2.5vw, 2px);
    height: round(down, 2.916667vw, 2px);
  }
}
#zunjie-v800-container .arrownav-list .arrownav-item {
  cursor: pointer;
  outline: 0;
  flex-shrink: 0;
  transition: all 0.3s ease-out;
  backdrop-filter: blur(0.729167vw);
}
#zunjie-v800-container .arrownav-list .arrownav-item .arrownav-item-light-container {
  width: 100%;
  height: 100%;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
#zunjie-v800-container .arrownav-list .arrownav-item .icon-arrow-img {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
#zunjie-v800-container .arrownav-list .arrownav-item .icon-arrow-bg {
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  z-index: 2;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
#zunjie-v800-container .arrownav-list .arrownav-item .icon-arrow-border {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
#zunjie-v800-container .arrownav-list .arrownav-item .icon-arrow-border-light {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0Ni42NjciIHZpZXdCb3g9IjAgMCA0MCA0Ni42NjciPjxwYXRoIGQ9Ik0zMS41NTQsMGE2LDYsMCwwLDEsNS4xODMsMi45NzdsOC4xNjcsMTRhNiw2LDAsMCwxLDAsNi4wNDZsLTguMTY3LDE0QTYsNiwwLDAsMSwzMS41NTQsNDBIMTUuMTEzQTYsNiwwLDAsMSw5LjkzLDM3LjAyM2wtOC4xNjctMTRhNiw2LDAsMCwxLDAtNi4wNDZsOC4xNjctMTRBNiw2LDAsMCwxLDE1LjExMywwWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNDApIHJvdGF0ZSg5MCkiLz48L3N2Zz4=");
  mask-size: 100%;
  -webkit-mask-size: 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
#zunjie-v800-container .arrownav-list .arrownav-item .icon-arrow-border-light-inner {
  width: 3.417188vw;
  height: 17.765625vw;
  top: -11.614583vw;
  left: 0.802083vw;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: rotate(240deg) translate(0px);
}
@media (hover: hover) and (pointer: fine) {
  #zunjie-v800-container .arrownav-list .arrownav-item:hover:not(.arrownav-disabled) .arrownav-item-light {
    transform: translate(50%, 14%) rotate(240deg);
  }
  #zunjie-v800-container .arrownav-list .arrownav-item:hover:not(.arrownav-disabled) .icon-arrow-border-light-inner {
    transition: transform 0.8s ease-out;
    transform: rotate(240deg) translate(-6.291667vw);
  }
}
#zunjie-v800-container .arrownav-list .arrownav-disabled {
  cursor: default;
  background-color: rgba(var(--arrownav-background-color), 0.5);
}
#zunjie-v800-container .arrownav-list .arrownav-next {
  margin-left: 1.25vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .arrownav-list .arrownav-item {
    width: 5.714286vw;
    height: 5.714286vw;
  }
  #zunjie-v800-container .arrownav-list .arrownav-next {
    margin-left: 2.857143vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #zunjie-v800-container .arrownav-list .arrownav-item {
    width: 11.111111vw;
    height: 11.111111vw;
  }
  #zunjie-v800-container .arrownav-list .arrownav-next {
    margin-left: 4.444444vw;
  }
}
#zunjie-v800-container .section-carousel {
  overflow: hidden;
}
#zunjie-v800-container .section-carousel .swiper {
  overflow: visible;
}
#zunjie-v800-container .section-carousel .inline-video {
  pointer-events: none;
}
#zunjie-v800-container .section-carousel .note-overlay {
  position: absolute;
  right: 1.25vw;
  bottom: 1.25vw;
}
#zunjie-v800-container .section-carousel .slide-content {
  width: 90%;
  padding-top: 2.083333vw;
  padding-left: 0.833333vw;
  padding-right: 0.833333vw;
  cursor: auto;
}
#zunjie-v800-container .section-carousel .arrownav-list {
  position: relative;
  height: 2.604167vw;
}
#zunjie-v800-container .section-carousel .arrownav-item {
  position: absolute;
  bottom: 0;
}
#zunjie-v800-container .section-carousel .arrownav-prev {
  right: 3.645833vw;
}
#zunjie-v800-container .section-carousel .arrownav-next {
  right: 0;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-carousel .note-overlay {
    right: 1.714286vw;
    bottom: 1.714286vw;
  }
  #zunjie-v800-container .section-carousel .slide-content {
    width: 100% !important;
    padding-top: 3.428571vw;
    padding-left: 1.142857vw;
    padding-right: 1.142857vw;
  }
  #zunjie-v800-container .section-carousel .arrownav-list {
    height: 6vw;
  }
  #zunjie-v800-container .section-carousel .arrownav-prev {
    right: 8.714286vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #zunjie-v800-container .section-carousel .note-overlay {
    right: 3.333333vw;
    bottom: 3.333333vw;
  }
  #zunjie-v800-container .section-carousel .slide-content {
    padding-top: 6.666667vw;
    padding-left: 2.222222vw;
    padding-right: 2.222222vw;
  }
  #zunjie-v800-container .section-carousel .arrownav-list {
    height: 11.666667vw;
  }
  #zunjie-v800-container .section-carousel .arrownav-prev {
    right: 16.944444vw;
  }
}
#zunjie-v800-container .carousel-col-2 .swiper-slide {
  width: 33.125vw;
}
#zunjie-v800-container .carousel-col-2 .slide-content {
  width: 80%;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .carousel-col-2 .swiper-slide {
    width: 100%;
  }
}
@media (max-aspect-ratio: 7/10) {
  #zunjie-v800-container .carousel-col-2 .swiper-slide {
    width: 100%;
  }
}
#zunjie-v800-container .gallery-container {
  position: relative;
  overflow: hidden;
}
#zunjie-v800-container .gallery-container .gallery-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#zunjie-v800-container .gallery-container .gallery {
  position: relative;
  z-index: 3;
}
#zunjie-v800-container .gallery-container.background-swiper .gallery {
  width: 67.5vw;
  margin: 0 auto;
}
#zunjie-v800-container .gallery-container .gallery-wrapper {
  display: flex;
}
#zunjie-v800-container .gallery-container .gallery-slide {
  position: relative;
  width: 100%;
}
#zunjie-v800-container .gallery-container .gallery-slide + .gallery-slide {
  margin-left: -100%;
}
#zunjie-v800-container .gallery-container .clip-item {
  position: relative;
  transition: clip-path 0s 800ms;
  will-change: transform;
}
#zunjie-v800-container .gallery-container .clip-item img,
#zunjie-v800-container .gallery-container .clip-item video {
  transition: transform 0s 800ms;
  transform: scale(1.2);
  will-change: transform;
}
#zunjie-v800-container .gallery-container .current .clip-item {
  z-index: 1;
  transition: clip-path 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
}
#zunjie-v800-container .gallery-container .current img,
#zunjie-v800-container .gallery-container .current video {
  transition: transform 800ms;
  transform: scale(1.001);
  will-change: transform;
}
#zunjie-v800-container .gallery-container .current .clip-item {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
#zunjie-v800-container .gallery-container .left .clip-item {
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
#zunjie-v800-container .gallery-container .right .clip-item {
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
#zunjie-v800-container .gallery-container .swiper {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#zunjie-v800-container .tabnav-section, #zunjie-v800-container .tabnav-custom-section {
  position: relative;
  overflow: hidden;
}
#zunjie-v800-container .tabnav-container {
  position: relative;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .tabnav-content {
    --tabnav-space: 10vw;
  }
}
#zunjie-v800-container .background-swiper {
  padding-top: 10vw;
  padding-bottom: 14.479167vw;
}
#zunjie-v800-container .background-swiper .gallery-background-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 800ms cubic-bezier(0.65, 0.05, 0.36, 1);
  opacity: 0;
  will-change: transform;
}
#zunjie-v800-container .background-swiper .gallery-background-slide.current {
  opacity: 1;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .gallery-container .gallery-background {
    height: 94.444444vw;
  }
  #zunjie-v800-container .gallery-container.background-swiper {
    padding-top: 13.888889vw;
    padding-bottom: 0;
  }
  #zunjie-v800-container .gallery-container.background-swiper .gallery {
    width: 82.222222vw;
  }
  #zunjie-v800-container .gallery-container.background-swiper .tabnav-content {
    bottom: auto;
    margin-top: 22.777778vw;
  }
  #zunjie-v800-container .tabnav-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 var(--tabnav-space), #000 calc(100% - var(--tabnav-space)), transparent);
            mask-image: linear-gradient(90deg, transparent, #000 var(--tabnav-space), #000 calc(100% - var(--tabnav-space)), transparent);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #zunjie-v800-container .tabnav-track::-webkit-scrollbar {
    display: none;
  }
  #zunjie-v800-container .tabnav-container.is-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  #zunjie-v800-container .tabnav-container.is-scroll::-webkit-scrollbar {
    display: none;
  }
}
#zunjie-v800-container .disable-transitions .tabnav-item, #zunjie-v800-container .disable-transitions .tabnav-indicator, #zunjie-v800-container .disable-transitions .tabnav-indicator::after, #zunjie-v800-container .disable-transitions .tabnav-caption {
  transition: none !important;
}
#zunjie-v800-container .tabnav-wrapper {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .tabnav-wrapper {
    padding-right: 10vw;
    padding-left: 10vw;
  }
}
#zunjie-v800-container .tabnav-list {
  position: relative;
  z-index: 10;
  display: flex;
}
#zunjie-v800-container .tabnav-item {
  flex-shrink: 0;
}
#zunjie-v800-container .tabnav-label sup {
  pointer-events: none;
}
#zunjie-v800-container .tabnav-indicator {
  overflow: hidden;
  pointer-events: none;
  border-radius: 999px;
}
#zunjie-v800-container .tabnav-line-x .tabnav-track, #zunjie-v800-container .tabnav-pill .tabnav-track {
  display: flex;
}
#zunjie-v800-container .tabnav-line-x .tabnav-container, #zunjie-v800-container .tabnav-pill .tabnav-container {
  margin-right: auto;
  margin-left: auto;
}
#zunjie-v800-container .tabnav-line-x .tabnav-item, #zunjie-v800-container .tabnav-pill .tabnav-item {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition-timing-function: ease-out;
  transition-duration: 200ms;
  transform: translateZ(0);
  white-space: nowrap;
  color: #fff;
  outline: 0;
  backface-visibility: hidden;
}
#zunjie-v800-container .tabnav-line-x .tabnav-item.current, #zunjie-v800-container .tabnav-pill .tabnav-item.current {
  cursor: default;
  transition-duration: 400ms;
}
#zunjie-v800-container .tabnav-line-x .tabnav-label, #zunjie-v800-container .tabnav-pill .tabnav-label {
  font-size: inherit;
  color: inherit;
}
#zunjie-v800-container .tabnav-line-x .tabnav-list {
  gap: 2.916667vw;
  margin-top: -0.416667vw;
}
#zunjie-v800-container .tabnav-line-x .tabnav-item {
  padding-top: 0.416667vw;
  padding-bottom: 0.416667vw;
  font-size: 1.25vw;
  line-height: 1.25;
  transition-property: opacity;
  opacity: 0.4;
  will-change: opacity;
}
@media (hover: hover) and (pointer: fine) {
  #zunjie-v800-container .tabnav-line-x .tabnav-item:not(.current):hover {
    opacity: 0.6;
  }
}
#zunjie-v800-container .tabnav-line-x .tabnav-item.current {
  opacity: 1;
}
#zunjie-v800-container .tabnav-line-x .tabnav-indicator {
  position: relative;
  width: 100%;
  height: 2px;
  margin-top: 0.416667vw;
}
#zunjie-v800-container .tabnav-line-x .tabnav-indicator::after {
  width: var(--tabnav-size, 0);
  height: 100%;
  transition-property: width, transform;
  transform: translateX(var(--tabnav-start, 0));
}
#zunjie-v800-container .tabnav-line-y .tabnav-list {
  flex-direction: column;
  gap: 2.083333vw;
  padding-left: 2.083333vw;
}
#zunjie-v800-container .tabnav-line-y .tabnav-item {
  font-size: 0;
}
#zunjie-v800-container .tabnav-line-y .tabnav-item.current .tabnav-label, #zunjie-v800-container .tabnav-line-y .tabnav-item.current .tabnav-caption {
  opacity: 1;
}
#zunjie-v800-container .tabnav-line-y .tabnav-item.current .tabnav-label {
  cursor: default;
  transition-duration: 400ms;
}
#zunjie-v800-container .tabnav-line-y .tabnav-item:not(.current) .tabnav-collapse {
  height: 0;
}
#zunjie-v800-container .tabnav-line-y .tabnav-label {
  display: inline-block;
  font-size: 1.25vw;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition-timing-function: ease-out;
  transition-duration: 200ms;
  transition-property: opacity;
  opacity: 0.4;
  backface-visibility: hidden;
  will-change: opacity;
}
@media (hover: hover) and (pointer: fine) {
  #zunjie-v800-container .tabnav-line-y .tabnav-label:hover {
    opacity: 0.6;
  }
}
#zunjie-v800-container .tabnav-line-y .tabnav-collapse {
  overflow: hidden;
  transition: height 400ms ease-out;
}
#zunjie-v800-container .tabnav-line-y .tabnav-caption {
  padding-top: 0.833333vw;
  font-size: 1.041667vw;
  transition-duration: 400ms;
  transition-property: opacity;
  opacity: 0;
}
#zunjie-v800-container .tabnav-line-y .tabnav-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
}
#zunjie-v800-container .tabnav-line-y .tabnav-indicator::after {
  width: 100%;
  height: var(--tabnav-size, 0);
  transition-property: height, transform;
  transform: translateY(var(--tabnav-start, 0));
}
#zunjie-v800-container .tabnav-line-y .tabnav-caption-list {
  display: none;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .tabnav-line-y .tabnav-container {
    margin-right: auto;
    margin-left: auto;
  }
  #zunjie-v800-container .tabnav-line-y .tabnav-list {
    flex-direction: row;
    padding-left: 0;
  }
  #zunjie-v800-container .tabnav-line-y .tabnav-label {
    font-size: inherit;
    white-space: nowrap;
  }
  #zunjie-v800-container .tabnav-line-y .tabnav-collapse {
    display: none;
  }
  #zunjie-v800-container .tabnav-line-y .tabnav-caption-list {
    display: grid;
    text-align: center;
  }
  #zunjie-v800-container .tabnav-line-y .tabnav-caption {
    position: relative;
    width: 100%;
    padding-top: 0;
    font-size: inherit;
  }
  #zunjie-v800-container .tabnav-line-y .tabnav-caption.current {
    opacity: 1;
  }
  #zunjie-v800-container .tabnav-line-y .tabnav-indicator {
    position: relative;
    width: 100%;
  }
  #zunjie-v800-container .tabnav-line-y .tabnav-indicator::after {
    width: var(--tabnav-size, 0);
    height: 100%;
    transition-property: width, transform;
    transform: translateX(var(--tabnav-start, 0));
  }
  #zunjie-v800-container .tabnav-line-y .tabnav-caption-list {
    display: grid;
  }
}
#zunjie-v800-container .tabnav-line-x .tabnav-indicator::before, #zunjie-v800-container .tabnav-line-y .tabnav-indicator::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(181, 172, 162, 0.4);
}
#zunjie-v800-container .tabnav-line-x .tabnav-indicator::after, #zunjie-v800-container .tabnav-line-y .tabnav-indicator::after {
  position: relative;
  display: block;
  overflow: hidden;
  content: "";
  transition-timing-function: ease-out;
  transition-duration: 400ms;
  border-radius: 999px;
  background-color: #FFF2E3;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .tabnav-line-x .tabnav-list, #zunjie-v800-container .tabnav-line-y .tabnav-list {
    gap: 11.111111vw;
    margin-top: -3.333333vw;
  }
  #zunjie-v800-container .tabnav-line-x .tabnav-item, #zunjie-v800-container .tabnav-line-y .tabnav-item {
    padding-top: 3.333333vw;
    padding-bottom: 3.333333vw;
    font-size: 5.555556vw;
  }
}
#zunjie-v800-container .tabnav-pill .tabnav-wrapper {
  display: flex;
  overflow: hidden;
  align-items: center;
  height: 2.916667vw;
  padding: 0.208333vw;
  border-radius: 999px;
  background-color: #343536;
}
#zunjie-v800-container .tabnav-pill .tabnav-list {
  height: 100%;
}
#zunjie-v800-container .tabnav-pill .tabnav-item {
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 1.25vw;
  padding-left: 1.25vw;
  font-size: 0.9375vw;
  transition-property: color;
  color: rgba(255, 255, 255, 0.6);
}
@media (hover: hover) and (pointer: fine) {
  #zunjie-v800-container .tabnav-pill .tabnav-item:not(.current):hover {
    color: rgba(255, 255, 255, 0.8);
  }
}
#zunjie-v800-container .tabnav-pill .tabnav-item.current {
  transition-delay: 160ms;
  transition-duration: 240ms;
  color: #000;
}
#zunjie-v800-container .tabnav-pill .tabnav-indicator {
  position: absolute;
  width: var(--tabnav-size, 0);
  height: 2.5vw;
  transition-timing-function: ease-out;
  transition-duration: 400ms;
  transition-property: width, transform;
  transform: translateX(var(--tabnav-start, 0));
  background-color: #fff;
}
#zunjie-v800-container .tabnav-pill .stack-list {
  text-align: center;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .tabnav-pill .tabnav-wrapper {
    height: 6.857143vw;
    padding: 0.571429vw;
  }
  #zunjie-v800-container .tabnav-pill .tabnav-item {
    padding-right: 2.857143vw;
    padding-left: 2.857143vw;
    font-size: 2vw;
  }
  #zunjie-v800-container .tabnav-pill .tabnav-indicator {
    width: var(--tabnav-size, 0);
    height: 5.714286vw;
    transform: translateX(var(--tabnav-start, 0));
  }
}
@media (max-aspect-ratio: 7/10) {
  #zunjie-v800-container .tabnav-pill .tabnav-wrapper {
    height: 13.333333vw;
    padding: 1.111111vw;
  }
  #zunjie-v800-container .tabnav-pill .tabnav-item {
    padding-right: 5.555556vw;
    padding-left: 5.555556vw;
    font-size: 3.888889vw;
  }
  #zunjie-v800-container .tabnav-pill .tabnav-indicator {
    height: 11.111111vw;
  }
}
#zunjie-v800-container .player-button {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  --button-background: 255, 255, 255;
}
#zunjie-v800-container .player-button .button-copy {
  line-height: 1.25;
  color: #fff;
}
#zunjie-v800-container .player-button .button-icon {
  transition: background-color 300ms ease-out;
  border-radius: 50%;
  background-color: rgba(var(--button-background), 0);
}
#zunjie-v800-container .player-button.button-normal .button-copy {
  font-size: 0.9375vw;
  color: #FFF2E3;
}
#zunjie-v800-container .player-button.button-normal .button-icon {
  width: 1.666667vw;
  margin-left: 0.416667vw;
}
#zunjie-v800-container .player-button.button-normal .button-icon svg {
  width: 100%;
  height: 100%;
}
#zunjie-v800-container .player-button.button-normal .button-icon svg path {
  transition: opacity 300ms ease-out;
}
#zunjie-v800-container .player-button.button-large .button-copy {
  font-size: 1.25vw;
}
#zunjie-v800-container .player-button.button-large .button-icon {
  width: 2.916667vw;
  margin-left: 0.833333vw;
}
#zunjie-v800-container .player-button.button-dark {
  --button-background: 0, 0, 0;
}
@media (hover: hover) and (pointer: fine) {
  #zunjie-v800-container .player-button:hover .button-icon svg path {
    opacity: 0.6;
  }
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .player-button.button-normal .button-copy {
    font-size: 3.888889vw;
  }
  #zunjie-v800-container .player-button.button-normal .button-icon {
    width: 6.666667vw;
    margin-left: 2.222222vw;
  }
  #zunjie-v800-container .player-button.button-large .button-copy {
    font-size: 4.444444vw;
  }
  #zunjie-v800-container .player-button.button-large .button-icon {
    width: 8.888889vw;
    margin-left: 3.333333vw;
  }
}
#zunjie-v800-container .section-header {
  position: relative;
  z-index: 10;
}
#zunjie-v800-container .glow-headline {
  position: relative;
  z-index: 1;
  font-size: 5vw;
  font-weight: 700;
  text-align: center;
}
#zunjie-v800-container .glow-headline span {
  background-color: transparent;
}
#zunjie-v800-container .glow-headline .glow-container {
  position: relative;
  display: inline-flex;
  overflow: visible;
  justify-content: center;
}
#zunjie-v800-container .glow-headline .glow-gradient::before {
  z-index: 5;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(180deg, #564172, #ad97c9);
  -webkit-background-clip: text;
  background-clip: text;
}
#zunjie-v800-container .glow-headline .glow-blur {
  position: absolute;
  display: inline-flex;
  overflow: visible;
  justify-content: center;
  width: 100%;
}
#zunjie-v800-container .glow-headline .glow-blur::before, #zunjie-v800-container .glow-headline .glow-blur::after {
  position: absolute;
  top: 0;
  display: inline-block;
  content: attr(data-text);
  transform: translateZ(0);
  opacity: 0;
}
#zunjie-v800-container .glow-headline .glow-blur-1::before {
  z-index: 1;
  color: #b06cff;
  filter: blur(18px);
  -webkit-filter: blur(18px);
}
#zunjie-v800-container .glow-headline .glow-blur-1::after {
  z-index: 2;
  color: #c16cff;
  filter: blur(9px);
  -webkit-filter: blur(9px);
}
#zunjie-v800-container .glow-headline .glow-blur-2::before {
  z-index: 3;
  color: #d0a2ff;
  filter: blur(5px);
  -webkit-filter: blur(5px);
}
#zunjie-v800-container .glow-headline .glow-blur-2::after {
  display: none;
}
#zunjie-v800-container .glow-headline .glow-white {
  position: relative;
  z-index: 4;
  opacity: 0.8;
  color: #fff;
}
#zunjie-v800-container .glow-headline .glow-purple {
  background-image: linear-gradient(180deg, #564172, #ad97c9 25%, #9583ac 50%);
  background-position-y: 100%;
  background-size: 100% 300%;
}
#zunjie-v800-container .glow-headline.animated .glow-blur::before, #zunjie-v800-container .glow-headline.animated .glow-blur::after, #zunjie-v800-container .glow-headline.animated .glow-white {
  transition: opacity 1.2s;
  opacity: 1;
}
#zunjie-v800-container .glow-headline.animated .glow-purple {
  transition: opacity 1.2s, background-position-y 0.6s;
  opacity: 1;
  background-position-y: 0;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .glow-headline {
    font-size: 6.857143vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #zunjie-v800-container .glow-headline {
    font-size: 13.333333vw;
  }
}
#zunjie-v800-container .card-border {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1px 1px 0;
  pointer-events: none;
  background-image: linear-gradient(180deg, #3b3343, rgba(29, 25, 33, 0.5), #000);
}
#zunjie-v800-container .card-border-mask {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #211e2b, #0e0c15);
}
#zunjie-v800-container .hero-sku {
  margin-top: 4.166667vw;
  font-size: 0;
  text-align: center;
}
#zunjie-v800-container .hero-sku .pricing {
  font-size: 1.458333vw;
  line-height: 1.25;
  color: #000;
}
#zunjie-v800-container .hero-sku .from {
  font-size: 0.677083vw;
}
#zunjie-v800-container .hero-sku [data-footnote] {
  font-size: 1em;
  vertical-align: inherit;
}
#zunjie-v800-container .hero-sku .buy-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  transition: opacity 300ms ease-out;
  color: #fff;
  border-radius: 6px;
  background-color: #000;
}
@media (hover: hover) and (pointer: fine) {
  #zunjie-v800-container .hero-sku .buy-cta:hover {
    opacity: 0.8;
  }
}
#zunjie-v800-container .hero-sku.sku-light .pricing {
  color: #fff;
}
#zunjie-v800-container .hero-sku.sku-light .buy-cta {
  color: #000;
  background-color: #fff;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .hero-sku {
    margin-top: 8.571429vw;
  }
  #zunjie-v800-container .hero-sku .pricing {
    font-size: 2.857143vw;
  }
  #zunjie-v800-container .hero-sku .from {
    font-size: 1.857143vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #zunjie-v800-container .hero-sku {
    margin-top: 15.555556vw;
  }
  #zunjie-v800-container .hero-sku .pricing {
    font-size: 5.555556vw;
  }
  #zunjie-v800-container .hero-sku .from {
    font-size: 3.611111vw;
  }
}
#zunjie-v800-container .section-highlights {
  overflow: hidden;
}
#zunjie-v800-container .section-highlights .swiper {
  overflow: visible;
}
#zunjie-v800-container .section-highlights .swiper-slide {
  overflow: hidden;
}
#zunjie-v800-container .section-highlights .swiper-slide:not(.swiper-slide-active) {
  cursor: pointer;
}
#zunjie-v800-container .section-highlights .slide-media {
  width: 100%;
  height: 37.5vw;
}
#zunjie-v800-container .section-highlights .slide-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#zunjie-v800-container .section-highlights .slide-content {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  margin: 2.291667vw 2.5vw;
  font-size: 1.666667vw;
}
#zunjie-v800-container .section-highlights .slide-title {
  font-size: 1.666667vw;
  line-height: 1.5;
}
#zunjie-v800-container .section-highlights .slide-title-01 {
  color: #000;
}
#zunjie-v800-container .section-highlights .nav-container {
  display: flex;
  justify-content: center;
}
#zunjie-v800-container .section-highlights .nav-wrapper {
  display: flex;
  align-items: center;
  height: 3.333333vw;
  padding-right: 1.041667vw;
  padding-left: 1.041667vw;
  border-radius: 999px;
  background-color: #343536;
}
#zunjie-v800-container .section-highlights .arrownav-item {
  flex-shrink: 0;
  width: 2.083333vw;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: opacity 300ms ease-out;
  outline: 0;
}
@media (hover: hover) and (pointer: fine) {
  #zunjie-v800-container .section-highlights .arrownav-item:not(.arrownav-disabled):hover {
    opacity: 0.6;
  }
}
#zunjie-v800-container .section-highlights .arrownav-disabled {
  cursor: default;
  opacity: 0.3;
}
#zunjie-v800-container .section-highlights .dotnav-list {
  display: flex;
  margin-right: 0.677083vw;
  margin-left: 0.677083vw;
}
#zunjie-v800-container .section-highlights .dotnav-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.520833vw;
  height: 0.520833vw;
  margin-right: 0.260417vw;
  margin-left: 0.260417vw;
  cursor: pointer;
  transition: opacity 300ms ease-out;
  opacity: 0.2;
  border-radius: 100%;
  outline: 0;
  background-color: #fff;
}
#zunjie-v800-container .section-highlights .dotnav-item::before {
  position: absolute;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  padding: 0.260417vw;
  content: "";
}
@media (hover: hover) and (pointer: fine) {
  #zunjie-v800-container .section-highlights .dotnav-item:hover {
    opacity: 0.5;
  }
}
#zunjie-v800-container .section-highlights .dotnav-item.current {
  cursor: default;
  opacity: 0.8;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-highlights .slide-media {
    height: 71.428571vw;
  }
  #zunjie-v800-container .section-highlights .slide-content {
    margin: 3.142857vw 3.428571vw;
  }
  #zunjie-v800-container .section-highlights .slide-title {
    font-size: 2.857143vw;
  }
  #zunjie-v800-container .section-highlights .nav-wrapper {
    height: 6.857143vw;
    padding-right: 0.857143vw;
    padding-left: 0.857143vw;
  }
  #zunjie-v800-container .section-highlights .arrownav-item {
    width: 6.857143vw;
    padding: 1.285714vw;
  }
  #zunjie-v800-container .section-highlights .dotnav-list {
    margin-right: -0.285714vw;
    margin-left: -0.285714vw;
  }
  #zunjie-v800-container .section-highlights .dotnav-item {
    width: 1.142857vw;
    height: 1.142857vw;
    margin-right: 0.857143vw;
    margin-left: 0.857143vw;
  }
  #zunjie-v800-container .section-highlights .dotnav-item::before {
    padding: 0.857143vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #zunjie-v800-container .section-highlights .slide-media {
    height: 108.333333vw;
  }
  #zunjie-v800-container .section-highlights .slide-content {
    margin: 6.111111vw 6.666667vw 0;
  }
  #zunjie-v800-container .section-highlights .xs-content-below .slide-content {
    position: relative;
    top: auto;
    left: auto;
    margin: 6.111111vw 2.222222vw 0;
    text-align: center;
  }
  #zunjie-v800-container .section-highlights .slide-title {
    font-size: 5.555556vw;
  }
  #zunjie-v800-container .section-highlights .slide-title-01 {
    color: #fff;
  }
  #zunjie-v800-container .section-highlights .nav-wrapper {
    height: 13.333333vw;
    padding-right: 1.666667vw;
    padding-left: 1.666667vw;
  }
  #zunjie-v800-container .section-highlights .arrownav-item {
    width: 13.333333vw;
    padding: 2.5vw;
  }
  #zunjie-v800-container .section-highlights .dotnav-list {
    margin-right: -0.555556vw;
    margin-left: -0.555556vw;
  }
  #zunjie-v800-container .section-highlights .dotnav-item {
    width: 2.222222vw;
    height: 2.222222vw;
    margin-right: 1.666667vw;
    margin-left: 1.666667vw;
  }
  #zunjie-v800-container .section-highlights .dotnav-item::before {
    padding: 1.666667vw;
  }
}
#zunjie-v800-container .bold {
  font-weight: 700;
}
#zunjie-v800-container .medium {
  font-weight: 500;
}
#zunjie-v800-container .txt-96 {
  font-size: 5vw;
}
#zunjie-v800-container .txt-80 {
  font-size: 4.166667vw;
}
#zunjie-v800-container .txt-72, #zunjie-v800-container .lg\:txt-72 {
  font-size: 3.75vw;
}
#zunjie-v800-container .txt-64 {
  font-size: 3.333333vw;
}
#zunjie-v800-container .txt-56 {
  font-size: 2.916667vw;
}
#zunjie-v800-container .txt-48, #zunjie-v800-container .lg\:txt-48 {
  font-size: 2.5vw;
}
#zunjie-v800-container .txt-40, #zunjie-v800-container .lg\:txt-40 {
  font-size: 2.083333vw;
}
#zunjie-v800-container .txt-32, #zunjie-v800-container .lg\:txt-32 {
  font-size: 1.666667vw;
}
#zunjie-v800-container .txt-28, #zunjie-v800-container .lg\:txt-28 {
  font-size: 1.458333vw;
}
#zunjie-v800-container .txt-24, #zunjie-v800-container .lg\:txt-24 {
  font-size: 1.25vw;
}
#zunjie-v800-container .txt-22 {
  font-size: 1.145833vw;
}
#zunjie-v800-container .txt-20, #zunjie-v800-container .lg\:txt-20 {
  font-size: max(1.041667vw, 8px);
}
#zunjie-v800-container .txt-18, #zunjie-v800-container .lg\:txt-18 {
  font-size: max(0.9375vw, 8px);
}
#zunjie-v800-container .txt-16, #zunjie-v800-container .lg\:txt-16 {
  font-size: 0.833333vw;
}
#zunjie-v800-container .txt-12 {
  font-size: max(8px, 0.625vw);
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .xs\:bold {
    font-weight: 700;
  }
  #zunjie-v800-container .xs\:.medium {
    font-weight: 500;
  }
  #zunjie-v800-container .txt-56, #zunjie-v800-container .xs\:txt-56 {
    font-size: 7.777778vw;
  }
  #zunjie-v800-container .txt-48, #zunjie-v800-container .xs\:txt-48 {
    font-size: 6.666667vw;
  }
  #zunjie-v800-container .txt-40 {
    font-size: 5.555556vw;
  }
  #zunjie-v800-container .txt-80, #zunjie-v800-container .xs\:txt-80 {
    font-size: 11.111111vw;
  }
  #zunjie-v800-container .txt-64, #zunjie-v800-container .xs\:txt-64 {
    font-size: 8.888889vw;
  }
  #zunjie-v800-container .txt-28, #zunjie-v800-container .xs\:txt-28 {
    font-size: 3.888889vw;
  }
  #zunjie-v800-container .txt-22, #zunjie-v800-container .xs\:txt-22 {
    font-size: 3.055556vw;
  }
  #zunjie-v800-container .txt-20, #zunjie-v800-container .xs\:txt-20 {
    font-size: 2.777778vw;
  }
  #zunjie-v800-container .txt-24, #zunjie-v800-container .xs\:txt-24 {
    font-size: 3.333333vw;
  }
  #zunjie-v800-container .xs\:txt-24 {
    font-size: 3.333333vw;
  }
  #zunjie-v800-container .xs\:txt-28 {
    font-size: 3.888889vw;
  }
  #zunjie-v800-container .txt-32, #zunjie-v800-container .xs\:txt-32 {
    font-size: 4.444444vw;
  }
  #zunjie-v800-container .xs\:txt-40 {
    font-size: 5.555556vw;
  }
  #zunjie-v800-container .txt-96, #zunjie-v800-container .xs\:txt-96 {
    font-size: 13.333333vw;
  }
  #zunjie-v800-container .txt-18, #zunjie-v800-container .xs\:txt-18 {
    font-size: 2.5vw;
  }
  #zunjie-v800-container .txt-12 {
    font-size: 2.777778vw;
  }
}

#zunjie-v800-container .modal-open-button-content {
  left: 0;
  right: 0;
  bottom: 5vw;
}
#zunjie-v800-container .modal-open-button-content .modal-open-button {
  width: 9.791667vw;
  height: 2.916667vw;
  top: 0;
  left: 0;
  color: #FFF2E3;
}
#zunjie-v800-container .modal-open-button-content .modal-open-button-bg {
  width: 9.583333vw;
  height: 2.8125vw;
  top: 0.0520835vw;
  left: 0.104167vw;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxODgiIGhlaWdodD0iNTYuMDAyIiB2aWV3Qm94PSIwIDAgMTg4IDU2LjAwMiI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI4Ljc0NSkiIG9wYWNpdHk9IjAuOTk2Ii8+PC9zdmc+");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxODgiIGhlaWdodD0iNTYuMDAyIiB2aWV3Qm94PSIwIDAgMTg4IDU2LjAwMiI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI4Ljc0NSkiIG9wYWNpdHk9IjAuOTk2Ii8+PC9zdmc+");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
}
#zunjie-v800-container .modal-open-button-content .modal-open-button-bg-inner {
  width: 100%;
  height: 100%;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxODgiIGhlaWdodD0iNTYuMDAyIiB2aWV3Qm94PSIwIDAgMTg4IDU2LjAwMiI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI4Ljc0NSkiIG9wYWNpdHk9IjAuOTk2Ii8+PC9zdmc+");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxODgiIGhlaWdodD0iNTYuMDAyIiB2aWV3Qm94PSIwIDAgMTg4IDU2LjAwMiI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI4Ljc0NSkiIG9wYWNpdHk9IjAuOTk2Ii8+PC9zdmc+");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.260417vw) brightness(100%);
  -webkit-backdrop-filter: blur(0.260417vw) brightness(100%);
}
#zunjie-v800-container .modal-open-button-content .modal-open-button-bg-light {
  width: 6.322396vw;
  height: 17.765625vw;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  top: -7.916667vw;
  left: 0;
  transform: translateX(-110%) rotate(33deg);
}
#zunjie-v800-container .modal-open-button-content .modal-open-button-light-container {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxODgiIGhlaWdodD0iNTYuMDAyIiB2aWV3Qm94PSIwIDAgMTg4IDU2LjAwMiI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI4Ljc0NSkiIG9wYWNpdHk9IjAuOTk2Ii8+PC9zdmc+");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxODgiIGhlaWdodD0iNTYuMDAyIiB2aWV3Qm94PSIwIDAgMTg4IDU2LjAwMiI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI4Ljc0NSkiIG9wYWNpdHk9IjAuOTk2Ii8+PC9zdmc+");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
#zunjie-v800-container .modal-open-button-content .modal-open-button-light {
  will-change: transform;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
}
#zunjie-v800-container .modal-open-button-content .modal-open-button-light-shadow {
  width: 100%;
  top: 0;
  left: 0;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .modal-open-button-content .modal-open-button {
    width: 100%;
    height: 100%;
  }
}
#zunjie-v800-container .modal-open-button-container {
  width: 9.791667vw;
  height: 2.916667vw;
  cursor: pointer;
}
#zunjie-v800-container .modal-open-button-container svg {
  width: 100%;
  height: 100%;
}
#zunjie-v800-container .modal-open-button-container .button-copy {
  transition: all 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  #zunjie-v800-container .modal-open-button-container:hover .modal-open-button-bg-light {
    transform: translateX(150%) rotate(33deg);
    transition: transform 0.5s linear;
  }
  #zunjie-v800-container .modal-open-button-container:hover .modal-open-button-light .path {
    animation: movePath 0.5s linear forwards;
  }
  #zunjie-v800-container .modal-open-button-container:hover .modal-open-button-bg .path {
    animation: movePath2 0.5s linear forwards;
  }
  #zunjie-v800-container .modal-open-button-container:hover .button-copy {
    letter-spacing: 0.104167vw;
  }
}
@keyframes movePath {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(150%);
  }
}
@keyframes movePath2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(150%);
  }
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .modal-open-button-container {
    width: 36.666667vw;
    height: 13.333333vw;
  }
}
#zunjie-v800-container .section-modal {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100vw;
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  outline: 0;
  background-color: #000;
  will-change: transform, opacity;
}
#zunjie-v800-container .section-modal.modal-open {
  z-index: 999;
  transition: transform 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
#zunjie-v800-container .section-modal.modal-open .modal-close-button {
  pointer-events: auto;
}
#zunjie-v800-container .section-modal.modal-will-close {
  z-index: 999;
  transition: opacity 0.2s;
  transform: translate3d(0, 0, 0);
}
#zunjie-v800-container .section-modal .modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#zunjie-v800-container .section-modal .modal-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
#zunjie-v800-container .section-modal .modal-close-container {
  position: absolute;
  top: 3.333333vw;
  right: 3.333333vw;
  width: round(up, 2.083333vw, 2px);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
#zunjie-v800-container .section-modal .modal-close-button {
  position: sticky;
  z-index: 10;
  top: 2.083333vw;
  cursor: pointer;
  pointer-events: none;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-modal {
    overflow: auto;
    transform: translate3d(0, 100%, 0);
  }
  #zunjie-v800-container .section-modal.modal-open {
    transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
  #zunjie-v800-container .section-modal .modal-container {
    display: block;
    height: auto;
  }
  #zunjie-v800-container .section-modal .modal-wrapper {
    height: auto;
  }
  #zunjie-v800-container .section-modal .modal-close-container {
    top: 0;
    right: 0;
    bottom: 0;
    width: 11.111111vw;
    width: 100%;
  }
  #zunjie-v800-container .section-modal .modal-close-container::before {
    position: sticky;
    z-index: 2;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 20.833333vw;
    margin-bottom: -20.833333vw;
    content: "";
    pointer-events: none;
  }
  #zunjie-v800-container .section-modal .modal-close-button {
    top: 5.555556vw;
    width: 10.555556vw;
    height: 12.222222vw;
    margin-right: 5.555556vw;
    margin-left: auto;
  }
  #zunjie-v800-container .section-modal .modal-close-button .arrownav-item {
    width: 10.555556vw;
    height: 12.222222vw;
  }
}
#zunjie-v800-container .modal-swiper {
  height: 100%;
}
#zunjie-v800-container .modal-swiper .swiper-slide {
  overflow: hidden;
  height: 100vh;
}
#zunjie-v800-container .modal-swiper .slide-item,
#zunjie-v800-container .modal-swiper .slide-picture {
  flex-shrink: 0;
}
#zunjie-v800-container .modal-swiper .slide-title {
  font-size: 1.666667vw;
  line-height: 1.25;
  background-image: linear-gradient(125deg, #C4AF98 0%, #FFF2E3, #C4AF98 100%);
}
#zunjie-v800-container .modal-swiper .slide-intro {
  font-size: max(0.9375vw, 8px);
  color: #C4BAAF;
  margin-top: 1.25vw;
}
#zunjie-v800-container .modal-swiper .slide-style-1 {
  display: flex;
  align-items: center;
}
#zunjie-v800-container .modal-swiper .slide-style-1 .slide-picture {
  width: 72.916667vw;
}
#zunjie-v800-container .modal-swiper .slide-style-1 .slide-content {
  margin-left: 3.333333vw;
}
#zunjie-v800-container .modal-swiper .slide-style-2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
#zunjie-v800-container .modal-swiper .slide-style-2 .slide-items {
  display: flex;
}
#zunjie-v800-container .modal-swiper .slide-style-2 .slide-item-2 {
  margin-left: 3.125vw;
}
#zunjie-v800-container .modal-swiper .slide-style-2 .slide-picture {
  width: 41.5625vw;
  height: 64.8148145vh;
}
#zunjie-v800-container .modal-swiper .slide-style-3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
#zunjie-v800-container .modal-swiper .slide-style-3 .slide-items {
  display: flex;
}
#zunjie-v800-container .modal-swiper .slide-style-3 .slide-item-group {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 3.125vw;
}
#zunjie-v800-container .modal-swiper .slide-style-3 .slide-item {
  width: 35.416667vw;
}
#zunjie-v800-container .modal-swiper .slide-style-3 .slide-picture-1 {
  height: 75.462963vh;
}
#zunjie-v800-container .modal-swiper .slide-style-3 .slide-picture-2,
#zunjie-v800-container .modal-swiper .slide-style-3 .slide-picture-3 {
  height: 27.962963vh;
}
#zunjie-v800-container .modal-swiper .slide-style-4 {
  display: flex;
  align-items: center;
  justify-content: center;
}
#zunjie-v800-container .modal-swiper .slide-style-4 .slide-items {
  display: flex;
}
#zunjie-v800-container .modal-swiper .slide-style-4 .slide-item-2 {
  margin-left: 1.354167vw;
}
#zunjie-v800-container .modal-swiper .slide-style-4 .slide-item-3 {
  margin-left: 1.354167vw;
}
#zunjie-v800-container .modal-swiper .slide-style-4 .slide-picture {
  width: 28.385417vw;
  height: 50.37037vh;
}
#zunjie-v800-container .modal-swiper .slide-style-5 {
  display: flex;
  align-items: center;
  justify-content: center;
}
#zunjie-v800-container .modal-swiper .slide-style-5 .lg\:b-32 {
  margin-bottom: 1.666667vw;
}
#zunjie-v800-container .modal-swiper .slide-style-5 .slide-items {
  display: flex;
}
#zunjie-v800-container .modal-swiper .slide-style-5 .slide-item-2 {
  margin-left: 4.166667vw;
}
#zunjie-v800-container .modal-swiper .slide-style-5 .slide-item {
  width: 41.822917vw;
}
#zunjie-v800-container .modal-swiper .slide-style-5 .slide-picture {
  height: 56.851852vh;
}
#zunjie-v800-container .modal-swiper .position-knob {
  -o-object-position: 50% 100%;
  object-position: 50% 100%;
}
#zunjie-v800-container .modal-swiper .position-wireless-charge {
  -o-object-position: 50% 0%;
  object-position: 50% 0%;
}
#zunjie-v800-container .text-gradient {
  display: inline-block;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .modal-swiper {
    height: auto;
  }
  #zunjie-v800-container .modal-swiper .swiper-wrapper {
    display: block;
    box-sizing: border-box;
    height: auto;
    padding-bottom: 13.888889vw;
  }
  #zunjie-v800-container .modal-swiper .swiper-slide {
    height: auto;
  }
  #zunjie-v800-container .modal-swiper .slide-title {
    font-size: 6.666667vw;
  }
  #zunjie-v800-container .modal-swiper .slide-intro {
    font-size: 3.333333vw;
    margin-top: 3.333333vw;
  }
  #zunjie-v800-container .modal-swiper .swiper-slide .slide-content {
    width: 70.833333vw;
    margin: 8.888889vw 0 27.777778vw 11.111111vw;
  }
  #zunjie-v800-container .modal-swiper .swiper-slide .slide-content-last {
    margin-bottom: 0;
  }
  #zunjie-v800-container .modal-swiper .slide-style-1 {
    display: block;
  }
  #zunjie-v800-container .modal-swiper .slide-style-1 .slide-picture {
    width: 100%;
  }
  #zunjie-v800-container .modal-swiper .slide-style-2 {
    display: block;
  }
  #zunjie-v800-container .modal-swiper .slide-style-2 .slide-items {
    display: block;
  }
  #zunjie-v800-container .modal-swiper .slide-style-2 .slide-item-2 {
    margin-left: 0;
  }
  #zunjie-v800-container .modal-swiper .slide-style-2 .slide-picture {
    width: 100%;
    height: 100%;
  }
  #zunjie-v800-container .modal-swiper .slide-style-3 {
    display: block;
  }
  #zunjie-v800-container .modal-swiper .slide-style-3 .slide-items {
    display: block;
  }
  #zunjie-v800-container .modal-swiper .slide-style-3 .slide-item-group {
    position: relative;
    display: block;
    margin-left: 0;
  }
  #zunjie-v800-container .modal-swiper .slide-style-3 .slide-item {
    width: 100%;
  }
  #zunjie-v800-container .modal-swiper .slide-style-3 .slide-item-3 {
    position: static;
  }
  #zunjie-v800-container .modal-swiper .slide-style-3 .slide-picture {
    height: 100%;
  }
  #zunjie-v800-container .modal-swiper .slide-style-4 .slide-items {
    display: block;
  }
  #zunjie-v800-container .modal-swiper .slide-style-4 .slide-item-2 {
    margin-left: 0;
  }
  #zunjie-v800-container .modal-swiper .slide-style-4 .slide-item-3 {
    margin-left: 0;
  }
  #zunjie-v800-container .modal-swiper .slide-style-4 .slide-picture {
    width: 100%;
    height: auto;
  }
  #zunjie-v800-container .modal-swiper .slide-style-5 {
    display: block;
  }
  #zunjie-v800-container .modal-swiper .slide-style-5 .lg\:b-32 {
    margin-bottom: 0;
  }
  #zunjie-v800-container .modal-swiper .slide-style-5 .slide-items {
    display: block;
  }
  #zunjie-v800-container .modal-swiper .slide-style-5 .slide-item-2 {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
  }
  #zunjie-v800-container .modal-swiper .slide-style-5 .slide-item-2 .slide-content {
    order: 2;
  }
  #zunjie-v800-container .modal-swiper .slide-style-5 .slide-item {
    width: 100%;
  }
  #zunjie-v800-container .modal-swiper .slide-style-5 .slide-picture {
    width: 100%;
    height: auto;
  }
  #zunjie-v800-container .modal-swiper .swiper-slide .slide-items {
    width: 100%;
  }
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .modal-swiper .slide-style-4 {
    display: block;
  }
}
#zunjie-v800-container .modal-arrownav-list {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: absolute;
  z-index: 10;
  bottom: 3.333333vw;
  right: 3.333333vw;
  display: flex;
}
#zunjie-v800-container .modal-arrownav-list .arrownav-item {
  flex-shrink: 0;
  width: 1.927083vw;
  cursor: pointer;
  transition: transform 0.5s, opacity 0.5s;
}
#zunjie-v800-container .modal-arrownav-list .arrownav-prev {
  margin-right: 16.5625vw;
}
#zunjie-v800-container .modal-arrownav-list .arrownav-prev:not(.arrownav-disabled):hover {
  transform: translateX(-0.520833vw);
}
#zunjie-v800-container .modal-arrownav-list .arrownav-next:not(.arrownav-disabled):hover {
  transform: translateX(0.520833vw);
}
#zunjie-v800-container .modal-arrownav-list .arrownav-disabled {
  cursor: default;
  opacity: 0;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .modal-arrownav-list {
    display: none;
  }
}
#zunjie-v800-container .arrownav-list {
  display: flex;
}
#zunjie-v800-container .modal-close-button .arrownav-list {
  pointer-events: none;
}
#zunjie-v800-container .arrownav-list .arrownav-item {
  position: relative;
  width: round(down, 2.5vw, 2px);
  height: round(down, 2.966667vw, 2px);
  cursor: pointer;
  transition: opacity 0.4s;
  outline: 0;
  mask-image: url("data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iNDgiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA0OCA1NiI+PHBhdGggZD0iTTM4LjU1NCwwYTYsNiwwLDAsMSw1LjE4MywyLjk3N2wxMC41LDE4YTYsNiwwLDAsMSwwLDYuMDQ2bC0xMC41LDE4QTYsNiwwLDAsMSwzOC41NTQsNDhIMTcuNDQ2YTYsNiwwLDAsMS01LjE4My0yLjk3N2wtMTAuNS0xOGE2LDYsMCwwLDEsMC02LjA0NmwxMC41LTE4QTYsNiwwLDAsMSwxNy40NDYsMFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4KSByb3RhdGUoOTApIiBvcGFjaXR5PSIwLjk5OSIvPjwvc3ZnPg==");
  -webkit-mask-image: url("data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iNDgiIGhlaWdodD0iNTYiIHZpZXdCb3g9IjAgMCA0OCA1NiI+PHBhdGggZD0iTTM4LjU1NCwwYTYsNiwwLDAsMSw1LjE4MywyLjk3N2wxMC41LDE4YTYsNiwwLDAsMSwwLDYuMDQ2bC0xMC41LDE4QTYsNiwwLDAsMSwzOC41NTQsNDhIMTcuNDQ2YTYsNiwwLDAsMS01LjE4My0yLjk3N2wtMTAuNS0xOGE2LDYsMCwwLDEsMC02LjA0NmwxMC41LTE4QTYsNiwwLDAsMSwxNy40NDYsMFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQ4KSByb3RhdGUoOTApIiBvcGFjaXR5PSIwLjk5OSIvPjwvc3ZnPg==");
  mask-size: 110%;
  -webkit-mask-size: 110%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  border-radius: initial;
}
#zunjie-v800-container .arrownav-list .arrownav-item svg {
  height: auto;
  position: relative;
  z-index: 1;
}
#zunjie-v800-container .arrownav-list .arrownav-item .arrow-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5vw;
  z-index: 3;
  transition: opacity 0.3s ease;
}
#zunjie-v800-container .arrownav-list .arrownav-item .arrow-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: round(down, 2.5vw, 2px);
  z-index: 1;
}
#zunjie-v800-container .arrownav-list .arrownav-item .arrow-icon-border {
  width: 100%;
  z-index: 3;
  position: relative;
}
#zunjie-v800-container .arrownav-list .arrownav-next {
  margin-left: 1.25vw;
}
#zunjie-v800-container .arrownav-list .arrownav-item.arrownav-disabled {
  cursor: default;
  opacity: 0.6;
  pointer-events: none;
}
#zunjie-v800-container .arrownav-list .arrownav-item.arrownav-disabled .arrow-icon-border-light {
  opacity: 0;
}
#zunjie-v800-container .arrownav-list .arrownav-item .arrownav-item-color {
  transition: all 0.8s ease;
}
#zunjie-v800-container .arrownav-list .arrownav-item.arrownav-disabled .arrownav-item-color {
  stop-color: rgba(224, 212, 212, 0.2);
}
#zunjie-v800-container .arrownav-list .arrownav-item.arrownav-disabled .arrownav-item-color-w {
  stop-color: rgb(224, 212, 212);
}
@media (any-hover: hover) and (pointer: fine) {
  #zunjie-v800-container .arrownav-list .arrownav-item:hover .mask-pic {
    opacity: 1;
  }
  #zunjie-v800-container .arrownav-list .arrownav-item:hover .arrow-icon-border-light .right {
    left: -1.041667vw;
  }
  #zunjie-v800-container .arrownav-list .arrownav-item:hover .arrow-icon-border-light .left {
    left: 1.510417vw;
  }
  #zunjie-v800-container .modal-close-container:hover .arrownav-list .arrownav-item .arrow-icon {
    opacity: 1;
  }
  #zunjie-v800-container .modal-close-container:hover .arrownav-list .arrownav-item .mask-pic {
    opacity: 1;
  }
  #zunjie-v800-container .modal-close-container:hover .arrownav-list .arrownav-item .arrow-icon-border-light .right {
    left: -1.041667vw;
  }
  #zunjie-v800-container .modal-close-container:hover .arrownav-list .arrownav-item .arrow-icon-border-light .left {
    left: 1.510417vw;
  }
  #zunjie-v800-container .modal-close-container:hover .arrownav-list .arrownav-item .arrow-icon {
    opacity: 1;
  }
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .arrownav-list .arrownav-item {
    width: 10.416667vw;
    height: 12.222222vw;
  }
  #zunjie-v800-container .arrownav-list .arrownav-next {
    margin-left: 5.555556vw;
  }
  #zunjie-v800-container .arrownav-list {
    display: flex;
  }
  #zunjie-v800-container .arrownav-list .arrownav-item .icon-arrow-bg {
    width: 10vw;
    height: 11.944444vw;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px) brightness(0%);
    -webkit-backdrop-filter: blur(5px) brightness(0%);
  }
  #zunjie-v800-container .arrownav-list .arrownav-item:hover {
    opacity: 1;
  }
  #zunjie-v800-container .arrownav-list .arrownav-item.arrownav-disabled {
    opacity: 0.3;
  }
  #zunjie-v800-container .arrownav-list .arrownav-item .mask-pic {
    width: 10.555556vw;
    opacity: 0;
  }
  #zunjie-v800-container .arrownav-list .arrownav-item .arrow-icon-bg {
    width: 10.555556vw;
    opacity: 1;
  }
  #zunjie-v800-container .modal-close-container .arrownav-list .arrownav-item .arrow-icon-bg {
    opacity: 0;
  }
  #zunjie-v800-container .arrownav-list .arrownav-item .arrow-icon {
    width: 10.555556vw;
    opacity: 1;
  }
  #zunjie-v800-container .arrownav-list .arrownav-item .arrow-icon-border-light {
    width: 10.555556vw;
  }
  #zunjie-v800-container .arrownav-list .arrownav-item .arrow-icon-border-light .left {
    width: 8.333333vw;
    height: 8.333333vw;
    left: 6.944444vw;
    top: -1.944444vw;
  }
  #zunjie-v800-container .arrownav-list .arrownav-item .arrow-icon-border-light .right {
    width: 8.333333vw;
    height: 8.333333vw;
    left: -4.444444vw;
    bottom: -2.222222vw;
  }
}
#zunjie-v800-container .autoplay-trigger {
  position: absolute;
  top: 80%;
}
#zunjie-v800-container .section-hero .hero-container > picture {
  width: 100%;
  aspect-ratio: 1920/1080;
}
#zunjie-v800-container .section-hero .hero-content {
  position: absolute;
  z-index: 1;
  width: 37.1875vw;
  top: 8.541667vw;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-hero .hero-container > picture {
    aspect-ratio: 720/1080;
  }
  #zunjie-v800-container .section-hero .hero-content {
    width: 47.569444vw;
    top: 23.055556vw;
  }
  #zunjie-v800-container .section-hero .hero-slogan {
    width: 44.444444vw;
    margin-top: 3.333333vw;
    font-size: 6.666667vw;
  }
  #zunjie-v800-container .section-hero .hero-ksp {
    margin-top: 4.444444vw;
    font-size: 4.444444vw;
  }
}
#zunjie-v800-container.no-inline-video .section-hero .hero-content {
  transition: none;
  transform: none;
  opacity: 1;
}
#zunjie-v800-container .text-gradient {
  background-image: linear-gradient(125deg, #C4AF98, #FFF2E3, #C4AF98);
}
#zunjie-v800-container .section-title .section-title-container {
  position: relative;
}
#zunjie-v800-container .section-title .title-bg {
  will-change: transform;
  width: 82.5vw;
  height: 12.5vw;
  will-change: background-position;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTg0LjMyIiBoZWlnaHQ9IjI0MC45NiIgdmlld0JveD0iMCAwIDE1ODQuMzIgMjQwLjk2Ij48cGF0aCBkPSJNLTU4OS4xMi0yMzQuMjRoMTUuNjhWMGgtMTguMjRWLTE5Ny4xMmwtODIuMjQsMTI5LjZoLTExLjJMLTc2OC0xOTcuNDRWMGgtMTguMjRWLTIzNC4yNGgxNi42NGw5MC41NiwxNDMuMzZabTE4MS43NiwwTC0zMTQuMjQsMGgtMjEuNDRsLTI4LjQ4LTczLjZoLTEwMi40TC00OTQuMDgsMEgtNTEzLjZsOTAuMjQtMjM0LjI0Wm0zNi44LDE0My4zNkwtNDE2LTIwOC4zMi00NjAuMTYtOTAuODhabTIzOS4zNi0yMi4wOEgtMjM1LjUydjk2aDExOS4zNlYwSC0yNTQuNzJWLTIzNC41NmgxMzUuMDR2MTYuOTZILTIzNS41MnY4Ny42OEgtMTMxLjJaTTEyMy41Mi0yMzQuMjQsMzkuMzYtMTE4LjcyLDEyNS43NiwwSDEwMi40TDI3LjUyLTEwMy42OC00Ni43MiwwSC02OC44TDE3LjYtMTE4LjcyLTY2LjU2LTIzNC4yNGgyMy42OEwyOS40NC0xMzMuNzZsNzEuNjgtMTAwLjQ4Wm0zNy40NCwwSDMyNi43MnYxNi45NmgtNzMuNlYwSDIzNC4yNFYtMjE3LjI4SDE2MC45NlpNNTUxLjY4LDBINTI4LjMyTDQ1Ny4yOC0xMDEuMTJhODUuNzU0LDg1Ljc1NCwwLDAsMS04LjY0LjY0SDQwNi4wOFYwaC0xOS4yVi0yMzQuMjRoNjEuNzZxMjMuNjgsMCw0Mi4yNCw4LjE2dDI4LjgsMjMuMzZxMTAuMjQsMTUuMiwxMC4yNCwzNS4zNiwwLDIzLjY4LTE0LjA4LDQwLjE2dC0zOC40LDIyLjg4Wk00MDYuMDgtMjE3LjZ2MTAwLjE2SDQ0Ni40cTI5LjQ0LDAsNDYuNC0xMy40NHQxNi45Ni0zNi40OHEwLTIzLjA0LTE2Ljk2LTM2LjY0dC00Ni40LTEzLjZaTTU5Mi45Ni0xMTcuNDRxMC0zNS44NCwxMy4yOC02My4ydDM2LjY0LTQyLjI0cTIzLjM2LTE0Ljg4LDUyLjQ4LTE0Ljg4LDI5LjQ0LDAsNTIuOCwxNC44OHQzNi42NCw0Mi4yNHExMy4yOCwyNy4zNiwxMy4yOCw2My4yLDAsMzYuMTYtMTMuMjgsNjMuNTJUNzQ4LjE2LTExLjY4UTcyNC44LDMuMiw2OTUuMzYsMy4ycS0yOS4xMiwwLTUyLjQ4LTE0Ljg4VDYwNi4yNC01My45MlE1OTIuOTYtODEuMjgsNTkyLjk2LTExNy40NFptMjAuMTYsMHEwLDMwLjQsMTAuMjQsNTMuNzZ0MjguOCwzNi4zMnExOC41NiwxMi45Niw0My4yLDEyLjk2dDQzLjUyLTEyLjk2UTc1Ny43Ni00MC4zMiw3NjgtNjMuNjh0MTAuMjQtNTMuNzZxMC0zMC40LTEwLjQtNTMuNzZ0LTI5LjEyLTM2LjMyUTcyMC0yMjAuNDgsNjk1LjM2LTIyMC40OHEtMjQuMzIsMC00My4wNCwxMi45NlQ2MjMuMzYtMTcxLjJRNjEzLjEyLTE0Ny44NCw2MTMuMTItMTE3LjQ0WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzg2LjI0IDIzNy43NikiIGZpbGw9InJlZCIvPjwvc3ZnPg==");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNTg0LjMyIiBoZWlnaHQ9IjI0MC45NiIgdmlld0JveD0iMCAwIDE1ODQuMzIgMjQwLjk2Ij48cGF0aCBkPSJNLTU4OS4xMi0yMzQuMjRoMTUuNjhWMGgtMTguMjRWLTE5Ny4xMmwtODIuMjQsMTI5LjZoLTExLjJMLTc2OC0xOTcuNDRWMGgtMTguMjRWLTIzNC4yNGgxNi42NGw5MC41NiwxNDMuMzZabTE4MS43NiwwTC0zMTQuMjQsMGgtMjEuNDRsLTI4LjQ4LTczLjZoLTEwMi40TC00OTQuMDgsMEgtNTEzLjZsOTAuMjQtMjM0LjI0Wm0zNi44LDE0My4zNkwtNDE2LTIwOC4zMi00NjAuMTYtOTAuODhabTIzOS4zNi0yMi4wOEgtMjM1LjUydjk2aDExOS4zNlYwSC0yNTQuNzJWLTIzNC41NmgxMzUuMDR2MTYuOTZILTIzNS41MnY4Ny42OEgtMTMxLjJaTTEyMy41Mi0yMzQuMjQsMzkuMzYtMTE4LjcyLDEyNS43NiwwSDEwMi40TDI3LjUyLTEwMy42OC00Ni43MiwwSC02OC44TDE3LjYtMTE4LjcyLTY2LjU2LTIzNC4yNGgyMy42OEwyOS40NC0xMzMuNzZsNzEuNjgtMTAwLjQ4Wm0zNy40NCwwSDMyNi43MnYxNi45NmgtNzMuNlYwSDIzNC4yNFYtMjE3LjI4SDE2MC45NlpNNTUxLjY4LDBINTI4LjMyTDQ1Ny4yOC0xMDEuMTJhODUuNzU0LDg1Ljc1NCwwLDAsMS04LjY0LjY0SDQwNi4wOFYwaC0xOS4yVi0yMzQuMjRoNjEuNzZxMjMuNjgsMCw0Mi4yNCw4LjE2dDI4LjgsMjMuMzZxMTAuMjQsMTUuMiwxMC4yNCwzNS4zNiwwLDIzLjY4LTE0LjA4LDQwLjE2dC0zOC40LDIyLjg4Wk00MDYuMDgtMjE3LjZ2MTAwLjE2SDQ0Ni40cTI5LjQ0LDAsNDYuNC0xMy40NHQxNi45Ni0zNi40OHEwLTIzLjA0LTE2Ljk2LTM2LjY0dC00Ni40LTEzLjZaTTU5Mi45Ni0xMTcuNDRxMC0zNS44NCwxMy4yOC02My4ydDM2LjY0LTQyLjI0cTIzLjM2LTE0Ljg4LDUyLjQ4LTE0Ljg4LDI5LjQ0LDAsNTIuOCwxNC44OHQzNi42NCw0Mi4yNHExMy4yOCwyNy4zNiwxMy4yOCw2My4yLDAsMzYuMTYtMTMuMjgsNjMuNTJUNzQ4LjE2LTExLjY4UTcyNC44LDMuMiw2OTUuMzYsMy4ycS0yOS4xMiwwLTUyLjQ4LTE0Ljg4VDYwNi4yNC01My45MlE1OTIuOTYtODEuMjgsNTkyLjk2LTExNy40NFptMjAuMTYsMHEwLDMwLjQsMTAuMjQsNTMuNzZ0MjguOCwzNi4zMnExOC41NiwxMi45Niw0My4yLDEyLjk2dDQzLjUyLTEyLjk2UTc1Ny43Ni00MC4zMiw3NjgtNjMuNjh0MTAuMjQtNTMuNzZxMC0zMC40LTEwLjQtNTMuNzZ0LTI5LjEyLTM2LjMyUTcyMC0yMjAuNDgsNjk1LjM2LTIyMC40OHEtMjQuMzIsMC00My4wNCwxMi45NlQ2MjMuMzYtMTcxLjJRNjEzLjEyLTE0Ny44NCw2MTMuMTItMTE3LjQ0WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNzg2LjI0IDIzNy43NikiIGZpbGw9InJlZCIvPjwvc3ZnPg==");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-image: url(/dam/hima-site/cn/zunjie/v800/images/icons/icon-title-backcolor.png);
  background-repeat: no-repeat;
  background-position-X: center;
  background-size: 116% auto;
  background-position-y: -98%;
  transform: translateY(2.083333vw);
}
#zunjie-v800-container .section-title .section-subtitle {
  will-change: opacity, transform;
  color: #C4AF98;
  line-height: 1.25;
  margin-top: -1.5625vw;
  transform: translateY(2.604167vw);
  opacity: 0;
}
#zunjie-v800-container .section-title .section-subtitle .icon {
  height: 1px;
}
#zunjie-v800-container .section-title .section-subtitle span {
  margin: 0 0.833333vw;
  font-weight: 400;
  letter-spacing: 0.1em;
}
#zunjie-v800-container .section-title .text-gradient {
  will-change: opacity, transform;
  line-height: 1.25;
  font-weight: 400;
  transform: translateY(2.083333vw);
  opacity: 0;
  letter-spacing: 0.1em;
}
#zunjie-v800-container .section-title.animated .title-bg {
  transition: background-position-y 1300ms, transform 1300ms;
  transform: translateY(0);
  background-position-y: 93%;
}
#zunjie-v800-container .section-title.animated .section-subtitle {
  transition: transform 1300ms, opacity 1300ms;
  transform: translateY(0);
  opacity: 1;
}
#zunjie-v800-container .section-title.animated .text-gradient {
  transition: transform 1300ms, opacity 1300ms;
  transform: translateY(0);
  opacity: 1;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-title .title-bg {
    width: 90.833333vw;
    height: 13.888889vw;
    transform: translateY(5.555556vw);
  }
  #zunjie-v800-container .section-title .section-subtitle {
    margin-top: -1.805556vw;
    transform: translateY(6.944444vw);
  }
  #zunjie-v800-container .section-title .section-subtitle span {
    margin: 0 2.222222vw;
  }
  #zunjie-v800-container .section-title .text-gradient {
    transform: translateY(6.944444vw);
  }
}
#zunjie-v800-container .section-powerful .section-powerful-01 .text-content {
  bottom: 0;
  left: 0;
  right: 0;
}
#zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list {
  width: 45.052083vw;
}
#zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  white-space: nowrap;
}
#zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item .stat-value-item {
  width: 100%;
  color: #FFF2E3;
}
#zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item .stat-value-item > div {
  align-items: baseline;
}
#zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item .stat-value {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 1em;
  line-height: 1.25;
  font-size: var(--stat-number-font-size, 2.5vw);
}
#zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item .stat-number {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
#zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item .stat-number span {
  height: 1em;
  line-height: 1.25;
  font-weight: 300;
}
#zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item .stat-unit {
  margin-left: 0.625vw;
  font-size: max(0.9375vw, 8px);
  line-height: 1.25;
  font-weight: 300;
}
#zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item .stat-caption {
  font-size: max(0.9375vw, 8px);
  font-weight: 300;
  line-height: 1.25;
}
#zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item-line {
  width: 1px;
  height: 3.333333vw;
  background-color: #B5ACA2;
  opacity: 0.7;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-powerful .section-powerful-01 .text-content {
    position: initial;
  }
  #zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list {
    width: 79.166667vw;
    align-items: end;
  }
  #zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item .stat-value {
    font-size: var(--stat-number-font-size, 7.777778vw);
  }
  #zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item .stat-unit {
    margin-left: 4.166667vw;
    font-size: 3.333333vw;
  }
  #zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item .stat-caption {
    font-size: 3.333333vw;
  }
  #zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item-02 {
    order: 1;
  }
  #zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item-04, #zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item-line-02 {
    order: 2;
  }
  #zunjie-v800-container .section-powerful .section-powerful-01 .text-content .stat-list .stat-item-line {
    height: 8.888889vw;
  }
}
#zunjie-v800-container header.text-content {
  top: 0;
  left: 0;
  right: 0;
}
#zunjie-v800-container header.text-content h2 {
  font-weight: 400;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container header.text-content {
    width: 100%;
  }
  #zunjie-v800-container header.text-content span.px-05 {
    margin-left: 0.5em;
  }
}
#zunjie-v800-container .text-desc {
  left: 0;
  right: 0;
  bottom: 5vw;
  font-weight: 400;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .text-desc {
    width: 77.777778vw;
  }
}
#zunjie-v800-container .fadeup,
#zunjie-v800-container .lg-fadeup {
  transform: translate3d(0, 40px, 0);
  opacity: 0;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .fadeup,
  #zunjie-v800-container .xs-fadeup {
    transform: translate3d(0, 40px, 0);
  }
  #zunjie-v800-container .lg-fadeup {
    transition: none;
    transform: none;
    opacity: 1;
  }
  #zunjie-v800-container .xs-fadeup {
    transition: opacity 0.8s ease-in, transform 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
    opacity: 0;
  }
}
#zunjie-v800-container .fadeup.animated,
#zunjie-v800-container .lg-fadeup.animated,
#zunjie-v800-container .xs-fadeup.animated {
  transition: opacity 0.8s ease-in, transform 0.8s cubic-bezier(0.26, 0.67, 0.48, 0.91);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
#zunjie-v800-container .section-id-video .video-mask {
  width: 100%;
  height: 11.5625vw;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #000000, transparent);
}
#zunjie-v800-container .section-id-video .player-button-content {
  left: 0;
  right: 0;
  bottom: 5vw;
}
#zunjie-v800-container .section-id-video .player-button-content .player-button-bg {
  width: 9.791667vw;
}
#zunjie-v800-container .section-id-video .player-button-content .player-button-hightlight-container {
  width: 9.791667vw;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTg4IiBoZWlnaHQ9IjU2LjAwMiIgdmlld0JveD0iMCAwIDE4OCA1Ni4wMDIiPjxkZWZzPjxjbGlwUGF0aCBpZD0iYSI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNzQuNzQ1IDkwMikiIG9wYWNpdHk9IjAuOTk2Ii8+PC9jbGlwUGF0aD48bGluZWFyR3JhZGllbnQgaWQ9ImIiIHkxPSIwLjU1OCIgeDI9IjEiIHkyPSIwLjU1OCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iI2ZmZjJlMyIgc3RvcC1vcGFjaXR5PSIwIi8+PHN0b3Agb2Zmc2V0PSIwLjQ4OCIgc3RvcC1jb2xvcj0iI2ZmZiIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI2ZmZjJlMyIgc3RvcC1vcGFjaXR5PSIwIi8+PC9saW5lYXJHcmFkaWVudD48ZmlsdGVyIGlkPSJjIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTg4IiBoZWlnaHQ9IjU2LjAwMiIgZmlsdGVyVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48ZmVPZmZzZXQgZHk9IjIiIGlucHV0PSJTb3VyY2VBbHBoYSIvPjxmZUdhc3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMiIgcmVzdWx0PSJkIi8+PGZlRmxvb2QgZmxvb2QtY29sb3I9IiNmYWVkZDgiIHJlc3VsdD0iZSIsMCIvPjxmZUNvbXBvc2l0ZSBvcGVyYXRvcj0ib3V0IiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJkIi8+PGZlQ29tcG9zaXRlIG9wZXJhdG9yPSJpbiIgaW49ImUiLz48ZmVDb21wb3NpdGUgb3BlcmF0b3I9ImluIiBpbjI9IlNvdXJjZUdyYXBoaWMiLz48L2ZpbHRlcj48ZmlsdGVyIGlkPSJmIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTg4IiBoZWlnaHQ9IjU2LjAwMiIgZmlsdGVyVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48ZmVPZmZzZXQgZHk9Ii0yIiBpbm5lciBpbnB1dD0iU291cmNlQ29tcG9zaXRlIiBvcGVyYXRvcj0ib3V0IiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJnIi8+PGZlQ29tcG9zaXRlIG9wZXJhdG9yPSJpbiIgaW49ImgiLz48ZmVDb21wb3NpdGUgb3BlcmF0b3I9ImluIiBpbjI9IlNvdXJjZUdyYXBoaWMiLz48L2ZpbHRlcj48bGluZWFyR3JhZGllbnQgaWQ9ImkiIHgxPSIwLjUiIHkxPSIxIiB4Mj0iMC41IiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZmZmMmUzIiBzdG9wLW9wYWNpdHk9IjAiLz48c3RvcCBvZmZzZXQ9IjAuNDg4IiBzdG9wLWNvbG9yPSIjZmZmMmUzIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjZmZmMmUzIiBzdG9wLW9wYWNpdHk9IjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTA0NiAtOTAyKSI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNzQuNzQ1IDkwMikiIG9wYWNpdHk9IjAuOTk2Ii8+PGcgY2xpcC1wYXRoPSJ1cmwoI2EpIj48cGF0aCBkPSJNMCwwSDEyMS4zOTVWMzQxLjFIMFoiIHRyYW5zZm9ybT0ibWF0cml4KDAuODM5LCAwLjU0NSwgLTAuNTQ1LCAwLjgzOSwgMTAyMy4wNjEsIDc0NC40MDYpIiBvcGFjaXR5PSIwLjgiIGZpbGw9InVybCgjYikiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTpvdmVybGF5O2lzb2xhdGlvbjppc29sYXRlIi8+PC9nPjxnIHRyYW5zZm9ybT0ibWF0cml4KDEsIDAsIDAsIDEsIDEwNDYsIDkwMikiIGZpbHRlcj0idXJsKCNjKSI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI4Ljc1KSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4zIi8+PC9nPjxnIHRyYW5zZm9ybT0ibWF0cml4KDEsIDAsIDAsIDEsIDEwNDYsIDkwMikiIGZpbHRlcj0idXJsKCNmKSI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI4Ljc1KSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4zIi8+PC9nPjxwYXRoIGQ9Ik0tNi40MTMsMWMtMy4yNjYsMC01LjMwNywxLjU2Ny02LjkzNiw0LjA4OWwtMTIuMTgsMTguODU4QTcuNDY5LDcuNDY5LDAsMCwwLTI2Ljc0NSwyOGE3LjQ2OSw3LjQ2OSwwLDAsMCwxLjIxNyw0LjA1NGwxMi4xOCwxOC44NThBOS40MzYsOS40MzYsMCwwLDAtNS40MTMsNTVIMTM1LjkyMmE5LjQzNiw5LjQzNiwwLDAsMCw3LjkzNi00LjA4OWwxMi4xOC0xOC44NThhNy4zNjQsNy4zNjQsMCwwLDAsMC04LjEwOUwxNDMuODU5LDUuMDg5QTkuNDM2LDkuNDM2LDAsMCwwLDEzNS45MjIsMUgtNS40MTNtLTcuMjU2LTFoMFptNi4yNTYsMEgxMzYuOTIyQTEwLjQxLDEwLjQxLDAsMCwxLDE0NS43LDQuNTQ2TDE1Ny44NzgsMjMuNGE4LjM2NCw4LjM2NCwwLDAsMSwwLDkuMTk0TDE0NS43LDUxLjQ1NkExMC40MSwxMC40MSwwLDAsMSwxMzYuOTIyLDU2SC02LjQxM2ExMC40MSwxMC40MSwwLDAsMS04Ljc3Ni00LjU0NkwtMjcuMzY5LDMyLjZhOC4zNjQsOC4zNjQsMCwwLDEsMC05LjE5NGwxMi4xOC0xOC44NThBMTAuNDEsMTAuNDEsMCwwLDEtNi40MTMsMFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNzQuNzQ1IDkwMikiIGZpbGw9IiNmZmUxYmYiIG9wYWNpdHk9IjAuNCIvPjxwYXRoIGQ9Ik0tNi40MTMsMWMtMy4yNjYsMC01LjMwNywxLjU2Ny02LjkzNiw0LjA4OWwtMTIuMTgsMTguODU4QTcuNDY5LDcuNDY5LDAsMCwwLTI2Ljc0NSwyOGE3LjQ2OSw3LjQ2OSwwLDAsMCwxLjIxNyw0LjA1NGwxMi4xOCwxOC44NThBOS40MzYsOS40MzYsMCwwLDAtNS40MTMsNTVIMTM1LjkyMmE5LjQzNiw5LjQzNiwwLDAsMCw3LjkzNi00LjA4OWwxMi4xOC0xOC44NThhNy4zNjQsNy4zNjQsMCwwLDAsMC04LjEwOUwxNDMuODU5LDUuMDg5QTkuNDM2LDkuNDM2LDAsMCwwLDEzNS45MjIsMUgtNS40MTNtLTcuMjU2LTFoMFptNi4yNTYsMEgxMzYuOTIyQTEwLjQxLDEwLjQxLDAsMCwxLDE0NS43LDQuNTQ2TDE1Ny44NzgsMjMuNGE4LjM2NCw4LjM2NCwwLDAsMSwwLDkuMTk0TDE0NS43LDUxLjQ1NkExMC40MSwxMC40MSwwLDAsMSwxMzYuOTIyLDU2SC02LjQxM2ExMC40MSwxMC40MSwwLDAsMS04Ljc3Ni00LjU0NkwtMjcuMzY5LDMyLjZhOC4zNjQsOC4zNjQsMCwwLDEsMC05LjE5NGwxMi4xOC0xOC44NThBMTAuNDEsMTAuNDEsMCwwLDEtNi40MTMsMFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNzQuNzQ1IDkwMikiIGZpbGw9InVybCgjaSkiLz48L2c+PC9zdmc+");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTg4IiBoZWlnaHQ9IjU2LjAwMiIgdmlld0JveD0iMCAwIDE4OCA1Ni4wMDIiPjxkZWZzPjxjbGlwUGF0aCBpZD0iYSI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNzQuNzQ1IDkwMikiIG9wYWNpdHk9IjAuOTk2Ii8+PC9jbGlwUGF0aD48bGluZWFyR3JhZGllbnQgaWQ9ImIiIHkxPSIwLjU1OCIgeDI9IjEiIHkyPSIwLjU1OCIgZ3JhZGllbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjxzdG9wIG9mZnNldD0iMCIgc3RvcC1jb2xvcj0iI2ZmZjJlMyIgc3RvcC1vcGFjaXR5PSIwIi8+PHN0b3Agb2Zmc2V0PSIwLjQ4OCIgc3RvcC1jb2xvcj0iI2ZmZiIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI2ZmZjJlMyIgc3RvcC1vcGFjaXR5PSIwIi8+PC9saW5lYXJHcmFkaWVudD48ZmlsdGVyIGlkPSJjIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTg4IiBoZWlnaHQ9IjU2LjAwMiIgZmlsdGVyVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48ZmVPZmZzZXQgZHk9IjIiIGlucHV0PSJTb3VyY2VBbHBoYSIvPjxmZUdhc3NpYW5CbHVyIHN0ZERldmlhdGlvbj0iMiIgcmVzdWx0PSJkIi8+PGZlRmxvb2QgZmxvb2QtY29sb3I9IiNmYWVkZDgiIHJlc3VsdD0iZSIsMCIvPjxmZUNvbXBvc2l0ZSBvcGVyYXRvcj0ib3V0IiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJkIi8+PGZlQ29tcG9zaXRlIG9wZXJhdG9yPSJpbiIgaW49ImUiLz48ZmVDb21wb3NpdGUgb3BlcmF0b3I9ImluIiBpbjI9IlNvdXJjZUdyYXBoaWMiLz48L2ZpbHRlcj48ZmlsdGVyIGlkPSJmIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTg4IiBoZWlnaHQ9IjU2LjAwMiIgZmlsdGVyVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48ZmVPZmZzZXQgZHk9Ii0yIiBpbm5lciBpbnB1dD0iU291cmNlQ29tcG9zaXRlIiBvcGVyYXRvcj0ib3V0IiBpbj0iU291cmNlR3JhcGhpYyIgaW4yPSJnIi8+PGZlQ29tcG9zaXRlIG9wZXJhdG9yPSJpbiIgaW49ImgiLz48ZmVDb21wb3NpdGUgb3BlcmF0b3I9ImluIiBpbjI9IlNvdXJjZUdyYXBoaWMiLz48L2ZpbHRlcj48bGluZWFyR3JhZGllbnQgaWQ9ImkiIHgxPSIwLjUiIHkxPSIxIiB4Mj0iMC41IiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHN0b3Agb2Zmc2V0PSIwIiBzdG9wLWNvbG9yPSIjZmZmMmUzIiBzdG9wLW9wYWNpdHk9IjAiLz48c3RvcCBvZmZzZXQ9IjAuNDg4IiBzdG9wLWNvbG9yPSIjZmZmMmUzIi8+PHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjZmZmMmUzIiBzdG9wLW9wYWNpdHk9IjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMTA0NiAtOTAyKSI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNzQuNzQ1IDkwMikiIG9wYWNpdHk9IjAuOTk2Ii8+PGcgY2xpcC1wYXRoPSJ1cmwoI2EpIj48cGF0aCBkPSJNMCwwSDEyMS4zOTVWMzQxLjFIMFoiIHRyYW5zZm9ybT0ibWF0cml4KDAuODM5LCAwLjU0NSwgLTAuNTQ1LCAwLjgzOSwgMTAyMy4wNjEsIDc0NC40MDYpIiBvcGFjaXR5PSIwLjgiIGZpbGw9InVybCgjYikiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTpvdmVybGF5O2lzb2xhdGlvbjppc29sYXRlIi8+PC9nPjxnIHRyYW5zZm9ybT0ibWF0cml4KDEsIDAsIDAsIDEsIDEwNDYsIDkwMikiIGZpbHRlcj0idXJsKCNjKSI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI4Ljc1KSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4zIi8+PC9nPjxnIHRyYW5zZm9ybT0ibWF0cml4KDEsIDAsIDAsIDEsIDEwNDYsIDkwMikiIGZpbHRlcj0idXJsKCNmKSI+PHBhdGggZD0iTTEzNi45MjIsMEExMC40MSwxMC40MSwwLDAsMSwxNDUuNyw0LjU0NkwxNTcuODc4LDIzLjRhOC4zNjQsOC4zNjQsMCwwLDEsMCw5LjE5NEwxNDUuNyw1MS40NTZBMTAuNDEsMTAuNDEsMCwwLDEsMTM2LjkyMiw1NkgtNi40MTNhMTAuNDEsMTAuNDEsMCwwLDEtOC43NzYtNC41NDZMLTI3LjM2OSwzMi42YTguMzY0LDguMzY0LDAsMCwxLDAtOS4xOTRsMTIuMTgtMTguODU4QTEwLjQxLDEwLjQxLDAsMCwxLTYuNDEzLDBIMTM2LjkyMloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI4Ljc1KSIgZmlsbD0iI2ZmZiIgb3BhY2l0eT0iMC4zIi8+PC9nPjxwYXRoIGQ9Ik0tNi40MTMsMWMtMy4yNjYsMC01LjMwNywxLjU2Ny02LjkzNiw0LjA4OWwtMTIuMTgsMTguODU4QTcuNDY5LDcuNDY5LDAsMCwwLTI2Ljc0NSwyOGE3LjQ2OSw3LjQ2OSwwLDAsMCwxLjIxNyw0LjA1NGwxMi4xOCwxOC44NThBOS40MzYsOS40MzYsMCwwLDAtNS40MTMsNTVIMTM1LjkyMmE5LjQzNiw5LjQzNiwwLDAsMCw3LjkzNi00LjA4OWwxMi4xOC0xOC44NThhNy4zNjQsNy4zNjQsMCwwLDAsMC04LjEwOUwxNDMuODU5LDUuMDg5QTkuNDM2LDkuNDM2LDAsMCwwLDEzNS45MjIsMUgtNS40MTNtLTcuMjU2LTFoMFptNi4yNTYsMEgxMzYuOTIyQTEwLjQxLDEwLjQxLDAsMCwxLDE0NS43LDQuNTQ2TDE1Ny44NzgsMjMuNGE4LjM2NCw4LjM2NCwwLDAsMSwwLDkuMTk0TDE0NS43LDUxLjQ1NkExMC40MSwxMC40MSwwLDAsMSwxMzYuOTIyLDU2SC02LjQxM2ExMC40MSwxMC40MSwwLDAsMS04Ljc3Ni00LjU0NkwtMjcuMzY5LDMyLjZhOC4zNjQsOC4zNjQsMCwwLDEsMC05LjE5NGwxMi4xOC0xOC44NThBMTAuNDEsMTAuNDEsMCwwLDEtNi40MTMsMFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNzQuNzQ1IDkwMikiIGZpbGw9IiNmZmUxYmYiIG9wYWNpdHk9IjAuNCIvPjxwYXRoIGQ9Ik0tNi40MTMsMWMtMy4yNjYsMC01LjMwNywxLjU2Ny02LjkzNiw0LjA4OWwtMTIuMTgsMTguODU4QTcuNDY5LDcuNDY5LDAsMCwwLTI2Ljc0NSwyOGE3LjQ2OSw3LjQ2OSwwLDAsMCwxLjIxNyw0LjA1NGwxMi4xOCwxOC44NThBOS40MzYsOS40MzYsMCwwLDAtNS40MTMsNTVIMTM1LjkyMmE5LjQzNiw5LjQzNiwwLDAsMCw3LjkzNi00LjA4OWwxMi4xOC0xOC44NThhNy4zNjQsNy4zNjQsMCwwLDAsMC04LjEwOUwxNDMuODU5LDUuMDg5QTkuNDM2LDkuNDM2LDAsMCwwLDEzNS45MjIsMUgtNS40MTNtLTcuMjU2LTFoMFptNi4yNTYsMEgxMzYuOTIyQTEwLjQxLDEwLjQxLDAsMCwxLDE0NS43LDQuNTQ2TDE1Ny44NzgsMjMuNGE4LjM2NCw4LjM2NCwwLDAsMSwwLDkuMTk0TDE0NS43LDUxLjQ1NkExMC40MSwxMC40MSwwLDAsMSwxMzYuOTIyLDU2SC02LjQxM2ExMC40MSwxMC40MSwwLDAsMS04Ljc3Ni00LjU0NkwtMjcuMzY5LDMyLjZhOC4zNjQsOC4zNjQsMCwwLDEsMC05LjE5NGwxMi4xOC0xOC44NThBMTAuNDEsMTAuNDEsMCwwLDEtNi40MTMsMFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwNzQuNzQ1IDkwMikiIGZpbGw9InVybCgjaSkiLz48L2c+PC9zdmc+");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
#zunjie-v800-container .section-id-video .player-button-content .player-button-hightlight {
  width: 6.322396vw;
  height: 17.765625vw;
  background: linear-gradient(to right, transparent, red, transparent);
  left: 10.333333vw;
  top: -7.916667vw;
  transform: rotate(33deg);
}
#zunjie-v800-container .section-id-video .player-button-content .player-button {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-id-video .player-button-content {
    bottom: 13.333333vw;
  }
  #zunjie-v800-container .section-id-video .player-button-content .player-button-bg {
    width: 45.555556vw;
  }
}
#zunjie-v800-container .section-tabnav .text-content, #zunjie-v800-container .tabnav-swiper .text-content {
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  font-weight: 400;
  letter-spacing: 0.2em;
}
#zunjie-v800-container .section-tabnav .tabnav-content, #zunjie-v800-container .tabnav-swiper .tabnav-content {
  left: 0;
  right: 0;
  bottom: 5vw;
  z-index: 3;
}
#zunjie-v800-container .section-tabnav .tabnav-content .tabnav-list, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-list {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#zunjie-v800-container .section-tabnav .tabnav-content .tabnav-item, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-item {
  padding-bottom: 0.833333vw;
  font-size: max(1.041667vw, 8px);
  line-height: 1.25;
  font-weight: 400;
  cursor: pointer;
  transition: opacity 0.3s;
  white-space: nowrap;
  color: #FFF2E3;
  outline: 0;
  opacity: 0.4;
  will-change: transform;
}
#zunjie-v800-container .section-tabnav .tabnav-content .tabnav-item.current, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-item.current {
  opacity: 1;
}
#zunjie-v800-container .section-tabnav .tabnav-content .tabnav-item + .tabnav-item, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-item + .tabnav-item {
  margin-left: 2.5vw;
}
@media (any-hover: hover) and (pointer: fine) {
  #zunjie-v800-container .section-tabnav .tabnav-content .tabnav-item:not(.current):hover, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-item:not(.current):hover {
    opacity: 0.6;
  }
}
#zunjie-v800-container .section-tabnav .tabnav-content .tabnav-indicator, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-indicator {
  position: relative;
  width: 100%;
  height: 2px;
}
#zunjie-v800-container .section-tabnav .tabnav-content .tabnav-indicator::before, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-indicator::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(181, 172, 162, 0.4);
}
#zunjie-v800-container .section-tabnav .tabnav-content .tabnav-indicator::after, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-indicator::after {
  display: block;
  width: var(--indicator-width, 0);
  height: 100%;
  content: "";
  transition: width 0.8s, transform 0.8s;
  transform: translateX(var(--indicator-offset, 0));
  background-color: #FFF2E3;
}
#zunjie-v800-container .section-tabnav .tabnav-content .stack-item, #zunjie-v800-container .tabnav-swiper .tabnav-content .stack-item {
  position: relative;
  width: 100%;
  font-size: max(0.9375vw, 8px);
  transition: opacity 0.8s cubic-bezier(0.65, 0.05, 0.36, 1);
  opacity: 0;
}
#zunjie-v800-container .section-tabnav .tabnav-content .stack-item.current, #zunjie-v800-container .tabnav-swiper .tabnav-content .stack-item.current {
  z-index: 1;
  opacity: 1;
}
#zunjie-v800-container .section-tabnav .background-swiper .tabnav-content, #zunjie-v800-container .tabnav-swiper .background-swiper .tabnav-content {
  bottom: 4.166667vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-tabnav .background-swiper .tabnav-content, #zunjie-v800-container .tabnav-swiper .background-swiper .tabnav-content {
    bottom: auto;
    margin-top: 22.777778vw;
  }
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-tabnav .tabnav-content, #zunjie-v800-container .tabnav-swiper .tabnav-content {
    width: 100%;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: initial;
  }
  #zunjie-v800-container .section-tabnav .tabnav-content::before, #zunjie-v800-container .section-tabnav .tabnav-content::after, #zunjie-v800-container .tabnav-swiper .tabnav-content::before, #zunjie-v800-container .tabnav-swiper .tabnav-content::after {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 11.111111vw;
    height: 12.5vw;
    content: "";
    pointer-events: none;
    z-index: 1;
  }
  #zunjie-v800-container .section-tabnav .tabnav-content::before, #zunjie-v800-container .tabnav-swiper .tabnav-content::before {
    left: 0;
    background-image: linear-gradient(90deg, #000 40%, transparent);
  }
  #zunjie-v800-container .section-tabnav .tabnav-content::after, #zunjie-v800-container .tabnav-swiper .tabnav-content::after {
    right: 0;
    background-image: linear-gradient(90deg, transparent, #000 60%);
  }
  #zunjie-v800-container .section-tabnav .tabnav-content .tabnav-container, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-container {
    width: 100%;
    position: relative;
    display: flex;
    line-height: 0;
    white-space: nowrap;
    padding-left: auto;
    padding-right: auto;
  }
  #zunjie-v800-container .section-tabnav .tabnav-content .tabnav-container.is-scroll, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-container.is-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  #zunjie-v800-container .section-tabnav .tabnav-content .tabnav-list, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-list {
    z-index: initial;
    position: relative;
    display: flex;
  }
  #zunjie-v800-container .section-tabnav .tabnav-content .tabnav-item, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-item {
    font-size: 5.555556vw;
    line-height: 1.25;
    padding-bottom: 3.888889vw;
  }
  #zunjie-v800-container .section-tabnav .tabnav-content .tabnav-item + .tabnav-item, #zunjie-v800-container .tabnav-swiper .tabnav-content .tabnav-item + .tabnav-item {
    margin-left: 11.111111vw;
  }
  #zunjie-v800-container .section-tabnav .tabnav-content .stack-item, #zunjie-v800-container .tabnav-swiper .tabnav-content .stack-item {
    font-size: 3.888889vw;
  }
}
#zunjie-v800-container .section-internal-process .text-content {
  top: 0;
  left: 0;
  right: 0;
}
#zunjie-v800-container .section-colour header p {
  color: #E0D0BD;
}
#zunjie-v800-container .section-colour .swiper-slide {
  overflow: hidden;
  background-image: linear-gradient(180deg, #151417, #252329);
}
#zunjie-v800-container .section-colour .slide-picture {
  transition: transform 0ms 600ms;
  transform: scale(1.1);
}
#zunjie-v800-container .section-colour .swiper-slide-active .slide-picture {
  transition: transform 600ms;
  transform: scale(1);
}
#zunjie-v800-container .section-colour .control-container {
  display: flex;
  justify-content: center;
  bottom: 5vw;
  left: 0;
  right: 0;
}
#zunjie-v800-container .section-colour .control-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
#zunjie-v800-container .section-colour .stack-item {
  font-size: 1.666667vw;
  color: #FFF2E3;
  font-weight: 400;
  display: flex;
  align-items: center;
}
#zunjie-v800-container .section-colour .stack-item .stack-item-line {
  display: inline-block;
  width: 1px;
  height: 1.354167vw;
  background: #E8E8E8;
  margin: 0 2.083333vw;
}
#zunjie-v800-container .section-colour .stack-item:nth-child(2) {
  color: #C1E3FD;
}
#zunjie-v800-container .section-colour .stack-item:nth-child(3) {
  color: #D35B80;
}
#zunjie-v800-container .section-colour .stack-item:nth-child(4) {
  color: #DEBE97;
}
#zunjie-v800-container .section-colour .stack-item:nth-child(5) {
  color: #F5F5F5;
}
#zunjie-v800-container .section-colour .stack-item:nth-child(6) {
  color: #EDEDED;
}
#zunjie-v800-container .section-colour .colournav-container {
  position: relative;
  display: flex;
}
#zunjie-v800-container .section-colour .colournav-list {
  position: relative;
  display: flex;
  gap: 1.666667vw;
}
#zunjie-v800-container .section-colour .colournav-item {
  position: relative;
  width: 1.666667vw;
  height: 1.666667vw;
  cursor: pointer;
}
#zunjie-v800-container .section-colour .colournav-item .colour-swatch-indicator {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: opacity 0.8s;
  pointer-events: none;
  opacity: 0;
}
#zunjie-v800-container .section-colour .colournav-item .colour-swatch-indicator svg {
  width: 100%;
  height: 100%;
}
#zunjie-v800-container .section-colour .colournav-item .colour-swatch {
  width: 100%;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
#zunjie-v800-container .section-colour .colournav-item.current {
  cursor: default;
}
#zunjie-v800-container .section-colour .colournav-item.current .colour-swatch-indicator {
  transition-duration: 600ms;
  opacity: 1;
}
#zunjie-v800-container .section-colour .colournav-indicator {
  transition: opacity 360ms;
  opacity: 0;
}
#zunjie-v800-container .section-colour .modal-open-button-content {
  bottom: 12.5vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-colour .control-wrapper {
    flex-direction: column-reverse;
  }
  #zunjie-v800-container .section-colour .stack-list {
    position: relative;
    margin-left: 0;
    transform: none;
    text-align: center;
  }
  #zunjie-v800-container .section-colour .stack-item {
    font-size: 6.666667vw;
    display: flex;
    flex-direction: column;
  }
  #zunjie-v800-container .section-colour .stack-item .stack-item-line {
    display: none;
  }
  #zunjie-v800-container .section-colour .colournav-list {
    gap: 5.555556vw;
  }
  #zunjie-v800-container .section-colour .colournav-item {
    width: 7.777778vw;
    height: 7.777778vw;
  }
  #zunjie-v800-container .section-colour .modal-open-button-content {
    bottom: 4.444444vw;
  }
}
#zunjie-v800-container #modal-space-2 .modal-container.is-overflow {
  display: block;
  height: 100%;
  overflow: auto;
  display: block;
}
#zunjie-v800-container #modal-space-2 .modal-container.is-overflow .modal-wrapper {
  display: block;
  overflow: hidden;
  padding-top: 5vw;
}
#zunjie-v800-container #modal-space-2 .modal-container.is-overflow .modal-arrownav-list {
  margin-bottom: 2.8125vw;
}
#zunjie-v800-container #modal-space-2 .modal-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
}
#zunjie-v800-container #modal-space-2 .modal-wrapper .modal-wrapper-content {
  width: 100%;
  overflow: hidden;
}
#zunjie-v800-container #modal-space-2 .modal-swiper {
  width: 81.25vw;
  height: auto;
  overflow: visible;
}
#zunjie-v800-container #modal-space-2 .modal-swiper .swiper-slide {
  width: 59.166667vw;
  flex-direction: column;
  align-items: initial;
  height: auto;
  cursor: pointer;
}
#zunjie-v800-container #modal-space-2 .modal-swiper .swiper-slide .covered-picture {
  width: 100%;
}
#zunjie-v800-container #modal-space-2 .modal-swiper .swiper-slide .slide-content {
  width: 54.6875vw;
  margin-left: 0.833333vw;
  margin-top: 2.5vw;
  transition: opacity 0.4s;
  opacity: 0;
}
#zunjie-v800-container #modal-space-2 .modal-swiper .swiper-slide .slide-content .slide-intro {
  margin-top: 0;
}
#zunjie-v800-container #modal-space-2 .modal-swiper .swiper-slide.swiper-slide-active {
  cursor: auto;
}
#zunjie-v800-container #modal-space-2 .modal-swiper .swiper-slide.swiper-slide-active .slide-content {
  transition: opacity 0.4s 0.4s;
  opacity: 1;
}
#zunjie-v800-container #modal-space-2 .modal-arrownav-list {
  position: initial;
  margin-top: 2.5vw;
  display: flex;
  justify-content: flex-end;
}
#zunjie-v800-container #modal-space-2 .modal-arrownav-list .arrownav-prev:not(.arrownav-disabled):hover,
#zunjie-v800-container #modal-space-2 .modal-arrownav-list .arrownav-next:not(.arrownav-disabled):hover {
  transform: translateX(0);
}
#zunjie-v800-container #modal-space-2 .modal-arrownav-list .arrownav-prev {
  margin-right: 0;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container #modal-space-2 .modal-container.is-overflow .modal-wrapper {
    padding-top: 17.777778vw;
    padding-bottom: 13.888889vw;
  }
  #zunjie-v800-container #modal-space-2 .modal-container {
    height: 100%;
    display: flex;
  }
  #zunjie-v800-container #modal-space-2 .modal-wrapper {
    height: auto;
    padding-top: 16.666667vw;
    padding-bottom: 13.888889vw;
  }
  #zunjie-v800-container #modal-space-2 .modal-swiper {
    width: 82.222222vw;
  }
  #zunjie-v800-container #modal-space-2 .modal-swiper .swiper-wrapper {
    display: flex;
    padding-bottom: 0;
  }
  #zunjie-v800-container #modal-space-2 .modal-swiper .swiper-wrapper .swiper-slide {
    width: 100%;
  }
  #zunjie-v800-container #modal-space-2 .modal-swiper .swiper-wrapper .swiper-slide .slide-content {
    width: 77.777778vw;
    margin: 6.666667vw auto 0;
  }
  #zunjie-v800-container #modal-space-2 .modal-swiper .swiper-wrapper .swiper-slide .slide-content .slide-intro {
    font-size: 3.888889vw;
  }
  #zunjie-v800-container #modal-space-2 .modal-arrownav-list {
    display: flex;
    position: initial;
    justify-content: end;
    margin-top: 11.111111vw;
  }
  #zunjie-v800-container #modal-space-2 .modal-close-container {
    bottom: auto;
  }
  #zunjie-v800-container #modal-space-2 .modal-close-container .modal-close-button {
    padding-top: 5.555556vw;
  }
}
#zunjie-v800-container .section-capacity .section-capacity-01 .text-content {
  bottom: 5vw;
  left: 0;
  right: 0;
}
#zunjie-v800-container .section-capacity .section-capacity-03 .background-swiper .tabnav-content {
  bottom: 4.166667vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-capacity .section-capacity-03 .background-swiper .tabnav-content {
    bottom: auto;
  }
}
#zunjie-v800-container .section-capacity .section-capacity-05 .text-content {
  top: 0;
  left: 0;
  right: 0;
}
#zunjie-v800-container .section-capacity .section-capacity-06 .headline {
  font-weight: 400;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-capacity .section-capacity-04 .tabnav-content::before, #zunjie-v800-container .section-capacity .section-capacity-04 .tabnav-content::after {
    display: none;
  }
  #zunjie-v800-container .section-capacity .section-capacity-04 .tabnav-content .tabnav-wrapper {
    padding: 0;
  }
  #zunjie-v800-container .section-capacity .section-capacity-06 p {
    order: 1;
  }
}
#zunjie-v800-container .section-intelligence p.text-content {
  width: 46.575vw;
  bottom: 5vw;
  left: 0;
  right: 0;
}
#zunjie-v800-container .section-intelligence .section-intelligence-02 .images-container-small {
  position: absolute;
  top: 10.9375vw;
  left: 0;
  right: 0;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-intelligence .section-intelligence-02 .text-desc {
    width: 82.222222vw;
  }
  #zunjie-v800-container .section-intelligence .section-intelligence-02 .images-container-small {
    top: 13.888889vw;
  }
}
#zunjie-v800-container .section-intelligence .section-intelligence-03 .params-list {
  color: #FFF2E3;
  font-weight: 300;
  align-items: flex-end;
}
#zunjie-v800-container .section-intelligence .section-intelligence-03 .params-list .params-item-line {
  width: 1px;
  height: 3.333333vw;
  background: #B5ACA2;
  opacity: 0.7;
  margin: 0 2.083333vw;
}
#zunjie-v800-container .section-intelligence .section-intelligence-03 .params-list span {
  margin-left: 0.625vw;
}
#zunjie-v800-container .section-intelligence .section-intelligence-03 .params-list .params-item p:last-child {
  line-height: 1.25;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-intelligence .section-intelligence-03 .params-list .params-item-line {
    height: 8.888889vw;
    margin: 0 5.555556vw 1.816667vw;
  }
}
#zunjie-v800-container .section-cyxj .section-cyxj-01 .headline {
  font-weight: 400;
}
#zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content {
  bottom: 0;
  left: 0;
  right: 0;
}
#zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list {
  width: 45.052083vw;
}
#zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  white-space: nowrap;
}
#zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item .stat-value-item {
  width: 100%;
  color: #FFF2E3;
}
#zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item .stat-value-item > div {
  align-items: baseline;
}
#zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item .stat-value {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 1em;
  line-height: 1.25;
  font-size: var(--stat-number-font-size, 2.5vw);
}
#zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item .stat-number {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
}
#zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item .stat-number span {
  height: 1em;
  line-height: 1.25;
  font-weight: 300;
}
#zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item .stat-unit {
  margin-left: 0.625vw;
  font-size: max(0.9375vw, 8px);
  line-height: 1.25;
  font-weight: 300;
}
#zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item .stat-caption {
  font-size: max(0.9375vw, 8px);
  font-weight: 300;
  line-height: 1.25;
}
#zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item-line {
  width: 1px;
  height: 3.333333vw;
  background-color: #B5ACA2;
  opacity: 0.7;
}
#zunjie-v800-container .section-cyxj .section-cyxj-02 .headline,
#zunjie-v800-container .section-cyxj .section-cyxj-02 .headline-desc {
  font-weight: 400;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list {
    width: 79.027778vw;
    align-items: end;
  }
  #zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item .stat-value {
    font-size: var(--stat-number-font-size, 7.777778vw);
  }
  #zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item .stat-unit {
    margin-left: 3.888889vw;
    font-size: 3.333333vw;
  }
  #zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item .stat-caption {
    font-size: 3.333333vw;
  }
  #zunjie-v800-container .section-cyxj .section-cyxj-01 div.text-content .stat-list .stat-item-line {
    height: 8.888889vw;
  }
  #zunjie-v800-container .section-cyxj .section-cyxj-02 .headline-desc {
    order: 1;
  }
}
#zunjie-v800-container .banner-switch-side {
  overflow: hidden;
}
#zunjie-v800-container .banner-switch-side .swiper-slide:not(.swiper-slide-active) {
  cursor: pointer;
}
#zunjie-v800-container .banner-switch-side .swiper-content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding-right: 6.875vw;
}
#zunjie-v800-container .banner-switch-side .stack-list {
  text-align: left;
  font-weight: 400;
}
#zunjie-v800-container .banner-switch-side .arrownav-list {
  justify-content: flex-end;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .banner-switch-side .swiper::before {
    top: -10.714286vw;
    bottom: -10.714286vw;
  }
  #zunjie-v800-container .banner-switch-side .swiper-content {
    flex-direction: column;
    padding-right: 0;
  }
  #zunjie-v800-container .banner-switch-side .stack-list {
    width: 77.777778vw;
  }
}
#zunjie-v800-container .section-intelligent-driving-05 .params-list {
  top: 11.145833vw;
  left: 0;
  right: 0;
  color: #FFF2E3;
}
#zunjie-v800-container .section-intelligent-driving-05 .params-list .params-item-line {
  width: 1px;
  height: 3.333333vw;
  background-color: #B5ACA2;
  opacity: 0.7;
  margin: 0 2.083333vw;
}
#zunjie-v800-container .section-intelligent-driving-05 .params-list .params-item p:first-child {
  font-weight: 300;
}
#zunjie-v800-container .section-intelligent-driving-05 .params-list .params-item p:last-child {
  line-height: 1.25;
  font-weight: 400;
}
#zunjie-v800-container .section-intelligent-driving-05 .params-list .params-item p:last-child span {
  font-weight: 300;
}
#zunjie-v800-container .section-intelligent-driving-05 .params-list span {
  margin-left: 0.625vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-intelligent-driving-05 .params-list {
    top: 8.333333vw;
    align-items: end;
  }
  #zunjie-v800-container .section-intelligent-driving-05 .params-list .params-item-line {
    height: 8.888889vw;
    margin: 0 5.555556vw;
    margin-bottom: 0.833333vw;
  }
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-anxing-02 .stack-list {
    width: 82.222222vw;
  }
}
#zunjie-v800-container .section-anxing-05 .params-list {
  color: #FFF2E3;
  top: 12.708333vw;
  left: 0;
  right: 0;
  font-weight: 400;
}
#zunjie-v800-container .section-anxing-05 .params-list .params-item-line {
  width: 1px;
  height: 3.333333vw;
  background-color: #B5ACA2;
  opacity: 0.7;
  margin: 0 4.166667vw;
}
#zunjie-v800-container .section-anxing-05 .params-list .params-item p:last-child {
  line-height: 1.25;
}
#zunjie-v800-container .section-anxing-05 .params-list p.txt-48 {
  line-height: 1.25;
}
#zunjie-v800-container .section-anxing-05 .params-list span {
  margin-left: 0.625vw;
}
#zunjie-v800-container .section-anxing-05 .modal-open-button-content {
  bottom: 9.583333vw;
}
#zunjie-v800-container .section-anxing-05 .tips {
  font-size: max(8px, 0.729167vw);
  color: #C4BAAF;
  left: 0;
  right: 0;
  bottom: 5vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-anxing-05 .params-list .params-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #zunjie-v800-container .section-anxing-05 .params-list .params-item p:first-child {
    display: inline-flex;
    padding: 2.222222vw 5.555556vw;
    background: rgba(255, 242, 227, 0.4);
    border-radius: 1.111111vw;
  }
  #zunjie-v800-container .section-anxing-05 .tips {
    font-size: 3.333333vw;
  }
}
#zunjie-v800-container .section-support .badge-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 4.166667vw 0;
  text-align: center;
  background-image: linear-gradient(180deg, #0f0f0f, #222126);
}
#zunjie-v800-container .section-support .badge-item:nth-child(n+2) {
  margin-left: 2.604167vw;
}
#zunjie-v800-container .section-support .badge-icon {
  width: 4.166667vw;
}
#zunjie-v800-container .section-support .badge-title {
  margin-top: 0.208333vw;
  font-size: 1.145833vw;
}
#zunjie-v800-container .section-support .badge-caption {
  font-size: 0.9375vw;
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-support .badge-list {
    padding: 5.714286vw 0;
  }
  #zunjie-v800-container .section-support .badge-item:nth-child(n+2) {
    margin-left: 2.857143vw;
  }
  #zunjie-v800-container .section-support .badge-icon {
    width: 7.142857vw;
  }
  #zunjie-v800-container .section-support .badge-title {
    margin-top: 0.857143vw;
    font-size: 2vw;
  }
  #zunjie-v800-container .section-support .badge-caption {
    font-size: 1.428571vw;
  }
}
@media (max-aspect-ratio: 7/10) {
  #zunjie-v800-container .section-support .badge-list {
    padding: 8.888889vw 0;
  }
  #zunjie-v800-container .section-support .badge-item {
    width: 32.777778vw;
  }
  #zunjie-v800-container .section-support .badge-item:nth-child(n+2) {
    margin-left: 0;
  }
  #zunjie-v800-container .section-support .badge-item:nth-child(2), #zunjie-v800-container .section-support .badge-item:nth-child(4) {
    margin-left: 7.777778vw;
  }
  #zunjie-v800-container .section-support .badge-icon {
    width: 13.888889vw;
  }
  #zunjie-v800-container .section-support .badge-title {
    margin-top: 1.666667vw;
    font-size: 3.888889vw;
  }
  #zunjie-v800-container .section-support .badge-caption {
    font-size: 2.777778vw;
  }
}
#zunjie-v800-container .section-footnote {
  padding-bottom: 80px;
  --font-size: 14px;
  font-size: var(--font-size);
  --icon-size: 16px;
}
#zunjie-v800-container .section-footnote i {
  position: absolute;
  bottom: 0;
  display: none;
  width: var(--icon-size);
  height: var(--icon-size);
  cursor: pointer;
  transform: translateY(calc((var(--font-size) * 1.6 - var(--icon-size)) / 2 * -1 - 1px));
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23434343'/%3E%3Cpath d='M3.239,8.986,3.233,8.98a.688.688,0,0,1-.014-.972L5.942,5.28H.689A.685.685,0,0,1,.2,5.089l-.009-.01A.689.689,0,0,1,0,4.6V4.589a.7.7,0,0,1,.188-.48L.194,4.1a.681.681,0,0,1,.494-.213H5.911L3.225,1.178a.694.694,0,0,1,0-.979l0,0A.669.669,0,0,1,3.7,0a.772.772,0,0,1,.473.171l.021.017L7.838,3.845a1.151,1.151,0,0,1,.222.331l.008.019V4.2a1.036,1.036,0,0,1,.076.39v0a1.082,1.082,0,0,1-.312.76L4.212,8.976a.683.683,0,0,1-.487.2.715.715,0,0,1-.486-.194' transform='translate(3.411 12.076) rotate(-90)' fill='%23fff'/%3E%3C/svg%3E") center/100% no-repeat;
}
@media (min-width: 1920px) {
  #zunjie-v800-container .section-footnote {
    --icon-size: 16px;
  }
}
@media (max-aspect-ratio: 12/10) {
  #zunjie-v800-container .section-footnote {
    --font-size: 3.333333vw;
  }
}
#zunjie-v800-container .section-footnote ul, #zunjie-v800-container .section-footnote ol {
  font-size: inherit;
  padding-inline-start: 1.5em;
  margin: 0;
}
#zunjie-v800-container .section-footnote li {
  position: relative;
  font-size: inherit;
  color: #fff;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
#zunjie-v800-container .section-footnote li.current {
  color: #fff;
  font-weight: 800;
}
#zunjie-v800-container .section-footnote li.current i {
  display: inline-block;
}
#zunjie-v800-container .section-footnote li.asterisk {
  list-style-type: "*";
}
#zunjie-v800-container .section-footnote li.disclaimer {
  list-style-type: none;
}
#zunjie-v800-container .section-footnote ol li {
  list-style-type: decimal;
}
#zunjie-v800-container .section-footnote a {
  font-size: inherit;
  text-decoration: underline;
  color: inherit;
}
html[lang=zh-CN] #zunjie-v800-container .section-footnote {
  --font-size: 14px;
}
@media (min-width: 1920px) {
  html[lang=zh-CN] #zunjie-v800-container .section-footnote {
    --icon-size: 16px;
  }
}
@media (max-aspect-ratio: 12/10) {
  html[lang=zh-CN] #zunjie-v800-container .section-footnote {
    --font-size: 3.333333vw;
  }
}
html[lang=zh-CN] #zunjie-v800-container .section-footnote li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  color: #fff;
}
html[lang=zh-CN] #zunjie-v800-container .section-footnote li.current {
  font-weight: 800;
  color: #fff;
}/*# sourceMappingURL=main.css.map */