@charset "utf-8";
/*根元素代码*/
:root {
  --dominant-color: #FF6B00;
  --dominant-hover: #ff8832;
  --gradient: 0;
}
html {
  font-size: calc(100 * 100vw / 1920);
}
html.no-scroll {
  overflow: hidden;
}
body {
  word-break: break-word;
}
body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  z-index: 1;
  transition: all 0.5s;
}
/*头部样式*/
.time-run {
  height: 48px;
  background: var(--dominant-color);
  color: #fff;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 750px) {
  .time-run {
    padding: 15px 0;
    height: auto;
  }
}
.time-run .section {
  position: relative;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .time-run .section {
    padding-left: 16px;
    padding-right: 16px;
    justify-content: space-between;
  }
}
.time-run .title {
  font-family: Inter-Medium;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .time-run .title {
    font-size: 12px;
  }
}
.time-run .data-box {
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .time-run .data-box {
    position: initial;
    margin-right: 0;
  }
}
.time-run .data-box .date-time,
.time-run .data-box .date-s {
  margin-right: 6px;
  font-size: 18px;
  font-family: Inter-Medium;
}
@media screen and (max-width: 750px) {
  .time-run .data-box .date-time,
  .time-run .data-box .date-s {
    margin-right: 2px;
    font-size: 13px;
  }
}
.time-run .data-box .unit {
  margin-right: 12px;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .time-run .data-box .unit {
    margin-right: 6px;
    font-size: 10px;
    margin-top: 2px;
  }
}
.time-run .data-box .unit:last-child {
  margin-right: 0;
  margin-left: 6px;
}
@media screen and (max-width: 750px) {
  .time-run .data-box .unit:last-child {
    margin-right: 2px;
  }
}
.time-run2 {
  height: 48px;
  background: var(--dominant-color);
  color: #fff;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 750px) {
  .time-run2 {
    padding: 15px 0;
    height: auto;
  }
}
.time-run2 .section {
  position: relative;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .time-run2 .section {
    padding-left: 16px;
    padding-right: 16px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 750px) {
  .time-run2 .section {
    flex-direction: column;
  }
}
.time-run2 .title {
  font-family: Inter-Medium;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .time-run2 .title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 8px;
    padding-bottom: 8px;
    font-size: 13px;
    width: 100%;
  }
}
.time-run2 .data-box {
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .time-run2 .data-box {
    position: initial;
    margin-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .time-run2 .data-box {
    padding-top: 2px;
  }
}
.time-run2 .data-box .date-time,
.time-run2 .data-box .date-s {
  margin-right: 6px;
  font-size: 18px;
  font-family: Inter-Medium;
}
@media screen and (max-width: 750px) {
  .time-run2 .data-box .date-time,
  .time-run2 .data-box .date-s {
    margin-right: 2px;
    font-size: 16px;
  }
}
.time-run2 .data-box .unit {
  margin-right: 12px;
  font-size: 14px;
}
@media screen and (max-width: 750px) {
  .time-run2 .data-box .unit {
    margin-right: 6px;
    font-size: 10px;
    margin-top: 2px;
  }
}
.time-run2 .data-box .unit:last-child {
  margin-right: 0;
  margin-left: 6px;
}
@media screen and (max-width: 750px) {
  .time-run2 .data-box .unit:last-child {
    margin-right: 2px;
  }
}
.messages-run {
  background: #000;
  color: #fff;
  position: relative;
  z-index: 100;
}
.messages-run .messages-box {
  position: relative;
  padding: 8px 0;
}
@media screen and (max-width: 1024px) {
  .messages-run .messages-box {
    padding: 16px;
  }
}
.messages-run .messages-box .play-button,
.messages-run .messages-box .close {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 24px;
  cursor: pointer;
  height: fit-content;
}
.messages-run .messages-box .play-button {
  left: 0;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .messages-run .messages-box .play-button {
    opacity: 1;
  }
}
.messages-run .messages-box .play-button svg {
  width: auto;
  height: auto;
}
.messages-run .messages-box .play-button .m-pause,
.messages-run .messages-box .play-button .m-play {
  display: none;
  height: 24px;
}
.messages-run .messages-box .play-button .m-pause.active,
.messages-run .messages-box .play-button .m-play.active {
  display: flex;
}
.messages-run .messages-box .close {
  right: 0;
}
.messages-run a {
  text-decoration: underline;
}
.messages-run .messages-swiper {
  width: 648px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .messages-run .messages-swiper {
    width: 90%;
  }
}
.messages-run .swiper {
  width: 600px;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .messages-run .swiper {
    width: 100%;
  }
}
.messages-run .swiper .swiper-wrapper {
  align-items: center;
}
@media screen and (max-width: 750px) {
  .messages-run .swiper .swiper-wrapper {
    transition-timing-function: linear;
  }
}
.messages-run .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 600px;
}
@media screen and (max-width: 750px) {
  .messages-run .swiper .swiper-slide {
    text-align: left;
    justify-content: start;
    width: auto;
  }
}
.messages-run .swiper .swiper-slide .text {
  line-height: 1.715;
  font-size: 13px;
}
.messages-run .swiper .s-messages-button {
  background: #fff;
  border-radius: 16px;
  width: 78px;
  height: 32px;
  font-size: 13px;
  text-decoration: none;
  color: #000;
  font-family: Inter-Medium;
  display: inline-block;
  line-height: 32px;
  text-align: center;
  margin-left: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .messages-run .swiper .s-messages-button {
    margin-left: 10px;
  }
}
.messages-run .swiper-button-prev,
.messages-run .swiper-button-next {
  background: none;
  width: 24px;
  height: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 0;
  opacity: 0 !important;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 750px) {
  .messages-run .swiper-button-prev,
  .messages-run .swiper-button-next {
    display: none;
  }
}
.messages-run .swiper-button-prev i,
.messages-run .swiper-button-next i {
  color: #fff;
}
.messages-run .swiper-button-prev:hover,
.messages-run .swiper-button-next:hover {
  background: none;
}
.messages-run .swiper-button-prev {
  left: 0;
}
.messages-run .swiper-button-next {
  right: 0;
}
.messages-run:hover .play-button,
.messages-run:hover .swiper-button-prev,
.messages-run:hover .swiper-button-next {
  opacity: 1 !important;
}
header {
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 99;
  transition: all 0.5s;
}
header.active,
header.hover-active {
  background: #000 !important;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
}
header.active-show {
  top: -64px;
  background: #000;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 750px) {
  header.active-show {
    top: 0;
  }
}
header.orange {
  background: var(--dominant-color);
}
header.orange.active {
  background: var(--dominant-color);
}
header.orange .header-box .header-menu .messages {
  background: #fff;
  color: var(--dominant-color);
}
header.orange .header-box .header-menu .messages svg {
  filter: none;
}
@media screen and (max-width: 1024px) {
}
header .header-phone-click-side {
  height: 64px;
  width: 20px;
  position: relative;
  top: 0;
  left: 0;
  right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  header .header-phone-click-side {
    display: none;
  }
}
header .header-phone-click-side.active .header-phone-click .phone-click-line {
  background: var(--dominant-color);
}
header .header-phone-click-side.active .header-phone-click .phone-click-line::before,
header .header-phone-click-side.active .header-phone-click .phone-click-line::after {
  background: var(--dominant-color);
}
header .header-phone-click {
  cursor: pointer;
  width: 20px;
  height: 14px;
  align-items: center;
  position: absolute;
  right: 0;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
@media screen and (max-width: 1024px) {
  header .header-phone-click {
    display: flex !important;
  }
}
header .header-phone-click .phone-click-line {
  height: 2px;
  background: #fff;
  width: 100%;
  transition: all 0.5s;
  overflow: hidden;
}
header .header-phone-click .phone-click-line::before,
header .header-phone-click .phone-click-line::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.5s;
}
header .header-phone-click .phone-click-line::before {
  top: 0;
  transition: all 0.5s;
}
header .header-phone-click .phone-click-line::after {
  bottom: 0;
  transition: all 0.5s;
}
header .header-phone-click.active .phone-click-line {
  background: transparent;
  transition: all 0.5s;
}
header .header-phone-click.active .phone-click-line::before {
  margin: auto;
  transition: all 0.5s;
  transform: translateY(6px) rotate(45deg);
}
header .header-phone-click.active .phone-click-line::after {
  margin: auto;
  transition: all 0.5s;
  transform: translateY(-6px) rotate(-45deg);
}
header .header-box {
  display: flex;
  align-items: center;
  height: 64px;
  position: relative;
  /*logo*/
  /*logo*/
  /*搜索*/
  /*搜索*/
  /*登录*/
  /*登录*/
}
@media screen and (max-width: 1024px) {
  header .header-box {
    width: 100%;
  }
  header .header-box.active::after {
    content: '';
    position: absolute;
    top: 0;
    height: 64px;
    background: #1f1f1f;
    left: 0;
    width: 100%;
    z-index: 9;
  }
}
header .header-box .logo {
  max-width: 110px;
  margin-right: 75px;
  position: relative;
  z-index: 2;
  transform: translateY(2px);
  display: flex;
}
@media screen and (max-width: 1024px) {
  header .header-box .logo {
    width: 100%;
    justify-content: flex-start;
    max-width: 110px;
    z-index: 10;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
  }
}
header .header-box .logo img {
  max-width: 100px;
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}
header .header-box .header-menu {
  /*flex-basis: calc(100% - 400px);*/
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  margin-left: 0;
  margin-right:auto
  /*导航*/
  /*导航*/
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu {
    width: 100%;
    position: absolute;
    background: #1F1F1F;
    top: -100vh;
    left: 0;
    height: 100vh;
    margin-left: 0;
    padding: 64px 0 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: auto;
    transition: all 0.5s;
    pointer-events: none;
    z-index: -1;
  }
  header .header-box .header-menu.active {
    display: flex;
    top: 0;
    pointer-events: auto;
    justify-content: space-between;
  }
  header .header-box .header-menu::after {
    width: 100%;
    height: 50px;
    content: '';
    position: fixed;
    top: 0;
    left: 0;
  }
}
header .header-box .header-menu nav {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  grid-gap: 32px;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: auto;
    grid-gap: 0;
  }
}
header .header-box .header-menu nav .first-item {
  transition: all 0.2s;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-box .header-menu nav .first-item:nth-child(1) .product-second-box {
  width: 1200px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item:nth-child(1) .product-second-box {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item {
    width: 100%;
    display: block;
  }
}
header .header-box .header-menu nav .first-item .first-box {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .first-box {
    height: 64px;
    padding: 0 24px;
  }
}
header .header-box .header-menu nav .first-item .first-item-title {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  opacity: 0.6;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .first-item-title {
    opacity: 1;
    font-size: 16px;
    justify-content: flex-start;
    /*width: fit-content;*/
  }
}
header .header-box .header-menu nav .first-item .first-item-title::after {
  content: '';
  position: absolute;
  bottom: 20px;
  background: #fff;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.2s;
}
header .header-box .header-menu nav .first-item i {
  display: none;
  width: 64px;
  height: 64px;
  position: absolute;
  right: 4px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: all 0.5s;
  align-items: center;
  justify-content: center;
  color: #999;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item i {
    display: flex;
  }
}
header .header-box .header-menu nav .first-item i.active {
  transform: rotate(180deg);
}
header .header-box .header-menu nav .first-item .second-box {
  border-radius: 0 0 4px 4px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  position: absolute;
  top: 64px;
  width: max-content;
  left: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  flex-direction: column;
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item .second-box {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box {
    display: none;
    position: relative;
    left: 0;
    top: 0;
    transform: translateX(0);
    width: 100%;
    text-align: left;
    padding: 0;
  }
}
header .header-box .header-menu nav .first-item .second-box a {
  height: 40px;
  display: flex;
  align-items: center;
  color: #999;
  width: 100%;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .second-box a {
    justify-content: flex-start;
    padding-left: 32px;
    height: 64px;
    position: relative;
  }
  header .header-box .header-menu nav .first-item .second-box a::after {
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #1f1f1f;
    margin: auto;
    width: calc(100% - 48px);
    position: absolute;
  }
}
header .header-box .header-menu nav .first-item .second-box a:hover {
  color: var(--dominant-color);
  backdrop-filter: blur(20px);
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item .second-box2 {
    display: none;
  }
}
header .header-box .header-menu nav .first-item .product-second-box {
  width: 1200px;
  position: absolute;
  top: 40px;
  left: 0;
  padding: 40px;
  display: flex;
  opacity: 1;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item .product-second-box {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box {
    display: none;
    position: relative;
    left: 0;
    top: 0;
    transform: translateX(0);
    width: 100%;
    text-align: left;
    padding: 0;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-first {
  width: 200px;
  margin-right: 110px;
  position: relative;
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-first {
    width: 100%;
    margin-right: 0;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-first .items {
  font-size: 20px;
  color: #999;
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-first .items {
    margin-top: 0;
    grid-gap: 0;
    background: #000;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-first .items .item {
  font-family: Inter-Medium;
  cursor: pointer;
  transition: all 0.5s;
}
header .header-box .header-menu nav .first-item .product-second-box .product-first .items .item .i-first-box {
  position: relative;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-first .items .item .i-first-box {
    height: 64px;
    font-size: 14px;
    display: flex;
    align-items: center;
    padding-left: 32px;
  }
  header .header-box .header-menu nav .first-item .product-second-box .product-first .items .item .i-first-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #1f1f1f;
    height: 1px;
    width: calc(100% - 64px);
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-first .items .item.active,
header .header-box .header-menu nav .first-item .product-second-box .product-first .items .item:hover {
  color: var(--dominant-color);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-first .items .item.active,
  header .header-box .header-menu nav .first-item .product-second-box .product-first .items .item:hover {
    color: #999;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-first .items .item.active .product-second {
  display: block;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-first .items .item.active .product-second {
    display: none;
    padding-left: 0;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-second {
  display: none;
  width: 200px;
  margin-right: 60px;
  position: absolute;
  top: 0;
  left: 200px;
  min-height: 320px;
  height: fit-content;
  padding-bottom: 50px;
  padding-left: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-second {
    position: relative;
    left: 0;
    width: 100%;
    display: none;
    min-height: initial;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second {
  flex-direction: column;
  grid-gap: 12px;
  color: #999;
  display: flex;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second.item-second-solution {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px 8px;
  }
  header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second.item-second-solution .item-second-item {
    flex-direction: column-reverse;
    display: flex;
    margin-bottom: 0;
  }
  header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second.item-second-solution .item-second-item .product-three {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 750px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second.item-second-solution {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 24px;
    margin-bottom: 74px;
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second {
    margin-top: 32px;
    padding: 0 32px;
    grid-gap: 0;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .item-second-item {
  cursor: pointer;
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .item-second-item {
    margin-bottom: 72px;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .item-second-item.active,
header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .item-second-item:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .item-second-item.active .product-three,
header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .item-second-item:hover .product-three {
  display: block;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .item-second-item.active,
  header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .item-second-item:hover {
    color: #999;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .product-second-more {
  font-size: 14px;
  align-items: center;
  transition: all 0.5s;
  bottom: 0;
  left: 0;
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .product-second-more {
    position: initial;
    margin-bottom: 24px;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .product-second-more svg {
  fill: #999;
  margin-left: 4px;
  transition: all 0.5s;
}
header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .product-second-more:hover {
  color: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .product-second-box .product-second .item-second .product-second-more:hover svg {
  fill: var(--dominant-color);
}
header .header-box .header-menu nav .first-item .product-second-box .product-three {
  flex: 1;
  position: absolute;
  top: 0;
  left: 260px;
  width: 662px;
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three {
    position: relative;
    left: 0;
    width: 100%;
    display: block;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-three.active123 {
  left: 60px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three.active123 {
    left: 0;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .view {
  display: none;
}
@media screen and (max-width: 750px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .view {
    display: flex;
    align-items: center;
    margin-top: 16px;
    position: absolute;
  }
  header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .view i {
    position: relative;
    margin-left: 1px;
    height: auto;
    /*width: auto;*/
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three {
    margin-top: 16px;
  }
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three.item-three2 {
    margin-top: 0;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three.item-three2 .item-three-item {
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
}
header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three.item-three2 .item-three-item .img {
  width: 360px;
  height: 202px;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three.item-three2 .item-three-item .img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 750px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three.item-three2 .item-three-item .img {
    border-radius: 16px;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three.item-three2 .item-three-item img {
  object-fit: cover;
}
header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .item-three-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .item-three-item {
    width: 100%;
    display: flex;
    overflow: auto;
    grid-gap: 8px;
  }
}
@media screen and (max-width: 750px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .item-three-item {
    width: 100%;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .item-three-item a {
  background: #fff;
  border-radius: 4px;
  padding-top: 10px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .item-three-item a {
    flex-shrink: 0;
    flex-basis: 23%;
  }
}
@media screen and (max-width: 750px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .item-three-item a {
    border-radius: 12px;
    flex-basis: calc(50% - 4px);
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .item-three-item a .text {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .item-three-item a .text {
    font-size: 12px;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .item-three-item a:nth-child(n + 4) {
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .product-three .item-three .item-three-item a:nth-child(n + 4) {
    display: block;
    flex-shrink: 0;
  }
}
header .header-box .header-menu nav .first-item .product-second-box .tip {
  color: #999;
  font-size: 12px;
  display: none;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu nav .first-item .product-second-box .tip {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  header .header-box .header-menu nav .first-item:hover .first-item-title {
    color: #fff;
    opacity: 1;
  }
  header .header-box .header-menu nav .first-item:hover .second-box,
  header .header-box .header-menu nav .first-item:hover .product-second-box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header .header-box .header-menu nav .first-item:hover .bg-blur {
    opacity: 1;
  }
}
header .header-box .header-menu .menu-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  z-index: 20;
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  header .header-box .header-menu .menu-close {
    display: block;
  }
}
header .header-box .bg-blur {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  transition: all 0.5s;
  pointer-events: none;
  z-index: -1;
}
header .header-box .bg-blur.active {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  header .header-box .bg-blur {
    display: none;
  }
}
header .header-box .search {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) brightness(10);
  margin-right: 20px;
  font-size: 24px;
  transition: all 0.5s;
  color: #fff;
  cursor: pointer;
}
header .header-box .search svg {
  height: 24px;
}
@media screen and (max-width: 1024px) {
  header .header-box .search {
    margin-right: 12px;
  }
}
header .header-box .search:hover {
  opacity: 0.6;
}
header .header-box .search img {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 1024px) {
  header .header-box .search {
    margin-left: 12px;
    position: relative;
    z-index: 19;
  }
}
header .header-box .login {
  color: #fff;
  position: relative;
  cursor: pointer;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /*margin-right: 20px;*/
}
header .header-box .login svg {
  transition: all 0.5s;
  height: 24px;
  width: 24px;
}
header .header-box .login:hover svg {
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  header .header-box .login {
    display: none;
    margin-left: 24px;
    margin-top: 0;
    height: 64px;
    border-radius: 8px;
    background: #000;
    align-items: center;
    justify-content: flex-start;
    margin-right: 24px;
    padding-left: 12px;
    padding-right: 12px;

  }
  header .header-box .login a {
    border-radius: 16px;
    border: 1px solid #FFF;
    width: 90px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  header .header-box .login a svg {
    margin-right: 2px;
  }
  header .header-box .login .login-up {
    border: none;
    color: #999;
  }
}
header .header-box .login .login-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
header .header-box .login .login-show {
  position: absolute;
  top: 64px;
  color: #333;
  left: 50%;
  width: 120px;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-50%);
  border-radius: 0 0 4px 4px;
}
header .header-box .login .login-show .login-show-item {
  padding: 10px 0;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  box-shadow: 0 10px 50px rgba(54, 56, 79, 0.11);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
}
header .header-box .login .login-show .login-show-item a {
  text-align: center;
  display: block;
  height: 40px;
  line-height: 40px;
  transition: all 0.5s;
  font-size: 13px;
  color: #666;
}
header .header-box .login .login-show .login-show-item a:hover {
  color: var(--dominant-color);
}
header .header-box .login:hover .login-show {
  opacity: 1;
  visibility: visible;
}
header .header-box .shop-cart {
  margin-right: 12px;
  transition: all 0.5s;
  position: relative;
  z-index: 19;
}

@media screen and (min-width: 1025px) {

  header .header-box .shop-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    color:#fff;
    border: 1px solid #fff;
    border-radius: 4px;
    width: 98px;
    height: 32px;
    font-size: 13px;
  }

}

@media screen and (max-width: 1024px) {
  header .header-box .shop-cart {
    order: 2;
    color: transparent;
  }
}

header .header-box .shop-cart svg {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}


header .header-box .shop-cart a {
  display: flex;
}
header .header-box .shop-cart:hover {
  opacity: 0.6;
}
header .header-box .messages {
  background: var(--dominant-color);
  border-radius: 4px;
  /*border-radius: 20px;*/
  height: 32px;
  width: 98px;
  color: #fff;
  cursor: pointer;
  transition: all 0.5s;
  margin-right: 24px;
}
header .header-box .messages:hover {
  opacity: 0.6;
}
header .header-box .messages svg {
  margin-right: 4px;
  filter: grayscale(1) brightness(10);
  fill: var(--dominant-color);
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1024px) {
  header .header-box .messages {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    margin: auto;
    z-index: 20;
  }
}
@media screen and (max-width: 750px) {
  header .header-box .messages {
    right: 16px;
  }
}
header .header-box .right-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 16px;
  margin-left: auto;
}
/*头部样式*/
.orange header,
.orange header.active {
  background: var(--dominant-color);
}
.orange header .header-box .messages {
  background: #fff;
  color: var(--dominant-color);
}
.orange header .header-box .messages svg {
  filter: none;
}
.index header {
  position: sticky;
  top: 0 !important;
}
/*底部样式*/
.footer {
  padding: 32px 0 24px 0;
  position: relative;
  background: #000;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 0;
  }
}
.footer .footer-menu {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 16px;
}
@media screen and (max-width: 1024px) {
  .footer .footer-menu {
    flex-direction: column;
    grid-gap: 0;
  }
}
.footer .footer-menu .f-item {
  flex-basis: calc(242 / 1360 * 100%);
}
@media screen and (max-width: 1024px) {
  .footer .footer-menu .f-item {
    flex-basis: auto;
    border-bottom: 1px solid #333;
  }
}
.footer .footer-menu .f-item.tablet .first-item {
  color: #999;
}
.footer .footer-menu .first-item {
  display: block;
  font-size: 16px;
  position: relative;
  color: #fff;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .footer .footer-menu .first-item {
    pointer-events: auto;
    height: 64px;
    line-height: 64px;
    font-size: 14px;
  }
  .footer .footer-menu .first-item i {
    width: 26px;
    height: 64px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    transition: all 0.5s;
    display: block;
  }
  .footer .footer-menu .first-item i::before,
  .footer .footer-menu .first-item i::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #666;
    transition: all 0.5s;
  }
  .footer .footer-menu .first-item i::before {
    width: 12px;
    height: 2px;
  }
  .footer .footer-menu .first-item i::after {
    height: 12px;
    width: 2px;
  }
  .footer .footer-menu .first-item i.active::after {
    transform: rotate(90deg);
  }
}
.footer .footer-menu .second-box {
  margin-top: 24px;
  line-height: 2;
}
@media screen and (min-width: 1025px) {
  .footer .footer-menu .second-box {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .footer .footer-menu .second-box {
    display: none;
    margin-top: 0;
    margin-bottom: 8px;
  }
}
.footer .footer-menu .second-box a {
  display: block;
  font-size: 14px;
  transition: all 0.5s;
  position: relative;
  width: fit-content;
  color: #999;
}
@media screen and (max-width: 1024px) {
  .footer .footer-menu .second-box a {
    width: 100%;
    font-size: 13px;
    padding-left: 12px;
    line-height: 40px;
  }
}
.footer .footer-menu .second-box a:hover {
  color: #fff;
}
.footer .footer-copyright {
  flex-basis: 100%;
  margin-top: 100px;
  padding-top: 24px;
  border-top: 1px solid #333;
  color: #999;
}
@media screen and (max-width: 1024px) {
  .footer .footer-copyright {
    margin-top: 0;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 0;
    display: flex;
    align-items: center;
    border-top: none;
  }
}
@media screen and (max-width: 750px) {
  .footer .footer-copyright {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.footer .footer-copyright .section {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .footer .footer-copyright .section {
    flex-direction: column;
    margin: 0;
    padding: 0;
  }
}
.footer .footer-copyright .footer-language {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 11;
}
.footer .footer-copyright .footer-language svg {
  margin-right: 4px;
}
.footer .footer-copyright .footer-language .footer-language-box {
  position: absolute;
  bottom: 30px;
  left: 0;
  /*transform: translateX(-50%);*/
  background: #2c2c2c;
  padding: 4px 0;
  width: max-content;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  width: 120px;
}
.footer .footer-copyright .footer-language .footer-language-box::after {
  content: '';
  bottom: -15px;
  left: 0;
  height: 20px;
  width: 100%;
  position: absolute;
}
.footer .footer-copyright .footer-language .footer-language-box a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  height: 32px;
  transition: all 0.5s;
}
.footer .footer-copyright .footer-language .footer-language-box a img {
  width: 16px;
  margin-right: 8px;
}
.footer .footer-copyright .footer-language .footer-language-box a:hover {
  background: #666;
  backdrop-filter: blur(20px);
}
@media screen and (max-width: 1024px) {
  .footer .footer-copyright .footer-language .footer-language-box {
    bottom: -100vh;
    position: fixed;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    min-height: 448px;
  }
  .footer .footer-copyright .footer-language .footer-language-box.active {
    bottom: 0;
    opacity: 1;
    pointer-events: auto;
    background: #000;
  }
  .footer .footer-copyright .footer-language .footer-language-box::after {
    height: 100vh;
    bottom: 0;
    background: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(20px);
    z-index: -1;
  }
  .footer-language-box-item {
    height: 100%;
    min-height: 448px;
    background: #000;
  }

  .footer .footer-copyright .footer-language .footer-language-box a {
    height: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.footer .footer-copyright .footer-language:hover .footer-language-box {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 1024px) {
  .footer .footer-copyright .footer-language {
    left: 0;
    position: relative;
    height: 64px;
    border-bottom: 1px solid #333;
    justify-content: center;
    width: 100%;
  }
}
.footer .footer-copyright .text {
  display: flex;
  grid-gap: 24px;
  position: absolute;
  width: calc(100% - 80px);
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .footer .footer-copyright .text {
    width: 100%;
    height: 64px;
    align-items: center;
    justify-content: center;
    position: initial;
  }
}
.footer .footer-copyright .text .friendly {
  position: relative;
  cursor: pointer;
}
.footer .footer-copyright .text .friendly .footer-friendly-box {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #2c2c2c;
  padding: 10px 0;
  width: 200px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.footer .footer-copyright .text .friendly .footer-friendly-box::after {
  content: '';
  bottom: -15px;
  left: 0;
  height: 20px;
  width: 100%;
  position: absolute;
}
.footer .footer-copyright .text .friendly .footer-friendly-box a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 40px;
  transition: all 0.5s;
}
.footer .footer-copyright .text .friendly .footer-friendly-box a:hover {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
}
.footer .footer-copyright .text .friendly:hover .footer-friendly-box {
  opacity: 1;
  pointer-events: auto;
}
.footer .footer-copyright a:hover {
  color: #fff;
}
/*底部样式*/
/*--------------------------------------------------------*/
/*通用*/
.black {
  background: #000;
}
.white {
  background: #fff;
}
.gray {
  background: #f6f6f6;
}
.index-padding {
  padding: 40px 0;
}
@media screen and (max-width: 1024px) {
  .index-padding {
    padding: 32px 0;
  }
}
@media screen and (max-width: 750px) {
  .index-padding {
    padding: 24px 0;
  }
}
.index-title {
  justify-content: space-between;
  position: relative;
}
.index-title::after {
  top: 0;
  bottom: 0;
  background: #fff;
  margin: auto;
  height: 1px;
  width: 100%;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .index-title .title1,
  .index-title .title2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 750px) {
}
.index-title .title1 {
  color: #fff;
  font-family: Inter-Medium;
}
.index-title .title2 {
  color: #000;
  font-family: Inter-Medium;
}
.index-title .more {
  color: var(--dominant-color);
  transition: all 0.5s;
  line-height: 1;
}
.index-title .more:hover {
  opacity: 0.6;
}
.index-title .more.blue {
  color: var(--dominant-color);
}
.load-more {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}
.f-more {
  background: var(--dominant-color);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 40px;
  color: #fff;
  transition: all 0.5s;
  font-size: 13px;
  border: 1px solid var(--dominant-color);
  text-transform: uppercase;
  cursor: pointer;
  min-width: 100px;
}
@media screen and (max-width: 750px) {
}
.f-more:hover,
.f-more:active,
.f-more:focus {
  opacity: 0.6;
}
.f-more.black {
  background: #000;
  color: #fff;
  border-color: #000;
}
.f-more.white {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.f-more.no-bg {
  background: none;
}
.f-more.white-color {
  color: #fff;
}
.f-more.black-color {
  color: #000;
}
.f-more.orange-color {
  color: var(--dominant-hover);
}
.f-inquiry {
  text-decoration: underline;
  font-size: 13px;
  margin-left: 12px;
  cursor: pointer;
  transition: all 0.5s;
}
.f-inquiry:hover {
  color: var(--dominant-color);
}
.page-menu {
  border-top: 1px solid #333;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #999;
  overflow: auto;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #000000;
}
@media screen and (max-width: 1024px) {
  .page-menu {
    font-size: 14px;
    height: 64px;
  }
}
@media screen and (max-width: 750px) {
  .page-menu {
    top: 64px;
    justify-content: flex-start;
  }
}
.page-menu.no-sticky {
  position: relative;
  top: 0;
}
.page-menu .page-menu-box {
  display: flex;
}
.page-menu.flex-start {
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .page-menu.flex-start .page-menu-box {
    overflow: auto;
  }
}
.page-menu a {
  transition: all 0.5s;
  margin-right: 48px;
}
.page-menu a:last-child {
  margin-right: 0;
}
.page-menu a.active,
.page-menu a:hover {
  color: var(--dominant-color);
}
@media screen and (max-width: 1024px) {
  .page-menu a {
    margin-right: 32px;
  }
}
@media screen and (max-width: 750px) {
  .page-menu a {
    flex-shrink: 0;
  }
}
.page-menu.white {
  border-color: #d9d9d9;
  background: #ffffff;
}
.page-menu.product-page-menu {
  border: none;
  font-size: 13px;
  justify-content: flex-start;
  height: 56px;
}
@media screen and (max-width: 1024px) {
  .page-menu.product-page-menu {
    height: 64px;
  }
}
.page-menu.product-page-menu a {
  color: #999;
}
.page-menu.product-page-menu .item {
  margin-right: 40px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .page-menu.product-page-menu .item {
    flex-shrink: 0;
    margin-right: 32px;
  }
}
.page-menu.product-page-menu .item.active,
.page-menu.product-page-menu .item:hover {
  color: var(--dominant-color);
}
.page-menu.product-page-menu .item:last-child {
  margin-right: 0;
}
.page-menu.sticky {
  position: sticky;
  top: 63px;
}
.page-menu.no-border {
  border: none;
}
.about-menu {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  width: 100%;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  grid-gap: 48px;
  padding: 15px 24px;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 11;
}
.about-menu a {
  margin-right: 48px;
}
.about-menu a.active,
.about-menu a:hover {
  color: #fff;
}
.page-text {
  line-height: 1.2;
  height: 336px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .page-text {
    height: 224px;
  }
}
.page-text.black {
  background: #000;
  color: #fff;
}
.page-text .text {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  margin: auto;
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .page-text .text {
    font-size: 40px;
    bottom: 56px;
  }
}
@media screen and (max-width: 750px) {
  .page-text .text {
    padding: 0 24px 0;
    bottom: 48px;
    font-size: 32px;
  }
}
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 64px auto 0;
  grid-gap: 40px;
}
.pager.c-white {
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .pager {
    grid-gap: 32px;
    margin-top: 56px;
  }
}
.pager .prev,
.pager .next {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.5s;
}
.pager .prev a,
.pager .next a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pager .prev.events,
.pager .next.events {
  pointer-events: none;
  opacity: 0.5;
}
.pager .prev:hover,
.pager .next:hover {
  opacity: 0.6;
}
.pager.c-white .prev a,
.pager.c-white .next a {
  color: #999;
}
.about-title {
  font-size: 32px;
  color: #fff;
  margin-bottom: 32px;
  font-family: Inter-Medium;
  line-height: 1.25;
}
@media screen and (max-width: 1024px) {
  .about-title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.slider {
  position: fixed;
  right: 24px;
  bottom: 30%;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .slider {
    right: 24px;
  }
}
@media screen and (max-width: 750px) {
  .slider {
    right: 16px;
  }
}
.slider .item {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dominant-color);
  border-radius: 50%;
  margin-bottom: 32px;
  transition: all 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .slider .item {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 750px) {
  .slider .item {
    margin-top: 18px;
  }
}
.slider .item svg {
  fill: #fff;
  transition: all 0.5s;
}
.slider .item.go-top {
  background: #fff;
  border: 1px solid #d9d9d9;
}
.slider .item.go-top svg {
  fill: #999;
}
.slider .item.go-top:hover {
  background: var(--dominant-color);
  border-color: var(--dominant-color);
}
.slider .item.go-top:hover svg {
  fill: #fff;
}
.support-search {
  overflow: hidden;
  border-radius: 32px;
  background: #F6F6F6;
  position: relative;
  width: 640px;
  margin: 32px auto auto;
}
@media screen and (max-width: 1024px) {
  .support-search {
    width: 100%;
  }
}
.support-search label {
  display: block;
}
.support-search label input {
  width: 100%;
  height: 64px;
  border: none;
  background: none;
  text-indent: 0;
  padding-left: 40px;
  padding-right: 84px;
  color: #999;
}
@media screen and (max-width: 1024px) {
  .support-search label input {
    padding-left: 24px;
    height: 56px;
    padding-right: 56px;
  }
}
@media screen and (max-width: 750px) {
  .support-search label input {
    padding-left: 16px;
  }
}
.support-search button {
  width: 74px;
  position: absolute;
  right: 0;
  top: 0;
  height: 64px;
  background: none;
}
@media screen and (max-width: 1024px) {
  .support-search button {
    width: 56px;
    height: 56px;
  }
}
.support-search button svg {
  fill: #999;
  transition: all 0.5s;
}
.support-search button:hover svg {
  fill: var(--dominant-color);
}
.check {
  margin: auto;
}
.back-to {
  padding-top: 48px;
  margin-bottom: 72px;
  display: flex;
  align-items: center;
  color: var(--dominant-hover);
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .back-to {
    padding-top: 24px;
  }
}
.back-to svg {
  margin-right: 8px;
}
.back-to:hover {
  text-decoration: underline;
}
.video-play {
  cursor: pointer;
}
.margin-top-36-24-40 {
  margin-top: 36px;
}
@media screen and (max-width: 1024px) {
  .margin-top-36-24-40 {
    margin-top: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .margin-top-36-24-40 {
    margin-top: 40px;
  }
}
.search-form {
  position: absolute;
  top: 0;
  opacity: 0;
  pointer-events: none;
  background: #000;
  width: 100%;
  height: 64px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 21;
  transition: all 0.5s;
}
.search-form.active {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}
.search-form .section {
  position: relative;
}
.search-form .close {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}
.search-form form {
  width: 600px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .search-form form {
    width: 92%;
  }
}
.search-form form input {
  width: 100%;
  height: 40px;
  padding: 0 80px 0 60px;
  background: none;
  color: #fff;
  border: none;
  border-bottom: 1px solid #595959;
}
.search-form form label {
  position: relative;
  display: block;
}
.search-form form button {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 40px;
  background: none;
  font-size: 24px;
  color: #fff;
}
.search-form form button:hover {
  color: var(--dominant-color);
}
/*轮播*/
.banner {
  position: relative;
  width: 100%;
  margin-top: -64px;
}
.banner .img {
  height: 100%;
}
.banner .img img,
.banner .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 12/5;
}

@media screen and (max-width: 750px) {
  .banner .img img,
  .banner .img video {
    aspect-ratio: 375/533;
  }

}
.banner .swiper-button-prev,
.banner .swiper-button-next {
  opacity: 0 !important;
  pointer-events: none;
  transition: all 0.5s;
}
.banner:hover .swiper-button-prev,
.banner:hover .swiper-button-next {
  opacity: 1 !important;
  pointer-events: auto;
}
.banner .swiper-banner {
  height: 100%;
}
.banner .swiper-banner .text {
  margin: auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  top: 0;
  color: #fff;
  text-align: left;
  height: fit-content;
  z-index: 3;
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 750px) {
  .banner .swiper-banner .text {
    top: auto;
    bottom: 80px;
  }
}
.banner .swiper-banner .text .title {
  transition: all 1s;
  transform: translateY(30px);
  opacity: 0;
  width: 100%;
  font-family: Inter-SemiBold;
}
@media screen and (max-width: 1024px) {
  .banner .swiper-banner .text .title {
    font-size: 24px;
  }
}
.banner .swiper-banner .text .summary {
  margin-top: 16px;
  transition: all 1s;
  transform: translateY(30px);
  opacity: 0;
  width: 100%;
  margin-bottom: 40px;
  max-width: 610px;
}
@media screen and (max-width: 1024px) {
  .banner .swiper-banner .text .summary {
    margin-top: 12px;
    margin-bottom: 32px;
  }
}
.banner .swiper-banner .text .banner-more {
  transition: all 1s;
  transform: translateY(30px);
  opacity: 0;
  display: flex;
  grid-gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .banner .swiper-banner .text .banner-more {
    grid-gap: 8px;
  }
}
.banner .swiper-banner .text .banner-more + a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.banner .swiper-banner .swiper-slide {
  position: relative;
}
.banner .swiper-banner .swiper-slide.isMask::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}
.banner .swiper-banner .swiper-slide-active .img {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.banner .swiper-banner .swiper-slide-active .title {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.banner .swiper-banner .swiper-slide-active .summary {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.7s;
}
.banner .swiper-banner .swiper-slide-active .numbers {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.7s;
}
.banner .swiper-banner .swiper-slide-active .tip {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.9s;
}
.banner .swiper-banner .swiper-slide-active .banner-more {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.7s;
}
.banner .swiper-banner .swiper-horizontal > .swiper-pagination-bullets,
.banner .swiper-banner .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 1.5625vw;
  width: fit-content;
  max-width: 89.583vw;
  margin: auto;
  left: 0;
  right: 0;
  text-align: right;
}
.banner .swiper-banner .swiper-pagination-bullet {
  --swiper-pagination-bullet-inactive-color: transparent;
  opacity: 0.8;
  --swiper-pagination-bullet-width: 12px;
  --swiper-pagination-bullet-height: 12px;
  --swiper-pagination-bullet-horizontal-gap: 6px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-pagination-bullet {
    --swiper-pagination-bullet-width: 8px;
    --swiper-pagination-bullet-height: 8px;
  }
}
@media screen and (max-width: 768px) {
}
.banner .swiper-banner .swiper-pager {
  display: flex;
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  z-index: 1;
  width: 90%;
  max-width: 1740px;
  margin: auto;
  align-items: center;
  color: #fff;
}
.banner .swiper-banner .swiper-pagination-progressbar {
  position: initial;
  max-width: 700px;
  margin: 0 20px;
}
@media screen and (max-width: 768px) {
  .banner .swiper-banner .swiper-pagination-progressbar {
    max-width: 50%;
  }
}
.banner .swiper-banner .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #fff;
}
.banner .swiper-banner .swiper-pagination-progressbar.swiper-pagination-horizontal {
  height: 2px;
}
.banner .swiper-pagination {
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .banner .swiper-pagination {
    width: 84% !important;
    margin: auto;
  }
}
@media screen and (max-width: 1024px) {
  .banner .swiper-button-prev,
  .banner .swiper-button-next {
    display: none;
  }
}
.banner .swiper-pagination-bullet {
  background: none;
  position: relative;
  width: 24px;
  height: 24px;
  line-height: 1;
  opacity: 1;
}
.banner .swiper-pagination-bullet:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  z-index: 1;
  border: 2px solid rgba(255, 255, 255, 0);
  position: absolute;
  bottom: 2px;
  left: 0;
  border-radius: 100%;
  box-sizing: border-box;
}
.banner .swiper-pagination-bullet::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -4px;
  opacity: 0.6;
}
.banner .swiper-pagination-bullet svg {
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 10;
  position: relative;
}
.banner .swiper-pagination-bullet svg #circle {
  transition-timing-function: linear;
  stroke-dasharray: 140, 140;
  stroke-dashoffset: 140;
}
.banner .swiper-pagination-bullet.active2 svg #circle {
  transition-duration: 4.5s;
}
.banner .swiper-pagination-bullet.active:after {
  opacity: 1;
}
.banner .swiper-pagination-bullet.active:before {
  border-color: rgba(255, 255, 255, 0.2);
}
.banner .swiper-pagination-bullet.active svg {
  opacity: 1;
}
.banner .swiper-pagination-bullet.active #circle {
  transition-duration: 5.5s;
  stroke-dashoffset: 0;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  opacity: 1;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  border-color: rgba(255, 255, 255, 0.2);
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active svg {
  opacity: 1;
}
.page-banner {
  position: relative;
  height: auto;
  margin-top: -64px;
}
.page-banner .page-img {
  height: 100%;
}
.page-banner .page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 393/292;
}
.page-banner .page-img img.pc {
  max-height: 336px;
  aspect-ratio: 90/29;
}
.page-banner .text {
  color: #fff;
}
.about-banner {
  margin-top: -72px;
}
.about-banner .text {
  margin: auto;
  height: fit-content;
}
.about-story-banner .page-img img.pc {
  max-height: initial;
}
@media screen and (max-width: 1024px) {
  .about-story-banner .page-img img.pc {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .about-story-banner .page-img .tablet {
    display: none;
  }
}
.about-story-banner .text {
  bottom: 100px;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .about-story-banner .text {
    bottom: 50%;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .about-story-banner .text img {
    width: 393px;
  }
}
@media screen and (max-width: 750px) {
  .about-story-banner .text img {
    width: 320px;
  }
}
.witness-banner .text {
  top: 0;
  right: 0;
  bottom: 0;
  height: fit-content;
  color: #fff;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .witness-banner .text  {
    top: auto;
    bottom: 30px;
  }
}

.witness-banner .text .title {
  font-size: 56px;
}
@media screen and (max-width: 1024px) {
  .witness-banner .text .title {
    font-size: 32px;
  }
}
.witness-banner .text .title span {
  font-family: Inter-Medium;
}
.witness-banner .text .summary {
  font-size: 16px;
  margin-top: 12px;
  margin-bottom: 56px;
}
@media screen and (max-width: 1024px) {
  .witness-banner .text .summary {
    font-size: 13px;
    margin-bottom: 36px;
  }
}
.witness-banner .text .button {
  display: flex;
  justify-content: center;
  grid-gap: 16px;
}
.witness-banner .page-img img.pc {
  max-height: 720px;
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/*首页板块*/
.index1 .index1-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}
.index1 .index1-box .item {
  background: #1F1F1F;
  position: relative;
  height: 560px;
}
.index1 .index1-box .item .img {
  width: 420px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.index1 .index1-box .item .text {
  position: absolute;
  top: 32px;
  color: #fff;
  left: 20px;
  right: 20px;
  text-align: center;
}
.index1 .index1-box .item .text .title {
  font-family: Inter-Medium;
}
.index1 .index1-box .item .text .summary {
  line-height: 1.5;
  margin-top: 10px;
}
.index1 .index1-box .item .text .more {
  color: var(--dominant-color);
  margin-top: 16px;
  font-family: Inter-Medium;
}
.index2 .index2-box {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .index2 .index2-box {
    margin-top: 24px;
  }
}
@media screen and (max-width: 750px) {
  .index2 .index2-box {
    margin-top: 0;
  }
}
.index2 .index2-box .img-items {
  position: relative;
  width: 600px;
  height: 800px;
}
.index2 .index2-box .img-items .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
  overflow: hidden;
}
.index2 .index2-box .img-items .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index2 .index2-box .img-items .item.active {
  opacity: 1;
  z-index: 2;
}
.index2 .index2-box .items {
  flex: 1;
  margin-left: 88px;
}
.index2 .index2-box .items .item {
  display: block;
  padding-bottom: 32px;
  margin-bottom: 32px;
  color: #666;
  border-bottom: 1px solid #333;
  transition: all 0.5s;
}
.index2 .index2-box .items .item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.index2 .index2-box .items .item .title {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.index2 .index2-box .items .item .title svg {
  margin-left: 16px;
  opacity: 0;
  transition: all 0.5s;
}
.index2 .index2-box .items .item .summary {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.index2 .index2-box .items .item.active {
  color: #fff;
}
.index2 .index2-box .items .item.active svg {
  opacity: 1;
}
.index2 .index2-box .items .item .img {
  display: none;
}
.index3 .index3-box {
  margin-top: 32px;
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .index3 .index3-box {
    margin-top: 16px;
  }
}
.index3 .index3-box .swiper {
  overflow: initial;
}
.index3 .index3-box .swiper-slide {
  display: flex;
  background: #2C2C2C;
}
.index3 .index3-box .swiper-slide .text {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.5s;
}
.index3 .index3-box .swiper-slide .text .tip {
  padding: 0 8px;
  background: var(--dominant-color);
  border-radius: 4px;
  width: fit-content;
  color: #fff;
  height: 24px;
}
.index3 .index3-box .swiper-slide .text .summary {
  color: #fff;
  margin-top: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.index3 .index3-box .swiper-slide .text .f-more {
  background: none;
  margin-top: auto;
  margin-bottom: 10px;
  color: var(--dominant-color);
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .index3 .index3-box .swiper-slide .text .f-more {
    display: none;
  }
  .index3 .index3-box .swiper-slide:nth-child(n + 4){
    display: none;
  }
}
.index3 .index3-box .swiper-slide .img {
  overflow: hidden;
  width: 48%;
  height: 280px;
}
.index3 .index3-box .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index3 .index3-box .swiper-slide:hover .text {
  opacity: 0.8;
}
.index3 .index3-box .swiper-slide:hover .text .f-more {
  opacity: 1;
}
.index4 .index4-bg {
  background: #fff;
  padding-bottom: 0;
}
.index4 .index4-box {
  display: flex;
  justify-content: space-between;
  padding-bottom: 96px;
}
.index4 .index4-box .text {
  flex: 1;
  margin-top: 24px;
}
.index4 .index4-box .text .title {
  margin-top: 24px;
  line-height: 1.15;
  letter-spacing: -0.1px;
  font-size: 40px;
  line-height: 56px;
}
.index4 .index4-box .text .summary {
  width: 520px;
  margin-bottom: 80px;
}
.index4 .index4-box .img {
  width: calc(480 / 1440 * 100%);
  height: 640px;
  overflow: hidden;
  margin-left: 40px;
}
.index4 .index4-number {
  display: flex;
  grid-gap: 40px;
  margin-bottom: 64px;
  margin-top: 80px;
}
.index4 .index4-number .item {
  border-left: 1px solid #d9d9d9;
  padding-left: 16px;
}
.index4 .index4-number .item .num {
  color: var(--dominant-hover);
}
.index4 .index4-number .item .text {
  text-transform: uppercase;
}
.index5 {
  position: relative;
}
.index5.isMask::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.index5 img {
  width: 100%;
}
.index5 img.pc {
  max-height: 600px;
  object-fit: cover;
}
.index5 .text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  height: fit-content;
  z-index: 3;
}
.index5 .text .title,
.index5 .text .summary {
  max-width: 640px;
}
.index5 .text .title {
  line-height: 1.25;
  font-family: Inter-Medium;
}
.index5 .text .summary {
  margin-top: 16px;
  margin-bottom: 40px;
}
.index6 {
  background: #fff;
}
.index6 .index6-box {
  display: grid;
  grid-gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
}
@media screen and (max-width: 1024px) {
  .index6 .index6-box {
    margin-top: 24px;
  }
}
@media screen and (max-width: 750px) {
  .index6 .index6-box {
    margin-top: 32px;
  }
}
.index6 .index6-box .item .img {
  overflow: hidden;
  height: 0;
  padding-bottom: 67%;
  position: relative;
}
.index6 .index6-box .item .img img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.index6 .index6-box .item .title {
  margin-top: 24px;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: Inter-Medium;
}
@media screen and (max-width: 750px) {
  .index6 .index6-box .item .title {
    -webkit-line-clamp: 4;
  }
}
.index6 .index6-box .item .time {
  color: #666;
}
.index6 .index6-box .item .summary {
  display: none;
}
.index7 {
  padding: 0;
  color: #fff;
}
.index7 .swiper {
  padding: 120px 0 168px;
}
.index7 .swiper .swiper-wrapper {
  align-items: center;
}
.index7 .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.index7 .swiper .swiper-slide .text {
  width: 800px;
}
.index7 .swiper .swiper-slide .text .title {
  line-height: 1.25;
  margin-bottom: 24px;
  font-family: Inter-Medium;
}
.index7 .swiper .swiper-slide .text .by {
  opacity: 0.6;
  font-family: Inter-Medium;
}
.index7 .swiper .swiper-pagination {
  opacity: 0.5;
  bottom: 40px;
}
.index7 .swiper .swiper-pagination-bullet {
  --swiper-pagination-bullet-width: 14px;
  --swiper-pagination-bullet-height: 14px;
  opacity: 0.5;
  position: relative;
  background: none;
}
.index7 .swiper .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
.index7 .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #fff;
  background: transparent;
  opacity: 1;
}
.index7 .swiper-button-disabled {
  display: none;
}
.index8 {
  margin-bottom: 80px;
}
.index8 .index8-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
  margin-top: 32px;
}
@media screen and (max-width: 1024px) {
  .index8 .index8-box {
    margin-top: 24px;
  }
}
.index8 .index8-box .item {
  position: relative;
  color: #fff;
}
.index8 .index8-box .item::after {
  content: '';
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: url('../images/play.png') no-repeat center / cover;
  pointer-events: none;
}
.index8 .index8-box .img {
  overflow: hidden;
  padding-bottom: 63%;
  height: 0;
  position: relative;
}
.index8 .index8-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.index8 .index8-box .text {
  position: absolute;
  left: 24px;
  bottom: 32px;
  right: 24px;
}
.index8 .index8-box .text .summary {
  margin-top: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.index9 {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.index9.gray {
  background: #f6f6f6;
  border: none;
}
.index9.gray .title {
  color: #000;
  font-family: Inter-Medium;
}
.index9.gray .index9-box .link a {
  opacity: 0.1;
  filter: grayscale(1) brightness(0);
}
.index9.gray .index9-box .link a:hover {
  filter: none;
  opacity: 1;
}
.index9 .index9-box {
  display: flex;
  grid-gap: 33px;
  color: #fff;
  align-items: center;
}
.index9 .index9-box .text {
  width: calc(480 / 1360 * 100%);
}
.index9 .index9-box .text .title {
  font-family: Inter-Medium;
}
.index9 .index9-box .summary {
  margin-top: 12px;
  color: #666;
}
.index9 .index9-box .summary a:hover {
  text-decoration: underline;
}
.index9 .index9-box .form {
  width: calc(462 / 1360 * 100%);
}
.index9 .index9-box .form form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .index9 .index9-box .form form {
    flex-direction: column;
  }
}
.index9 .index9-box .form label {
  width: calc(100% - 120px);
  border: none;
  display: block;
}
@media screen and (max-width: 750px) {
  .index9 .index9-box .form label {
    width: 100%;
    margin-bottom: 16px;
  }
}
.index9 .index9-box .form label input {
  width: 100%;
  height: 40px;
  border-radius: 4px;
  border: none;
  padding-left: 20px;
  padding-right: 20px;
}
.index9 .index9-box .link {
  margin-left: auto;
  display: flex;
  grid-gap: 12px;
}
.index9 .index9-box .link a {
  opacity: 0.6;
  transition: all 0.5s;
  filter: grayscale(1) brightness(10);
}
.index9 .index9-box .link a img {
  width: 24px;
}
.index9 .index9-box .link a:hover {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  /*首页板块*/
  .index1 .index1-box .item {
    height: 420px;
  }
  .index1 .index1-box .item .img {
    width: 280px;
  }
  .index1 .index1-box .item .text .title {
    font-size: 20px;
  }
  .index1 .index1-box .item .text .summary {
    font-size: 13px;
  }
  .index2 .index2-box .img-items {
    width: 320px;
    height: auto;
  }
  .index2 .index2-box .items {
    margin-left: 40px;
  }
  .index2 .index2-box .items .item {
    margin-bottom: 24px;
  }
  .index2 .index2-box .items .item .title {
    font-size: 24px;
  }
  .index2 .index2-box .items .item .title svg {
    width: 24px;
    height: 24px;
  }
  .index2 .index2-box .items .item .summary {
    font-size: 13px;
  }
  .index3 .index3-box .swiper-slide .text .summary {
    color: #fff;
    margin-top: 12px;
    font-size: 14px;
  }
  .index3 .index3-box .swiper-slide .img {
    width: 150px;
    height: 200px;
  }
  .index4 .index4-bg {
    background: #fff;
    padding-bottom: 40px;
  }
  .index4 .index4-box {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
  }
  .index4 .index4-box .text {
    flex: 1;
    margin-top: 24px;
  }
  .index4 .index4-box .text .sup {
    font-size: 16px;
  }
  .index4 .index4-box .text .title {
    margin-top: 16px;
    margin-bottom: 64px;
    letter-spacing: 0;
    font-size: 32px;
    width: auto;
  }
  .index4 .index4-box .text .index4-number {
    display: none;
  }
  .index4 .index4-box .text .summary {
    width: auto;
    margin-bottom: 80px;
  }
  .index4 .index4-box .img {
    width: 320px;
    height: auto;
    overflow: hidden;
    margin-left: 40px;
  }
  .index4 .index4-number {
    display: flex;
    grid-gap: 24px;
    margin-bottom: 0;
    margin-top: 0;
    justify-content: space-between;
  }
  .index4 .index4-number .item .num {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .index5 .text .title {
    font-size: 24px;
  }
  .index5 .text .summary {
    font-size: 13px;
  }
  .index6 .index6-box {
    grid-gap: 10px;
  }
  .index6 .index6-box .item .img {
    overflow: hidden;
  }
  .index6 .index6-box .item .title {
    margin-top: 16px;
    font-size: 14px;
  }
  .index6 .index6-box .item .time {
    color: #999;
    font-size: 13px;
  }
  .index7 .swiper {
    padding: 40px 0 80px;
  }
  .index7 .swiper .swiper-slide {
    align-items: flex-start;
  }
  .index7 .swiper .swiper-slide .text {
    width: 70%;
  }
  .index7 .swiper .swiper-slide .text .title {
    line-height: 1.5;
    font-size: 20px;
  }
  .index7 .swiper .swiper-slide .text .by {
    font-size: 16px;
  }
  .index8 {
    margin-bottom: 20px;
  }
  .index8 .index8-box {
    grid-gap: 8px;
  }
  .index8 .index8-box .text {
    left: 16px;
    bottom: 16px;
    right: 16px;
  }
  .index8 .index8-box .text .title {
    font-size: 16px;
  }
  .index8 .index8-box .text .summary {
    font-size: 12px;
    margin-top: 8px;
  }
  .index9 {
    border: none;
  }
  .index9 .index9-box {
    grid-gap: 0;
    flex-direction: column;
    text-align: center;
  }
  .index9 .index9-box .text {
    width: auto;
  }
  .index9 .index9-box .text .summary {
    display: none;
  }
  .index9 .index9-box .summary {
    margin-top: 24px;
  }
  .index9 .index9-box .form {
    width: auto;
    margin-top: 32px;
    margin-bottom: 54px;
  }
  .index9 .index9-box .form label {
    width: 320px;
    margin-right: 12px;
  }
  .index9 .index9-box .link {
    margin-left: 0;
  }
  .index9 .index9-box .link a {
    opacity: 0.6;
    transition: all 0.5s;
  }
  .index9 .index9-box .link a img {
    width: 40px;
  }
  .index9 .index9-box .link a:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 750px) {
  /*首页板块*/
  .index1 .index1-box {
    grid-template-columns: repeat(1, 1fr);
  }
  .index1 .index1-box .item {
    height: 394px;
  }
  .index1 .index1-box .item .img {
    width: 280px;
  }
  .index1 .index1-box .item .text .title {
    font-size: 20px;
  }
  .index1 .index1-box .item .text .summary {
    font-size: 13px;
  }
  .index2 .index2-box {
    flex-direction: column;
  }
  .index2 .index2-box .img-items {
    display: none;
  }
  .index2 .index2-box .items {
    margin-left: 0;
  }
  .index2 .index2-box .items .item {
    margin-bottom: 24px;
    color: #fff;
    position: sticky;
    padding-top: 40px;
    top: 24px;
    background: #000;
  }
  .index2 .index2-box .items .item:nth-child(1) {
    z-index: 1;
  }
  .index2 .index2-box .items .item:nth-child(2) {
    z-index: 2;
  }
  .index2 .index2-box .items .item:nth-child(3) {
    z-index: 3;
  }
  .index2 .index2-box .items .item:nth-child(4) {
    z-index: 4;
  }
  .index2 .index2-box .items .item .title {
    font-size: 24px;
  }
  .index2 .index2-box .items .item .title svg {
    width: 24px;
    height: 24px;
  }
  .index2 .index2-box .items .item .summary {
    font-size: 13px;
  }
  .index2 .index2-box .items .item .img {
    display: block;
    margin-top: 32px;
  }
  .index3 .index3-box .swiper {
    overflow: hidden;
  }
  .index3 .index3-box .swiper-wrapper {
    grid-gap: 12px;
    flex-direction: column;
  }
  .index3 .index3-box .swiper-slide .text .summary {
    color: #fff;
    margin-top: 12px;
    font-size: 14px;
  }
  .index3 .index3-box .swiper-slide .img {
    width: 150px;
    height: 150px;
  }
  .index4 .index4-bg {
    background: #fff;
    padding-bottom: 40px;
  }
  .index4 .index4-box {
    flex-direction: column;
  }
  .index4 .index4-box .text {
    flex: 1;
    margin-top: 24px;
  }
  .index4 .index4-box .text .sup {
    font-size: 16px;
  }
  .index4 .index4-box .text .title {
    margin-top: 16px;
    margin-bottom: 40px;
    letter-spacing: 0;
    font-size: 24px;
    line-height: 32px;
    width: auto;
  }
  .index4 .index4-box .text .index4-number {
    display: none;
  }
  .index4 .index4-box .text .summary {
    width: auto;
    margin-bottom: 80px;
  }
  .index4 .index4-box .text .f-more {
    display: none;
  }
  .index4 .index4-box .img {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-left: 0;
    margin-bottom: 32px;
  }
  .index4 .index4-number {
    display: flex;
    grid-gap: 32px 12px;
    margin-bottom: 0;
    margin-top: 0;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .index4 .index4-number .item {
    flex-basis: calc((100% - 12px) / 2);
  }
  .index4 .index4-number .item .num {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .index5 .text {
    top: auto;
    bottom: 64px;
  }
  .index5 .text .title {
    font-size: 24px;
  }
  .index5 .text .summary {
    font-size: 13px;
  }
  .index6 {
    background: #fff;
  }
  .index6 .index6-box {
    grid-gap: 24px;
    grid-template-columns: repeat(1, 1fr);
  }
  .index6 .index6-box .item {
    display: flex;
    flex-direction: row-reverse;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 24px;
  }
  .index6 .index6-box .item:last-child {
    padding-bottom: 0;
    border: none;
    margin-bottom: 16px;
  }
  .index6 .index6-box .item .img {
    overflow: hidden;
    width: 96px;
    height: 96px;
    margin-left: 12px;
    padding-bottom: 0;
  }
  .index6 .index6-box .item .img img {
    height: 100%;
    object-fit: cover;
  }
  .index6 .index6-box .item .text {
    flex: 1;
  }
  .index6 .index6-box .item .title {
    margin-top: 0;
    font-size: 14px;
  }
  .index6 .index6-box .item .summary {
    color: #999;
    margin-top: 12px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .index6 .index6-box .item .time {
    display: none;
  }
  .index7 .swiper {
    padding: 0;
  }
  .index7 .swiper .swiper-slide {
    align-items: flex-start;
  }
  .index7 .swiper .swiper-slide .text {
    width: 100%;
    padding: 48px 24px 86px;
  }
  .index7 .swiper .swiper-slide .text .title {
    line-height: 1.5;
    font-size: 20px;
  }
  .index7 .swiper .swiper-slide .text .by {
    font-size: 14px;
    opacity: 0.6;
  }
  .index7 .swiper .swiper-button-prev,
  .index7 .swiper .swiper-button-next {
    display: none;
  }
  .index8 {
    margin-bottom: 20px;
  }
  .index8 .index8-box {
    grid-gap: 8px;
    grid-template-columns: repeat(1, 1fr);
  }
  .index8 .index8-box .text {
    left: 16px;
    bottom: 16px;
    right: 16px;
  }
  .index8 .index8-box .text .title {
    font-size: 20px;
  }
  .index8 .index8-box .text .summary {
    font-size: 13px;
    margin-top: 8px;
  }
  .index9 {
    padding: 40px 0;
  }
  .index9 .index9-box {
    grid-gap: 0;
    flex-direction: column;
    text-align: center;
  }
  .index9 .index9-box .text {
    width: auto;
  }
  .index9 .index9-box .text .summary {
    display: none;
  }
  .index9 .index9-box .summary {
    margin-top: 24px;
  }
  .index9 .index9-box .form {
    width: auto;
    margin-top: 32px;
    margin-bottom: 54px;
  }
  .index9 .index9-box .form label {
    width: 320px;
    margin-right: 12px;
  }
  .index9 .index9-box .link {
    margin-left: 0;
  }
  .index9 .index9-box .link a {
    opacity: 0.6;
    transition: all 0.5s;
  }
  .index9 .index9-box .link a svg {
    width: 40px;
    height: 40px;
  }
  .index9 .index9-box .link a:hover {
    opacity: 1;
  }
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/*solution*/
.solution {
  margin-bottom: 240px;
}
@media screen and (max-width: 1024px) {
  .solution {
    margin-bottom: 156px;
  }
}
.solution .solution-box {
  margin-bottom: 80px;
  scroll-margin: 156px;
}
.solution .solution-box .solution-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .solution .solution-box .solution-title {
    font-size: 20px;
  }
}
.solution .solution-box .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}
@media screen and (max-width: 1024px) {
  .solution .solution-box .items {
    grid-gap: 56px 12px;
  }
}
@media screen and (max-width: 750px) {
  .solution .solution-box .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.solution .solution-box .items .item {
  position: relative;
  overflow: hidden;
}
.solution .solution-box .items .item .imgBox {
  padding-bottom: 56%;
}
.solution .solution-box .items .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  width: 100%;
  padding: 36px 24px;
}
.solution .solution-box .items .item .text::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  filter: blur(40px);
}
@media screen and (max-width: 1024px) {
  .solution .solution-box .items .item .text::before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .solution .solution-box .items .item .text {
    position: initial;
    margin-top: 24px;
    padding: 0;
  }
}
.solution .solution-box .items .item .text .title {
  font-size: 24px;
  position: relative;
  z-index: 1;
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .solution .solution-box .items .item .text .title {
    font-size: 20px;
    line-height: 1.5;
  }
}
.solution .solution-box .items .item .text .more {
  font-size: 14px;
  margin-top: 8px;
  position: relative;
  z-index: 1;
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .solution .solution-box .items .item .text .more {
    font-size: 13px;
    margin-top: 4px;
  }
}
.solution-detail-box {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .solution-detail-box {
    margin-top: 64px;
  }
}
@media screen and (max-width: 750px) {
  .solution-detail-box {
    margin-top: 0;
  }
}
.solution-detail-box .item {
  display: flex;
  align-items: center;
  color: #fff;
  margin-bottom: 160px;
  scroll-margin-top: 144px;
}
@media screen and (max-width: 1024px) {
  .solution-detail-box .item {
    margin-bottom: 120px;
    align-items: flex-start;
  }
}
@media screen and (max-width: 750px) {
  .solution-detail-box .item {
    flex-direction: column-reverse;
    margin-bottom: 80px;
  }
}
.solution-detail-box .item .text {
  flex: 1;
}
.solution-detail-box .item .text .title {
  font-size: 32px;
}
@media screen and (max-width: 1024px) {
  .solution-detail-box .item .text .title {
    font-size: 20px;
  }
}
.solution-detail-box .item .text .summary {
  font-size: 16px;
  color: #fff;
  margin-bottom: 48px;
  margin-top: 32px;
  font-family: Inter-Thin;
}
@media screen and (max-width: 1024px) {
  .solution-detail-box .item .text .summary {
    font-size: 13px;
    margin-top: 12px;
  }
}
.solution-detail-box .item .text .summary span {
  color: #fff;
}
.solution-detail-box .item .text .type {
  margin-top: 64px;
  padding-top: 40px;
  color: #fff;
  font-size: 13px;
  margin-bottom: 24px;
  border-top: 1px solid #333;
}
@media screen and (max-width: 1024px) {
  .solution-detail-box .item .text .type {
    margin-top: 48px;
    padding-top: 32px;
  }
}
.solution-detail-box .item .text .type .type-box {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 16px;
  grid-gap: 24px;
}
@media screen and (max-width: 1024px) {
  .solution-detail-box .item .text .type .type-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    margin-top: 24px;
  }
}
.solution-detail-box .item .text .type .type-box a {
  transition: all 0.5s;
}
.solution-detail-box .item .text .type .type-box a i {
  font-size: 12px;
  margin-left: 6px;
}
.solution-detail-box .item .text .type .type-box a:hover {
  opacity: 0.6;
}
.solution-detail-box .item .img {
  width: 640px;
  height: 640px;
  margin-left: 80px;
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (max-width: 1024px) {
  .solution-detail-box .item .img {
    margin-left: 40px;
    width: 320px;
    height: 320px;
  }
}
@media screen and (max-width: 750px) {
  .solution-detail-box .item .img {
    margin-left: 0;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
  }
}
.solution-detail-box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-detail-box .item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .solution-detail-box .item:nth-child(2n) {
    flex-direction: column-reverse;
  }
}
.solution-detail-box .item:nth-child(2n) .img {
  margin-left: 0;
  margin-right: 80px;
}
@media screen and (max-width: 1024px) {
  .solution-detail-box .item:nth-child(2n) .img {
    margin-right: 40px;
  }
}
@media screen and (max-width: 750px) {
  .solution-detail-box .item:nth-child(2n) .img {
    margin-right: 0;
  }
}
.solution-detail-box .item.item1 .top {
  width: 100%;
  height: 315px;
  margin-bottom: 11px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .solution-detail-box .item.item1 .top {
    height: 156px;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 750px) {
  .solution-detail-box .item.item1 .top {
    height: auto;
  }
}
.solution-detail-box .item.item1 .bottom {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .solution-detail-box .item.item1 .bottom {
    grid-gap: 8px;
  }
}
.solution-detail-box .item.item1 .bottom .b1 {
  overflow: hidden;
}
.solution-detail-box .item.item1 .bottom img {
  width: 314px;
  height: 314px;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .solution-detail-box .item.item1 .bottom img {
    width: 156px;
    height: 156px;
  }
}
@media screen and (max-width: 750px) {
  .solution-detail-box .item.item1 .bottom img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 750px) {
  .solution-detail-box .item.item3 .img,
  .solution-detail-box .item.item4 .img {
    display: flex;
    grid-gap: 6px;
  }
}
.solution-detail-box .item.item3 .img,
.solution-detail-box .item.item4 .img {
  display: flex;
  justify-content: space-between;
}
.solution-detail-box .item.item3 .img .left,
.solution-detail-box .item.item4 .img .left {
  width: 316px;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .solution-detail-box .item.item3 .img .left,
  .solution-detail-box .item.item4 .img .left {
    width: 156px;
  }
}
@media screen and (max-width: 750px) {
  .solution-detail-box .item.item3 .img .left,
  .solution-detail-box .item.item4 .img .left {
    width: 50%;
  }
}
.solution-detail-box .item.item3 .img .right,
.solution-detail-box .item.item4 .img .right {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
@media screen and (max-width: 750px) {
  .solution-detail-box .item.item3 .img .right,
  .solution-detail-box .item.item4 .img .right {
    width: 50%;
  }
}
.solution-detail-box .item.item3 .img .right .r1,
.solution-detail-box .item.item4 .img .right .r1 {
  overflow: hidden;
}
.solution-detail-box .item.item3 .img .right img,
.solution-detail-box .item.item4 .img .right img {
  width: 316px;
  height: 316px;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .solution-detail-box .item.item3 .img .right img,
  .solution-detail-box .item.item4 .img .right img {
    width: 156px;
    height: 156px;
  }
}
@media screen and (max-width: 750px) {
  .solution-detail-box .item.item3 .img .right img,
  .solution-detail-box .item.item4 .img .right img {
    width: 100%;
    height: auto;
  }
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/*product*/
.product {
  display: flex;
  justify-content: space-between;
  grid-gap: 42px;
  margin-bottom: 184px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .product {
    flex-direction: column;
    margin-bottom: 96px;
    grid-gap: 24px;
    margin-top: 0;
  }
}
.product .product-menu {
  flex-basis: 280px;
  position: sticky;
  top: 80px;
  height: fit-content;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .product .product-menu {
    display: flex;
    overflow: auto;
    flex-basis: auto;
    grid-gap: 32px;
    background: #fff;
    transition: all 0.5s;
    padding: 15px 0;
    top: 0;
  }
  .product .product-menu::after {
    content: '';
    width: calc(100vw + 24px);
    height: 0;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: -24px;
    backdrop-filter: blur(20px);
    top: 50px;
    transition: all 0.5s;
  }
  .product .product-menu.up {
    overflow: initial;
    transition-delay: 5s;
  }
  .product .product-menu.up::after {
    height: 110vh;
  }
}
@media screen and (max-width: 1024px) {
  .product .product-menu {
    top: 64px;
  }
}
.product .product-menu .item {
  color: #999;
  border-radius: 24px;
  padding: 16px 28px;
}
@media screen and (max-width: 1024px) {
  .product .product-menu .item {
    flex-shrink: 0;
    padding: 0;
  }
}
.product .product-menu .item .first {
  display: flex;
  align-items: center;
}
.product .product-menu .item i {
  margin-left: 12px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .product .product-menu .item i {
    display: flex;
    width: 24px;
    height: 24px;
    background: #000;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.5s;
  }
  .product .product-menu .item i::before {
    transform: translateY(1px);
  }
  .product .product-menu .item i.active {
    transform: rotate(180deg);
  }
}
.product .product-menu .item.active {
  background: #f6f6f6;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .product .product-menu .item.active {
    background: none;
    margin-bottom: 0;
  }
}
.product .product-menu .item a {
  display: block;
  transition: all 0.5s;
}
.product .product-menu .item a.active {
  color: #000;
  font-family: Inter-Medium;
}
.product .product-menu .item a:hover {
  color: #000;
}
.product .product-menu .item .second {
  margin-top: 24px;
  margin-left: 16px;
}
@media screen and (max-width: 1024px) {
  .product .product-menu .item .second {
    display: none;
    background: #f6f6f6;
    position: absolute;
    top: 50px;
    width: calc(100vw + 24px);
    left: -40px;
    padding-left: 24px;
    z-index: 2;
    padding-bottom: 16px;
    margin-top: 0;
  }
}
.product .product-menu .item .second a {
  padding: 13px 12px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .product .product-menu .item .second a {
    padding: 17px 0;
  }
}
.product .product-menu .item .second a::after {
  content: '';
  width: 2px;
  height: calc(100% - 26px);
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  background: #000;
  opacity: 0;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .product .product-menu .item .second a::after {
    display: none;
  }
}
.product .product-menu .item .second a.active::after {
  opacity: 1;
}
.product .product-menu .item .second a:hover::after {
  opacity: 1;
}
.product .product-items {
  flex: 1;
}
.product .product-items .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
}
@media screen and (max-width: 1024px) {
  .product .product-items .items {
    grid-gap: 12px;
  }
}
@media screen and (max-width: 750px) {
  .product .product-items .items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px 12px;
  }
}
.product .product-items .items.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 750px) {
  .product .product-items .items.grid-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px 12px;
  }
}
.product .product-items .items .item {
  background: #f6f6f6;
  position: relative;
  padding-bottom: 50px;
  border-radius: 16px;
}
.product .product-items .items .buy-now {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  margin: auto;
  text-align: center;
  text-decoration: underline !important;
  font-size: 13px;
  color: #999;
}
.product .product-items .items .item .text {
  padding: 0 24px 32px;
  text-align: center;
  display: block;
}
@media screen and (max-width: 750px) {
  .product .product-items .items .item .text {
    padding: 0 16px 32px;
  }

  .product .product-items .items .item {
    padding-bottom:30px
  }
  .product .product-items .items .buy-now {
    bottom:30px
  }
}
.product .product-items .items .item .text .title {
  font-size: 20px;
  font-family: Inter-Medium;
}
@media screen and (max-width: 750px) {
  .product .product-items .items .item .text .title {
    font-size: 16px;
  }
}
.product .product-items .items .item .text .summary {
  font-size: 15px;
  line-height: 1.6;
  color: #999;
}
@media screen and (max-width: 750px) {
  .product .product-items .items .item .text .summary {
    font-size: 12px;
  }
}

.product-detail-top {
  display: flex;
  justify-content: space-between;
  /*width: 90%;*/
  margin: 32px auto 0;
}
@media screen and (max-width: 1024px) {
  .product-detail-top {
    flex-direction: column;
    margin-top: 16px;
  }
}
@media screen and (max-width: 750px) {
  .product-detail-top {
    width: 100%;
  }
}
.product-detail-top .img {
  width: 640px;
  height: fit-content;
}

@media screen and (max-width: 1024px) {
  .product-detail-top .img {
    position: relative;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail-top .img .big-swiper .imgBox {
    padding-bottom: 480px;
  }
}
@media screen and (max-width: 750px) {
  .product-detail-top .img .big-swiper .imgBox {
    padding-bottom: 400px;
  }
}
@media screen and (max-width: 400px) {
  .product-detail-top .img .big-swiper .imgBox {
    padding-bottom: 100%;
  }
}
.product-detail-top .img img {
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .product-detail-top .img img {
    padding: 0;
  }
}
.product-detail-top .img .swiper {
  /*position: absolute;*/
  /*width: 100%;*/
  /*top: 0;*/
  /*bottom: 0;*/
  /*margin: auto;*/
  /*height: 70%;*/
}

.product-detail-top .img .big-swiper .swiper-slide:hover img {
  transform: scale(1.1);
}

.product-detail-top .img .big-swiper {
  background: #f6f6f6;
  /*border-radius: 4px;*/
  border-radius: 16px;
}
.product-detail-top .img .small-swiper .swiper-slide {
  cursor: pointer;
  border-radius: 16px;
  border: 1px solid #f6f6f6;
}
.product-detail-top .img .small-swiper .swiper-slide img {
  opacity: 0.6;
}
.product-detail-top .img .small-swiper .swiper-slide.swiper-slide-thumb-active {
  background: #f6f6f6;
}
.product-detail-top .img .small-swiper .swiper-slide.swiper-slide-thumb-active img {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .product-detail-top .img .swiper {
    /*position: initial;*/
    /*height: auto;*/
  }
}
.product-detail-top .img .swiper .swiper-button-prev,
.product-detail-top .img .swiper .swiper-button-next {
  opacity: 0 !important;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .product-detail-top .img .swiper .swiper-button-prev,
  .product-detail-top .img .swiper .swiper-button-next {
    display: none;
  }
}
.product-detail-top .img:hover .swiper-button-prev,
.product-detail-top .img:hover .swiper-button-next {
  opacity: 1 !important;
}
@media screen and (min-width: 1441px) {
  .product-detail-top .img .imgBox {
    /*padding-bottom: 70%;*/
  }
}
@media screen and (max-width: 1024px) {
  .product-detail-top .img .swiper-pagination {
    position: initial;
    padding: 18px 24px 24px;
    background: #f6f6f6;
  }
}
.product-detail-top .img .swiper-pagination-bullet {
  opacity: 1;
  background: #d9d9d9;
  width: 6px;
  height: 6px;
}
.product-detail-top .img .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #999;
}

.product-detail-top .img .small-swiper {
  margin-top: 20px;
}

.product-detail-top .text {
  flex: 1;
  /*padding: 128px 40px;*/
  /*padding: 40px;*/
  padding-left: 80px;
}
@media screen and (max-width: 1024px) {
  .product-detail-top .text {
    padding: 48px 0 0;
  }
}
.product-detail-top .text .title {
  font-size: clamp(0.32rem,32px,32px);
  font-family: Inter-Medium;
}
@media screen and (max-width: 750px) {
  .product-detail-top .text .title {
    font-size: 32px;
  }
}
.product-detail-top .text .tip {
  margin-top: 12px;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .product-detail-top .text .tip {
    margin-top: 8px;
  }
}

.product-detail-top .text .summary-box {
  margin-top: clamp(20px,0.4rem,40px);
  overflow: auto;
  /*max-height: 300px;*/
}
.product-detail-top .text .summary {
  font-size: 16px;
  color: #999;
}
@media screen and (max-width: 1024px) {
  .product-detail-top .text .summary {
    margin-top: 32px;
    font-size: 12px;
  }
}
.product-detail-top .text .key {
  margin-top: clamp(20px,0.4rem,40px);
  margin-bottom: 16px;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .product-detail-top .text .key {
    margin-top: 48px;
  }
}
.product-detail-top .text .value {
  color: #999;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .product-detail-top .text .value {
    color: #999;
    font-size: 12px;
  }
}
.product-detail-top .text .color-item {
  display: flex;
  grid-gap: 16px;
  margin-top: 0.48rem;
}
@media screen and (max-width: 1024px) {
  .product-detail-top .text .color-item {
    grid-gap: 12px;
  }
}
@media screen and (max-width: 750px) {
  .product-detail-top .text .color-item {
    flex-direction: column;
  }
}
.product-detail-top .text .color-item .item {
  flex: 1;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  padding: 18px 24px;
  text-align: center;
  font-size: 13px;
  color: #999;
  cursor: pointer;
  transition: all 0.5s;
}
@media screen and (max-width: 750px) {
  .product-detail-top .text .color-item .item {
    padding: 14px 24px;
  }
}
.product-detail-top .text .color-item .item.active,
.product-detail-top .text .color-item .item:hover {
  border-color: #000;
  color: #000;
}
.product-detail-top .text .buy-item {
  margin-top: 0.48rem;
  /*padding-top: 0.48rem;*/
  /*border-top: 1px solid #f6f6f6;*/
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .product-detail-top .text .buy-item {
    /*margin-bottom: 48px;*/
    flex-direction: column;
    gap: 0;
  }
}
.product-detail-top .text .buy-item .item {
  border: 1px solid var(--dominant-color);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  color: var(--dominant-color);
  transition: all 0.5s;
  cursor: pointer;
  border-radius: 4px;
  min-width: 120px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .product-detail-top .text .buy-item .item  {
    height: 56px;
  }
}
.product-detail-top .text .buy-item .item.buy {
  background: var(--dominant-color);
  color: #fff;
}
.product-detail-top .text .buy-item .item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.product-detail-top .text .buy-item .item:hover {
  opacity: 0.6;
}
.product-detail-bottom {
  scroll-margin-top: 74px;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom img {
    width: 100%;
  }
}
.product-detail-bottom .detail-item {
  display: none;
  scroll-margin-top: 148px;
  padding-top: 28px;
  padding-bottom: 28px;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 750px) {
}
.product-detail-bottom .detail-item.active {
  display: block;
}
.product-detail-bottom .detail-item.video,
.product-detail-bottom .detail-item .support .faq-detail-box,
.product-detail-bottom .detail-item .support .manual .manual-box,
.product-detail-bottom .detail-item .support .manual {
  margin-bottom: 0;
}
.product-detail-bottom .detail-item.video .video-box .text .time {
  display: none;
}
.product-detail-bottom .detail-item .support .faq-detail-box .title {
  display: none;
}
.product-detail-bottom .product-title {
  max-width: 800px;
  text-align: center;
  margin: auto auto 32px;
}
.product-detail-bottom .product-title.pc {
  display: block !important;
}
.product-detail-bottom .product-title.phone {
  display: none !important;
}
@media screen and (max-width: 750px) {
  .product-detail-bottom .product-title {
    margin-bottom: 40px;
  }
}
.product-detail-bottom .product-title .title {
  font-size: 40px;
  font-family: Inter-Medium;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .product-title .title {
    font-size: 32px;
  }
}
@media screen and (max-width: 750px) {
  .product-detail-bottom .product-title .title {
    font-size: 24px;
  }
}
.product-detail-bottom .product-title .summary {
  font-size: 16px;
  margin-top: 16px;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .product-title .summary {
    font-size: 14px;
  }
}
.product-detail-bottom .get-now {
  background: #000;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .get-now {
    margin-bottom: 64px;
  }
}
.product-detail-bottom .get-now .section1280 {
  display: flex;
  justify-content: space-between;
  height: 96px;
  align-items: center;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .get-now .section1280 {
    height: 80px;
  }
}
.product-detail-bottom .overview .card {
  max-width: 1440px;
  padding-left: 80px;
  padding-right: 80px;
  width: 100%;
  margin: auto auto 80px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .overview .card {
    margin-bottom: 64px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media screen and (max-width: 750px) {
  .product-detail-bottom .overview .card {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.product-detail-bottom .overview .card:last-child {
  margin-bottom: 0;
}
.product-detail-bottom .overview .card2 {
  display: flex;
  grid-gap: 124px;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .overview .card2 {
    grid-gap: 40px;
  }
}
@media screen and (max-width: 750px) {
  .product-detail-bottom .overview .card2 {
    flex-direction: column;
    grid-gap: 0;
  }
}
.product-detail-bottom .overview .card2 .left {
  flex: 1;
}
.product-detail-bottom .overview .card2 .left .product-title {
  text-align: left;
  margin: auto auto 32px;
}
.product-detail-bottom .overview .card2 .left .product-title .summary {
  margin-top: 32px;
}
.product-detail-bottom .overview .card2 .right {
  flex-basis: calc(632 / 1280 * 100%);
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .overview .card2 .right {
    flex-basis: 320px;
  }
}
.product-detail-bottom .overview .card3 {
  display: flex;
  grid-gap: 124px;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .overview .card3 {
    grid-gap: 40px;
  }
}
@media screen and (max-width: 750px) {
  .product-detail-bottom .overview .card3 {
    flex-direction: column;
    grid-gap: 0;
  }
}
.product-detail-bottom .overview .card3 .left {
  flex: 1;
}
.product-detail-bottom .overview .card3 .left .product-title {
  text-align: left;
  margin: auto auto 32px;
}
.product-detail-bottom .overview .card3 .left .product-title .summary {
  margin-top: 32px;
}
.product-detail-bottom .overview .card3 .right {
  flex-basis: calc(632 / 1280 * 100%);
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .overview .card3 .right {
    flex-basis: 320px;
  }
}
.product-detail-bottom .overview .card4,
.product-detail-bottom .overview .card5,
.product-detail-bottom .overview .card7,
.product-detail-bottom .overview .card8 {
  position: relative;
}
.product-detail-bottom .overview .card4 .cart-text,
.product-detail-bottom .overview .card5 .cart-text,
.product-detail-bottom .overview .card7 .cart-text,
.product-detail-bottom .overview .card8 .cart-text {
  position: absolute;
  top: 0;
  width: 45%;
  padding: 40px 80px;
}
@media screen and (max-width: 750px) {
  .product-detail-bottom .overview .card4 .cart-text,
  .product-detail-bottom .overview .card5 .cart-text,
  .product-detail-bottom .overview .card7 .cart-text,
  .product-detail-bottom .overview .card8 .cart-text {
    position: initial;
    width: 100%;
    padding: 0;
  }
}
.product-detail-bottom .overview .card4 .cart-text .product-title,
.product-detail-bottom .overview .card5 .cart-text .product-title,
.product-detail-bottom .overview .card7 .cart-text .product-title,
.product-detail-bottom .overview .card8 .cart-text .product-title {
  text-align: left;
}
.product-detail-bottom .overview .card5 .cart-text {
  right: 80px;
}
.product-detail-bottom .overview .card6 .product-title {
  position: absolute;
  top: 80px;
  z-index: 2;
  left: 40px;
  right: 40px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .product-detail-bottom .overview .card6 .product-title {
    position: initial;
  }
}
.product-detail-bottom .overview .card7 .cart-text,
.product-detail-bottom .overview .card8 .cart-text {
  height: fit-content;
  bottom: 0;
  margin: auto;
}
.product-detail-bottom .overview .card8 .cart-text {
  right: 80px;
}
.product-detail-bottom .packing .packing-swiper {
  position: relative;
}
.product-detail-bottom .packing table {
  width: 100% !important;
  max-width: 960px;
  margin: 80px auto 160px;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .packing table {
    margin: 120px auto 160px;
  }
}
.product-detail-bottom .packing table th {
  font-size: 24px;
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .packing table th {
    font-size: 20px;
  }
}
.product-detail-bottom .packing table tr {
  display: flex;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .packing table tr {
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .product-detail-bottom .packing table tr {
    flex-direction: column;
    padding-bottom: 24px;
  }
}
.product-detail-bottom .packing table tr td {
  padding: 8px 0;
}
@media screen and (max-width: 750px) {
  .product-detail-bottom .packing table tr td {
    padding: 0;
  }
}
.product-detail-bottom .packing table tr td:nth-child(1) {
  flex-basis: 280px;
  margin-right: 32px;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .packing table tr td:nth-child(1) {
    flex-basis: 240px;
    margin-right: 32px;
  }
}
@media screen and (max-width: 750px) {
  .product-detail-bottom .packing table tr td:nth-child(1) {
    flex-basis: auto;
  }
}
.product-detail-bottom .packing table tr td:nth-child(2) {
  flex: 1;
  color: #666;
}
@media screen and (max-width: 750px) {
  .product-detail-bottom .packing table tr td:nth-child(2) {
    margin-top: 8px;
  }
}
.product-detail-bottom .packing table thead {
  margin-bottom: 48px;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .packing table thead {
    margin-bottom: 32px;
  }
}
.product-detail-bottom .packing .swiper {
  width: calc(100% - 140px);
  margin: auto;
  position: initial;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .packing .swiper {
    width: 100%;
  }
}
.product-detail-bottom .packing .swiper-title {
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
  font-family: Inter-Medium;
  width: fit-content;
}
.product-detail-bottom .packing .swiper-title .swiper-slide {
  width: auto;
  cursor: pointer;
  transition: color 0.5s;
}
.product-detail-bottom .packing .swiper-title .swiper-slide.swiper-slide-thumb-active {
  color: #fff;
}
.product-detail-bottom .packing .swiper-slide {
  border-radius: 4px;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .product-detail-bottom .packing .swiper-button-prev,
  .product-detail-bottom .packing .swiper-button-next {
    display: none !important;
  }
}
.product-detail-bottom .packing .swiper-button-prev {
  left: 0;
}
.product-detail-bottom .packing .swiper-button-next {
  right: 0;
}
.product-detail-bottom .packing .swiper-button-lock {
  display: flex;
  pointer-events: auto;
}
.recommended-product {
  background: #333;
}
.recommended-product .product {
  overflow: hidden;
  /*margin-bottom: 80px;*/
  margin-bottom: 0;
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .recommended-product .product {
    /*margin-bottom: 8px;*/
  }
}
.recommended-product .product .product-items {
  width: 100%;
  overflow: initial;
}
.recommended-product .product .items {
  display: flex;
  grid-gap: 0;
}
@media screen and (max-width: 750px) {
  .recommended-product .product .items {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-gap: 8px;
  }
}
.product-detail-sticky {
  position: sticky;
  top: 0;
  margin-top: 80px;
  background: #ffffff;
  border-bottom: 1px solid #f6f6f6;
  z-index: 3;
}
@media screen and (max-width: 750px) {
  .product-detail-sticky {
    margin-top: 24px;
  }
}
.product-detail-sticky .section1280 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-detail-sticky .buys {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
.product-detail-sticky .buys.active {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 1024px) {
  .product-detail-sticky .buys {
    display: none;
  }
}
.product-detail-sticky .buys .item {
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s;
}
.product-contact {
  padding: 50px 0;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.product-contact .product-title {
  color: #fff;
  text-align: center;
  display: none;
}
.product-contact .product-title .title {
  font-size: 40px;
  font-family: Inter-Medium;
}
.product-contact .product-title summary {
  font-size: 16px;
  margin-top: 16px;
}
.product-contact form {
  background-color: #f6f6f6 !important;
  max-width: 720px;
  margin: 0 auto auto;
}
.product-phone-buy {
  display: none;
}
@media screen and (max-width: 1024px) {
  .product-phone-buy {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 24px;
    /*background: rgba(255, 255, 255, 0.8);*/
    background:rgb(231 231 231);
    backdrop-filter: blur(12px);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: all 0.5s;
    pointer-events: none;
  }
}
@media screen and (max-width: 750px) {
  .product-phone-buy {
    padding: 6px 16px;
  }
}
.product-phone-buy.active {
  opacity: 1;
  pointer-events: auto;
}
.product-phone-buy .title {
  margin-right: 24px;
  font-size: 16px;
}
.product-phone-buy .button {
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .product-phone-buy .button .inquiry-button {
    display: none;
  }
}


.specs .s-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 24px;
  border-bottom: 1px solid #F6F6F6;
  padding-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .specs .s-item {
    flex-direction: column;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
.specs .title {
  color: #000;
  font-family: "Inter-SemiBold";
  font-size: 24px;
  width: 240px;
  margin-right: 120px;
}
@media screen and (max-width: 1024px) {
  .specs .title {
    width: 100%;
    margin-bottom: 24px;
    font-size: 20px;
  }
}
.specs table {
  min-width: 0;
  flex-grow: 1;
}
@media screen and (max-width: 750px) {
  .specs table tr {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
}
.specs table tr td:first-child {
  color: #000;
}
@media screen and (max-width: 1024px) {
  .specs table tr td:first-child {
    flex-basis: 100%;
    padding-bottom: 12px;
  }
}
.specs table td {
  color: #666;
  font-family: "Inter-Regular";
  font-size: 16px;
  padding-right: 40px;
  width: 320px;
  padding-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .specs table td {
    padding-right: 24px;
    width: 264px;
    font-size: 14px;
  }
}
@media screen and (max-width: 750px) {
  .specs table td {
    width: 50%;
    padding-bottom: 0;
  }
}
.specs table td strong {
  font-family: "Inter-SemiBold";
  color: #000;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .specs table td strong {
    width: 100%;
    margin-bottom: 24px;
  }
}
.video {
  margin-bottom: 180px;
}
@media screen and (max-width: 1024px) {
  .video {
    margin-bottom: 240px;
  }
}
.video .v-title {
  font-size: 24px;
  font-family: Inter-Medium;
  margin-bottom: 24px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .video .v-title {
    font-size: 20px;
  }
}
.video .video-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 64px 16px;
}
@media screen and (max-width: 1024px) {
  .video .video-box {
    grid-gap: 48px 12px;
  }
}
@media screen and (max-width: 750px) {
  .video .video-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.video .video-box .img {
  position: relative;
}
.video .video-box .img .imgBox {
  padding-bottom: 67%;
}
.video .video-box .img .play {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.video .video-box .text {
  font-size: 16px;
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .video .video-box .text {
    margin-top: 16px;
  }
}
.video .video-box .text .time {
  color: #666;
}
@media screen and (max-width: 1024px) {
  .video .video-box .text .time {
    font-size: 13px;
  }
}
@media screen and (max-width: 1024px) {
  .video .video-box .text .title {
    font-size: 14px;
  }
}
.sound .index-text3 {
  font-size: 24px;
  font-family: Inter-Medium;
  display: none;
}
@media screen and (max-width: 1024px) {
  .sound .index-text3 {
    font-size: 20px;
  }
}
.sound .itembox {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.sound .s-item {
  width: 32.46%;
}
@media screen and (max-width: 750px) {
  .sound .s-item {
    width: 100%;
  }
}
.sound .s-item:nth-child(3n-1) {
  margin-left: 1.3%;
  margin-right: 1.3%;
}
.sound .s-item:nth-child(3) ~ .s-item {
  margin-top: 1.3%;
}
.sound .s-item.active .play:after {
  content: "\e633";
}
.sound .s-item .image {
  width: 100%;
}
.sound .s-item .image img {
  width: 100%;
}
.sound .s-item .info {
  background-color: #F6F6F6;
  padding: 24px 24px 32px;
}
@media screen and (max-width: 1024px) {
  .sound .s-item .info {
    padding: 16px;
  }
}
.sound .s-item .info .text1 {
  color: #000;
  font-family: "Inter-Regular";
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .sound .s-item .info .text1 {
    font-size: 14px;
  }
}
.sound .s-item .menu {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .sound .s-item .menu {
    flex-direction: column;
  }
}
@media screen and (max-width: 750px) {
  .sound .s-item .menu {
    flex-direction: row;
  }
}
.sound .s-item .play {
  line-height: 1;
  display: block;
  margin-right: 24px;
  color: var(--dominant-color);
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .sound .s-item .play {
    margin-right: 0;
  }
}
@media screen and (max-width: 750px) {
  .sound .s-item .play {
    margin-right: 24px;
  }
}
.sound .s-item .play:after {
  content: "\e60e";
  font-size: 64px;
  display: block;
  font-family: iconfont;
  line-height: 1;
}
.sound .s-item .tool {
  min-width: 0;
  flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .sound .s-item .tool {
    width: 100%;
    margin-top: 24px;
  }
}
@media screen and (max-width: 750px) {
  .sound .s-item .tool {
    margin-top: 0;
  }
}
.sound .s-item .timeline {
  width: 100%;
  height: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sound .s-item .timeline .line {
  width: 100%;
  height: 2px;
  background-color: #D9D9D9;
  z-index: 1;
  position: relative;
}
.sound .s-item .timeline .line span {
  width: 0;
  height: 100%;
  display: block;
  background-color: var(--dominant-color);
}
.sound .s-item .timeline .line-btn {
  position: absolute;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: var(--dominant-color);
  border-radius: 100%;
  cursor: pointer;
  left: 0;
  z-index: 1;
}
.sound .s-item .time-info {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #999;
  font-family: "Inter-Regular";
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .sound .s-item .time-info {
    margin-top: 16px;
  }
}
.sound .s-item .time-info .before-time,
.sound .s-item .time-info .after-time {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
}
.sound .s-item audio {
  display: none;
}
.compare .top.sticky {
  position: sticky;
  top: 56px;
  z-index: 2;
  padding: 16px 0;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .compare .top.sticky {
    top: 96px;
  }
}
.compare.row-2 .top {
  padding-left: 33.33%;
}
@media screen and (max-width: 750px) {
  .compare.row-2 .top {
    padding-left: 0;
  }
}
.compare.row-2 .top .s-item {
  width: 50%;
}
.compare.row-2 .bottom .s-item ul > li {
  width: 32.333%;
}
.compare.row-2 .bottom .s-item ul > li:nth-child(4) {
  display: none;
}
.compare.row-3 .top {
  padding-left: 25%;
}
@media screen and (max-width: 750px) {
  .compare.row-3 .top {
    padding-left: 0;
  }
}
.compare.row-3 .top .s-item {
  width: calc((100% - 32px) / 3);
}
.compare.row-3 .top .s-item img {
  padding: 0 20%;
}
@media screen and (max-width: 1024px) {
  .compare.row-3 .top .s-item {
    width: calc((100% - 16px) / 2);
  }
}
.compare.row-3 .bottom .s-item ul > li {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .compare.row-3 .bottom .s-item ul > li {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .compare.row-3 .bottom .s-item ul > li:last-child {
    display: none;
  }
}
.compare.row-4 .top {
  padding-left: 20%;
}
@media screen and (max-width: 750px) {
  .compare.row-4 .top {
    padding-left: 0;
  }
}
.compare.row-4 .top .s-item {
  width: 25%;
}
.compare.row-4 .bottom .s-item ul > li {
  width: 20%;
}
.compare.row-5 .top {
  padding-left: 16.6666%;
}
.compare.row-5 .top .s-item {
  width: 20%;
}
.compare.row-5 .bottom .s-item ul > li {
  width: 16.666%;
}
.compare .top .itembox {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  grid-gap: 16px;
}
.compare .top .s-item {
  text-align: center;
}
.compare .top .s-item:nth-child(n + 2) .top-head .title {
  padding-right: 40px;
}
@media screen and (max-width: 750px) {
  .compare .top .s-item {
    flex-shrink: 0;
  }
}
.compare .top .s-item:nth-child(3) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .compare .top .s-item:nth-child(3) {
    display: none;
  }
}
.compare .top .s-item .top-head {
  position: relative;
}
.compare .top .s-item .top-head.active .title:after {
  display: none;
}
.compare .top .s-item .top-head:hover > ul {
  opacity: 1;
  visibility: visible;
}
.compare .top .s-item .top-head:hover .title:after {
  transform: rotate(180deg) translateY(50%);
}
.compare .top .s-item .top-head .title {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-family: "Inter-SemiBold";
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 4px;
  border: 1px solid #F6F6F6;
  background: #FFF;
  position: relative;
  padding: 8px 14px;
}
@media screen and (max-width: 1024px) {
  .compare .top .s-item .top-head .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .compare .top .s-item .top-head .title {
    padding: 8px;
    font-size: 14px;
  }
}
.compare .top .s-item .top-head .title:after {
  content: "\e656";
  font-family: iconfont;
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 0.4s;
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .compare .top .s-item .top-head .title:after {
    font-size: 14px;
    background: #D9D9D9;
    border-radius: 50%;
    padding: 4px;
    color: #fff;
  }
}
.compare .top .s-item .top-head > ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid #F6F6F6;
  border-radius: 0.28vw;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
}
.compare .top .s-item .top-head > ul > li {
  width: 100%;
}
.compare .top .s-item .top-head > ul > li > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #FFF;
  padding: 17px 14px;
  font-size: 16px;
  font-family: "Inter-SemiBold";
  color: #000;
}
@media screen and (max-width: 1024px) {
  .compare .top .s-item .top-head > ul > li > a {
    font-size: 16px;
  }
}
.compare .top .s-item .top-head > ul > li > a:hover {
  background-color: #f8f8f8;
  color: #000;
}
.compare .top .s-item .common-btn {
  margin-top: 1.18vw;
  margin-left: auto;
  margin-right: auto;
}
.compare .bottom {
  margin-top: 90px;
}
.compare .bottom .s-item {
  margin-bottom: 80px;
}
.compare .bottom .s-item:last-child {
  margin-bottom: 0;
}
.compare .bottom .s-item .title {
  color: #000;
  font-size: 24px;
  font-family: "Inter-SemiBold";
  margin-bottom: 64px;
  width: 100%;
}
.compare .bottom .s-item ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f6f6f6;
}
.compare .bottom .s-item ul > li {
  color: #000;
  font-size: 16px;
  font-family: "Inter-Regular";
  font-weight: 400;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 1024px) {
  .compare .bottom .s-item ul > li {
    font-size: 13px;
  }
}
.compare .bottom .s-item ul > li:first-child {
  text-align: left;
  color: #999;
}
.product-detail-black .top.sticky.active .title {
  background: #000 !important;
  padding: 6px 14px !important;
}
@media screen and (max-width: 750px) {
  .compare.row-2 .top {
    padding-left: 0;
  }
  .compare.row-2 .top .s-item {
    width: 49%;
  }
  .compare.row-2 .bottom .s-item ul > li {
    width: 49%;
  }
  .compare.row-2 .bottom .s-item ul > li:nth-child(2),
  .compare.row-2 .bottom .s-item ul > li:nth-child(3) {
    padding-top: 10.18vw;
    padding-bottom: 6.11vw;
  }
  .compare.row-3 .top {
    padding-left: 0;
  }
  .compare.row-3 .bottom .s-item ul > li {
    width: 44%;
  }
  .compare.row-3 .bottom .s-item ul > li:nth-child(2),
  .compare.row-3 .bottom .s-item ul > li:nth-child(3),
  .compare.row-3 .bottom .s-item ul > li:nth-child(4) {
    padding-top: 10.18vw;
    padding-bottom: 0;
  }
  .compare.row-4 .top {
    padding-left: 0;
  }
  .compare.row-4 .bottom .s-item ul > li {
    width: 44%;
  }
  .compare.row-4 .bottom .s-item ul > li:nth-child(2),
  .compare.row-4 .bottom .s-item ul > li:nth-child(3),
  .compare.row-4 .bottom .s-item ul > li:nth-child(4),
  .compare.row-4 .bottom .s-item ul > li:nth-child(5) {
    padding-top: 10.18vw;
    padding-bottom: 6.11vw;
  }
  .compare.row-5 .top {
    padding-left: 0;
  }
  .compare.row-5 .bottom .s-item ul > li {
    width: 44%;
  }
  .compare.row-5 .bottom .s-item ul > li:nth-child(2),
  .compare.row-5 .bottom .s-item ul > li:nth-child(3),
  .compare.row-5 .bottom .s-item ul > li:nth-child(4),
  .compare.row-5 .bottom .s-item ul > li:nth-child(5),
  .compare.row-5 .bottom .s-item ul > li:nth-child(6) {
    padding-top: 10.18vw;
    padding-bottom: 6.11vw;
  }
  .compare .top .s-item {
    flex-shrink: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .compare .top .s-item:nth-child(2) {
    padding-right: 0;
  }
  .compare .top .s-item .top-head .title:after {
    right: 3.05vw;
    font-size: 3.05vw;
  }
  .compare .top .s-item .top-head > ul {
    border-radius: 1.02vw;
  }
  .compare .top .s-item .top-head > ul > li > a {
    height: 14.25vw;
    padding-left: 3.56vw;
    padding-right: 3.56vw;
    font-size: 4.07vw;
  }
  .compare .top .s-item .common-btn {
    margin-top: 4.33vw;
  }
  .compare .bottom {
    margin-top: 20.36vw;
  }
  .compare .bottom .s-item {
    margin-bottom: 16.28vw;
  }
  .compare .bottom .s-item .title {
    font-size: 20px;
    margin-bottom: 48px;
  }
  .compare .bottom .s-item ul {
    position: relative;
    border-bottom: 1px solid #f8f8f8;
    margin-bottom: 0;
    padding-bottom: 16px;
  }
  .compare .bottom .s-item ul > li {
    flex-shrink: 0;
    padding-top: 0;
    padding-bottom: 6.11vw;
    font-size: 13px;
    line-height: 4.58vw;
    padding-left: 1.53vw;
    padding-right: 1.53vw;
    border: 0;
    text-align: left;
  }
  .compare .bottom .s-item ul > li:first-child {
    position: absolute;
    top: 4.07vw;
    left: 0;
    font-size: 13px;
    line-height: 4.07vw;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
  }
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
.milestone .milestone-box {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 80px;
  margin-bottom: 250px;
}
@media screen and (max-width: 1024px) {
  .milestone .milestone-box {
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 750px) {
  .milestone .milestone-box {
    margin-bottom: 150px;
  }
}
.milestone .milestone-box::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background: #999;
  top: 30px;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .milestone .milestone-box::after {
    left: 24px;
    right: auto;
    top: 20px;
  }
}
.milestone .milestone-box .item {
  width: 50%;
  text-align: right;
  padding-right: 40px;
  position: relative;
  margin-bottom: 32px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .milestone .milestone-box .item {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 750px) {
  .milestone .milestone-box .item {
    width: 100%;
    padding-right: 0;
    padding-left: 40px;
    text-align: left;
  }
}
.milestone .milestone-box .item::after,
.milestone .milestone-box .item::before {
  content: '';
  position: absolute;
  margin: auto;
  border-radius: 50%;
}
.milestone .milestone-box .item::after {
  right: -8px;
  background: #666;
  width: 16px;
  height: 16px;
  z-index: 0;
  top: 20px;
}
@media screen and (max-width: 750px) {
  .milestone .milestone-box .item::after {
    left: 0;
    right: auto;
    top: 10px;
  }
}
.milestone .milestone-box .item::before {
  right: -4px;
  background: #999;
  width: 8px;
  height: 8px;
  z-index: 1;
  top: 24px;
}
@media screen and (max-width: 750px) {
  .milestone .milestone-box .item::before {
    left: 4px;
    right: auto;
    top: 14px;
  }
}
.milestone .milestone-box .item .title {
  font-size: 32px;
  font-family: Inter-Medium;
  color: #999;
}
@media screen and (max-width: 1024px) {
  .milestone .milestone-box .item .title {
    font-size: 24px;
  }
}
.milestone .milestone-box .item .summary {
  font-size: 13px;
  margin-top: 8px;
  color: #999;
}
.milestone .milestone-box .item .summary span {
  color: var(--dominant-hover);
}
@media screen and (max-width: 1024px) {
  .milestone .milestone-box .item .summary {
    margin-top: 12px;
  }
}
.milestone .milestone-box .item:nth-child(odd) {
  margin-right: 0;
  margin-left: auto;
  padding-left: 40px;
  text-align: left;
  padding-right: 0;
}
.milestone .milestone-box .item:nth-child(odd) .title {
  color: var(--dominant-hover);
}
.milestone .milestone-box .item:nth-child(odd)::after {
  left: -8px;
  right: auto;
}
@media screen and (max-width: 750px) {
  .milestone .milestone-box .item:nth-child(odd)::after {
    left: 0;
  }
}
.milestone .milestone-box .item:nth-child(odd)::before {
  left: -4px;
  right: auto;
  background: var(--dominant-hover);
}
@media screen and (max-width: 750px) {
  .milestone .milestone-box .item:nth-child(odd)::before {
    left: 4px;
  }
}
.innovation .innovation-box {
  margin-top: 64px;
}
@media screen and (max-width: 1024px) {
  .innovation .innovation-box {
    margin-top: 48px;
  }
}
@media screen and (max-width: 750px) {
  .innovation .innovation-box {
    margin-top: 40px;
  }
}
.innovation .innovation-box .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .innovation .innovation-box .items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
  }
}
@media screen and (max-width: 750px) {
  .innovation .innovation-box .items {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 112px;
  }
}
.innovation .innovation-box .items .item {
  position: relative;
}
.innovation .innovation-box .items .img {
  overflow: hidden;
  height: 0;
  position: relative;
  padding-bottom: 110%;
}
.innovation .innovation-box .items .img img {
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.innovation .innovation-box .items .text {
  position: absolute;
  top: 32px;
  left: 24px;
  right: 24px;
  font-size: 24px;
  z-index: 1;
  font-family: Inter-Medium;
  line-height: 1.33;
}
@media screen and (max-width: 1024px) {
  .innovation .innovation-box .items .text {
    font-size: 20px;
  }
}
.innovation .innovation-box .innovation-swiper {
  overflow: hidden;
  position: relative;
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .innovation .innovation-box .innovation-swiper {
    margin-bottom: 48px;
  }
}
.innovation .innovation-box .innovation-swiper .swiper {
  overflow: initial;
  width: 848px;
  position: initial;
  padding-top: 26px;
}
@media screen and (max-width: 1024px) {
  .innovation .innovation-box .innovation-swiper .swiper {
    width: 640px;
  }
}
@media screen and (max-width: 750px) {
  .innovation .innovation-box .innovation-swiper .swiper {
    padding-top: 56px;
    width: 320px;
  }
}
.innovation .innovation-box .innovation-swiper .swiper .swiper-slide {
  transform: scale(0.8);
  transition: all 0.5s;
}
@media screen and (max-width: 750px) {
  .innovation .innovation-box .innovation-swiper .swiper .swiper-slide {
    height: 426px;
  }
  .innovation .innovation-box .innovation-swiper .swiper .swiper-slide img {
    height: 100%;
    object-fit: cover;
  }
}
.innovation .innovation-box .innovation-swiper .swiper .swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition: all 0.5s;
  opacity: 0.6;
}
.innovation .innovation-box .innovation-swiper .swiper .swiper-slide.swiper-slide-prev {
  transform-origin: center right;
}
.innovation .innovation-box .innovation-swiper .swiper .swiper-slide.swiper-slide-next {
  transform-origin: center left;
}
.innovation .innovation-box .innovation-swiper .swiper .swiper-slide.swiper-slide-active {
  transform: scale(1);
}
.innovation .innovation-box .innovation-swiper .swiper .swiper-slide.swiper-slide-active::after {
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .innovation .innovation-box .innovation-swiper .swiper .swiper-button-prev,
  .innovation .innovation-box .innovation-swiper .swiper .swiper-button-next {
    display: none;
  }
}
.innovation .innovation-box .innovation-swiper .swiper .swiper-pagination {
  position: initial;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .innovation .innovation-box .innovation-swiper .swiper .swiper-pagination {
    margin-top: 24px;
  }
}
@media screen and (max-width: 750px) {
  .innovation .innovation-box .innovation-swiper .swiper .swiper-pagination {
    margin-bottom: 32px;
  }
}
.innovation .innovation-box .innovation-swiper .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
}
.innovation .innovation-box .innovation-swiper .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 8px;
  height: 8px;
}
.worldwide-awards .worldwide-awards-box {
  margin-top: 80px;
  margin-bottom: 240px;
}
@media screen and (max-width: 1024px) {
  .worldwide-awards .worldwide-awards-box {
    margin-top: 64px;
    margin-bottom: 160px;
  }
}
@media screen and (max-width: 750px) {
  .worldwide-awards .worldwide-awards-box {
    margin-top: 48px;
  }
}
.worldwide-awards .worldwide-awards-box .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .worldwide-awards .worldwide-awards-box .items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 750px) {
  .worldwide-awards .worldwide-awards-box .items {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 40px;
  }
}
.worldwide-awards .worldwide-awards-box .items .item {
  position: relative;
}
.worldwide-awards .worldwide-awards-box .items .img {
  overflow: hidden;
}
.worldwide-awards .worldwide-awards-box .items .img img {
  width: 100%;
  aspect-ratio: 316/165;
}
.worldwide-awards .worldwide-awards-box .items .text {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  font-size: 24px;
  z-index: 1;
  font-family: Inter-Medium;
  line-height: 1.33;
  color: #fff;
  width: 320px;
}
@media screen and (max-width: 1024px) {
  .worldwide-awards .worldwide-awards-box .items .text {
    font-size: 16px;
    top: 16px;
    left: 16px;
    right: 16px;
    width: 160px;
    font-weight: 400;
  }
}
.worldwide-awards .worldwide-awards-box .items .text .title2 {
  color: var(--dominant-color);
}
.story {
  background: #1C1C1C;
}
.story .story-box1 {
  display: flex;
  max-width: 1440px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .story .story-box1 {
    padding: 40px;
  }
}
@media screen and (max-width: 750px) {
  .story .story-box1 {
    padding: 40px 24px;
    flex-direction: column;
  }
}
.story .story-box1 .text {
  padding: 54px 40px;
  color: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .story .story-box1 .text {
    padding: 0;
    padding-right: 24px;
  }
}
@media screen and (max-width: 750px) {
  .story .story-box1 .text {
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .story .story-box1 .top {
    display: flex;
    grid-gap: 12px;
  }
}
@media screen and (max-width: 750px) {
  .story .story-box1 .top {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .story .story-box1 .top .top-text {
    flex: 1;
  }
}
.story .story-box1 .top .top-text .sup {
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .story .story-box1 .top .top-text .sup {
    font-size: 20px;
  }
}
.story .story-box1 .top .top-text .title {
  font-size: 40px;
  font-family: Inter-Medium;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .story .story-box1 .top .top-text .title {
    font-size: 32px;
  }
}
.story .story-box1 .top .top-text .summary {
  margin-top: 48px;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .story .story-box1 .top .top-text .summary {
    font-size: 14px;
  }
}
.story .story-box1 .top .top-text .summary p {
  font-family: Inter-Thin;
}
.story .story-box1 .top .top-img {
  display: none;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 1024px) {
}
.story .story-box1 .bottom {
  display: flex;
  flex-direction: column;
  grid-gap: 64px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .story .story-box1 .bottom {
    margin-top: 32px;
    padding-top: 24px;
    margin-bottom: 0;
  }
  .story .story-box1 .bottom .b-item {
    flex: 1;
  }
}
@media screen and (max-width: 750px) {
  .story .story-box1 .bottom {
    flex-direction: column;
    grid-gap: 48px;
    margin-top: 24px;
    padding-top: 0;
  }
  .story .story-box1 .bottom .b-item {
    padding: 0;
  }
}
.story .story-box1 .bottom .key {
  font-size: 28px;
  color: var(--dominant-color);
  font-family: Inter-Medium;
  line-height: 1.2;
}
.story .story-box1 .bottom .value {
  font-size: 16px;
  margin-top: 12px;
}
.story .story-box1 .img {
  flex-basis: calc(600 / 1440 * 100%);
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 750px) {
  .story .story-box1 .img {
    margin-top: 24px;
  }
}
.story .story-box2 {
  background: #000;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .story .story-box2 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.story .story-box2 .section {
  display: flex;
  grid-gap: 16px;
}
@media screen and (max-width: 1024px) {
  .story .story-box2 .section {
    grid-gap: 12px;
  }
}
@media screen and (max-width: 750px) {
  .story .story-box2 .section {
    flex-direction: column;
  }
}
.story .story-box2 .item {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.story .story-box2 .item .imgBox {
  height: auto;
  padding: 0;
  max-height: 75vh;
}
.story .story-box2 .item .imgBox img {
  position: relative;
}
.story .story-box2 .item .text {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  margin: auto;
  z-index: 1;
  color: #fff;
}
.story .story-box2 .item .text .title {
  font-size: 40px;
}
.story .story-box2 .item .text .summary {
  margin-top: 12px;
}
.story .story-box3 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .story .story-box3 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.story .story-box3 .section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
  max-width: 1120px;
}
@media screen and (max-width: 1024px) {
  .story .story-box3 .section {
    grid-gap: 12px;
  }
}
@media screen and (max-width: 750px) {
  .story .story-box3 .section {
    grid-template-columns: repeat(2, 1fr);
  }
}
.story .story-box3 .section .item {
  border-radius: 4px;
  border: 1px solid #333;
  background: rgba(51, 51, 51, 0.4);
  backdrop-filter: blur(12px);
}
@media screen and (max-width: 1024px) {
  .story .story-box3 .section .item .imgBox {
    padding-bottom: 125%;
  }
}
@media screen and (max-width: 750px) {
  .story .story-box3 .section .item .imgBox {
    padding-bottom: 135%;
  }
}
.story .story-box3 .section .item .text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 24px;
  margin: auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .story .story-box3 .section .item .text {
    padding: 16px;
  }
}
.story .story-box3 .section .item .text .title {
  font-size: 40px;
}
@media screen and (max-width: 1024px) {
  .story .story-box3 .section .item .text .title {
    font-size: 28px;
  }
}
.story .story-box3 .section .item .text .title span {
  font-size: 20px;
}
.story .story-box3 .section .item .text .summary {
  margin-top: 12px;
  text-transform: uppercase;
}
@media screen and (max-width: 750px) {
  .story .story-box3 .section .item .text .summary {
    font-size: 13px;
  }
}
.story .story-box3 .section .item .text .icon {
  margin-top: auto;
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/*news*/
.news {
  margin-bottom: 80px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .news {
    margin-bottom: 40px;
  }
}
.news .news-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 16px;
}
@media screen and (max-width: 1024px) {
  .news .news-box {
    grid-gap: 40px 12px;
  }
}
@media screen and (max-width: 750px) {
  .news .news-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 24px;
  }
}
@media screen and (max-width: 750px) {
  .news .news-box .item {
    display: flex;
    flex-direction: row-reverse;
    border-bottom: 1px solid #f6f6f6;
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 750px) {
  .news .news-box .item .img {
    width: 96px;
    margin-left: 16px;
  }
}
.news .news-box .item .imgBox {
  padding-bottom: 66%;
}
@media screen and (max-width: 750px) {
  .news .news-box .item .imgBox {
    padding-bottom: 100%;
  }
}
.news .news-box .item .imgBox.imgBox2 {
  padding-bottom: 100%;
}
.news .news-box .item .text {
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .news .news-box .item .text {
    margin-top: 16px;
  }
}
@media screen and (max-width: 750px) {
  .news .news-box .item .text {
    flex: 1;
    margin-top: 0;
  }
}
.news .news-box .item .text .title {
  font-size: 16px;
  font-family: Inter-Medium;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1024px) {
  .news .news-box .item .text .title {
    font-size: 14px;
  }
}
.news .news-box .item .text .summary {
  margin-top: 8px;
  font-size: 13px;
  color: #999;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1024px) {
  .news .news-box .item .text .summary {
    margin-top: 12px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 1024px) {
  .news .news-box .item .text .summary {
    line-height: 1.5;
    margin-top: 8px;
  }
}
.news .post-more {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}
.news.post {
  margin-bottom: 240px;
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .news.post {
    margin-bottom: 190px;
    margin-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .news.post {
    margin-bottom: 264px;
  }
}
.news.post .news-box {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
}
@media screen and (max-width: 1024px) {
  .news.post .news-box {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px;
  }
}
@media screen and (max-width: 750px) {
  .news.post .news-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
  }
}
.news.post .news-box .item {
  padding-bottom: 0;
  border: none;
  cursor: pointer;
}
.news.post .news-box .item .img {
  width: 100%;
  margin-left: 0;
}
.news-detail .news-detail-box {
  max-width: 750px;
  margin: auto;
  font-size: 16px;
}
.news-detail .news-detail-box .detail {
  margin: 20px auto 40px;
}
.news-detail .news-detail-box .detail p {
  /*margin-bottom: 30px;*/
}
.news-detail .news-detail-box h1,
.news-detail .news-detail-box h2,
.news-detail .news-detail-box h3,
.news-detail .news-detail-box h4,
.news-detail .news-detail-box h5,
.news-detail .news-detail-box h6 {
  margin-bottom: 30px;
}
.news-detail .news-detail-box h4 {
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .news-detail .news-detail-box .detail {
    margin-bottom: 80px;
  }
}
.news-detail .news-detail-box .detail ul,
.news-detail .news-detail-box .detail ol {
  padding-left: 20px;
  list-style: initial;
}
.news-detail .news-detail-box .detail ul li,
.news-detail .news-detail-box .detail ol li {
  list-style: initial;
}
.news-detail .news-detail-box .title {
  font-size: 32px;
  font-family: Inter-Medium;
  line-height: 1.25;
}
@media screen and (max-width: 1024px) {
  .news-detail .news-detail-box .title {
    font-size: 28px;
  }
}
.news-detail .news-detail-box .time {
  color: #999;
  margin-top: 12px;
  margin-bottom: 24px;
  font-size: 13px;
}
.news-detail .news-detail-box .share {
  display: flex;
  align-items: center;
  font-size: 12px;
}
.news-detail .news-detail-box .share .social-share-icon {
  border: none;
  filter: brightness(0);
  opacity: 0.16;
  transition: all 0.5s;
}
.news-detail .news-detail-box .share .social-share-icon::before {
  display: none;
}
.news-detail .news-detail-box .share .social-share-icon:hover {
  filter: none;
  opacity: 1;
}
.news-detail .news-detail-box .share .icon-facebook {
  background: url('../images/svg/facebook.svg') no-repeat center / cover;
}
.news-detail .news-detail-box .share .icon-twitter {
  background: url('../images/svg/twitter.svg') no-repeat center / cover;
}
.news-detail .news-detail-box .share .icon-linkedin {
  background: url('../images/svg/in.svg') no-repeat center / cover;
}
.news-detail .news-detail-box .share span {
  padding-right: 6px;
}
.news-detail .news-detail-box .share a {
  height: 32px;
  margin: 6px;
}
.news-detail .news-detail-box .share svg {
  fill: #d9d9d9;
  transition: all 0.5s;
}
.news-detail .news-detail-box .share a:hover svg {
  fill: var(--dominant-color) !important;
}
.news-detail .news-detail-box img {
  width: 100% !important;
  height: auto !important;
  margin: 24px auto 8px;
}
.news-detail .news-detail-box strong {
  font-family: Inter-Medium;
}
.news-detail .news-detail-box iframe {
  margin: 24px auto 8px;
  display: block;
}
.news-detail .news {
  max-width: 750px;
  padding: 0;
}
.news-pager {
  max-width: 750px;
  margin: 88px auto 160px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}
@media screen and (max-width: 1024px) {
  .news-pager {
    grid-gap: 12px;
    margin: 64px auto 120px;
  }
}
.news-pager .title {
  font-size: 12px;
  color: #999;
  margin-bottom: 14px;
}
.news-pager .item {
  display: flex;
}
@media screen and (max-width: 750px) {
  .news-pager .item {
    flex-direction: column;
    flex-basis: 50%;
  }
}
.news-pager .img {
  width: 120px;
  margin-right: 12px;
}
@media screen and (max-width: 750px) {
  .news-pager .img {
    width: 100%;
  }
}
.news-pager .img .imgBox {
  padding-bottom: 67%;
}
.news-pager .text {
  flex: 1;
  font-family: Inter-Medium;
  height: fit-content;
}
@media screen and (max-width: 750px) {
  .news-pager .text {
    margin-top: 12px;
    -webkit-line-clamp: 2;
    font-size: 12px;
  }
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/*support*/
.support .manual {
  margin: 80px auto;
}
@media screen and (max-width: 1024px) {
  .support .manual {
    margin: 64px auto 96px;
  }
}
@media screen and (max-width: 750px) {
  .support .manual {
    margin-bottom: 160px;
  }
}
.support .manual .manual-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 16px;
  margin-bottom: 64px;
}
.support .manual .manual-box.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1024px) {
  .support .manual .manual-box.grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .support .manual .manual-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
  }
}
@media screen and (max-width: 750px) {
  .support .manual .manual-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 12px;
  }
}
.support .manual .manual-box .item {
  display: flex;
  background: #f6f6f6;
  padding: 32px 32px 40px;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .support .manual .manual-box .item {
    padding: 24px 24px 32px;
  }
}
.support .manual .manual-box .item .text {
  flex: 1;
  margin-right: 32px;
}
.support .manual .manual-box .item .text .sup {
  color: #999;
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.support .manual .manual-box .item .text .sup svg {
  margin-right: 4px;
}
@media screen and (max-width: 1024px) {
  .support .manual .manual-box .item .text .sup {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.support .manual .manual-box .item .text .title {
  font-size: 20px;
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .support .manual .manual-box .item .text .title {
    font-size: 16px;
  }
}
.support .manual .manual-box .item .download {
  border-radius: 4px;
  border: 1px solid #000;
  background: #FFF;
  display: flex;
  align-items: center;
  grid-gap: 12px;
  font-size: 13px;
  height: 40px;
  width: 130px;
  justify-content: center;
  transition: all 0.5s;
}
.support .manual .manual-box .item .download svg {
  fill: #000;
  transition: all 0.5s;
  width: 16px;
}
.support .manual .manual-box .item .download:hover {
  background: var(--dominant-color);
  color: #fff;
  border-color: var(--dominant-color);
}
.support .manual .manual-box .item .download:hover svg {
  fill: #fff;
}
.support .downloads {
  margin-top: 48px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .support .downloads {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 750px) {
  .support .downloads {
    margin-top: 8px;
  }
}
.support .downloads .download-title {
  font-size: 24px;
  font-family: Inter-Medium;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .support .downloads .download-title {
    font-size: 20px;
  }
}
.support .downloads .down-items {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}
@media screen and (max-width: 1024px) {
  .support .downloads .down-items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.support .downloads .down-items .item {
  padding: 24px 32px;
  background: #f6f6f6;
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .support .downloads .down-items .item {
    padding: 16px 24px;
  }
}
@media screen and (max-width: 750px) {
  .support .downloads .down-items .item {
    padding: 16px;
  }
}
.support .downloads .down-items .item .top {
  padding-bottom: 24px;
  border-bottom: 1px solid #d9d9d9;
  display: flex;
  margin-bottom: 16px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .support .downloads .down-items .item .top {
    padding-bottom: 16px;
  }
}
.support .downloads .down-items .item .top .img {
  width: 64px;
}
.support .downloads .down-items .item .top .text {
  flex: 1;
  margin-left: 16px;
  margin-right: 24px;
}
@media screen and (max-width: 1024px) {
  .support .downloads .down-items .item .top .text {
    margin-right: 20px;
  }
}
.support .downloads .down-items .item .top .text .title {
  font-size: 20px;
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .support .downloads .down-items .item .top .text .title {
    font-size: 16px;
  }
}
.support .downloads .down-items .item .top .text .summary {
  font-size: 13px;
  color: #999;
}
@media screen and (max-width: 1024px) {
  .support .downloads .down-items .item .top .text .summary {
    font-size: 12px;
  }
}
.support .downloads .down-items .item .top .code {
  width: 112px;
}
@media screen and (max-width: 1024px) {
  .support .downloads .down-items .item .top .code {
    width: 96px;
  }
}
.support .downloads .down-items .item .bottom {
  display: flex;
  justify-content: center;
  grid-gap: 32px;
}
.support .downloads .down-items .item .bottom .b-item {
  width: 132px;
}
.support .downloads .down-items .item .bottom .img {
  border-radius: 8px;
  overflow: hidden;
  width: 132px;
  height: 40px;
  text-align: center;
  background: #000;
}
.support .downloads .down-items .item .bottom .text {
  margin-top: 6px;
  color: #999;
  text-align: center;
  font-size: 12px;
}
.support .faq .manual-box .item {
  padding: 40px 32px;
}
@media screen and (max-width: 1024px) {
  .support .faq .manual-box .item {
    padding: 32px 24px;
  }
}
.support .faq-detail-box {
  margin: 0 auto 48px;
  max-width: 1062px;
}
@media screen and (max-width: 1024px) {
  .support .faq-detail-box {
    margin: 0 auto 305px;
  }
}
@media screen and (max-width: 750px) {
  .support .faq-detail-box {
    margin: 0 auto 278px;
  }
}
.support .faq-detail-box .title {
  font-size: 40px;
  font-family: Inter-Medium;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .support .faq-detail-box .title {
    margin-bottom: 40px;
    font-size: 20px;
  }
}
.support .faq-detail-box .items {
  display: flex;
  flex-direction: column;
  grid-gap: 8px;
}
@media screen and (max-width: 750px) {
  .support .faq-detail-box .items {
    grid-gap: 24px;
  }
}
.support .faq-detail-box .items .item {
  display: flex;
  grid-gap: 16px;
  border-bottom: 1px solid #f6f6f6;
  padding: 12px 0;
  align-items: baseline;
  cursor: pointer;
}
.support .faq-detail-box .items .item .number {
  font-size: 18px;
  font-family: Inter-SemiBold;
}
@media screen and (max-width: 1024px) {
  .support .faq-detail-box .items .item .number {
    font-size: 14px;
  }
}
.support .faq-detail-box .items .item .text {
  flex: 1;
  padding-right: 40px;
}
@media screen and (max-width: 750px) {
  .support .faq-detail-box .items .item .text {
    padding-right: 0;
  }
}
.support .faq-detail-box .items .item .text .i-title {
  font-size: 16px;
  font-family: Inter-SemiBold;
  display: flex;
  align-items: baseline;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .support .faq-detail-box .items .item .text .i-title {
    font-size: 14px;
  }
}
.support .faq-detail-box .items .item .text .i-summary {
  margin-top: 12px;
  font-size: 13px;
  display: none;
}
.support .faq-detail-box .items .item i {
  color: #999;
  transition: all 0.5s;
  font-size: 20px;
}
.support .faq-detail-box .items .item i.active {
  transform: rotate(180deg);
}
.support .policies {
  margin-top: 80px;
  margin-bottom: 480px;
}
@media screen and (max-width: 1024px) {
  .support .policies {
    margin-top: 40px;
    margin-bottom: 380px;
  }
}
@media screen and (max-width: 750px) {
  .support .policies {
    margin-bottom: 335px;
  }
}
.support .policies .policies-box {
  display: flex;
  flex-direction: column;
  grid-gap: 40px;
}
@media screen and (max-width: 1024px) {
  .support .policies .policies-box {
    grid-gap: 24px;
  }
}
.support .policies .item {
  display: flex;
  grid-gap: 24px;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 64px;
  border-bottom: 1px solid #f6f6f6;
}
@media screen and (max-width: 1024px) {
  .support .policies .item {
    flex-direction: column;
    padding-bottom: 40px;
    grid-gap: 16px;
  }
}
.support .policies .item .title {
  font-size: 24px;
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .support .policies .item .title {
    font-size: 20px;
  }
}
.support .policies .item .text {
  flex-basis: 720px;
  color: #666;
  font-size: 13px;
}
@media screen and (max-width: 1024px) {
  .support .policies .item .text {
    flex-basis: auto;
  }
}
.support .policies .item .text .summary.active {
  -webkit-line-clamp: 300;
}
.support .policies .item .text .more {
  display: inline-block;
  margin-top: 40px;
  color: #000;
  font-family: Inter-Medium;
  transition: all 0.5s;
  cursor: pointer;
}
.support .policies .item .text .more::after {
  content: 'VIEW ALL';
}
.support .policies .item .text .more.active::after {
  content: 'VIEW LESS';
}
@media screen and (max-width: 1024px) {
  .support .policies .item .text .more {
    margin-top: 32px;
  }
}
.support .policies .item .text .more:hover {
  opacity: 0.6;
}
.support .privacy {
  margin-top: 120px;
  margin-bottom: 240px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .support .privacy {
    flex-direction: column;
    margin-top: 64px;
    margin-bottom: 160px;
  }
}
@media screen and (max-width: 750px) {
  .support .privacy {
    margin-bottom: 106px;
  }
}
.support .privacy .catalogue {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  font-family: Inter-Medium;
  position: relative;
}
.support .privacy .catalogue::after {
  content: '';
  height: 1px;
  width: calc(100% + 40px);
  position: absolute;
  bottom: 0;
  left: -24px;
  background: #f6f6f6;
}
.support .privacy .catalogue i {
  transition: all 0.5s;
  width: 24px;
  height: 24px;
}
.support .privacy .catalogue i.active {
  transform: rotate(180deg);
}
.support .privacy .privacy-menu {
  height: fit-content;
  position: sticky;
  top: 64px;
  width: 308px;
  margin-right: 58px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .support .privacy .privacy-menu {
    top: 64px;
    width: 100%;
  }
}
.support .privacy .privacy-menu .privacy-menu-box {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .support .privacy .privacy-menu .privacy-menu-box {
    display: none;
    left: -24px;
    width: calc(100% + 48px);
  }
}
.support .privacy .privacy-menu .privacy-menu-box::before {
  content: '';
  position: absolute;
  top: 54px;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  display: none;
}
@media screen and (max-width: 1024px) {
  .support .privacy .privacy-menu .privacy-menu-box::before {
    display: block;
  }
}
.support .privacy .privacy-menu a {
  display: block;
  padding: 16px;
  font-size: 18px;
  color: #999;
  border-radius: 24px;
}
@media screen and (max-width: 1024px) {
  .support .privacy .privacy-menu a {
    padding: 17px 32px;
    position: relative;
    z-index: 1;
    background: #f6f6f6;
    border-radius: 0;
  }
}
.support .privacy .privacy-menu a.active {
  background: #f6f6f6;
  color: var(--dominant-color);
}
.support .privacy .privacy-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  grid-gap: 80px;
}
@media screen and (max-width: 1024px) {
  .support .privacy .privacy-box {
    grid-gap: 64px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 750px) {
  .support .privacy .privacy-box {
    margin-top: 40px;
  }
}
.support .privacy .privacy-box .item {
  scroll-margin-top: 148px;
}
@media screen and (max-width: 1024px) {
  .support .privacy .privacy-box .item {
    scroll-margin-top: 700px;
  }
}
.support .privacy .privacy-box .title {
  font-size: 16px;
  font-family: Inter-Medium;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .support .privacy .privacy-box .title {
    margin-bottom: 32px;
    font-size: 20px;
  }
}
.support .privacy .privacy-box .summary {
  font-size: 16px;
  color: #666;
}
.support .privacy .privacy-box .summary ol,
.support .privacy .privacy-box .summary ul {
  padding-left: 20px;
}
.support .privacy .privacy-box .summary li {
  list-style: disc;
}
.check-code {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  grid-gap: 40px;
  padding-top: 40px;
  border-top: 1px solid #d9d9d9;
  margin: 40px auto 80px;
}
.check-code .title1 {
  font-size: 24px;
  margin-bottom: 16px;
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .check-code .title1 {
    font-size: 20px;
  }
}
.check-code .title2 {
  font-size: 16px;
  margin-bottom: 12px;
}
@media screen and (max-width: 1024px) {
  .check-code .title2 {
    font-size: 14px;
  }
}
.check-code .summary {
  color: #666;
  font-size: 13px;
}
.check-code .summary a {
  color: var(--dominant-color);
}
.check-code .tip {
  color: var(--dominant-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .check-code .tip {
    flex-direction: column;
    align-items: flex-start;
  }
}
.check-code .tip svg {
  margin-left: 8px;
}
@media screen and (max-width: 750px) {
  .check-code .tip svg {
    margin-left: 0;
  }
}
.support-search-check {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 640px;
  margin: auto;
  grid-gap: 24px;
}
.support-search-check .check {
  margin-top: 40px;
}
.support-search-check .login-tip {
  color: #FF0000;
  text-align: center;
}
.check-susses {
  color: #666;
  font-size: 13px;
  margin-top: 24px;
}
.tutorials {
  margin-top: 64px;
  margin-bottom: 160px;
}
@media screen and (max-width: 1024px) {
  .tutorials {
    margin-top: 48px;
  }
}
.tutorials .tutorials-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 64px 16px;
}
@media screen and (max-width: 1024px) {
  .tutorials .tutorials-box {
    grid-gap: 48px 12px;
  }
}
@media screen and (max-width: 750px) {
  .tutorials .tutorials-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.tutorials .tutorials-box .imgBox {
  padding-bottom: 67%;
}
.tutorials .tutorials-box .img {
  position: relative;
}
.tutorials .tutorials-box .img .play {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.tutorials .tutorials-box .text {
  padding-top: 24px;
}
.tutorials .tutorials-box .text .time {
  line-height: normal;
  color: #999;
  margin-bottom: 8px;
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
.activities {
  margin-top: 12px;
  margin-bottom: 80px;
}
.activities .news .news-box .item .imgBox {
  padding-bottom: 50%;
}
@media screen and (max-width: 1024px) {
  .activities {
    margin-bottom: 128px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 750px) {
  .activities {
    margin-bottom: 124px;
  }
}
.activities .activities-box {
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .activities .activities-box {
    grid-gap: 16px;
    margin-bottom: 96px;
  }
}
.activities .activities-box .item {
  display: flex;
  justify-content: space-between;
  background: #f6f6f6;
}
@media screen and (max-width: 750px) {
  .activities .activities-box .item {
    flex-direction: column-reverse;
  }
}
.activities .activities-box .item .text {
  flex: 1;
  padding: 24px;
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .text {
    padding: 24px;
  }
}
@media screen and (max-width: 750px) {
  .activities .activities-box .item .text {
    padding: 16px 16px 40px;
  }
}
.activities .activities-box .item .text .sup {
  background: var(--dominant-color);
  padding: 2px 10px;
  color: #fff;
  display: inline-block;
  border-radius: 4px;
}
.activities .activities-box .item .text .title {
  font-size: 24px;
  font-family: Inter-Medium;
  margin-top: 16px;
  margin-bottom: 8px;
  line-height: 1.333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .text .title {
    margin-top: 12px;
    font-size: 16px;
  }
}
.activities .activities-box .item .text .summary {
  color: #666;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .text .summary {
    font-size: 13px;
  }
}
.activities .activities-box .item .text .i-items {
  grid-gap: 24px;
  margin-bottom: 32px;
  display: flex;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #d9d9d9;
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .text .i-items {
    margin-bottom: 40px;
    margin-top: 24px;
    padding-top: 24px;
  }
}
.activities .activities-box .item .text .i-item:first-child {
  width: 160px;
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .text .i-item:first-child {
    width: 120px;
  }
}
@media screen and (max-width: 750px) {
  .activities .activities-box .item .text .i-item:first-child {
    min-width: initial;
  }
}
.activities .activities-box .item .text .i-item:last-child {
  flex: 1;
}
.activities .activities-box .item .text .i-item .key {
  color: #999;
  font-size: 12px;
}
.activities .activities-box .item .text .i-item .value {
  font-size: 16px;
  font-family: Inter-Medium;
  margin-top: 4px;
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .text .i-item .value {
    font-size: 14px;
  }
}
.activities .activities-box .item .img {
  width: calc(720 / 1280 * 100%);
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .img {
    width: 360px;
  }
}
@media screen and (max-width: 750px) {
  .activities .activities-box .item .img {
    margin-left: 0;
    width: 100%;
  }
}
.activities .activities-box .item .img .imgBox {
  padding-bottom: 50%;
}
.activities .activities-box .item .img .imgBox .img2 {
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .activities .activities-box .item .img .imgBox {
    padding-bottom: 100%;
  }
  .activities .activities-box .item .img .imgBox .img1 {
    opacity: 0;
  }
  .activities .activities-box .item .img .imgBox .img2 {
    opacity: 1;
  }
}
@media screen and (max-width: 750px) {
  .activities .activities-box .item .img .imgBox {
    padding-bottom: 50%;
  }
  .activities .activities-box .item .img .imgBox .img1 {
    opacity: 1;
  }
  .activities .activities-box .item .img .imgBox .img2 {
    opacity: 0;
  }
}
.activities .news-box {
  margin-top: 32px;
}
@media screen and (max-width: 1024px) {
  .activities .news-box {
    margin-top: 24px;
  }
}
@media screen and (max-width: 750px) {
  .activities .news-box {
    margin-top: 40px;
  }
}
.privacy.coming-up {
  max-width: 986px;
  margin: 40px auto 0;
}
@media screen and (max-width: 1024px) {
  .privacy.coming-up {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
.privacy.coming-up .privacy-menu {
  width: 198px;
  margin-right: 48px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .privacy.coming-up .privacy-menu {
    display: flex;
    width: 100%;
    margin-right: 0;
    justify-content: center;
    grid-gap: 32px;
    z-index: 2;
  }
  .privacy.coming-up .privacy-menu::before {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .privacy.coming-up .privacy-menu a {
    background: none;
    padding: 12px 0;
  }
  .privacy.coming-up .privacy-menu a.active {
    background: none;
  }
}
.privacy.coming-up .privacy-box {
  grid-gap: 0;
}
@media screen and (max-width: 1024px) {
  .privacy.coming-up .privacy-box {
    margin-top: 24px;
  }
}
.privacy.coming-up .privacy-box .title {
  margin-bottom: 24px;
}
.privacy.coming-up .activities {
  margin-top: 0;
  margin-bottom: 0;
}
.privacy.coming-up .activities .activities-box {
  grid-gap: 24px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .privacy.coming-up .activities .activities-box {
    margin-bottom: 64px;
  }
}
.privacy.coming-up .activities .activities-box .item {
  flex-direction: column-reverse;
}
@media screen and (max-width: 1024px) {
  .privacy.coming-up .activities .activities-box .item {
    flex-direction: row;
  }
}
@media screen and (max-width: 750px) {
  .privacy.coming-up .activities .activities-box .item {
    flex-direction: column-reverse;
  }
}
.privacy.coming-up .activities .activities-box .item .text {
  color: #000;
  padding: 24px;
}
@media screen and (max-width: 750px) {
  .privacy.coming-up .activities .activities-box .item .text {
    padding: 16px 16px 40px;
  }
}
.privacy.coming-up .activities .activities-box .item .text .title {
  margin-bottom: 8px;
  margin-top: 0;
}
.privacy.coming-up .activities .activities-box .item .i-items {
  margin-bottom: 24px;
  margin-top: 16px;
  padding-top: 16px;
}
.privacy.coming-up .activities .activities-box .item .img {
  margin-left: 0;
  width: 100%;
  display: block;
}
@media screen and (max-width: 1024px) {
  .privacy.coming-up .activities .activities-box .item .img {
    width: 360px;
  }
}
@media screen and (max-width: 750px) {
  .privacy.coming-up .activities .activities-box .item .img {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .privacy.coming-up .activities .activities-box .item .img .imgBox {
    padding-bottom: 95%;
  }
}
@media screen and (max-width: 750px) {
  .privacy.coming-up .activities .activities-box .item .img .imgBox {
    padding-bottom: 50%;
  }
}
.witness-video {
  background: #333;
  padding: 40px 0 80px;
}
.witness-video .swiper {
  margin-top: 32px;
}
@media screen and (max-width: 750px) {
  .witness-video .swiper .swiper-wrapper {
    flex-direction: column;
  }
}
.witness-video .swiper .swiper-slide {
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .witness-video .swiper .swiper-slide {
    margin-bottom: 40px;
  }
  .witness-video .swiper .swiper-slide:last-child {
    margin-bottom: 0;
  }
}
.witness-video .swiper .swiper-slide .img {
  position: relative;
}
.witness-video .swiper .swiper-slide .img .play {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 64px;
  height: 64px;
}
@media screen and (max-width: 1024px) {
  .witness-video .swiper .swiper-slide .img .play {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 750px) {
  .witness-video .swiper .swiper-slide .img .play {
    width: 80px;
    height: 80px;
  }
}
.witness-video .swiper .swiper-slide .text {
  color: #fff;
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .witness-video .swiper .swiper-slide .text {
    margin-top: 24px;
  }
}
.witness-video .swiper .swiper-slide .text .title {
  font-size: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1024px) {
  .witness-video .swiper .swiper-slide .text .title {
    font-size: 16px;
  }
}
.witness-video .swiper .swiper-slide .text .summary {
  margin-top: 8px;
  line-height: 1.8;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: Inter-Thin;
}
@media screen and (max-width: 1024px) {
  .witness-video .swiper .swiper-slide .text .summary {
    font-size: 13px;
  }
}
.witness-title {
  color: #fff;
  text-align: center;
}
.witness-title .sup {
  font-size: 13px;
  margin-bottom: 12px;
}
.witness-title .title {
  font-size: 32px;
  font-family: Inter-Medium;
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .witness-title .title {
    font-size: 24px;
  }
}
.witness-item .items {
  padding: 80px 0 80px;
}
@media screen and (max-width: 1024px) {
  .witness-item .items {
    padding: 64px 0 64px;
  }
}
.witness-item .items .witness-title {
  color: #000;
}
.witness-item .items .item-box {
  display: grid;
  grid-gap: 32px 16px;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px auto;
}
@media screen and (max-width: 1024px) {
  .witness-item .items .item-box {
    margin: 40px auto;
    grid-gap: 12px;
  }
}
@media screen and (max-width: 750px) {
  .witness-item .items .item-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 32px 12px;
  }
}
.witness-item .items .item-box .imgBox {
  padding-bottom: 67%;
}
.witness-item .items .item-box .text {
  margin-top: 24px;
  text-align: center;
}
.witness-item .items .item-box .text .title {
  font-size: 20px;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1024px) {
  .witness-item .items .item-box .text .title {
    font-size: 16px;
  }
}
.witness-item .items .item-box .text .summary {
  font-size: 13px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.witness-item .items:nth-child(even) {
  background: #000;
}
.witness-item .items:nth-child(even) .witness-title {
  color: #fff;
}
.witness-item .items:nth-child(even) .item-box {
  grid-gap: 40px 16px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 750px) {
  .witness-item .items:nth-child(even) .item-box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px 12px;
  }
}
.witness-item .items:nth-child(even) .item-box .imgBox {
  padding-bottom: 100%;
}
.witness-item .items:nth-child(even) .item-box .text {
  color: #fff;
}
.witness-item .items:nth-child(even) .item-box .text .summary {
  color: #fff;
}
.witness-item .items .item-box-button {
  display: flex;
  justify-content: center;
}
.witness3 .item {
  padding: 64px 0;
  scroll-margin-top: 64px;
}
@media screen and (max-width: 1024px) {
  .witness3 .item {
    padding: 40px 0;
  }
}
.witness3 .item .item-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
  margin-top: 40px;
  margin-bottom: 54px;
}
@media screen and (max-width: 1024px) {
  .witness3 .item .item-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 750px) {
  .witness3 .item .item-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.witness3 .item .item-box .item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(40px);
  display: flex;
  height: 420px;
  padding: 40px 24px;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .witness3 .item .item-box .item {
    height: 280px;
  }
}
@media screen and (max-width: 750px) {
  .witness3 .item .item-box .item {
    height: auto;
    padding: 24px 24px 40px;
  }
}
.witness3 .item .item-box .item .title {
  font-size: 24px;
  line-height: 1.3;
  margin-top: 4px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .witness3 .item .item-box .item .title {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.witness3 .item .item-box .item .summary {
  font-family: "Inter-Thin";
}
@media screen and (max-width: 1024px) {
  .witness3 .item .item-box .item .summary {
    font-size: 13px;
  }
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
.contact {
  margin-top: 64px;
  margin-bottom: 64px;
}
@media screen and (max-width: 1024px) {
  .contact {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.contact .ny11-section2 .body {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .contact .ny11-section2 .body {
    flex-direction: column-reverse;
  }
}
.contact .ny11-section2 .left-body {
  width: 416px;
  flex-shrink: 0;
  margin-right: 16px;
}
@media screen and (max-width: 1024px) {
  .contact .ny11-section2 .left-body {
    width: 293px;
  }
}
@media screen and (max-width: 750px) {
  .contact .ny11-section2 .left-body {
    width: 100%;
  }
}
.contact .ny11-section2 .left-body .item {
  padding: 24px 32px 32px;
  background-color: #f1f1f1;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .contact .ny11-section2 .left-body .item {
    padding: 24px;
    margin-bottom: 12px;
  }
}
.contact .ny11-section2 .left-body .item:last-child {
  margin-bottom: 0;
}
.contact .ny11-section2 .left-body .item .head .text1 {
  color: #000;
  font-size: 20px;
  margin-bottom: 6px;
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .contact .ny11-section2 .left-body .item .head .text1 {
    margin-bottom: 8px;
    font-size: 16px;
  }
}
.contact .ny11-section2 .left-body .item .head .text2 {
  color: #666;
  font-size: 13px;
  line-height: 1.53;
}
.contact .ny11-section2 .left-body .item .list {
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .contact .ny11-section2 .left-body .item .list {
    margin-top: 24px;
  }
}
.contact .ny11-section2 .left-body .item .list-item {
  margin-bottom: 16px;
}
.contact .ny11-section2 .left-body .item .list-item:last-child {
  margin-bottom: 0;
}
.contact .ny11-section2 .left-body .item .list-item .text1 {
  color: #999;
  font-size: 12px;
  margin-bottom: 4px;
  line-height: 1.3;
}
.contact .ny11-section2 .left-body .item .list-item .text2 {
  color: #000;
  font-size: 14px;
}
.contact form {
  min-width: 0;
  flex-grow: 1;
  padding: 24px 32px;
  background-color: #f1f1f1;
}
@media screen and (max-width: 1024px) {
  .contact form {
    padding: 24px 24px 48px;
  }
}
@media screen and (max-width: 750px) {
  .contact form {
    margin-bottom: 12px;
  }
}
.contact form .head {
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .contact form .head {
    margin-bottom: 8px;
  }
}
.contact form .head .text1 {
  color: #000;
  font-size: 24px;
  font-family: Inter-Medium;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .contact form .head .text1 {
    font-size: 20px;
  }
}
.contact form .head .text2 {
  color: #666;
  font-size: 13px;
  margin-top: 6px;
}
.contact form .form-itembox {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 8px 12px;
}
.contact form .form-item {
  width: calc((100% - 24px) / 3);
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 1024px) {
  .contact form .form-item {
    width: calc((100% - 12px) / 2);
  }
  .contact form .form-item:nth-child(3) {
    width: 100%;
  }
}
.contact form .form-item .layui-edge {
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
  margin-top: -4px;
  right: 0;
  z-index: -1;
}
.contact form .form-item .layui-input:focus,
.contact form .form-item .layui-textarea:focus {
  border: none;
  box-shadow: none;
}
.contact form .form-item .layui-input {
  height: 56px;
  border: 0;
  font-size: 13px;
  color: #000;
  background: none;
  text-indent: 0;
  padding-left: 0;
}
.contact form .form-item .layui-input::-webkit-input-placeholder {
  color: #999;
}
.contact form .form-item .layui-input::-moz-placeholder {
  color: #999;
}
.contact form .form-item .layui-input:-moz-placeholder {
  color: #999;
}
.contact form .form-item .layui-input:-ms-input-placeholder {
  color: #999;
}
.contact form .form-item .layui-form-selected .layui-edge {
  transform: rotate(-45deg);
  margin-top: 0;
}
.contact form .form-item .layui-form-select .layui-input {
  height: 56px;
  border: 0;
  font-size: 13px;
  color: #000;
}
.contact form .form-item .layui-form-select .layui-input::-webkit-input-placeholder {
  color: #999;
}
.contact form .form-item .layui-form-select .layui-input::-moz-placeholder {
  color: #999;
}
.contact form .form-item .layui-form-select .layui-input:-moz-placeholder {
  color: #999;
}
.contact form .form-item .layui-form-select .layui-input:-ms-input-placeholder {
  color: #999;
}
.contact form .form-item .layui-form-selected dl {
  top: 100%;
  padding-top: 0;
  padding-bottom: 0.56vw;
  border: 0;
  text-align: left;
  border: 1px solid #F6F6F6;
  background: #FFF;
}
.contact form .form-item .layui-form-select dl dd {
  height: 40px;
  color: #999;
  font-size: 13px;
  background-color: #fff;
}
.contact form .form-item .layui-form-select dl dd.layui-this {
  background-color: #F6F6F6;
  color: #000;
}
.contact form textarea {
  height: 160px;
  padding: 16px;
  width: 100%;
  font-size: 13px;
  color: #000;
  resize: none;
  border: 0;
  outline: none;
  background-color: #fff;
  margin-top: 24px;
  text-indent: 0;
}
@media screen and (max-width: 1024px) {
  .contact form textarea {
    height: 128px;
    margin-top: 25px;
  }
}
.contact form textarea::-webkit-input-placeholder {
  color: #999;
}
.contact form textarea::-moz-placeholder {
  color: #999;
}
.contact form textarea:-moz-placeholder {
  color: #999;
}
.contact form textarea:-ms-input-placeholder {
  color: #999;
}
.contact form .tip {
  margin-top: 16px;
  color: #999;
  font-size: 13px;
}
.contact form button {
  margin-top: 48px;
  margin-bottom: 44px;
}
@media screen and (max-width: 1024px) {
  .contact form button {
    margin-top: 25px;
    margin-bottom: 0;
  }
}
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
.buy-map {
  margin-top: 48px;
  margin-bottom: 80px;
  position: relative;
  z-index: 0;
}
.ny3-section2 {
  z-index: 11;
  text-align: center;
}
.ny3-section2 form {
  display: flex;
  grid-gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .ny3-section2 form {
    grid-gap: 16px;
  }
}
.ny3-section2 form .form-item {
  width: 240px;
  border-bottom: 1px solid #f6f6f6;
}
@media screen and (max-width: 1024px) {
  .ny3-section2 form .form-item {
    width: 224px;
  }
}
@media screen and (max-width: 750px) {
  .ny3-section2 form .form-item {
    width: 100%;
  }
}
.ny3-section2 form .form-item .layui-edge {
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
  margin-top: -4px;
  right: 0;
}
.ny3-section2 form .form-item .layui-input:focus,
.ny3-section2 form .form-item .layui-textarea:focus {
  border: none;
  box-shadow: none;
}
.ny3-section2 form .form-item .layui-input {
  height: 56px;
  border: 0;
  font-size: 13px;
  color: #000;
  background: none;
  text-indent: 0;
  padding-left: 0;
}
.ny3-section2 form .form-item .layui-input::-webkit-input-placeholder {
  color: #999;
}
.ny3-section2 form .form-item .layui-input::-moz-placeholder {
  color: #999;
}
.ny3-section2 form .form-item .layui-input:-moz-placeholder {
  color: #999;
}
.ny3-section2 form .form-item .layui-input:-ms-input-placeholder {
  color: #999;
}
.ny3-section2 form .form-item .layui-form-selected .layui-edge {
  transform: rotate(-45deg);
  margin-top: 0;
}
.ny3-section2 form .form-item .layui-form-select .layui-input {
  height: 56px;
  border: 0;
  font-size: 13px;
  color: #000;
}
.ny3-section2 form .form-item .layui-form-select .layui-input::-webkit-input-placeholder {
  color: #999;
}
.ny3-section2 form .form-item .layui-form-select .layui-input::-moz-placeholder {
  color: #999;
}
.ny3-section2 form .form-item .layui-form-select .layui-input:-moz-placeholder {
  color: #999;
}
.ny3-section2 form .form-item .layui-form-select .layui-input:-ms-input-placeholder {
  color: #999;
}
.ny3-section2 form .form-item .layui-form-selected dl {
  top: 100%;
  padding-top: 0;
  padding-bottom: 0.56vw;
  border: 0;
  text-align: left;
  border: 1px solid #F6F6F6;
  background: #FFF;
}
.ny3-section2 form .form-item .layui-form-select dl dd {
  height: 40px;
  color: #999;
  font-size: 13px;
  background-color: #fff;
}
.ny3-section2 form .form-item .layui-form-select dl dd.layui-this {
  background-color: #F6F6F6;
  color: #000;
}
.ny3-section2 form textarea {
  height: 160px;
  padding: 16px;
  width: 100%;
  font-size: 13px;
  color: #000;
  resize: none;
  border: 0;
  outline: none;
  background-color: #fff;
  margin-top: 64px;
  text-indent: 0;
}
@media screen and (max-width: 1024px) {
  .ny3-section2 form textarea {
    height: 128px;
    margin-top: 25px;
  }
}
.ny3-section2 form textarea::-webkit-input-placeholder {
  color: #999;
}
.ny3-section2 form textarea::-moz-placeholder {
  color: #999;
}
.ny3-section2 form textarea:-moz-placeholder {
  color: #999;
}
.ny3-section2 form textarea:-ms-input-placeholder {
  color: #999;
}
.ny3-section2 form .tip {
  margin-top: 16px;
  color: #999;
  font-size: 13px;
}
.ny3-section2 form button {
  margin-top: 64px;
  margin-bottom: 54px;
}
@media screen and (max-width: 1024px) {
  .ny3-section2 form button {
    margin-top: 25px;
    margin-bottom: 0;
  }
}
.buy-box {
  min-height: 400px;
}
.ny3-section3 {
  margin-top: 48px;
  margin-bottom: 120px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;

}
@media screen and (max-width: 1024px) {
  .ny3-section3 {
    margin-top: 40px;
    margin-bottom: 64px;
  }
}
.ny3-section3 .head {
  margin-bottom: 24px;
  font-family: Inter-SemiBold;
  font-size: 24px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .ny3-section3 .head {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.ny3-section3 .itembox2 .store {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
}
@media screen and (max-width: 1024px) {
  .ny3-section3 .itembox2 .store {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px;
    margin-top: 24px;
  }
}
.ny3-section3 .itembox2 .store a {
  border: 1px solid #eee;
}
.ny3-section3 .itembox2 .item {
  margin-bottom: 64px;
}
.ny3-section3 .itembox2 .list {
  display: block;
  width: 100%;
}
.ny3-section3 .itembox2 .item-tr {
  display: flex;
  align-items: flex-start;
  padding: 18px 0 24px;
  margin-bottom: 18px;
  border-bottom: 1px solid #f6f6f6;
}
@media screen and (max-width: 1024px) {
  .ny3-section3 .itembox2 .item-tr {
    padding: 24px 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 750px) {
  .ny3-section3 .itembox2 .item-tr {
    flex-direction: column;
    padding: 32px 0;
  }
}
.ny3-section3 .itembox2 .item-td:nth-child(1) {
  width: 376px;
  margin-right: 24px;
}
@media screen and (max-width: 1024px) {
  .ny3-section3 .itembox2 .item-td:nth-child(1) {
    width: 200px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 750px) {
  .ny3-section3 .itembox2 .item-td:nth-child(1) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.ny3-section3 .itembox2 .item-td:nth-child(2) {
  margin-right: 24px;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .ny3-section3 .itembox2 .item-td:nth-child(2) {
    margin-right: 12px;
  }
}
@media screen and (max-width: 750px) {
  .ny3-section3 .itembox2 .item-td:nth-child(2) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.ny3-section3 .itembox2 .item-td:nth-child(3) {
  width: 160px;
  margin-right: 32px;
}
@media screen and (max-width: 1024px) {
  .ny3-section3 .itembox2 .item-td:nth-child(3) {
    width: 120px;
    margin-right: 12px;
  }
}
@media screen and (max-width: 750px) {
  .ny3-section3 .itembox2 .item-td:nth-child(3) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.ny3-section3 .itembox2 .item-td:nth-child(4) {
  width: 96px;
  margin-bottom: 5px;
  margin-top: auto;
}
@media screen and (max-width: 750px) {
  .ny3-section3 .itembox2 .item-td:nth-child(4) {
    width: 100%;
  }
}
.ny3-section3 .itembox2 .item-td:nth-child(4) a {
  letter-spacing: 1px;
}
.ny3-section3 .itembox2 .item-td .text1 {
  color: #999;
  margin-bottom: 16px;
  font-size: 13px;
}
@media screen and (max-width: 1024px) {
  .ny3-section3 .itembox2 .item-td .text1 {
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) {
  .ny3-section3 .itembox2 .item-td .text1 {
    margin-bottom: 8px;
  }
}
.ny3-section3 .itembox2 .item-td .text2 {
  font-size: 16px;
  font-family: Inter-SemiBold;
}
@media screen and (max-width: 1024px) {
  .ny3-section3 .itembox2 .item-td .text2 {
    font-size: 14px;
  }
}
.where-banner {
  position: relative;
  margin-bottom: 96px;
}
@media screen and (max-width: 750px) {
  .where-banner {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 1024px) {
  .where-banner .pc {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .where-banner .tablet {
    display: none;
  }
}
.where-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .where-banner img {
    height: 360px;
  }
}
@media screen and (max-width: 750px) {
  .where-banner img {
    height: auto;
  }
}
.where-banner::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  background: linear-gradient(to left, rgba(96, 108, 134, 0) 0%, #475770 46.79%);
}
@media screen and (max-width: 1024px) {
  .where-banner::after {
    background: linear-gradient(to left, rgba(96, 108, 134, 0) 0%, #475770 61.75%);
  }
}
@media screen and (max-width: 750px) {
  .where-banner::after {
    background: linear-gradient(-180deg, rgba(96, 108, 134, 0) 0%, #475770 61.75%);
  }
}
.where-banner .text {
  position: absolute;
  left: 82px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .where-banner .text {
    left: 40px;
  }
}
@media screen and (max-width: 750px) {
  .where-banner .text {
    right: 40px;
    text-align: center;
    bottom: 48px;
    transform: translateY(0);
    top: auto;
  }
}
.where-banner .text .title {
  font-size: 40px;
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .where-banner .text .title {
    font-size: 32px;
  }
}
.where-banner .text .summary {
  margin-top: 12px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .where-banner .text .summary {
    font-size: 13px;
  }
}
/*--------------------------------------------------------*/
.customer {
  margin-bottom: 160px;
}
.customer .customer-box {
  display: flex;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .customer .customer-box {
    flex-direction: column;
    margin-top: 0;
  }
}
.customer .customer-box .left {
  flex-basis: 280px;
  margin-right: 98px;
}
@media screen and (max-width: 1024px) {
  .customer .customer-box .left {
    margin-right: 0;
    flex-basis: auto;
  }
}
.customer .customer-box .left .customer-menu {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .customer .customer-box .left .customer-menu {
    flex-direction: row;
    padding: 15px 24px;
    grid-gap: 24px;
    justify-content: center;
  }
}
@media screen and (max-width: 750px) {
  .customer .customer-box .left .customer-menu {
    justify-content: flex-start;
    overflow: auto;
    padding: 15px 8px;
  }
}
.customer .customer-box .left .customer-menu a {
  padding: 16px 28px;
  color: #999;
  display: block;
  border-radius: 24px;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .customer .customer-box .left .customer-menu a {
    flex-shrink: 0;
    padding: 0;
  }
}
@media screen and (max-width: 750px) {
  .customer .customer-box .left .customer-menu a {
    font-size: 13px;
  }
}
.customer .customer-box .left .customer-menu a.active,
.customer .customer-box .left .customer-menu a:hover {
  background: #fff;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .customer .customer-box .left .customer-menu a.active,
  .customer .customer-box .left .customer-menu a:hover {
    background: none;
    color: #fff;
  }
}
.customer .customer-box .right {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .customer .customer-box .right {
    margin-top: 24px;
  }
}
.customer .customer-box .right .r-title {
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .customer .customer-box .right .r-title {
    font-size: 20px;
  }
}
.customer .customer-box .right .index3 .index3-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}
@media screen and (max-width: 750px) {
  .customer .customer-box .right .index3 .index3-box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 12px;
  }
}
.customer-detail .news-detail-box .title,
.customer-detail .news-detail-box .share,
.customer-detail .news-detail-box .detail {
  color: #fff;
}
.customer-detail .news-detail-box .share .social-share-icon {
  filter: grayscale(1) brightness(1.6);
  opacity: 1;
}
.customer-detail .news-detail-box .share .social-share-icon:hover {
  filter: none;
}
.customer-detail .news-detail-box .share .icon-facebook {
  background: #fff url('../images/svg/facebook.svg') no-repeat center / cover;
}
.customer-detail .news-detail-box .share .icon-twitter {
  background: #fff url('../images/svg/twitter.svg') no-repeat center / cover;
}
.customer-detail .news-detail-box .share .icon-linkedin {
  background: #fff url('../images/svg/in.svg') no-repeat center / cover;
}
.customer-related {
  max-width: 1080px;
}
.customer-related .about-title {
  margin-top: 64px;
  border-top: 1px solid #666;
  padding-top: 24px;
}
.customer-related .customer .customer-box {
  margin-top: 0;
}
.customer-related .customer .customer-box .right {
  margin-top: 0;
}
.customer-related .customer .customer-box .index3-box {
  margin: 0;
}
.ny18-popup {
  position: fixed;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(40px);
  top: 0;
  left: 0;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ny18-popup.active {
  opacity: 1;
  visibility: visible;
}
.ny18-popup.active .body {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 1024px) {
  .ny18-popup .body {
    width: 90%;
    padding: 24px;
  }
}
.ny18-popup .body .close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.389vw;
  border-radius: 100%;
  background-color: #F6F6F6;
  cursor: pointer;
  z-index: 3;
}
/*弹窗样式----------------*/
.cookies-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  top: 0;
  left: 0;
  z-index: 21;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cookies-popup.active {
  opacity: 1;
  visibility: visible;
}
.cookies-popup.active .body {
  transform: translateY(0);
}
.cookies-popup .close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F6F6F6;
  cursor: pointer;
  border-radius: 50%;
  font-size: 24px;
  transition: all 0.5s;
}
.cookies-popup .close:hover {
  opacity: 0.6;
}
.cookies-popup .title {
  margin-bottom: 16px;
  font-size: 32px;
  color: #000;
  font-family: "Inter-SemiBold";
}
@media screen and (max-width: 800px) {
  .cookies-popup .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.cookies-popup .desc {
  color: #999;
  font-family: "Inter-Regular";
  font-size: 14px;
}
.cookies-popup .desc a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  text-decoration: underline;
}
.cookies-popup .body {
  width: 800px;
  background-color: #fff;
  padding: 40px 48px 65px;
  position: relative;
  transition: transform 0.6s;
  transition-delay: 0.5s;
  transform: translateY(100%);
}
@media screen and (max-width: 800px) {
  .cookies-popup .body {
    width: 100%;
    padding: 40px 40px 80px;
  }
}
@media screen and (max-width: 750px) {
  .cookies-popup .body {
    padding: 40px 24px 80px;
  }
}
.cookies-popup .body.hide {
  transform: translateY(100%) !important;
}
.cookies-popup .body .btn-group {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 800px) {
  .cookies-popup .body .btn-group {
    margin-top: 48px;
  }
}
.cookies-popup .body .btn-group .common-btn {
  margin-right: 16px;
  text-transform: uppercase;
}
.cookies-popup .body .btn-group .common-btn:last-child {
  margin-right: 0;
}
.cookies-popup .body2 {
  width: 800px;
  background-color: #fff;
  padding: 40px 48px 54px;
  transition: transform 0.6s;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(100%);
}
@media screen and (max-width: 800px) {
  .cookies-popup .body2 {
    width: 100%;
    padding: 40px 40px 80px;
  }
}
@media screen and (max-width: 750px) {
  .cookies-popup .body2 {
    padding: 40px 24px 80px;
    max-height: 90vh;
    overflow: auto;
    border-radius: 16px 16px 0 0;
  }
}
.cookies-popup .body2.active {
  transform: translateX(-50%) translateY(0);
}
.cookies-popup .body2 .itembox {
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid #D9D9D9;
}
@media screen and (max-width: 800px) {
  .cookies-popup .body2 .itembox {
    padding-top: 24px;
    margin-top: 32px;
  }
}
.cookies-popup .body2 .item {
  padding-right: 40px;
  position: relative;
  margin-bottom: 25px;
}
@media screen and (max-width: 750px) {
  .cookies-popup .body2 .item {
    padding-right: 8px;
  }
}
.cookies-popup .body2 .item:last-child {
  margin-bottom: 0;
}
.cookies-popup .body2 .item .icon {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D9D9D9;
  background: #F6F6F6;
}
.cookies-popup .body2 .item .icon svg {
  display: none;
}
.cookies-popup .body2 .item .icon.active {
  background-color: #D9D9D9;
  color: #fff;
}
.cookies-popup .body2 .item .icon.active svg {
  display: block;
}
.cookies-popup .body2 .item .icon:before {
  display: none;
  font-size: 0.69vw;
}
.cookies-popup .body2 .item .text1 {
  color: #000;
  font-family: "Inter-SemiBold";
  font-size: 16px;
}
.cookies-popup .body2 .item .text2 {
  margin-top: 8px;
  color: #999;
  font-family: "Inter-Regular";
  font-size: 12px;
}
.cookies-popup .confirm-box {
  text-align: center;
  margin-top: 40px;
}
/*弹窗样式----------------*/
/*弹窗样式----------------*/
.popup-box {
  position: fixed;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.popup-box .layui-form {
  width: 100%;
  margin-top: -40px;
}

@media screen and (max-width: 750px) {
  .popup-box .layui-form {
    margin-top: 0;
  }
}

.popup-box .popup-banner {
  width: 100%;
  margin-bottom: 20px;
}
.popup-box.video-popup {
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .popup-box {
    align-items: flex-end;
    justify-content: flex-end;
  }
}
.popup-box.active {
  opacity: 1;
  visibility: visible;
}
.popup-box.active .body.p-message,
.popup-box.active .body.p-video {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.popup-box .body::-webkit-scrollbar {
  width: 5px;
}
.popup-box .body.active {
  overflow: visible !important;
}
.popup-box .body.active .success-tip {
  transform: scale(1);
}
.popup-box .body.active .layui-form {
  opacity: 0;
}
.popup-box .body.p-message {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
  transform: translateY(100%);
  width: 656px;
  padding: 32px 40px 40px;
  background-color: #fff;
  max-height: 80vh;
  overflow: auto;
}
@media screen and (max-width: 750px) {
  .popup-box .body.p-message {
    width: 100%;
    max-height: 95%;
    height: 100%;
    overflow: auto;
    align-items: flex-start;
    padding: 24px 24px 48px;
  }
}
.popup-box .body.p-video {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.6s, opacity 0.6s, transform 0.6s;
  transform: translateY(100%);
  display: flex;
  align-items: center;
  width: 980px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .popup-box .body.p-video {
    width: 90%;
  }
}
.popup-box .body.p-video .close {
  bottom: -20%;
  top: auto;
  left: 0;
  right: 0;
  margin: auto;
}
.popup-box .body .close {
  width: 40px;
  height: 40px;
  position: sticky;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 100%;
  background-color: #F6F6F6;
  cursor: pointer;
  z-index: 3;
  transition: all 0.5s;
  margin-right: 0;
  margin-left: auto;
  transform: translate(20px, -10px);
}
.popup-box .body .close:hover {
  opacity: 0.6;
}
@media screen and (max-width: 750px) {
  .popup-box .body .close {
    top: 12px;
    right: 12px;
  }
}
.popup-box .body .head {
  margin-bottom: 24px;
}
.popup-box .body .head .text1 {
  color: #000;
  font-size: 20px;
  font-family: Inter-Medium;
  margin-bottom: 8px;
}
.popup-box .body .head .text2 {
  margin-top: 8px;
  color: #666;
  font-size: 13px;
}
.popup-box .body .head .text2 a {
  color: #000;
  text-decoration: underline;
}
.popup-box .body form .form-itembox {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 8px 12px;
}
.popup-box .body form .form-item {
  width: calc((100% - 12px) / 2);
  border-bottom: 1px solid #f6f6f6;
}
.popup-box .body form .form-item.w100 {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .popup-box .body form .form-item {
    width: 100%;
  }
}
.popup-box .body form .form-item .layui-edge {
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(135deg);
  margin-top: -4px;
  right: 0;
  z-index: -1;
}
.popup-box .body form .form-item .layui-input:focus,
.popup-box .body form .form-item .layui-textarea:focus {
  border: none;
  box-shadow: none;
}
.popup-box .body form .form-item .layui-input {
  height: 56px;
  border: 0;
  font-size: 13px;
  color: #000;
  background: none;
  text-indent: 0;
  padding-left: 0;
}
@media screen and (max-width: 750px) {
  .popup-box .body form .form-item .layui-input {
    height: 40px !important;
  }
}
.popup-box .body form .form-item .layui-input::-webkit-input-placeholder {
  color: #999;
}
.popup-box .body form .form-item .layui-input::-moz-placeholder {
  color: #999;
}
.popup-box .body form .form-item .layui-input:-moz-placeholder {
  color: #999;
}
.popup-box .body form .form-item .layui-input:-ms-input-placeholder {
  color: #999;
}
.popup-box .body form .form-item .layui-form-selected .layui-edge {
  transform: rotate(-45deg);
  margin-top: 0;
}
.popup-box .body form .form-item .layui-form-select .layui-input {
  height: 56px;
  border: 0;
  font-size: 13px;
  color: #000;
}
.popup-box .body form .form-item .layui-form-select .layui-input::-webkit-input-placeholder {
  color: #999;
}
.popup-box .body form .form-item .layui-form-select .layui-input::-moz-placeholder {
  color: #999;
}
.popup-box .body form .form-item .layui-form-select .layui-input:-moz-placeholder {
  color: #999;
}
.popup-box .body form .form-item .layui-form-select .layui-input:-ms-input-placeholder {
  color: #999;
}
.popup-box .body form .form-item .layui-form-selected dl {
  top: 100%;
  padding-top: 0;
  padding-bottom: 0.56vw;
  border: 0;
  text-align: left;
  border: 1px solid #F6F6F6;
  background: #FFF;
}
.popup-box .body form .form-item .layui-form-select dl dd {
  height: 40px;
  color: #999;
  font-size: 13px;
  background-color: #fff;
}
.popup-box .body form .form-item .layui-form-select dl dd.layui-this {
  background-color: #F6F6F6;
  color: #000;
}
.popup-box .body form textarea {
  height: 160px;
  padding: 16px;
  width: 100%;
  font-size: 13px;
  color: #000;
  resize: none;
  border: 0;
  outline: none;
  background-color: #f6f6f6;
  margin-top: 32px;
  text-indent: 0;
}
@media screen and (max-width: 1024px) {
  .popup-box .body form textarea {
    height: 128px;
    margin-top: 25px;
  }
}
.popup-box .body form textarea::-webkit-input-placeholder {
  color: #999;
}
.popup-box .body form textarea::-moz-placeholder {
  color: #999;
}
.popup-box .body form textarea:-moz-placeholder {
  color: #999;
}
.popup-box .body form textarea:-ms-input-placeholder {
  color: #999;
}
.popup-box .body form .tip {
  margin-top: 16px;
  color: #999;
  font-size: 13px;
}
.popup-box .body form button {
  margin-top: 36px;
}
@media screen and (max-width: 1024px) {
  .popup-box .body form button {
    margin-top: 25px;
    margin-bottom: 0;
  }
}
.popup-box .body .success-tip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
  border-radius: 16px;
  transform: scale(0);
  transition: transform 0.4s;
  z-index: 2;
}
.popup-box .body .success-tip .icon {
  font-size: 96px;
  color: var(--dominant-color);
  line-height: 1;
}
.popup-box .body .success-tip .info {
  text-align: center;
}
.popup-box .body .success-tip .info .text1 {
  font-size: 24px;
  margin-top: 20px;
}
.popup-box .body .success-tip .inquiry-popup .body .success-tip .info .text2 {
  font-size: 13px;
  margin-top: 12px;
}
.popup-box iframe {
  width: 100%;
  display: block;
  height: 500px;
}
@media screen and (max-width: 1024px) {
  .popup-box iframe {
    height: 400px;
  }
}
@media screen and (max-width: 750px) {
  .popup-box iframe {
    height: 200px;
  }
}
.popup-box .check-box {
  margin-top: 32px;
}
.popup-box .check-box .c-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: #666;
}
.popup-box .check-box .c-item .c-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6f6f6;
  border-radius: 8px;
  margin-right: 8px;
  cursor: pointer;
}
.popup-box .check-box .c-item .c-icon svg {
  display: none;
}
.popup-box .check-box .c-item .c-icon.active {
  background: #d9d9d9;
}
.popup-box .check-box .c-item .c-icon.active svg {
  display: block;
}
.popup-box .check {
  margin-top: 32px;
}
.popup-box .check .d-title {
  font-size: 13px;
  margin-bottom: 24px;
  font-family: Inter-Medium;
}
.popup-box .check .item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.popup-box .check .item .layui-form-checkbox {
  padding-left: 32px;
}
.popup-box .check .item .layui-form-checkbox div {
  line-height: 32px;
}
.popup-box .check .item .layui-icon {
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6F6;
  margin-right: 8px;
  border: none;
}
.popup-box .check .item .layui-form-checked[lay-skin=primary] > i {
  background: #D9D9D9;
}
.popup-box .check .icon {
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6F6;
  margin-right: 8px;
}
.popup-box .check .icon svg {
  display: none;
}
.popup-box .check .icon.active {
  background-color: #D9D9D9;
  color: #fff;
}
.popup-box .check .icon.active svg {
  display: block;
}
.popup-box .check span {
  color: #666;
}
.popup-box.messages-popup .body form .form-item {
  width: calc((100% - 24px) / 3);
}
@media screen and (max-width: 750px) {
  .popup-box.messages-popup .body form .form-item {
    width: calc((100% - 12px) / 2);
  }
}
@media screen and (max-width: 750px) {
  .popup-box.messages-popup .body form .form-item:nth-child(3) {
    width: 100%;
  }
}
/*弹窗样式----------------*/
@media screen and (max-width: 750px) {
  .udesk-client-btn {
    margin-bottom: 130px !important;
    margin-right: 12px !important;
  }
}
/*侧边栏----------------*/
.float-group {
  position: fixed;
  right: 22px;
  bottom: 40px;
  z-index: 10;
}

@media screen and (max-width: 750px) {
  .float-group {
    right: 12px;
    bottom: 70px;
  }
}
.float-group .float-btn {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 100%;
  background-color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.float-group .float-btn:last-child {
  margin-bottom: 0;
}
.float-group .message {
  background-color: var(--dominant-color);
  transition: all 0.4s;
}
.float-group .message .float-icon {
  transition: all 0.4s;
}
.float-group .message.active {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.float-group .message.active:hover {
  background-color: #fff;
}
.float-group .message.active .float-icon::before {
  content: "\e61b";
  color: #D9D9D9;
}
.float-group .message.active .itembox {
  opacity: 1;
  visibility: visible;
}
.float-group .message:hover {
  background-color: rgba(255, 107, 0, 0.6);
}
.float-group .message:hover .float-icon {
  opacity: 0.6;
}
.float-group .message .float-icon {
  font-size: 24px;
  line-height: 1;
  color: #fff;
}
.float-group .goto-top {
  background-color: #F6F6F6;
  color: #999;
  font-size: 15px;
  transition: all 0.5s;
  display: flex;
  opacity: 0;

}
.float-group .feedback-button {
  margin-bottom: 70px;
}
.float-group .goto-top:hover {
  opacity: 0.6;
}
.float-group .itembox {
  width: 230px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 16px;
  position: absolute;
  bottom: calc(100% + 24px);
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  background: #FFF;
  box-shadow: 0 4px 12px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.float-group .itembox .close {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s, visibility 0.4s;
  transition-delay: 0s;
}
.float-group .itembox .close.active {
  transition-delay: 0.2s;
  opacity: 1;
  visibility: visible;
}
.float-group .itembox .close .close-icon {
  font-size: 16px;
  color: #999;
  line-height: 1;
}
.float-group .itembox .close .close-text {
  color: #999;
  font-family: "Inter-Regular";
  font-size: 12px;
  margin-left: 5px;
  line-height: 1.2;
}
.float-group .item {
  padding: 5px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fff;
  transition: background-color 0.4s;
}
.float-group .item.active:hover {
  background-color: #fff;
}
.float-group .item.active .qr {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.float-group .item:hover {
  background-color: #f6f6f6;
}
.float-group .item .icon {
  font-size: 24px;
  min-height: 24px;
  color: #666666;
  margin-right: 10px;
  line-height: 1;
}
.float-group .item .text {
  font-size: 12px;
  color: #666;
  font-family: "Inter-Regular";
}
.float-group .item .qr {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.4s, visibility 0.4s, opacity 0.4s;
  padding-top: 38px;
  padding-bottom: 20px;
  text-align: center;
  z-index: 2;
  background-color: #fff;
  border-radius: 4px;
  cursor: default;
}
.float-group .item .qr .image {
  height: 97px;
}
.float-group .item .qr .image img {
  height: 100%;
  max-width: inherit;
  width: auto;
}
.float-group .item .qr .qr-name {
  margin-top: 8px;
  font-size: 12px;
  line-height: 16px;
  font-family: "Inter-Regular";
  cursor: text;
}
/*侧-边栏---------------*/
/*登录---------------*/
.login-popup,
.password-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 22000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s, visibility 0.4s;
  visibility: hidden;
  opacity: 0;
}
.login-popup.active,
.password-popup.active {
  opacity: 1;
  visibility: visible;
}
.login-popup .body,
.password-popup .body {
  max-width: 656px;
  border-radius: 4px;
  position: relative;
  background-color: #fff;
}
.login-popup .body .close,
.password-popup .body .close {
  position: absolute;
  right: 8px;
  top: 8px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F6F6F6;
  font-size: 20px;
  color: #000;
  line-height: 1;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transform: translate(0, 0) !important;
}
.login-popup .body .tabs,
.password-popup .body .tabs {
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: flex-start;
}
.login-popup .body .tabs .tab-item,
.password-popup .body .tabs .tab-item {
  display: block;
  position: relative;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-right: 32px;
  color: #999;
  font-family: "Inter-Regular";
  font-size: 13px;
  line-height: 18px;
  cursor: pointer;
}
.login-popup .body .tabs .tab-item.active,
.password-popup .body .tabs .tab-item.active {
  color: #000;
}
.login-popup .body .tabs .tab-item.active:after,
.password-popup .body .tabs .tab-item.active:after {
  display: block;
}
.login-popup .body .tabs .tab-item:after,
.password-popup .body .tabs .tab-item:after {
  content: "";
  display: none;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.login-popup .body .tabs .tab-item:last-child,
.password-popup .body .tabs .tab-item:last-child {
  margin-right: 0;
}
.login-popup .body .plane .head,
.password-popup .body .plane .head {
  padding-left: 24px;
  padding-right: 24px;
}
.login-popup .body .plane .head .text1,
.password-popup .body .plane .head .text1 {
  color: #000;
  font-family: "Inter-SemiBold";
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 8px;
}
.login-popup .body .plane .head .text2,
.password-popup .body .plane .head .text2 {
  color: #666;
  font-family: "Inter-Regular";
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 24px;
}
.login-popup .body .plane form,
.password-popup .body .plane form {
  width: 100%;
  display: block;
  padding-left: 24px;
  padding-right: 24px;
  margin-top: 0;
}
.login-popup .body .plane form .form-item,
.password-popup .body .plane form .form-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #F6F6F6;
  height: 57px;
  width: 100%;
}
.login-popup .body .plane form .form-item:last-child,
.password-popup .body .plane form .form-item:last-child {
  border-bottom: 0;
}
.login-popup .body .plane form .form-item .icon,
.password-popup .body .plane form .form-item .icon {
  font-size: 24px;
  width: 24px;
  color: #666;
  line-height: 1;
  margin-right: 6px;
  flex-shrink: 0;
}
.login-popup .body .plane form .form-item .icon:before,
.password-popup .body .plane form .form-item .icon:before {
  width: 100%;
}
.login-popup .body .plane form .form-item .layui-form-select .layui-edge,
.password-popup .body .plane form .form-item .layui-form-select .layui-edge {
  width: 10px;
  height: 10px;
  border: 0;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: rotate(-45deg);
  margin-top: 0;
  margin-right: 7px;
}
.login-popup .body .plane form .form-item .layui-form-selected .layui-edge,
.password-popup .body .plane form .form-item .layui-form-selected .layui-edge {
  transform: rotate(135deg);
  margin-top: -6px;
}
.login-popup .body .plane form .form-item .layui-form-select dl,
.password-popup .body .plane form .form-item .layui-form-select dl {
  top: 100%;
  width: calc(100% + 30px);
  left: -30px;
  padding-top: 0;
  padding-bottom: 0;
  background-color: #F6F6F6;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: none;
  border: 0;
}
.login-popup .body .plane form .form-item .layui-form-select dl dd,
.password-popup .body .plane form .form-item .layui-form-select dl dd {
  font-size: 12px;
  font-family: "Inter-Regular";
  color: #999;
  background-color: #F6F6F6;
}
.login-popup .body .plane form .form-item .layui-form-select dl dd.layui-this,
.password-popup .body .plane form .form-item .layui-form-select dl dd.layui-this {
  background-color: #C5C5C5;
  color: #000;
}
.login-popup .body .plane form .form-item .layui-unselect,
.password-popup .body .plane form .form-item .layui-unselect {
  border: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0;
}
.login-popup .body .plane form .form-item .get-code,
.password-popup .body .plane form .form-item .get-code {
  margin-top: 0;
}
.login-popup .body .plane form .form-item input,
.password-popup .body .plane form .form-item input {
  height: 100%;
  color: #666;
  font-family: "Inter-Regular";
  font-size: 13px;
  line-height: 21px;
  min-width: 0;
  flex-grow: 1;
  border: none;
}
.login-popup .body .plane form .form-item input::-webkit-input-placeholder,
.password-popup .body .plane form .form-item input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.login-popup .body .plane form .form-item input::-moz-placeholder,
.password-popup .body .plane form .form-item input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.login-popup .body .plane form .form-item input:-moz-placeholder,
.password-popup .body .plane form .form-item input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.login-popup .body .plane form .form-item input:-ms-input-placeholder,
.password-popup .body .plane form .form-item input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.login-popup .body .plane form .form-item .code,
.password-popup .body .plane form .form-item .code {
  width: 100px;
  height: 47px;
  flex-shrink: 0;
  cursor: pointer;
}
.login-popup .body .plane form .other,
.password-popup .body .plane form .other {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.login-popup .body .plane form .other-btn,
.password-popup .body .plane form .other-btn {
  color: var(--dominant-color);
  font-family: "Inter-Regular";
  font-size: 12px;
  line-height: 18px;
}
.login-popup .body .plane form .form-body,
.password-popup .body .plane form .form-body {
  display: flex;
  flex-wrap: wrap;
}
.login-popup .body .plane form .form-body .form-item,
.password-popup .body .plane form .form-body .form-item {
  width: 49%;
}
.login-popup .body .plane form .form-body .form-item:nth-child(2n),
.password-popup .body .plane form .form-body .form-item:nth-child(2n) {
  margin-left: 2%;
}
.login-popup .body .plane .tip,
.password-popup .body .plane .tip {
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 50px;
  color: #999;
  text-align: center;
  font-family: "Inter-Regular";
  font-size: 12px;
  line-height: 18px;
}
.login-popup .body .plane-item,
.password-popup .body .plane-item {
  padding: 40px 16px 24px;
  display: none;
}
.login-popup .body .plane-item.active,
.password-popup .body .plane-item.active {
  display: block;
}
.login-popup .body .plane-item1,
.password-popup .body .plane-item1,
.login-popup .body .plane-item3,
.password-popup .body .plane-item3 {
  width: 470px;
}
.login-popup .body .plane-item2,
.password-popup .body .plane-item2 {
  width: 656px;
}
.login-popup .body .plane-item2 .tip,
.password-popup .body .plane-item2 .tip {
  text-align: left;
}
.login-popup .body .plane-item2 button,
.password-popup .body .plane-item2 button {
  display: block;
  margin-right: 0;
  margin-left: auto;
  margin-top: 24px;
}
@media screen and (max-width: 750px) {
  .login-popup .body {
    max-width: 91.86vw;
  }
  .login-popup .body .close {
    right: 2.04vw;
    top: 2.04vw;
    font-size: 5.09vw;
    width: 10.18vw;
    height: 10.18vw;
  }
  .login-popup .body .tabs {
    padding-left: 6.11vw;
    padding-right: 6.11vw;
  }
  .login-popup .body .tabs .tab-item {
    padding-top: 4.07vw;
    padding-bottom: 4.07vw;
    margin-right: 8.14vw;
    font-size: 3.31vw;
    line-height: 4.58vw;
  }
  .login-popup .body .plane .head {
    padding-left: 0;
    padding-right: 0;
  }
  .login-popup .body .plane .head .text1 {
    font-size: 5.09vw;
    line-height: 7.12vw;
    margin-bottom: 2.04vw;
  }
  .login-popup .body .plane .head .text2 {
    font-size: 3.31vw;
    line-height: 5.09vw;
    margin-bottom: 5.09vw;
  }
  .login-popup .body .plane form {
    padding-left: 0;
    padding-right: 0;
  }
  .login-popup .body .plane form .form-item {
    padding-left: 0;
    padding-right: 0;
    height: 14.5vw;
    width: 100%;
  }
  .login-popup .body .plane form .form-item .icon {
    font-size: 6.11vw;
    width: 6.11vw;
    margin-right: 1.53vw;
  }
  .login-popup .body .plane form .form-item .layui-form-select .layui-edge {
    width: 2.54vw;
    height: 2.54vw;
    margin-right: 1.78vw;
  }
  .login-popup .body .plane form .form-item .layui-form-selected .layui-edge {
    margin-top: -1.53vw;
  }
  .login-popup .body .plane form .form-item .layui-form-select dl {
    width: calc(100% + 7.63vw);
    left: -7.63vw;
  }
  .login-popup .body .plane form .form-item .layui-form-select dl dd {
    font-size: 3.05vw;
  }
  .login-popup .body .plane form .form-item input {
    font-size: 3.31vw;
    line-height: 5.34vw;
  }
  .login-popup .body .plane form .form-item .code {
    width: 25.45vw;
    height: 11.96vw;
  }
  .login-popup .body .plane form .other {
    margin-top: 8.65vw;
  }
  .login-popup .body .plane form .other-btn {
    font-size: 3.05vw;
    line-height: 4.58vw;
  }
  .login-popup .body .plane form button {
    width: 30.53vw;
    height: 12.21vw;
    line-height: 12.21vw;
    border-radius: 12px;
  }
  .login-popup .body .plane form .form-body {
    display: block;
  }
  .login-popup .body .plane form .form-body .form-item {
    width: 100%;
  }
  .login-popup .body .plane form .form-body .form-item:nth-child(2n) {
    margin-left: 0;
  }
  .login-popup .body .plane .tip {
    padding-left: 0;
    padding-right: 0;
    margin-top: 12.72vw;
    font-size: 3.05vw;
    line-height: 4.58vw;
    text-align: center;
  }
  .login-popup .body .plane-item {
    padding-left: 6.11vw;
    padding-right: 6.11vw;
    padding-top: 10.18vw;
    padding-bottom: 6.11vw;
    max-height: 80vh;
    overflow: auto;
    width: 100%;
  }
  .login-popup .body .plane-item1 {
    width: 100%;
  }
  .login-popup .body .plane-item2 {
    width: 100%;
  }
  .login-popup .body .plane-item2 button {
    margin-top: 6.11vw;
  }
}
/*登录---------------*/
@media screen and (max-width: 750px) {
  .post-popup .body {
    padding: 0 !important;
    height: 90vh;
  }
}
.post-popup .body .post-swiper {
  position: relative;
  width: 1300px;
}
@media screen and (max-width: 1024px) {
  .post-popup .body .post-swiper {
    width: 100%;
  }
}
.post-popup .body .post-swiper1 > .swiper-wrapper {
  align-items: center;
}
@media screen and (max-width: 750px) {
  .post-popup .body .post-swiper1 > .swiper-wrapper {
    align-items: flex-start;
  }
}
.post-popup .body .post-swiper1 > .swiper-wrapper > .swiper-slide {
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .post-popup .body .post-swiper1 > .swiper-wrapper > .swiper-slide {
    display: block;
  }
  .post-popup .body .post-swiper1 > .swiper-wrapper > .swiper-slide::-webkit-scrollbar {
    width: 2px;
  }
}
.post-popup .body .post-swiper1 > .swiper-wrapper > .swiper-slide.height {
  height: 90vh;
  overflow: auto;
}
.post-popup .body .post-swiper1 > .swiper-wrapper > .swiper-slide.height .image {
  padding-bottom: 240px;
}
.post-popup .body .close {
  top: 8px;
  right: 8px;
}
@media screen and (max-width: 750px) {
  .post-popup .body .close {
    width: 32px;
    height: 32px;
    font-size: 16px;
    position: sticky;
    margin-bottom: -32px;
    margin-right: 0;
    margin-left: auto;
  }
}
.post-popup .body .swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .post-popup .body .swiper {
    max-width: 100vw;
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media screen and (max-width: 750px) {
  .post-popup .body .swiper {
    padding-left: 0;
    padding-right: 0;
  }
}
.post-popup .body .swiper-button-prev {
  left: 0;
}
@media screen and (max-width: 1024px) {
  .post-popup .body .swiper-button-prev {
    left: 24px;
  }
}
@media screen and (max-width: 750px) {
  .post-popup .body .swiper-button-prev {
    top: 18%;
    left: 12px;
    width: 56px;
    height: 56px;
  }
}
.post-popup .body .swiper-button-next {
  right: 0;
}
@media screen and (max-width: 1024px) {
  .post-popup .body .swiper-button-next {
    right: 24px;
  }
}
@media screen and (max-width: 750px) {
  .post-popup .body .swiper-button-next {
    top: 18%;
    right: 12px;
    width: 56px;
    height: 56px;
  }
}
.post-popup .body .image {
  width: 640px;
  min-height: 640px;
  flex-shrink: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .post-popup .body .image {
    width: 420px;
    min-height: 560px;
  }
}
@media screen and (max-width: 750px) {
  .post-popup .body .image {
    width: 100%;
    min-height: initial;
    height: 0;
    padding-bottom: 100%;
    position: sticky;
    top: 0;
    z-index: 2;
  }
}
.post-popup .body .image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  background: #fff;
  height: 16px;
  width: 100%;
}
.post-popup .body .image img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .post-popup .body .image img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
    object-fit: contain;
  }
}
.post-popup .body .info {
  position: relative;
  background-color: #fff;
  padding: 40px 24px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 0;
  flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .post-popup .body .info {
    padding: 40px 16px;
  }
}
@media screen and (max-width: 750px) {
  .post-popup .body .info {
    overflow: auto;
    padding: 16px;
  }
  .post-popup .body .info::after {
    content: '';
    width: 100%;
    height: 10px;
    left: 0;
    top: -10px;
    background: #fff;
    position: absolute;
  }
}
.post-popup .body .info .top {
  width: 100%;
}
.post-popup .body .info .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.post-popup .body .info .name {
  min-width: 0;
  flex-grow: 1;
  color: #000;
  font-family: "Inter-SemiBold";
  font-size: 16px;
}
.post-popup .body .info .like {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #999;
  font-family: "Inter-SemiBold";
  font-size: 14px;
}
.post-popup .body .info .like .icon {
  font-size: 24px;
  margin-right: 8px;
}
.post-popup .body .info .desc {
  width: 100%;
  color: #000;
  font-size: 13px;
  font-family: "Inter-Medium";
  overflow: auto;
}
.post-popup .body .info .desc::-webkit-scrollbar {
  width: 2px;
  background: #ececec;
}
.post-popup .body .info .desc::-webkit-scrollbar-thumb {
  border-radius: 6.944vw;
  background: #333;
  cursor: pointer;
}
.post-popup .body .post-product {
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .post-popup .body .post-product {
    margin-top: 74px;
  }
}
.post-popup .body .post-product .text1 {
  color: #000;
  font-family: "Inter-SemiBold";
  font-size: 16px;
  margin-bottom: 24px;
}
.post-popup .body .itembox {
  width: 100%;
  overflow: visible;
}
.post-popup .body .item {
  width: 49%;
  background-color: #F6F6F6;
  flex-shrink: 0;
}
.post-popup .body .item:nth-child(1) {
  margin-left: 0;
}
.post-popup .body .item .image {
  width: 100%;
}
.post-popup .body .item .text {
  color: #000;
  font-family: "Inter-Regular";
  font-size: 13px;
  text-align: center;
  padding: 8px 16px 40px;
}
@media screen and (max-width: 750px) {
  .subscribe-popup {
    padding: 16px;
    align-items: center;
  }
}
.subscribe-popup .body.p-message {
  padding: 0;
  width: 720px;
  height: auto;
}
@media screen and (max-width: 750px) {
  .subscribe-popup .body.p-message {
    width: 100%;
  }
}
.subscribe-popup .body form button {
  margin-top: 0;
}
.subscribe-popup .subscribe-body {
  width: 720px;
  background: #fff;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 750px) {
  .subscribe-popup .subscribe-body {
    width: 100%;
    flex-direction: column;
  }
}
.subscribe-popup .subscribe-body .close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 100%;
  background-color: #F6F6F6;
  cursor: pointer;
  z-index: 3;
  transition: all 0.5s;
}
.subscribe-popup .subscribe-body .close:hover {
  opacity: 0.6;
}
.subscribe-popup .subscribe-body .img {
  width: 288px;
}
@media screen and (max-width: 750px) {
  .subscribe-popup .subscribe-body .img {
    width: 100%;
  }
}
.subscribe-popup .subscribe-body .img img {
  width: 100%;
}
.subscribe-popup .subscribe-body .text {
  flex: 1;
  padding: 56px 40px;
}
@media screen and (max-width: 750px) {
  .subscribe-popup .subscribe-body .text {
    padding: 24px 24px 40px;
  }
}
.subscribe-popup .subscribe-body .text .title {
  font-size: 32px;
  font-family: Inter-Medium;
}
@media screen and (max-width: 750px) {
  .subscribe-popup .subscribe-body .text .title {
    font-size: 24px;
  }
}
.subscribe-popup .subscribe-body .text .summary {
  color: #999;
  margin-top: 16px;
  margin-bottom: 48px;
}
@media screen and (max-width: 750px) {
  .subscribe-popup .subscribe-body .text .summary {
    margin-top: 8px;
    margin-bottom: 32px;
  }
}
.subscribe-popup .subscribe-body .text form {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subscribe-popup .subscribe-body .text label {
  display: block;
  flex: 1;
  margin-right: 16px;
}
.subscribe-popup .subscribe-body .text input {
  width: 100%;
  height: 48px;
  background: #f6f6f6;
  border: none;
  padding: 0 24px 0 24px;
}
.search-result-search {
  margin-top: 74px;
  margin-bottom: 32px;
}
.search-result {
  overflow: hidden;
}
.search-result .tabs {
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (max-width: 750px) {
  .search-result .tabs {
    font-size: 16px;
  }
}
.search-result .tabs .tabs-box {
  display: flex;
  grid-gap: 40px;
  overflow: auto;
  padding-top: 24px;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .search-result .tabs .tabs-box {
    grid-gap: 32px;
  }
}
@media screen and (max-width: 750px) {
  .search-result .tabs .tabs-box {
    width: 100%;
  }
}
.search-result .tabs .item {
  position: relative;
  padding-bottom: 16px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  grid-gap: 4px;
}
.search-result .tabs .item.active,
.search-result .tabs .item:hover {
  color: var(--dominant-color);
}
.search-result .tabs .item span {
  background: var(--dominant-color);
  border-radius: 50%;
  right: 0;
  color: #fff;
  font-size: 10px;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-result .tabs-change {
  margin-top: 64px;
}
.search-result .tabs-change .change-items {
  flex-direction: column;
  display: none;
}
.search-result .tabs-change .change-items.active {
  display: block;
}
.search-result .tabs-change .change-items .items-box {
  margin-bottom: 80px;
}
.search-result .tabs-change .change-items .items-title {
  font-size: 32px;
  font-family: Inter-Medium;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .search-result .tabs-change .change-items .items-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 750px) {
  .search-result .tabs-change .change-items .items-title {
    font-size: 20px;
  }
}
.search-result .tabs-change .change-items .items-title span {
  color: #999;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  margin-left: 10px;
}
.search-result .tabs-change .change-items .items-title a {
  color: var(--dominant-color);
}
.search-result .tabs-change .change-items .product,
.search-result .tabs-change .change-items .solution,
.search-result .tabs-change .change-items .solution .solution-box,
.search-result .tabs-change .change-items .support .manual,
.search-result .tabs-change .change-items .news,
.search-result .tabs-change .change-items .tutorials {
  margin: 0;
}
.search-result .tabs-change .change-items .product .product-items .items {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1024px) {
  .search-result .tabs-change .change-items .product .product-items .items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 750px) {
  .search-result .tabs-change .change-items .product .product-items .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.search-result .tabs-change .change-items .news .news-box,
.search-result .tabs-change .change-items .tutorials .tutorials-box {
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 24px;
}
.search-result .tabs-change .change-items .news .news-box .item,
.search-result .tabs-change .change-items .tutorials .tutorials-box .item {
  display: flex;
}
@media screen and (max-width: 750px) {
  .search-result .tabs-change .change-items .news .news-box .item,
  .search-result .tabs-change .change-items .tutorials .tutorials-box .item {
    flex-direction: row-reverse;
  }
}
.search-result .tabs-change .change-items .news .news-box .item .img,
.search-result .tabs-change .change-items .tutorials .tutorials-box .item .img {
  width: 300px;
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .search-result .tabs-change .change-items .news .news-box .item .img,
  .search-result .tabs-change .change-items .tutorials .tutorials-box .item .img {
    width: 260px;
    margin-right: 24px;
  }
}
@media screen and (max-width: 750px) {
  .search-result .tabs-change .change-items .news .news-box .item .img,
  .search-result .tabs-change .change-items .tutorials .tutorials-box .item .img {
    width: 96px;
    margin-right: 0;
    margin-left: 24px;
  }
}
.search-result .tabs-change .change-items .news .news-box .item .text,
.search-result .tabs-change .change-items .tutorials .tutorials-box .item .text {
  flex: 1;
  margin-top: 0;
  padding-top: 0;
}
.search-result .tabs-change .change-items .news .news-box .item .text .title,
.search-result .tabs-change .change-items .tutorials .tutorials-box .item .text .title {
  font-size: 20px;
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .search-result .tabs-change .change-items .news .news-box .item .text .title,
  .search-result .tabs-change .change-items .tutorials .tutorials-box .item .text .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 750px) {
  .search-result .tabs-change .change-items .news .news-box .item .text .title,
  .search-result .tabs-change .change-items .tutorials .tutorials-box .item .text .title {
    font-size: 14px;
    line-height: normal;
  }
}
.search-result .tabs-change .change-items .news .news-box .item .text .summary,
.search-result .tabs-change .change-items .tutorials .tutorials-box .item .text .summary {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .search-result .tabs-change .change-items .news .news-box .item .text .summary,
  .search-result .tabs-change .change-items .tutorials .tutorials-box .item .text .summary {
    font-size: 13px;
  }
}
@media screen and (max-width: 750px) {
  .search-result .tabs-change .change-items .news .news-box .item .text .summary,
  .search-result .tabs-change .change-items .tutorials .tutorials-box .item .text .summary {
    font-size: 12px;
  }
}
@media screen and (max-width: 1024px) {
  .search-result .tabs-change .change-items:nth-child(1) .product .item:nth-child(4) {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .search-result .tabs-change .change-items:nth-child(1) .product .item:nth-child(4) {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .search-result .tabs-change .change-items:nth-child(1) .manual .item:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .search-result .tabs-change .change-items:nth-child(1) .manual .item:nth-child(3) {
    display: flex;
  }
}
@media screen and (max-width: 750px) {
  .search-result .tabs-change .change-items .solution .solution-box .items {
    grid-gap: 16px;
  }
}
.search-result .tabs-change .change-items .solution .solution-box .items .item .text {
  position: absolute;
  margin-top: 0;
  padding: 24px;
}
.search-result .tabs-change .change-items .solution .solution-box .items .item .text::before {
  display: block;
}
@media screen and (max-width: 750px) {
  .search-result .tabs-change .change-items .tutorials .tutorials-box .imgBox {
    padding-bottom: 100%;
  }
}
@media screen and (max-width: 750px) {
  .search-result .tabs-change .change-items .tutorials .tutorials-box .img .play,
  .search-result .tabs-change .change-items .tutorials .tutorials-box .img .play svg {
    width: 40px;
    height: 40px;
  }
}
.page-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  max-width: 640px;
  margin: 134px auto 50vh;
}
@media screen and (max-width: 1024px) {
  .page-404 {
    padding: 0 24px 0;
  }
}
.page-404 p {
  font-size: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .page-404 p {
    font-size: 16px;
  }
}
.page-404 .title {
  font-size: 56px;
  font-family: Inter-Medium;
  line-height: normal;
}
@media screen and (max-width: 1024px) {
  .page-404 .title {
    font-size: 48px;
  }
}
.page-404 .tip {
  font-size: 24px;
  margin: 12px auto;
  font-family: Inter-Medium;
}
@media screen and (max-width: 1024px) {
  .page-404 .tip {
    font-size: 20px;
    margin: 12px auto 8px;
  }
}
.page-404 .summary {
  font-size: 13px;
}
.page-404 .f-more {
  margin-top: 40px;
}
.page-404.product-stop {
  margin-top: 96px;
}
@media screen and (max-width: 1024px) {
  .page-404.product-stop {
    margin-top: 120px;
  }
}
.page-404.product-stop .icon {
  margin-bottom: 40px;
}
.page-404.product-stop .summary {
  font-size: 16px;
}
.page-404.product-stop .f-more {
  margin-top: 24px;
}
.layui-form-select dl {
  height: fit-content;
}
.where-popup .b-title {
  font-size: 24px;
  font-family: Inter-Medium;
}
.where-popup .body .head {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #D9D9D9;
}
.where-popup .check {
  margin-top: 32px;
}
.where-popup .check .d-title {
  font-size: 13px;
  margin-bottom: 24px;
  font-family: Inter-Medium;
}
.where-popup .check .item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.where-popup .check .item .layui-form-checkbox {
  padding-left: 32px;
}
.where-popup .check .item .layui-form-checkbox div {
  line-height: 32px;
}
.where-popup .check .item .layui-icon {
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6F6;
  margin-right: 8px;
  border: none;
}
.where-popup .check .item .layui-form-checked[lay-skin=primary] > i {
  background: #D9D9D9;
}
.where-popup .check .icon {
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F6F6F6;
  margin-right: 8px;
}
.where-popup .check .icon svg {
  display: none;
}
.where-popup .check .icon.active {
  background-color: #D9D9D9;
  color: #fff;
}
.where-popup .check .icon.active svg {
  display: block;
}
.where-popup .check span {
  color: #666;
}
.where-popup .body form textarea {
  height: 120px;
}
.subscribe-popup .close {
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  transform: translate(0, 0) !important;
}
.video-popup .close,
.post-popup .close {
  position: absolute !important;
  transform: translate(0, 0) !important;
}
.post-popup .body .close {
  width: 32px;
  height: 32px;
  font-size: 20px;
}
.cookies-popup {
  display: none !important;
}
.on-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 100px auto;
  width: 90%;
}
.on-soon .icon {
  color: var(--dominant-color);
  font-size: 96px;
}
@media screen and (max-width: 750px) {
  .on-soon .icon {
    font-size: 48px;
  }
}
.on-soon .info {
  margin-top: 30px;
}
.on-soon .text2 {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .on-soon .text2 {
    font-size: 14px;
  }
}


.feedback-popup .body .head {
  margin-bottom: 48px;
}
.feedback-popup .body .head .text3 {
  font-size: 28px;
  text-align: center;
  font-family: Inter-SemiBold;
}
.feedback-popup .body .text4 {
  font-size: 16px;
  margin-bottom: 16px;
}
.feedback-popup .body form button {
  margin: 36px auto 0;
  display: flex;
}
.feedback-popup .body form textarea {
  height: 120px;
}
.feedback-popup .body form .form-item {
  border-bottom: none;
  color: #666;
  font-size: 13px;
}
.feedback-popup .layui-form-radio {
  margin-right: 0;
  margin-top: 0;
  padding-right: 0;
}
.feedback-popup .layui-form-radio > i {
  font-size: 16px;
  color: transparent;
}
.feedback-popup .layui-form-radio > i::before {
  background: #f6f6f6;
  border-radius: 50%;
  border: 1px solid #999;
}
.layui-form-radio:hover > *,
.layui-form-radioed,
.layui-form-radioed > i {
  color: #666;
}
.layui-icon-radio:before {
  content: "\e63f" !important;
  border-color: var(--dominant-color) !important;
  background: url('../images/support_new/img6.svg') no-repeat center / cover !important;
}
.feedback-popup .rate {
  border-top: 1px solid #D9D9D9;
  padding-top: 40px;
  margin-top: 40px;
}
.feedback-popup .rate .rate-title {
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
}
.rate-container {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.rate-container .item {
  cursor: pointer;
}
.rate-container .item.active svg path {
  fill: var(--dominant-color);
  /* 选中时的金色 */
}

@media screen and (max-width: 1600px) {
  .popup-box.feedback-popup .layui-form {
    zoom: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .popup-box.feedback-popup .layui-form {
    zoom: 1;
  }
}


.tablet-show-box {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tablet-show-box {
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
    padding-left: 24px;
    padding-right: 24px;
    color: #fff;
    font-size: 16px;
  }
}

.h-language {
  display: flex;
  align-items: center;
  height: 64px;
  padding-left: 32px;
  padding-right: 24px;
  color: #fff;
}

.h-language img {
  width: 16px;
  margin-right:12px;
}

.h-language svg {
  margin-left: auto;
  margin-right: 0;
}
.header-menu .tablet {
  width: 100%;
  margin-bottom: 40px;
}

.h-language-show {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #1F1F1F;
  backdrop-filter: blur(20px);
  top: 0;
  z-index: 99999999999;
  right: -100vw;
  transition: all 0.5s;
}
.h-language-show.active {
  right: 0;
}
.h-language-show .back {
  display: flex;
  align-items: center;
  color: #999;
  font-size: 13px;
  height: 64px;
  padding-right: 16px;
  padding-left: 16px;
}

.h-language-show .h-tip {
  font-size: 16px;
  padding-left: 24px;
  color: #fff;
  margin: 12px 0;
}
.h-language-show .item {
  display: flex;
  align-items: center;
  height: 48px;
  padding-left: 24px;
  color: #999;
  font-size: 13px;
}
.h-language-show .item img {
  width: 16px;
  margin-right: 12px;
}
.language-box {
  background: #333;
  padding: 4px 0;
}
.language-box .l-item {
  display: flex;
  align-items: center;
  height: 32px;
  padding-left: 8px;
  padding-right: 8px;
  color: #999;
  font-size: 12px;
}
.language-box .l-item:hover {
  background: #666;
  color: #fff;
}

.udesk-client-btn {
  z-index: 98 !important;
}

.news-detail .detail p {
  font-size: 16px;
  color: #666;
  line-height: 25px;
  margin-bottom: 20px;
}
.news-detail .detail li {
  font-size: 16px;
  color: #666;
  line-height: 25px;
}
.news-detail .detail h2 {
  font-weight: 600;
  font-size: 23px;
}
.news-detail .detail h3 {
  font-size: 20px;
  font-weight: 600;
}
.news-detail .detail strong {
  color:#000;
}
.news-detail .detail h2,
.news-detail .detail h3,
.news-detail .detail ul {
  margin-bottom: 16px;
}

.news-detail .detail a {
  color: var(--dominant-color);
}


.news-detail .news-detail-box p {
    font-size: 16px;
    color: #666;
    line-height: 25px;
    margin-bottom: 20px;
}

.news-detail .news-detail-box li {
    font-size: 16px;
    color: #666;
    line-height: 25px;
}

.news-detail .news-detail-box h2 {
    font-weight: 600;
    font-size: 23px;
}
.news-detail .news-detail-box h3 {
    font-size: 20px;
    font-weight: 600;
}
.news-detail .news-detail-box h2,
.news-detail .news-detail-box h3,
.news-detail .news-detail-box ul {
    margin-bottom: 16px;
}
.news-detail .news-detail-box table,.privacy table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
}
.news-detail .news-detail-box thead ,.privacy thead{
    background-color: #f4f4f4;
}
.news-detail .news-detail-box th,.privacy th {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    font-weight: 600;
    color: #333;
}
.news-detail .news-detail-box td,.privacy td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    color: #555;
}

.news-detail .news-detail-box strong {
    color: #000;
}


@media screen and (max-width: 750px) {
    .news-detail .news-detail-box h2 {
        font-size: 20px;
        line-height: 30px;
    }
  .table-wrapper table {
    min-width: max-content;
  }

  .news-detail .news-detail-box td,.privacy td {
    max-width: 300px;
  }
}

.table-wrapper {
    overflow: auto;
}

