*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
  text-decoration: none;
}

html {
  scroll-behavior: smooth
}

img {
  display: block;
}

@font-face {
  font-family: "HarmonyOS Sans SC";
  src: url("../font/HarmonyOS_SansSC_Regular.ttf") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "HarmonyOS Sans SC Bold";
  src: url("../font/HarmonyOS_SansSC_Medium.ttf") format("woff");
  font-display: swap;
}


@font-face {
  font-family: "Questrial Regular";
  src: url("../font/Questrial_Regular.ttf") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Questrial Bold";
  src: url("../font/Questrial_Regular.ttf") format("woff");
  font-display: swap;
}

body {
  font-family: "HarmonyOS Sans SC", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: #faf9f9;
  color: #20222a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

body.en {
  font-size: 15px;
  font-family: "Questrial Regular", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0.0525em;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  font-family: "HarmonyOS Sans SC Bold", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 500;
}

body.en h1,
body.en h2,
body.en h3,
body.en h4,
body.en h5,
body.en h6,
body.en b,
body.en strong {
  font-family: "Questrial Bold", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 600;
  letter-spacing: 0.0625em;
}

.main {
  width: 80vw;
  margin: auto;
}

.padding {
  padding: 6vw 0
}

.pa h2 {
  font-size: 2.3vw;
  color: #20222a;
}

.page-hd {
  margin-bottom: 3vw;
}

.page-title {
  font-size: 2.6vw;
  color: #20222a;
}

/* NAV - rgba(0,0,0,0.8) 74px */
/* Nav scroll hide/show */
.nav {
  transition: transform .3s ease, background .3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(166, 190, 192, 0.2)
}

.nav.up {
  transform: translateY(-100%)
}

.nav-i {
  max-width: 93vw;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  justify-content: space-between
}

.nav-l {
  display: flex;
  align-items: center;
  gap: 12px
}

.nav-logo {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  /* 水平居中 */
  align-items: center;
  /* 垂直上下居中 */
}

.nav-logo img {
  height: 1.85vw;
  object-fit: contain;
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 24px
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
}

.nav-links li {
  height: 74px;
  align-items: center;
  display: flex;
  padding: 8px 1.5vw;
}

.en .nav-links li {
  padding: 8px 1vw;
}


.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: opacity .2s;
  white-space: nowrap
}

.nav-links a:hover {
  opacity: 0.8
}

.nav-alink {
  display: inline-flex;
  align-items: center;
  gap: 4px
}

.nav-alink.nav-active {
  position: relative;
}

.nav-alink.nav-active::after {
  position: absolute;
  content: " ";
  display: block;
  height: 2px;
  width: 100%;
  top: 100%;
  background-color: #F0362E;
  transform: translateY(25px);
}

.nav-act {
  display: flex;
  align-items: center;
  gap: 16px
}

.nav-search {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  margin-right: 1vw;
}

.nav-search:hover {
  color: #fff
}

.nav-search img {
  width: 100%;
}

.nav-lang {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  cursor: pointer;

  font-size: 13px
}

.nav-lang a {
  color: rgba(255, 255, 255, 0.7);
}





.nav-lang .lp {
  color: rgba(255, 255, 255, 0.3)
}

.nav-lang .la {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.5);
  margin-top: 2px
}

/* Hamburger sizing & X animation */
.nav-hamburger {
  width: 24px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 101;
  padding: 2px 0;
  transform-origin: center
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s ease;
  transform-origin: center
}

.nav-hamburger span:nth-child(1) {
  width: 20px;
  transform-origin: center
}

.nav-hamburger span:nth-child(2) {
  width: 16px
}

.nav-hamburger span:nth-child(3) {
  width: 12px;
  transform-origin: center
}

.nav-hamburger.active span:nth-child(1) {
  width: 24px;
  position: absolute;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}

.nav-hamburger.active span:nth-child(2) {
  width: 24px;
  opacity: 0
}

.nav-hamburger.active span:nth-child(3) {
  width: 24px;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg) translateY(-50%);
}

.has-subnav {
  position: relative;
}


.has-subnav::after {
  display: block;
  content: "";
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 99;
  transform: translateY(8px);
}

.has-subnav:hover::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0px);
}

.nav-sub {
  position: absolute;
  top: 74px;
  left: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
}



.has-subnav:hover .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0px);
}



.nav-sub a {
  display: block;
  color: #fff;
  font-size: 14px;
  padding: 24px 1.5vw;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
  text-decoration: none;
}

.nav-sub a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}



.mm-sub-wrap {
  position: relative;
}

.mm-alink.has-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.mm-alink.has-sub::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  transition: transform .25s ease;
  margin-top: -3px;
  flex-shrink: 0;
}

.mm-alink.has-sub.open::after {
  transform: rotate(-135deg);
  margin-top: 0;
}

.mm-sub {
  height: 0;
  overflow: hidden;

}

.mm-sub.open {
  height: auto;
}

.mm-sub a {
  font-size: 15px;
  padding: 12px 0 12px 4px;
  color: rgba(255, 255, 255, 0.2);
  border-bottom: none;
}



.mm-sub a:hover,
.mm-sub a:active {
  color: #fff;
}



/* FOOTER */
.ft {
  background: #1f232c;
  color: #afafaf;
  padding: 5vw 0;
}

.ft-i {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.ft-t {

  padding-bottom: 30px;
}

.ft-logo img {
  height: 2vw;
}

.ft-social {
  display: flex;
  gap: 2vw;
  flex-wrap: wrap;
  margin-top: 1.5vw;
}

.ft-social a {
  position: relative;
}

.ft-social img.ico {
  height: 30px;
}

.ft-social span {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 1vw;
  padding: 5px;
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 200;
  border: 1px solid #e2edf6;
}

.ft-social span::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

.ft-social span img {
  width: 10vw;
}

.ft-social a:hover span {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.ft-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 1.2vw;
}

.ft-links a {
  color: #afafaf;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}

.ft-links a:hover {
  color: #fff
}

.ft-soc {
  display: flex;
  gap: 2.2vw;
  justify-content: flex-end;
}

.ft-soc a {
  opacity: 0.8;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #888;
  transition: all .2s;
}

.ft-soc a:hover {
  opacity: 1;
}

.ft-soc a img {
  height: 25px;
}

.ft-soc a:hover {
  color: #ddd
}

.ft-soc svg {
  width: 18px;
  height: 18px
}


.ft-b {
  margin-top: 1.2vw;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.2vw;
  font-size: 12px;
  color: #838383
}

.ft-b a {
  color: #838383;
  text-decoration: none
}

.ft-b a:hover {
  color: #fff
}

.ft-bl {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}


.swiper-pagination {
  position: static;
}

.swiper-pagination-bullet {
  opacity: 1;
  background-color: #c5c8cc;
  border-radius: 20px;
}

.swiper-pagination-bullet-active {
  background-color: #F0362E;
  width: 25px;
}



/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s .35s
}

.mobile-menu.show {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s
}

.mobile-menu .mm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity .35s ease
}

.mobile-menu.show .mm-overlay {
  opacity: 1
}

.mobile-menu .mm-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 340px;
  bottom: 0;
  background: rgba(18, 20, 24, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding-top: 12px
}

.mobile-menu.show .mm-panel {
  transform: translateX(0)
}

.mm-inner {
  display: flex;
  flex-direction: column;
  padding: 8px 28px 40px;
  gap: 0
}

.mm-inner a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  padding: 16px 0;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent
}

.mm-inner a:hover,
.mm-inner a:active {
  color: #fff
}

.mm-inner hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 16px 0
}

.mm-lang {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0
}

.mm-lang a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  border: none;
  padding: 4px 0
}

.mm-lang a.mm-lang-active {
  color: #fff
}

.mm-lang span {
  color: rgba(255, 255, 255, 0.2)
}


.mobile-menu {
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.show {
  pointer-events: none;
  visibility: hidden;
}









.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #07060c;
}



.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero picture {
  width: 100%;
}

.page-hero-ct {
  position: absolute;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
}


.page-hero-ct h1 {
  font-size: 58px;
  color: #fff;
  line-height: 1.15;
}

.page-hero-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.page-hero-nav .links,
.page-hero-nav .listlinks {
  display: flex;
  gap: 5.4vw;
  flex-wrap: wrap;
  padding: 1vw 0;
}

.page-hero-nav .links a,
.page-hero-nav .listlinks a {
  color: #FFF;
}

.page-hero-nav .links a.active,
.page-hero-nav .listlinks a.active {
  color: #F0362E;
}



.tch-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding: 0 60px;
}



.tch-dts {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}



.progress-pagination {
  position: absolute;
  /* 进度条总长度 */
  height: 3px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #dfdede;
}

.progress-pagination .swiper-pagination-progressbar-fill {
  background: #e40b02;
  border-radius: 8px;
}


.tch-cnt {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #20222a;
  white-space: nowrap;
}

.tch-total {
  font-size: 14px;
  color: #20222a;
}

.tch-cnt .cur {
  color: #20222a;
  font-weight: 700
}

.tch-arrs {
  display: flex;
  gap: 8px
}

.tch-abtn {
  width: 34px;
  height: 34px;
  border: 1px solid #c5c8cc;
  border-radius: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  transition: all .2s;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.tch-abtn:hover {
  border-color: #888
}

.tch-abtn svg {
  width: 12px;
  height: 12px;
  color: #333
}

.tool {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}

.tool .ewm {
  margin-bottom: 15px;
  position: relative;
}

.tool .ewm i {
  position: absolute;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  right: 120%;
  bottom: 0;
  visibility: hidden;
  transform: translateY(4px);
  opacity: 0;
}

.tool button:hover {
  background: rgb(228, 11, 2);
}

.tool .ewm:hover i {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.tool .ewm i img {
  width: 200px;
}

.tool-ico {
  width: 50px;
  height: 50px;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: block;
}

.tool-ico img {
  margin: auto;
}

.back-top {
  opacity: 0;
  margin-bottom: 15px;
  visibility: hidden;
}


.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.ewm img {
  width: 30px;
}

.back-top img {
  width: 20px;
  transform: rotate(-90deg);
}

.qa img {
  width: 25px;
}

.page-hero-nav.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 999;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  animation: navSlideDown 0.3s ease;
}



/* 简单滑入动画 */
@keyframes navSlideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.qa-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.qa-overlay.active {
  opacity: 1;
  visibility: visible;
}

.qa-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 90%;
  max-width: 600px;
  height: 80vh;
  max-height: 700px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.qa-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.qa-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.qa-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qa-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.base-top {
  height: 75px;
}

.pager {
  text-align: right;
  margin-top: 6vw;
}

/* 分页容器初始化 */
.pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

/* 所有分页按钮通用 */
.pagination li {
  margin: 0;
}

.pagination li a,
.pagination li span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  text-decoration: none;
  color: #333;
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 8px;
}

/* 正常页码 hover 效果 */
.pagination li a:hover {
  border-color: #ccc;
  background-color: #e6e6e6;
}

/* 当前激活页 红色样式（截图红色底色白字） */
.pagination li.active span {
  color: #ffffff;
  background-color: #e40b02;
}

/* 禁用上一页 « 样式 */
.pagination li.disabled span {
  background-color: #f9f9f9;
  color: #999;
  cursor: not-allowed;
}

@media (max-width: 1224px) {
  .nav {
    height: 74px;
  }

  .nav-i {

    max-width: 100%;
  }

  /* MOBILE MENU */
  .mobile-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0s .35s
  }

  .mobile-menu.show {
    pointer-events: auto;
    visibility: visible;
    transition: visibility 0s
  }

  .mobile-menu .mm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity .35s ease
  }

  .mobile-menu.show .mm-overlay {
    opacity: 1
  }

  .mobile-menu .mm-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 340px;
    bottom: 0;
    background: rgba(18, 20, 24, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding-top: 12px
  }

  .mobile-menu.show .mm-panel {
    transform: translateX(0)
  }

  .mm-inner {
    display: flex;
    flex-direction: column;
    padding: 8px 28px 40px;
    gap: 0
  }

  .mm-inner a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color .2s;
    -webkit-tap-highlight-color: transparent
  }

  .mm-inner a:hover,
  .mm-inner a:active {
    color: #fff
  }

  .mm-inner hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 16px 0
  }

  .mm-lang {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0
  }

  .mm-lang a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    border: none;
    padding: 4px 0
  }

  .mm-lang a.mm-lang-active {
    color: #fff
  }

  .mm-lang span {
    color: rgba(255, 255, 255, 0.2)
  }

  /* Hamburger animation */
  /* Deskop only: dropdown arrow indicator stays visible */
  .has-subnav .nav-alink .arr {
    display: inline-block;
  }

  .mm-sub.open {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mm-sub a {
    color: rgba(255, 255, 255, 0.6);
    border-bottom: none;
    font-size: 15px;
    padding: 10px 0;
  }

  /* Mobile: no hover dropdown, all via JS expand */
  .nav-sub {
    display: none;
  }

  .nav-links {
    display: none
  }

  .nav-hamburger {
    display: flex
  }

  .nav-logo {
    display: none
  }

  .padding {
    padding: 10vw 0;
  }

  .main {
    width: 88vw;
    margin: auto;
  }

  .page-hero {
    height: 310px
  }

  .page-hero-ct h1 {
    font-size: 38px;
    margin-top: 20px;
  }

  .ft-soc a img {
    height: 18px;
  }

  .ft-links a {
    font-size: 13px;
  }

  .ft-social img.ico {
    height: 25px;
  }
}

@media(max-width:1024px) {
  .page-hd {
    margin-bottom: 6vw;
  }

  .nav-lang {
    display: none
  }

  body {

    font-size: 14px;
  }


  .nav-i {
    max-width: 93vw;
  }


  body.no-scroll {
    overflow: hidden
  }


  .nav-i {
    padding: 0;
  }

  .ft-i {
    display: block;
  }

  .ft-t {
    display: flex;
    padding-bottom: 0;
    align-items: center;
    margin-bottom: 25px;
  }

  .ft-social img.ico {
    height: 22px;
  }

  .ft-logo img {
    height: 20px;
  }

  .ft-social {
    gap: 10px;
    margin-top: 0;
    margin-left: auto;
  }

  .ft-b {
    display: block;
    margin-top: 15px;
    font-size: 12px;
  }

  .ft-links {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 20px;
  }

  .ft-links a {
    font-size: 13px;
  }

  .ft-soc {
    gap: 20px;
    justify-content: flex-start;
  }

  .ft-soc a {
    flex: 1;
    max-width: 120px;
    height: auto;
  }



  .ft-soc a img {
    width: 100%;
    height: auto;
  }

  .ft-b a {
    margin-right: 10px;
    white-space: nowrap;
  }

  .ft-b span {
    white-space: nowrap;
  }

  .page-hero picture {
    width: 100%;
    height: 100%;
    display: block;
    padding-top: 74px;
  }

  .page-hero img {
    object-fit: cover;
  }

  .page-hero {}

  .page-title {
    font-size: 23px;
    white-space: nowrap;
  }

  .page-hero-ct {
    padding-top: 25px;
  }

  .page-hero-ct h1 {
    font-size: 38px;
  }

  .page-hero-nav .links,
  .page-hero-nav .listlinks {

    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .page-hero-nav .links a,
  .page-hero-nav .listlinks a {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 10px;
  }

  .tch-nav {

    gap: 15px;
    margin-top: 20px;
    padding: 0
  }

  .tool {

    bottom: 20px;
    right: 20px;
    z-index: 10;
  }

  .tool-ico {
    width: 35px;
    height: 35px;
  }

  .ewm img {
    width: 22px;
  }

  .back-top img {
    width: 17px;
  }
}

@media (max-width: 768px) {
  .page-hero-ct h1 {
    font-size: 24px;
  }
}