@charset "UTF-8";
:root {
  --color-primary: #002417;
  --color-primary-rgb: 0, 137, 225;
  --color-second: #337e62;
  --color-second-rgb: 0, 124, 169;
  --color-text: #333333;
  --color-text-light: #474747;
  --color-text-gray: #777777;
  --color-placeholder: #9f9f9f;
  --color-border: #dddddd;
  --bg-light: #edf3f8;
}

@font-face {
  font-display: swap;
  font-family: "Outfit-Semi";
  src: url("../fonts/Outfit-Semi.TTF");
}
@font-face {
  font-display: swap;
  font-family: "Outfit-Semi-Bold";
  src: url("../fonts/Outfit-Semi-Bold.TTF");
}
@font-face {
  font-display: swap;
  font-family: "Roboto-Black";
  src: url("../fonts/Roboto-Black.ttf");
}
@font-face {
  font-display: swap;
  font-family: "MISANS-DEMIBOLD";
  src: url("https://xsd-web.oss-cn-qingdao.aliyuncs.com/fonts/MISANS-DEMIBOLD.TTF");
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  color: #000;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
}

.container {
  width: 100%;
  max-width: 1890px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, -7.7064794216rem + 14.4605116796vw, 9.375rem);
}

.w-50 {
  width: 50%;
}

.relative {
  position: relative;
}

.text-center {
  text-align: center;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.flex-center-center {
  align-items: center;
  justify-content: center;
}

.flex-end-between {
  align-items: flex-end;
  justify-content: space-between;
}

.flex-center-between {
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 992px) {
  .d-lg-none {
    display: none;
  }
  .w-lg-50 {
    width: 50%;
  }
  .d-lg-flex {
    display: flex;
  }
  .flex-lg-center-between {
    align-items: center;
    justify-content: space-between;
  }
  .flex-lg-end-between {
    align-items: flex-end;
    justify-content: space-between;
  }
}
.animate-btn {
  display: flex;
  flex-direction: column;
  height: clamp(2.5rem, 1.2598720801rem + 2.0022246941vw, 3.625rem);
  overflow: hidden;
}
.animate-btn:hover .btn-primary {
  transform: translateY(-100%);
}
.animate-btn > .btn-primary {
  flex-shrink: 0;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
  height: clamp(2.5rem, 1.2598720801rem + 2.0022246941vw, 3.625rem);
  padding: 0 clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  background: var(--color-second);
  color: #fff;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  text-transform: capitalize;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
  line-height: 1.2;
}
.btn-primary i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.btn-primary.black {
  background: #161616;
}
.btn-primary.primary {
  background: var(--color-primary);
}
.btn-primary.gray {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-primary);
}
.btn-primary.gray i {
  color: var(--color-second);
  transition: all 0.3s;
}
.btn-primary.white {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn-primary.white2 {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.g-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.section-title {
  color: #000;
}
.section-title .title {
  font-size: clamp(1.5rem, 0.6732480534rem + 1.3348164627vw, 2.25rem);
  line-height: 1.2;
  font-weight: bold;
}
.section-title .desc {
  margin-top: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  opacity: 0.7;
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.section-title.white {
  color: #fff;
}

.sub-title {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  margin-bottom: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.sub-title.white {
  color: #fff;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.125rem, 0.0561040044rem + 0.1112347052vw, 0.1875rem);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: var(--color-text-gray);
  text-decoration: underline;
  text-transform: uppercase;
}
.learn-more svg {
  width: clamp(0.75rem, 0.6122080089rem + 0.2224694105vw, 0.875rem);
  height: clamp(0.75rem, 0.6122080089rem + 0.2224694105vw, 0.875rem);
  stroke: currentColor;
  fill: none;
}

.g-anchor {
  position: absolute;
  left: 0;
  top: calc(-1 * clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem));
}

.g-crumbs {
  color: #fff;
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-crumbs.black {
  color: #666;
}
.g-crumbs a, .g-crumbs span {
  color: inherit;
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.g-crumbs a i, .g-crumbs span i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.g-crumbs > i {
  font-size: clamp(0.75rem, 0.6122080089rem + 0.2224694105vw, 0.875rem);
  margin: 0 clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}

.g-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: clamp(1.25rem, -4.261679644rem + 8.8987764182vw, 6.25rem);
}
.g-pagination li.active.disabled {
  opacity: 1;
}
.g-pagination li.active span {
  background: var(--color-second);
  color: #fff;
}
.g-pagination li.disabled {
  opacity: 0.65;
}
.g-pagination li a,
.g-pagination li span {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  margin: 0 clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  width: clamp(2.25rem, 1.9744160178rem + 0.4449388209vw, 2.5rem);
  height: clamp(2.25rem, 1.9744160178rem + 0.4449388209vw, 2.5rem);
  color: #222;
  background-color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-pagination li a.active:hover {
  color: #fff;
}
.g-pagination li a:hover {
  color: var(--color-second);
}

.g-content {
  line-height: 1.6;
  color: #666666;
}
.g-content img {
  max-width: 100%;
  height: auto !important;
  display: inline-block;
}
.g-content table {
  max-width: 100% !important;
}
.g-content iframe, .g-content video {
  aspect-ratio: 16/9;
}

/* 设置滚动条的样式 */
.h-auto {
  overflow-y: auto;
  overscroll-behavior: contain;
}
.h-auto::-webkit-scrollbar {
  width: 0.25rem;
}
.h-auto::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.h-auto::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.6);
}

/* 针对特定列数多的表格 */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  display: block; /* 让表格可以滚动 */
  white-space: nowrap; /* 防止换行 */
  -webkit-overflow-scrolling: touch;
  /* 在768px及以下的屏幕上，强制单元格内容不换行，以保持表格结构 */
}
.table-responsive table {
  border-collapse: collapse;
  width: 100%;
}
@media (max-width: 767px) {
  .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > td {
    white-space: nowrap;
  }
}

.form-notice {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.form-notice--success {
  background-color: #2ecc71;
}
.form-notice--error {
  background-color: #e74c3c;
}
.form-notice--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* 全局组件 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #001910;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s ease;
}
.header.transparent {
  background-color: transparent;
  box-shadow: none;
}
.header.transparent .logo img {
  filter: brightness(0) invert(1);
}
.header.transparent #navMenu > li > a {
  color: #fff;
}
.header.transparent #navMenu > li.active > a {
  color: #fff;
}
.header.transparent #navMenu > li:hover > a {
  color: #fff;
}
.header.transparent #hamburger span {
  background-color: #fff;
}
.header.transparent.scrolled {
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.header.transparent.scrolled .logo img {
  filter: none;
}
.header.transparent.scrolled #navMenu > li > a {
  color: var(--color-text);
}
.header.transparent.scrolled #hamburger span {
  background-color: var(--color-text);
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(calc(-1 * clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem)));
}
.header .header-top {
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.header .header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .header-top .text {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
}
.header .header-top .text a {
  color: #fff;
  opacity: 0.4;
  font-size: 14px;
}
.header .header-top .text a:hover {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .header .header-top .container {
    justify-content: flex-end;
  }
  .header .header-top .text {
    display: none;
  }
}
.header .navbar {
  height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
}
.header .navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  height: 100%;
}
.header .logo {
  flex-shrink: 0;
}
.header .logo img {
  height: clamp(1.875rem, 1.1171440489rem + 1.2235817575vw, 2.5625rem);
  width: auto;
}
.header #hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  z-index: 1002;
}
.header #hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.header #hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header #hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header #hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.header .nav-menu {
  margin-left: auto;
}
.header .nav-menu > ul {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -1.6436318131rem + 4.6718576196vw, 3.875rem);
}
.header .nav-menu > ul > li {
  position: relative;
}
.header .nav-menu > ul > li.active > a {
  color: var(--color-second);
}
.header .nav-menu > ul > li.has-mega {
  position: static;
}
.header .nav-menu > ul > li.has-mega.product > ul > li a .img {
  padding-top: 89%;
  background: #f6f6f8;
}
.header .nav-menu > ul > li.has-mega > ul {
  left: 0;
  right: 0;
  top: 100%;
  min-width: 0;
  transform: translateY(10px);
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) clamp(1.25rem, -7.7064794216rem + 14.4605116796vw, 9.375rem);
  background-color: #fff;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.625rem, -2.130839822rem + 4.4493882091vw, 3.125rem);
}
.header .nav-menu > ul > li.has-mega > ul > li a {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(0.5rem, 0.0866240267rem + 0.6674082314vw, 0.875rem);
  padding: 0;
  border-bottom: none;
  white-space: normal;
  text-align: center;
}
.header .nav-menu > ul > li.has-mega > ul > li a .img {
  padding-top: 65%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.header .nav-menu > ul > li.has-mega > ul > li a .img img {
  transition: all 0.3s;
}
.header .nav-menu > ul > li.has-mega > ul > li a .title {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #333;
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  text-align: left;
}
.header .nav-menu > ul > li.has-mega > ul > li a .title::before {
  content: "\e604";
  color: #999;
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: rotateY(180deg);
}
.header .nav-menu > ul > li.has-mega > ul > li a:hover {
  background: none;
  color: var(--color-second);
}
.header .nav-menu > ul > li.has-mega > ul > li a:hover .img img {
  transform: scale(1.05);
}
.header .nav-menu > ul > li.has-mega > ul > li a:hover .title {
  color: var(--color-second);
}
.header .nav-menu > ul > li.has-mega > ul > li a:hover .title::before {
  color: inherit;
}
.header .nav-menu > ul > li.has-mega:hover > ul {
  transform: translateY(0);
}
@media screen and (max-width: 991px) {
  .header .nav-menu > ul > li.has-mega > ul {
    transform: translateY(0) !important;
    background: #00160e;
    grid-template-columns: repeat(2, 1fr);
    display: none;
  }
  .header .nav-menu > ul > li.has-mega > ul > li {
    border-bottom: none;
  }
  .header .nav-menu > ul > li.has-mega > ul > li a .title {
    color: #fff;
  }
  .header .nav-menu > ul > li.has-mega > ul > li a .title::before {
    color: #fff;
  }
}
.header .nav-menu > ul > li:has(> ul) > a {
  position: relative;
}
.header .nav-menu > ul > li:has(> ul) > a::after {
  content: "\e64c";
  font-family: "iconfont" !important;
  font-size: 12px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.header .nav-menu > ul > li > a {
  display: block;
  height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  transition: color 0.3s;
  text-transform: uppercase;
  color: #fff;
}
.header .nav-menu > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 100%;
  background-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.header .nav-menu > ul > li > ul:has(ul):hover {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.header .nav-menu > ul > li > ul::before {
  content: "";
  width: 100%;
  height: clamp(0.5rem, -0.6023359288rem + 1.7797552836vw, 1.5rem);
  position: absolute;
  left: 0;
  bottom: 100%;
}
.header .nav-menu > ul > li > ul li ul {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 180px;
  border-radius: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  border-top-left-radius: 0;
  background-color: var(--color-primary);
  box-shadow: 4px 4px clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.3s;
  transform: translateY(10px);
}
.header .nav-menu > ul > li > ul li ul li a {
  transition: all 0.3s;
}
.header .nav-menu > ul > li > ul li ul li a:hover {
  background: none;
  color: var(--color-second);
}
.header .nav-menu > ul > li > ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem) clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  color: #fff;
}
.header .nav-menu > ul > li > ul li a i {
  margin-left: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  font-size: 14px;
  opacity: 0.75;
}
.header .nav-menu > ul > li > ul li a:hover {
  background-color: var(--color-second);
  color: #fff;
}
.header .nav-menu > ul > li > ul li:last-child > a {
  border-bottom: none;
}
.header .nav-menu > ul > li > ul li:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header .nav-menu > ul > li > ul li:hover > a {
  background-color: var(--color-second);
  color: #fff;
}
.header .nav-menu > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}
.header .actions {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem);
}
.header .actions > button {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}
.header .actions > button:hover {
  background: #fff;
  color: var(--color-second);
}
.header .actions > button i {
  font-size: 14px;
}
.header .actions #langSwitcher {
  position: relative;
  z-index: 2;
}
.header .actions #langSwitcher button {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}
.header .actions #langSwitcher button:hover {
  color: #fff;
}
.header .actions #langSwitcher button i:first-child {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.header .actions #langSwitcher button i:last-child {
  transition: transform 0.3s;
}
.header .actions #langSwitcher > ul {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 100px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
  color: #454545;
}
.header .actions #langSwitcher > ul li {
  padding: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem) clamp(0.75rem, 0.5433120133rem + 0.3337041157vw, 0.9375rem);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #fff;
}
.header .actions #langSwitcher > ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .actions #langSwitcher > ul li a img {
  width: 24px;
}
.header .actions #langSwitcher > ul li:hover {
  background-color: var(--color-second);
  color: #fff;
}
.header .actions #langSwitcher > ul li.active {
  color: var(--color-primary);
}
.header .actions #langSwitcher.active > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header #mobileOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}
.header #mobileOverlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .header.transparent {
    background-color: #fff;
  }
  .header.transparent .logo img {
    filter: none;
  }
  .header.transparent .nav-menu > ul > li > a {
    color: var(--color-text) !important;
  }
  .header.transparent #hamburger span {
    background-color: var(--color-text) !important;
  }
  .header #hamburger {
    display: flex;
  }
  .header .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    padding-top: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 1001;
  }
  .header .nav-menu.active {
    transform: translateX(0);
  }
  .header .nav-menu > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header .nav-menu > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header .nav-menu > ul > li:hover > ul {
    transform: translateX(0);
  }
  .header .nav-menu > ul > li > a {
    padding: clamp(0.75rem, 0.5433120133rem + 0.3337041157vw, 0.9375rem) clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
    font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
    text-transform: uppercase;
  }
  .header .nav-menu > ul > li.has-mega > ul.active {
    display: grid;
  }
  .header .nav-menu > ul > li > ul {
    position: static;
    left: auto;
    transform: none;
    min-width: 0;
    border-radius: 0;
    background-color: #00160e;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .header .nav-menu > ul > li > ul.active {
    display: block;
  }
  .header .nav-menu > ul > li > ul::before {
    display: none;
  }
  .header .nav-menu > ul > li > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header .nav-menu > ul > li > ul > li:last-child {
    border-bottom: none;
  }
  .header .nav-menu > ul > li > ul > li > a {
    padding: clamp(0.6875rem, 0.5497080089rem + 0.2224694105vw, 0.8125rem) clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
    padding-left: clamp(1.875rem, 0.8415600667rem + 1.6685205784vw, 2.8125rem);
    font-size: clamp(0.9375rem, 0.8686040044rem + 0.1112347052vw, 1rem);
    border-bottom: none;
    text-transform: none;
  }
  .header .nav-menu > ul > li > ul > li > a i {
    display: none;
  }
  .header .nav-menu > ul > li > ul > li > a:hover {
    background: inherit;
    color: var(--color-second);
  }
  .header .nav-menu > ul > li > ul > li > ul {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    min-width: 0;
    border-radius: 0;
    background-color: #efefef;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .header .nav-menu > ul > li > ul > li > ul.active {
    display: block;
  }
  .header .nav-menu > ul > li > ul > li > ul > li > a {
    padding: clamp(0.625rem, 0.4872080089rem + 0.2224694105vw, 0.75rem) clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
    padding-left: clamp(2.8125rem, 1.7790600667rem + 1.6685205784vw, 3.75rem);
    font-size: clamp(0.875rem, 0.8061040044rem + 0.1112347052vw, 0.9375rem);
    border-bottom: none;
    text-transform: none;
  }
  .header .nav-menu > ul li:has(> ul) > a {
    position: relative;
  }
  .header .nav-menu > ul li:has(> ul) > a::after {
    content: "+";
    position: absolute;
    font-family: inherit !important;
    right: clamp(0.9375rem, 0.2485400445rem + 1.1123470523vw, 1.5625rem);
    font-size: clamp(1.25rem, 1.1122080089rem + 0.2224694105vw, 1.375rem);
    font-weight: 300;
    transition: transform 0.3s;
  }
  .header .nav-menu > ul li:has(> ul) > a.active::after {
    content: "-";
  }
  .header .nav-menu > ul li:has(> ul).has-mega > a::after {
    display: none;
  }
}
.header #searchPanel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
}
.header #searchPanel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header #searchPanel form {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 0.2805200222rem + 0.5561735261vw, 0.9375rem);
}
.header #searchPanel form input {
  flex: 1;
  padding: clamp(0.75rem, 0.5433120133rem + 0.3337041157vw, 0.9375rem) 0;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  border-bottom: 2px solid var(--color-primary);
  background: none;
  outline: none;
}
.header #searchPanel form input::placeholder {
  color: #999;
}
.header #searchPanel form button {
  flex-shrink: 0;
  padding: 8px;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: var(--color-text);
  transition: color 0.3s;
}
.header #searchPanel form button:hover {
  color: var(--color-second);
}

.suspend {
  position: fixed;
  z-index: 999;
  bottom: 5%;
  right: clamp(0.3125rem, -0.4453559511rem + 1.2235817575vw, 1rem);
  transition: all 0.3s;
}
.suspend ul {
  transition: all 0.3s;
}
.suspend ul li {
  margin-bottom: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
  position: relative;
}
.suspend ul li:hover .phone, .suspend ul li:hover .wechat {
  visibility: visible;
}
.suspend ul li.go-top {
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.suspend ul li.go-top.show {
  opacity: 1;
  pointer-events: auto;
}
.suspend ul li > a, .suspend ul li > button {
  width: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  border: none;
  padding: 0;
  border-radius: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  background: var(--color-second);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.1s;
  position: relative;
}
.suspend ul li > a::after, .suspend ul li > button::after {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  display: none;
}
.suspend ul li > a:hover, .suspend ul li > button:hover {
  filter: brightness(95%);
}
.suspend ul li > a:hover::after, .suspend ul li > button:hover::after {
  display: block;
}
.suspend ul li > a i, .suspend ul li > button i {
  font-size: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
}
.suspend ul li .phone, .suspend ul li .wechat {
  position: absolute;
  right: calc(100% + 4px);
  top: 0;
  min-height: 100%;
  border-radius: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  background: var(--color-second);
  white-space: nowrap;
  padding: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem) clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  visibility: hidden;
  color: rgba(255, 255, 255, 0.85);
}
.suspend ul li .phone span, .suspend ul li .phone a, .suspend ul li .wechat span, .suspend ul li .wechat a {
  padding: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.suspend ul li .phone span:last-child, .suspend ul li .phone a:last-child, .suspend ul li .wechat span:last-child, .suspend ul li .wechat a:last-child {
  border-bottom: none;
}
.suspend ul li .phone a:hover, .suspend ul li .wechat a:hover {
  color: #fff;
}
.suspend ul li .wechat {
  padding: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  width: clamp(6.25rem, 4.872080089rem + 2.2246941046vw, 7.5rem);
}
.suspend ul li .wechat img {
  width: 100%;
  border-radius: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.suspend .open-btn {
  position: absolute;
  right: calc(100% + 1px);
  top: 0;
  color: var(--color-second);
  padding: 4px 0;
}
.suspend .open-btn i {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
}
@media screen and (max-width: 991px) {
  .suspend {
    transform: translateX(calc(100% + 5px));
  }
  .suspend.show {
    transform: translateX(0);
  }
  .suspend.show ul {
    opacity: 1;
    pointer-events: auto;
  }
  .suspend ul {
    opacity: 0;
    pointer-events: none;
  }
}

html[lang=ar] .header .nav-menu {
  margin-left: 0;
  margin-right: auto;
}
html[lang=ar] .header .nav-menu > ul > li:has(> ul) > a::after {
  right: auto;
  left: clamp(0.625rem, -0.4773359288rem + 1.7797552836vw, 1.625rem);
}

.footer {
  padding-top: clamp(1.25rem, -0.4035038932rem + 2.6696329255vw, 2.75rem);
  color: #fff;
  background: #161616;
}
.footer .footer-head {
  margin-bottom: clamp(1.25rem, -0.5412958843rem + 2.8921023359vw, 2.875rem);
  padding-bottom: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-head .footer-logo img {
  height: clamp(3.75rem, 1.1319521691rem + 4.2269187987vw, 6.125rem);
}
.footer .footer-head .share-links {
  margin-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-head .share-links a {
  display: inline-block;
  color: #fff;
  transition: all 0.3s;
}
.footer .footer-head .share-links a:hover {
  transform: scale(1.3);
}
.footer .footer-head .share-links a i {
  font-size: 24px;
}
.footer .footer-head .footer-info ul {
  display: flex;
  align-items: center;
  gap: clamp(0.9375rem, -10.4303392659rem + 18.3537263626vw, 11.25rem);
}
.footer .footer-head .footer-info ul li {
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
}
.footer .footer-head .footer-info ul li i {
  width: clamp(2.25rem, 1.4232480534rem + 1.3348164627vw, 3rem);
  height: clamp(2.25rem, 1.4232480534rem + 1.3348164627vw, 3rem);
  border-radius: 50%;
  background: var(--color-second);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.footer .footer-head .footer-info ul li .text {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.footer .footer-head .footer-info ul li .text span {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.footer .footer-nav ul {
  display: flex;
  justify-content: space-between;
}
.footer .footer-nav ul > li > a {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  padding-left: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
}
.footer .footer-nav ul > li ul {
  margin-top: clamp(1rem, -0.1023359288rem + 1.7797552836vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.footer .footer-nav ul > li ul a {
  display: flex;
  align-items: center;
  gap: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}
.footer .footer-nav ul > li ul a:hover {
  color: #fff;
}
.footer .footer-nav ul > li ul a:hover::before {
  transform: rotate(45deg);
}
.footer .footer-nav ul > li ul a::before {
  content: "\ec7a";
  font-family: "iconfont" !important;
  font-size: clamp(0.75rem, 0.6122080089rem + 0.2224694105vw, 0.875rem);
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.3s;
}
.footer .footer-bottom {
  margin-top: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
  padding: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem) 0;
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.46);
}
.footer .footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer .footer-bottom p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.footer .footer-bottom p a {
  color: inherit;
  transition: all 0.3s;
}
.footer .footer-bottom p a:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .footer .footer-head {
    flex-direction: column;
    gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  }
  .footer .footer-head .footer-logo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer .footer-head .share-links {
    gap: 16px;
    justify-content: center;
  }
  .footer .footer-head .share-links a:hover {
    transform: none;
  }
  .footer .footer-head .footer-info {
    width: 100%;
  }
  .footer .footer-head .footer-info ul {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer .footer-nav {
    display: none;
  }
  .footer .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
  }
}

.index-hero {
  position: relative;
  height: 100vh;
}
.index-hero .hero-swiper {
  height: 100%;
}
.index-hero .swiper-slide {
  display: flex;
  align-items: center;
}
.index-hero .hero-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.index-hero .hero-content .title {
  font-size: clamp(1.5rem, -2.3581757508rem + 6.2291434928vw, 5rem);
  line-height: 1.3;
  letter-spacing: -1px;
  margin-bottom: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.index-hero .hero-content p {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-hero .control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: clamp(1.75rem, 1.5433120133rem + 0.3337041157vw, 1.9375rem);
  height: clamp(1.75rem, 1.5433120133rem + 0.3337041157vw, 1.9375rem);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.index-hero .control-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.index-hero .control-btn.prev {
  left: clamp(0.9375rem, -0.7848998888rem + 2.7808676307vw, 2.5rem);
}
.index-hero .control-btn.prev::after {
  transform: translate(-40%, -50%) rotate(-135deg);
}
.index-hero .control-btn.next {
  right: clamp(0.9375rem, -0.7848998888rem + 2.7808676307vw, 2.5rem);
}
.index-hero .control-btn.next::after {
  transform: translate(-60%, -50%) rotate(45deg);
}
.index-hero .control-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}
.index-hero .hero-pagination-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(1.25rem, -0.3346078977rem + 2.5583982202vw, 2.6875rem);
  z-index: 10;
}
.index-hero .hero-pagination-container .hero-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.index-hero .hero-pagination-container .hero-pagination .swiper-pagination-bullet {
  width: clamp(0.625rem, 0.4872080089rem + 0.2224694105vw, 0.75rem);
  height: clamp(0.625rem, 0.4872080089rem + 0.2224694105vw, 0.75rem);
  background: rgb(255, 255, 255);
  transition: all 0.3s;
}
.index-hero .hero-pagination-container .explore {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #fff;
  text-transform: capitalize;
  cursor: pointer;
  white-space: nowrap;
}
.index-hero .hero-pagination-container .explore i {
  width: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
  clip-path: polygon(0 0, calc(100% - clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem)) 0, 100% clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem), 100% 100%, clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem) 100%, 0 calc(100% - clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem)));
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .index-hero {
    height: 40vh;
    margin-top: clamp(6.25rem, 4.1831201335rem + 3.3370411568vw, 8.125rem);
  }
  .index-hero .control-btn {
    display: none;
  }
  .index-hero .hero-pagination-container .explore {
    display: none;
  }
}

.page-hero {
  position: relative;
  height: clamp(18.75rem, -12.2531979978rem + 50.0556173526vw, 46.875rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-hero.null {
  height: clamp(6.25rem, 4.1831201335rem + 3.3370411568vw, 8.125rem);
}
.page-hero .page-hero-content {
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.page-hero .page-hero-content .title {
  color: inherit;
}
.page-hero .page-hero-content .title-en {
  font-size: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  font-family: "Outfit-Semi-Bold";
}
.page-hero .page-hero-content .title-cn {
  font-size: clamp(1.5rem, 0.3976640712rem + 1.7797552836vw, 2.5rem);
}
@media screen and (max-width: 991px) {
  .page-hero {
    height: 200px;
    margin-top: clamp(6.25rem, 4.1831201335rem + 3.3370411568vw, 8.125rem);
  }
  .page-hero::before {
    content: "";
    width: 100%;
    height: clamp(6.25rem, 4.1831201335rem + 3.3370411568vw, 8.125rem);
    position: absolute;
    bottom: 100%;
    left: 0;
    background: #001910;
    z-index: -1;
  }
  .page-hero.null {
    height: 0;
  }
}

.page-nav.none-nav {
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) 0;
}
.page-nav.none-nav .row {
  justify-content: flex-end;
  border: none;
}
.page-nav.border-none {
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) 0;
}
.page-nav.border-none .row {
  border: none;
}
.page-nav .back {
  height: clamp(2.5rem, 2.3622080089rem + 0.2224694105vw, 2.625rem);
  padding: 0 clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  border: 1px solid #dedede;
  border-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  transition: all 0.3s;
}
.page-nav .back:hover {
  background: var(--color-second);
  color: #fff;
}
.page-nav .back:hover i {
  color: inherit;
}
.page-nav .back i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #666;
}
.page-nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #c7cccb;
}
.page-nav nav ul {
  display: flex;
  gap: clamp(1rem, -0.2401279199rem + 2.0022246941vw, 2.125rem);
}
.page-nav nav ul li a {
  height: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
  display: flex;
  align-items: center;
  padding: 0 clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  position: relative;
  transition: all 0.3s;
}
.page-nav nav ul li a:hover {
  color: var(--color-second);
}
.page-nav nav ul li a.active {
  color: var(--color-second);
}
.page-nav nav ul li a.active::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--color-second);
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .page-nav .row {
    padding: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem) 0;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  }
  .page-nav nav ul {
    flex-wrap: wrap;
  }
  .page-nav nav ul li a {
    padding: 0;
    height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  }
}

.page-crumbs {
  color: #666;
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.page-crumbs a {
  display: flex;
  align-items: center;
  gap: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
}
.page-crumbs a:hover {
  color: var(--color-second);
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
}
@media screen and (max-width: 991px) {
  .section-head {
    flex-direction: column;
  }
}

.index-number {
  padding: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem) 0;
}
.index-number ul {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.875rem, 1.1860400445rem + 1.1123470523vw, 2.5rem);
}
.index-number ul li {
  max-width: 33.33%;
  display: flex;
  align-items: flex-end;
  gap: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
}
.index-number ul li .value {
  font-size: clamp(2.25rem, 1.4232480534rem + 1.3348164627vw, 3rem);
  line-height: 1;
  display: flex;
  align-items: center;
  font-family: "MISANS-DEMIBOLD";
}
.index-number ul li .value sub {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  transform: translateY(50%);
  margin-left: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
}
.index-number ul li .text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
}
.index-number ul li .text h2 {
  font-size: clamp(1.125rem, 0.8494160178rem + 0.4449388209vw, 1.375rem);
}
.index-number ul li .text p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #666;
}
@media screen and (max-width: 991px) {
  .index-number ul {
    flex-direction: column;
  }
  .index-number ul li {
    max-width: 100%;
  }
}

.index-solution {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  background: #f5f5f9;
  position: relative;
}
.index-solution .swiper {
  padding: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem) 0;
}
.index-solution .swiper-wrapper {
  align-items: stretch;
}
.index-solution .swiper-wrapper .swiper-slide {
  height: auto;
}
.index-solution .ss-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.index-solution .ss-foot .swiper-button-prev, .index-solution .ss-foot .swiper-button-next, .index-solution .ss-foot .swiper-pagination {
  position: static;
}
.index-solution .ss-foot .swiper-pagination {
  width: auto;
}
.index-solution .ss-foot .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  transition: all 0.3s;
  opacity: 1;
  background: #858587;
}
.index-solution .ss-foot .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: clamp(1.25rem, 0.4232480534rem + 1.3348164627vw, 2rem);
}
.index-solution .ss-foot .swiper-button-prev, .index-solution .ss-foot .swiper-button-next {
  margin: 0;
}
.index-solution .ss-foot .swiper-button-prev::after, .index-solution .ss-foot .swiper-button-next::after {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: rgba(0, 0, 0, 0.3);
}

.solution-list .item {
  height: 100%;
  color: #000;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-out;
  overflow: hidden;
}
.solution-list .item:hover {
  background: #fdfdff;
  transform: translateY(calc(-1 * clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem)));
}
.solution-list .item:hover .img img {
  transform: scale(1.05);
}
.solution-list .item .img {
  padding-top: 65.7%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.solution-list .item .img img {
  transition: all 0.3s;
}
.solution-list .item .text {
  height: 100%;
  padding: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.solution-list .item h3 {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.solution-list .item p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  opacity: 0.8;
  line-height: 1.6;
  min-height: clamp(2.625rem, 1.9360400445rem + 1.1123470523vw, 3.25rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.solution-list .item .more {
  color: var(--color-second);
}
@media screen and (max-width: 991px) {
  .solution-list .item:hover {
    transform: none;
  }
}

.index-why {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  background: #fff;
}
.index-why ul {
  margin-top: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9375rem, -0.5093159066rem + 2.3359288098vw, 2.25rem) clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.index-why ul li {
  background: #f6f6f8;
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  transition: all 0.3s;
}
.index-why ul li:hover {
  background: var(--color-second);
  color: #fff;
}
.index-why ul li:hover i {
  background: var(--color-primary);
}
.index-why ul li i {
  width: clamp(2.5rem, 0.2953281424rem + 3.5595105673vw, 4.5rem);
  height: clamp(2.5rem, 0.2953281424rem + 3.5595105673vw, 4.5rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-second);
  color: #fff;
  font-size: clamp(1.5rem, 0.6732480534rem + 1.3348164627vw, 2.25rem);
  transition: all 0.3s;
}
.index-why ul li h3 {
  margin-top: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.index-why ul li p {
  line-height: 1.8;
}
@media screen and (max-width: 991px) {
  .index-why ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .index-why ul li p {
    line-height: 1.4;
  }
}

.index-porduct {
  padding-top: clamp(3.75rem, -3.1395995551rem + 11.1234705228vw, 10rem);
  position: relative;
}
.index-porduct::after {
  content: "";
  width: 100%;
  height: 70%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: url(../img/xian.jpg) left top repeat;
}
.index-porduct .section-head {
  margin-bottom: clamp(1.875rem, -1.5697997775rem + 5.5617352614vw, 5rem);
}

.product-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.product-list .item {
  background: #f6f6f8;
}
.product-list .item:hover .img img {
  transform: scale(1.05);
}
.product-list .item:hover .text .more i {
  background: var(--color-second);
}
.product-list .item .img {
  padding-top: 92%;
  position: relative;
  z-index: 2;
}
.product-list .item .img img {
  object-fit: contain;
  transition: all 0.3s;
}
.product-list .item .text {
  padding: 0 clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.product-list .item .text .more {
  margin-top: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  color: rgba(0, 0, 0, 0.88);
}
.product-list .item .text .more i {
  width: clamp(1.25rem, 0.8366240267rem + 0.6674082314vw, 1.625rem);
  height: clamp(1.25rem, 0.8366240267rem + 0.6674082314vw, 1.625rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  background: var(--color-primary);
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.index-news {
  padding: clamp(2.5rem, -3.7006395996rem + 10.0111234705vw, 8.125rem) 0;
}
.index-news .index-news-content {
  margin-top: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
  display: flex;
  align-items: stretch;
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.index-news .index-news-content > * {
  flex: 1;
}
.index-news .index-news-content ul {
  background: #f6f6f8;
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  padding-bottom: 0;
}
.index-news .index-news-content ul li:first-child {
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.index-news .index-news-content ul li:first-child a {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  border-bottom: 1px solid #dedede;
  padding-bottom: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.index-news .index-news-content ul li:first-child h3 {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.index-news .index-news-content ul li:first-child p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.index-news .index-news-content ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem) 0;
}
.index-news .index-news-content ul li a:hover h3 {
  color: var(--color-second);
}
.index-news .index-news-content ul li .category span {
  padding: 4px 8px;
  background: var(--color-primary);
  color: #fff;
  transition: all 0.3s;
}
.index-news .index-news-content ul li h3 {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.index-news .index-news-content ul li time {
  flex-shrink: 0;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  opacity: 0.83;
}
@media screen and (max-width: 991px) {
  .index-news .index-news-content {
    flex-direction: column;
  }
}

.news-list .item {
  display: flex;
  flex-direction: column;
  background: #f6f6f8;
  transition: all 0.3s;
}
.news-list .item:hover {
  background: var(--color-second);
  color: #fff;
}
.news-list .item:hover .img img {
  transform: scale(1.05);
}
.news-list .item:hover .text .category span {
  background: var(--color-primary);
}
.news-list .item:hover .text .more {
  color: #fff;
}
.news-list .item:hover .text .more i {
  background: var(--color-primary);
}
.news-list .item .img {
  padding-top: 61%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.news-list .item .img img {
  transition: all 0.3s;
}
.news-list .item .text {
  height: 100%;
  padding: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem) clamp(0.5rem, -0.1889599555rem + 1.1123470523vw, 1.125rem);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.news-list .item .text .category span {
  padding: 4px 8px;
  background: var(--color-second);
  color: #fff;
  transition: all 0.3s;
}
.news-list .item .text h3 {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  min-height: clamp(2.625rem, 0.9714961068rem + 2.6696329255vw, 4.125rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list .item .text p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  line-height: 1.6;
  min-height: clamp(2.625rem, 1.9360400445rem + 1.1123470523vw, 3.25rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list .item .text .more {
  margin-top: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  color: rgba(0, 0, 0, 0.88);
  transition: all 0.3s;
}
.news-list .item .text .more i {
  width: clamp(1.25rem, 0.8366240267rem + 0.6674082314vw, 1.625rem);
  height: clamp(1.25rem, 0.8366240267rem + 0.6674082314vw, 1.625rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  background: var(--color-second);
  transition: all 0.3s;
}

.index-contact {
  background: #f6f6f8;
  padding: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem) 0;
}
.index-contact .index-contact-btns {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: flex;
  justify-content: center;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.index-contact .index-contact-btns .animate-btn {
  height: clamp(2.5rem, 2.3622080089rem + 0.2224694105vw, 2.625rem);
}
.index-contact .index-contact-btns .btn-primary {
  height: clamp(2.5rem, 2.3622080089rem + 0.2224694105vw, 2.625rem);
  padding: 0 clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  gap: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
}

.about-profile {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.about-profile .flex {
  display: flex;
  align-items: center;
}
.about-profile .flex .left {
  width: 50%;
  padding-right: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.about-profile .flex .left .section-title {
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.about-profile .flex .left .g-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  text-indent: 2em;
}
.about-profile .flex .right {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .about-profile .flex {
    flex-direction: column;
    gap: 20px;
  }
  .about-profile .flex .left {
    width: 100%;
    padding-right: 0;
  }
  .about-profile .flex .right {
    width: 100%;
  }
}

.about-cards {
  margin-top: clamp(1.875rem, -2.258759733rem + 6.6740823137vw, 5.625rem);
  display: flex;
}
.about-cards .about-card {
  width: 25%;
  text-align: center;
  border-right: 1px solid #dedede;
  padding: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem) 0;
}
.about-cards .about-card:last-child {
  border-right: none;
}
.about-cards .about-card .number {
  color: var(--color-second);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  line-height: 1.1;
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.about-cards .about-card .number span, .about-cards .about-card .number b {
  font-size: clamp(1.875rem, 0.497080089rem + 2.2246941046vw, 3.125rem);
  font-family: "Outfit-Semi-Bold";
}
.about-cards .about-card p {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
@media screen and (max-width: 991px) {
  .about-cards {
    flex-wrap: wrap;
  }
  .about-cards .about-card {
    width: 50%;
    margin: 4px 0;
  }
  .about-cards .about-card:nth-child(2) {
    border: none;
  }
}

.about-culture {
  background: #f5f5f9;
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.about-culture .section-title {
  margin-bottom: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
}
.about-culture ul {
  display: flex;
}
.about-culture ul li {
  height: clamp(19.375rem, -1.9827586207rem + 34.4827586207vw, 38.75rem);
  position: relative;
  z-index: 2;
  width: 18%;
  transition: all 0.5s ease-in-out;
  border-right: 1px solid #a4a4a7;
  padding: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) 0;
  padding-right: clamp(1.5625rem, -0.1598998888rem + 2.7808676307vw, 3.125rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.about-culture ul li.active {
  width: 46%;
}
.about-culture ul li.active .title {
  opacity: 0;
}
.about-culture ul li.active .title2 {
  opacity: 1;
  transition-delay: 0.3s;
}
.about-culture ul li.active .more i {
  background: var(--color-second);
}
.about-culture ul li.active img {
  opacity: 1;
}
.about-culture ul li .title {
  font-size: clamp(1.125rem, 0.5738320356rem + 0.8898776418vw, 1.625rem);
  width: 30px;
  font-weight: bold;
  line-height: 1.2;
}
.about-culture ul li .more {
  margin-top: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  color: rgba(0, 0, 0, 0.88);
}
.about-culture ul li .more i {
  width: clamp(2.25rem, 1.4232480534rem + 1.3348164627vw, 3rem);
  height: clamp(2.25rem, 1.4232480534rem + 1.3348164627vw, 3rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  background: var(--color-primary);
  transition: all 0.3s;
}
.about-culture ul li img {
  object-fit: cover;
  width: clamp(10.9375rem, -1.1192992214rem + 19.4660734149vw, 21.875rem);
  height: 100%;
  position: absolute;
  right: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  top: 0;
  opacity: 0;
  transition: all 0.5s;
  z-index: -1;
}
.about-culture ul li .title2 {
  position: absolute;
  left: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
  width: 40%;
  bottom: 0;
  z-index: -2;
  font-size: clamp(1.125rem, 0.5738320356rem + 0.8898776418vw, 1.625rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  opacity: 0;
  transition: all 0.5s;
}
.about-culture ul li .title2 span {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
  .about-culture ul {
    flex-direction: column;
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  }
  .about-culture ul li {
    width: 100% !important;
    height: auto !important;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  }
  .about-culture ul li:nth-child(2n) .title2 {
    order: 2;
  }
  .about-culture ul li .title {
    display: none;
  }
  .about-culture ul li .title2 {
    position: static;
    left: 0;
    width: 100%;
    opacity: 1;
  }
  .about-culture ul li .more {
    display: none;
  }
  .about-culture ul li img {
    position: static;
    opacity: 1;
    width: clamp(7.5rem, 4.744160178rem + 4.4493882091vw, 10rem);
    flex-shrink: 0;
  }
}

.about-quote {
  padding: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem) 0;
  background: var(--color-primary);
}
.about-quote .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.about-quote .container .section-title .desc {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
@media screen and (max-width: 991px) {
  .about-quote .container {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  }
}

.about-honor {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  padding-bottom: clamp(7.5rem, -0.0785595106rem + 12.2358175751vw, 14.375rem);
  background: url(../img/honor-bg.jpg) no-repeat center bottom/100% auto #f5f5f9;
}
.about-honor ul {
  margin: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.about-honor ul li {
  padding: 0 clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  cursor: pointer;
}
.about-honor ul li:not(:first-child) {
  border-left: 1px solid #dedede;
}
.about-honor ul li.active {
  color: var(--color-second);
}
.about-honor .award {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, -4.261679644rem + 8.8987764182vw, 6.25rem);
  margin-bottom: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
}
.about-honor .award p {
  display: flex;
  align-items: center;
  text-align: center;
  width: 340px;
}
.about-honor .award p:nth-child(1) {
  width: 240px;
}
.about-honor .award p:nth-child(3) {
  width: 260px;
}
.about-honor .award p:nth-child(4) {
  width: 200px;
}
.about-honor .award p::after, .about-honor .award p::before {
  flex-shrink: 0;
  content: "";
  width: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  height: clamp(1.9375rem, -0.1982758621rem + 3.4482758621vw, 3.875rem);
  background: url(../img/ye.png) no-repeat center center/contain;
}
.about-honor .award p::after {
  transform: rotateY(180deg);
}
.about-honor .swiper-tab {
  display: none;
}
.about-honor .swiper-tab.active {
  display: block;
}
.about-honor .swiper {
  margin: 0 clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.about-honor .swiper .swiper-wrapper {
  align-items: stretch;
}
.about-honor .swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-honor .swiper img {
  width: 100%;
}
.about-honor .swiper-button-prev, .about-honor .swiper-button-next {
  width: clamp(2.5rem, 1.2598720801rem + 2.0022246941vw, 3.625rem);
  height: clamp(2.5rem, 1.2598720801rem + 2.0022246941vw, 3.625rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px dashed #58585a;
  color: #58585a;
  left: 100%;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.about-honor .swiper-button-prev.swiper-button-lock, .about-honor .swiper-button-next.swiper-button-lock {
  display: none;
}
.about-honor .swiper-button-prev::after, .about-honor .swiper-button-next::after {
  content: "\ec79";
  font-family: "iconfont" !important;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.about-honor .swiper-button-prev:hover, .about-honor .swiper-button-next:hover {
  background: var(--color-second);
  border-color: var(--color-second);
  color: #fff;
}
.about-honor .swiper-button-prev {
  transform: rotateY(180deg) translateY(-50%);
  left: auto;
  right: 100%;
}
@media screen and (max-width: 991px) {
  .about-honor {
    padding-bottom: clamp(3.125rem, -1.6977196885rem + 7.786429366vw, 7.5rem);
  }
  .about-honor .award {
    flex-direction: column;
    gap: 0;
  }
  .about-honor .award p {
    width: 100% !important;
    justify-content: center;
  }
  .about-honor .swiper-button-prev, .about-honor .swiper-button-next {
    left: auto;
    right: 0;
  }
  .about-honor .swiper-button-prev {
    left: 0;
    right: auto;
  }
}

.about-history {
  padding-top: clamp(2.5rem, -3.011679644rem + 8.8987764182vw, 7.5rem);
}
.about-history .section-title {
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.about-history .swiper-box {
  color: #fff;
}
.about-history .swiper-box .swiper-history {
  padding: 0 clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
}
.about-history .swiper-box .swiper-wrapper {
  align-items: flex-end;
}
.about-history .swiper-box .swiper-slide.swiper-slide-prev .box {
  height: clamp(21.25rem, 17.116240267rem + 6.6740823137vw, 25rem);
}
.about-history .swiper-box .swiper-slide.swiper-slide-active .box {
  height: clamp(22.5rem, 17.6772803115rem + 7.786429366vw, 26.875rem);
}
.about-history .swiper-box .swiper-slide.swiper-slide-next .box {
  height: clamp(21.25rem, 17.116240267rem + 6.6740823137vw, 25rem);
}
.about-history .swiper-box .swiper-slide .box {
  height: clamp(18.75rem, 13.238320356rem + 8.8987764182vw, 23.75rem);
  padding-top: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
}
.about-history .swiper-box .swiper-slide .box .leftLine {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 85%, rgba(255, 255, 255, 0) 100%);
}
.about-history .swiper-box .swiper-slide .box .leftLine .cir {
  width: clamp(1.25rem, 0.8366240267rem + 0.6674082314vw, 1.625rem);
  height: clamp(1.25rem, 0.8366240267rem + 0.6674082314vw, 1.625rem);
  border-radius: 50%;
  background: #fff;
  background-clip: padding-box;
  border: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem) solid rgba(255, 255, 255, 0.32);
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.about-history .swiper-box .swiper-slide .lines {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
}
.about-history .swiper-box .swiper-slide .lines .line {
  width: 2px;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0), #fff);
}
.about-history .swiper-box .swiper-slide .text {
  padding: 0 clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.about-history .swiper-box .swiper-slide .text .year {
  font-size: clamp(1.5rem, 0.3976640712rem + 1.7797552836vw, 2.5rem);
  font-family: "Roboto-Black";
  margin-bottom: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
}
.about-history .swiper-box .swiper-slide .text .g-content {
  color: inherit;
  line-height: 1.6;
  opacity: 0.86;
}
.about-history .swiper-button-prev, .about-history .swiper-button-next {
  width: clamp(2.5rem, 1.2598720801rem + 2.0022246941vw, 3.625rem);
  height: clamp(2.5rem, 1.2598720801rem + 2.0022246941vw, 3.625rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px dashed #fff;
  color: #fff;
  left: auto;
  right: 2%;
  margin: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.about-history .swiper-button-prev.swiper-button-lock, .about-history .swiper-button-next.swiper-button-lock {
  display: none;
}
.about-history .swiper-button-prev::after, .about-history .swiper-button-next::after {
  content: "\ec79";
  font-family: "iconfont" !important;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.about-history .swiper-button-prev:hover, .about-history .swiper-button-next:hover {
  background: var(--color-second);
  border-color: var(--color-second);
  color: #fff;
}
.about-history .swiper-button-prev {
  transform: rotateY(180deg);
  left: 2%;
  right: auto;
}

.about-team {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.about-team .swiper-rd {
  margin-top: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.about-team .swiper-rd .swiper-slide {
  display: flex;
  align-items: stretch;
  background: #f5f5f9;
}
.about-team .swiper-rd .swiper-slide .text {
  width: 50%;
  padding: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem) clamp(0.9375rem, -2.1628197998rem + 5.0055617353vw, 3.75rem);
}
.about-team .swiper-rd .swiper-slide .text h3 {
  font-size: clamp(1.125rem, 0.2982480534rem + 1.3348164627vw, 1.875rem);
  margin-bottom: clamp(1.25rem, 0.2854560623rem + 1.5572858732vw, 2.125rem);
}
.about-team .swiper-rd .swiper-slide .text .g-content {
  line-height: 2;
}
.about-team .swiper-rd .swiper-slide .img {
  width: 50%;
  height: clamp(14.375rem, -0.0931590656rem + 23.3592880979vw, 27.5rem);
  z-index: 2;
}
.about-team .swiper-rd .swiper-slide .swiper-button-prev, .about-team .swiper-rd .swiper-slide .swiper-button-next {
  width: clamp(2.5rem, 2.2244160178rem + 0.4449388209vw, 2.75rem);
  height: clamp(2.5rem, 2.2244160178rem + 0.4449388209vw, 2.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  bottom: 0;
  top: auto;
  margin: 0;
  right: 50%;
  left: auto;
}
.about-team .swiper-rd .swiper-slide .swiper-button-prev::after, .about-team .swiper-rd .swiper-slide .swiper-button-next::after {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.about-team .swiper-rd .swiper-slide .swiper-button-next {
  background: var(--color-second);
  left: 50%;
  right: auto;
}
.about-team .swiper-rd .swiper {
  height: 100%;
  width: 100%;
}
.about-team .swiper-rd .swiper .swiper-slide {
  z-index: 2;
}
.about-team .swiper-rd > .swiper-button-prev, .about-team .swiper-rd > .swiper-button-next {
  width: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  border-radius: 50%;
  border: 1px dashed #999;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 13.4%;
  color: #999;
  transition: all 0.3s;
}
.about-team .swiper-rd > .swiper-button-prev:hover, .about-team .swiper-rd > .swiper-button-next:hover {
  background: var(--color-second);
  border: 1px solid var(--color-second);
  color: #fff;
}
.about-team .swiper-rd > .swiper-button-prev::after, .about-team .swiper-rd > .swiper-button-next::after {
  content: "\e662";
  font-size: clamp(1.5rem, 1.0866240267rem + 0.6674082314vw, 1.875rem);
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.about-team .swiper-rd > .swiper-button-next {
  left: auto;
  right: 13.4%;
}
.about-team .swiper-rd > .swiper-button-next::after {
  content: "\ec79";
}
@media screen and (max-width: 991px) {
  .about-team .swiper-rd > .swiper-button-prev, .about-team .swiper-rd > .swiper-button-next {
    top: auto;
    bottom: 2px;
    left: 10px;
  }
  .about-team .swiper-rd > .swiper-button-next {
    left: auto;
    right: 10px;
  }
}

.about-talents {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  padding-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.about-talents .section-head {
  align-items: flex-end;
}
.about-talents .cards {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.about-talents .cards .card {
  background: #f5f5f9;
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  transition: all 0.3s;
}
.about-talents .cards .card:hover {
  background: var(--color-second);
  color: #fff;
}
.about-talents .cards .card:hover i {
  background: #fff;
  color: var(--color-second);
}
.about-talents .cards .card:hover p {
  color: #fff;
}
.about-talents .cards .card i {
  width: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
  height: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: clamp(1.875rem, 0.497080089rem + 2.2246941046vw, 3.125rem);
  background: var(--color-second);
  color: #fff;
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.about-talents .cards .card h3 {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  margin-bottom: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.about-talents .cards .card p {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #666;
  line-height: 1.8;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .about-talents .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.contact-phone i {
  width: clamp(2.5rem, 2.2244160178rem + 0.4449388209vw, 2.75rem);
  height: clamp(2.5rem, 2.2244160178rem + 0.4449388209vw, 2.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-second);
  color: #fff;
  font-size: clamp(1.25rem, 0.9744160178rem + 0.4449388209vw, 1.5rem);
}
.contact-phone .text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  line-height: 1.2;
}
.contact-phone .text span {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  font-family: "Outfit-Semi-Bold";
}

.page-products {
  padding-bottom: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem);
}

.product-detail-header {
  padding-bottom: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.product-detail-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.product-detail-header .product-detail-img, .product-detail-header .product-detail-info {
  width: calc(50% - clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem));
}
.product-detail-header .product-detail-img {
  display: flex;
  justify-content: space-between;
  gap: clamp(0.625rem, 0.3494160178rem + 0.4449388209vw, 0.875rem);
}
.product-detail-header .thumbnail {
  width: clamp(7.5rem, 4.744160178rem + 4.4493882091vw, 10rem);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.product-detail-header .swiper-thumb {
  width: 100%;
  height: clamp(16.25rem, 4.5376807564rem + 18.9098998888vw, 26.875rem);
}
.product-detail-header .swiper-thumb .swiper-slide {
  background: #fff;
  aspect-ratio: 160/140;
  height: clamp(6.25rem, 3.8386401557rem + 3.893214683vw, 8.4375rem);
  z-index: 2;
  cursor: pointer;
}
.product-detail-header .swiper-thumb .swiper-slide.swiper-slide-thumb-active::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-second);
  position: absolute;
  left: 0;
  top: 0;
}
.product-detail-header .swiper-thumb .swiper-slide img {
  object-fit: contain;
}
.product-detail-header .thumb-pagination {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.product-detail-header .thumb-pagination .thumb-prev, .product-detail-header .thumb-pagination .thumb-next {
  width: clamp(3.4375rem, 2.059580089rem + 2.2246941046vw, 4.6875rem);
  height: clamp(3.4375rem, 2.059580089rem + 2.2246941046vw, 4.6875rem);
  position: static;
  margin: 0;
  aspect-ratio: 1/1;
  background: #fff;
  color: #666;
  transition: all 0.3s;
}
.product-detail-header .thumb-pagination .thumb-prev::after, .product-detail-header .thumb-pagination .thumb-next::after {
  display: none;
}
.product-detail-header .thumb-pagination .thumb-prev i, .product-detail-header .thumb-pagination .thumb-next i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.product-detail-header .swiper-detail {
  width: 100%;
  aspect-ratio: 600/515;
  background: #fff;
}
.product-detail-header .swiper-detail .swiper-slide {
  position: relative;
  z-index: 2;
}
.product-detail-header .swiper-detail .swiper-slide img.g-bg {
  object-fit: contain;
}
.product-detail-header .product-detail-info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
}
.product-detail-header .product-detail-info .g-content {
  color: #333;
}
.product-detail-header .product-detail-info .g-content p:not(:first-child) {
  margin-top: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.product-detail-header .product-detail-info .more {
  margin-top: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.product-detail-header .product-detail-info .more .animate-btn {
  height: clamp(2.5rem, 2.0866240267rem + 0.6674082314vw, 2.875rem);
}
.product-detail-header .product-detail-info .more .btn-primary {
  height: 100%;
  padding: 0 clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
@media screen and (max-width: 991px) {
  .product-detail-header .container {
    flex-direction: column;
  }
  .product-detail-header .product-detail-img, .product-detail-header .product-detail-info {
    width: 100%;
  }
  .product-detail-header .product-detail-img {
    align-items: center;
  }
}

.product-detail-nav {
  position: sticky;
  top: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  z-index: 90;
  background: var(--color-primary);
}
.product-detail-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail-nav .title {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #fff;
}
.product-detail-nav nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -2.8197997775rem + 5.5617352614vw, 3.75rem);
}
.product-detail-nav nav ul li.active a {
  color: var(--color-second);
}
.product-detail-nav nav ul li.active a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
  background: var(--color-second);
}
.product-detail-nav nav ul li a {
  height: clamp(3.75rem, 1.6831201335rem + 3.3370411568vw, 5.625rem);
  display: flex;
  align-items: center;
  padding: 0 clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #fff;
  position: relative;
  transition: all 0.3s;
}
.product-detail-nav nav ul li a:hover {
  color: var(--color-second);
}
@media screen and (max-width: 991px) {
  .product-detail-nav {
    padding: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) 0;
  }
  .product-detail-nav .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.product-detail-content {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  background: #fff;
}
.product-detail-content .container {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.875rem, -5.7035595106rem + 12.2358175751vw, 8.75rem);
}
.product-detail-content .hot-products {
  width: 360px;
  flex-shrink: 0;
  border: 1px solid #c6c6c6;
  border-top: 6px solid var(--color-second);
  padding: clamp(1.25rem, 0.2854560623rem + 1.5572858732vw, 2.125rem) clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding-bottom: 0;
  border-bottom-left-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  border-bottom-right-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.product-detail-content .hot-products.is-sticky {
  position: sticky;
  top: clamp(7.5rem, 4.0552002225rem + 5.5617352614vw, 10.625rem);
  z-index: 80;
}
.product-detail-content .hot-products h2 {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
}
.product-detail-content .hot-products ul li {
  padding: clamp(0.5rem, 0.0866240267rem + 0.6674082314vw, 0.875rem) 0;
  transition: all 0.3s;
  position: relative;
}
.product-detail-content .hot-products ul li::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-second);
  opacity: 0;
}
.product-detail-content .hot-products ul li:not(:last-child) {
  border-bottom: 1px solid #dedede;
}
.product-detail-content .hot-products ul li:not(:last-child):hover::after {
  opacity: 1;
}
.product-detail-content .hot-products ul li:hover {
  border-bottom-color: var(--color-second);
}
.product-detail-content .hot-products ul li:hover .item .text .more i {
  background: var(--color-second);
}
.product-detail-content .hot-products ul li .item {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.product-detail-content .hot-products ul li .item .img {
  width: 110px;
  height: 85px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.product-detail-content .hot-products ul li .item .text h3 {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.product-detail-content .hot-products ul li .item .text .more {
  margin-top: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  color: rgba(0, 0, 0, 0.88);
}
.product-detail-content .hot-products ul li .item .text .more i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  background: var(--color-primary);
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .product-detail-content .container {
    flex-direction: column;
    gap: clamp(1.875rem, -5.7035595106rem + 12.2358175751vw, 8.75rem);
  }
  .product-detail-content .hot-products {
    display: none;
  }
}

.product-info .g-anchor {
  top: calc(-1 * clamp(7.5rem, 4.0552002225rem + 5.5617352614vw, 10.625rem));
}
.product-info h2.title {
  border-bottom: 1px solid #dbdfdd;
  margin-bottom: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
}
.product-info h2.title span {
  padding: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem) clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem) clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  display: inline-block;
  position: relative;
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.product-info h2.title span::after {
  content: "";
  width: 100%;
  height: 3px;
  background: var(--color-second);
  position: absolute;
  left: 0;
  bottom: -1px;
}
.product-info > div {
  margin-bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}

.product-detail-advantage ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.product-detail-advantage ul li {
  background: #f6f6f8;
  padding: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding-bottom: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  transition: all 0.3s;
}
.product-detail-advantage ul li:hover {
  background: var(--color-second);
  color: #fff;
}
.product-detail-advantage ul li:hover p {
  color: #fff;
}
.product-detail-advantage ul li .number {
  width: clamp(2.5rem, 1.9488320356rem + 0.8898776418vw, 3rem);
  height: clamp(2.5rem, 1.9488320356rem + 0.8898776418vw, 3rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.125rem, 0.5738320356rem + 0.8898776418vw, 1.625rem);
  color: var(--color-second);
  background: #fff;
  font-family: "Outfit-Semi";
}
.product-detail-advantage ul li h3 {
  margin-top: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  margin-bottom: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
}
.product-detail-advantage ul li p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #666;
  line-height: 1.8;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .product-detail-advantage ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-detail-solution .solution-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9375rem, 0.4552280311rem + 0.7786429366vw, 1.375rem);
}
.product-detail-solution .solution-list .item .img img {
  transition: all 0.3s;
}
.product-detail-solution .solution-list .item:hover {
  transform: translateY(0);
}
.product-detail-solution .solution-list .item:hover .img img {
  transform: scale(1.05);
}
@media screen and (max-width: 991px) {
  .product-detail-solution .solution-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.product-detail-quote form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
}
.product-detail-quote form .group:nth-child(5) {
  grid-column: span 2;
}
.product-detail-quote form .group:nth-child(6), .product-detail-quote form .group:nth-child(7) {
  grid-column: span 3;
}
.product-detail-quote .group {
  background: #f6f6f6;
  padding: 0 clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
.product-detail-quote .group input, .product-detail-quote .group button {
  height: clamp(2.5rem, 0.4331201335rem + 3.3370411568vw, 4.375rem);
}
.product-detail-quote .group input, .product-detail-quote .group textarea {
  background: none;
  outline: none;
  width: 100%;
}
.product-detail-quote .group textarea {
  margin: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) 0;
}
.product-detail-quote .group:has(button) {
  padding: 0;
}
.product-detail-quote .group button {
  background: var(--color-second);
  color: #fff;
  padding: 0 clamp(1.25rem, -4.261679644rem + 8.8987764182vw, 6.25rem);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}

.page-solution {
  padding-bottom: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem);
}
.page-solution .solution-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) clamp(1rem, -0.1023359288rem + 1.7797552836vw, 2rem);
}
@media screen and (max-width: 991px) {
  .page-solution .solution-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.solution-detail-profile {
  padding-bottom: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.solution-detail-profile .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.solution-detail-profile .img, .solution-detail-profile .info {
  width: calc(50% - clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem));
}
.solution-detail-profile .info {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
}
.solution-detail-profile .info .g-content {
  color: #333;
}
.solution-detail-profile .info .g-content p:not(:first-child) {
  margin-top: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.solution-detail-profile .info .more {
  margin-top: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.solution-detail-profile .info .more .animate-btn {
  height: clamp(2.5rem, 2.0866240267rem + 0.6674082314vw, 2.875rem);
}
.solution-detail-profile .info .more .btn-primary {
  height: 100%;
  padding: 0 clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
@media screen and (max-width: 991px) {
  .solution-detail-profile .container {
    flex-direction: column;
  }
  .solution-detail-profile .img, .solution-detail-profile .info {
    width: 100%;
  }
}

.solution-detail-feature {
  background: #f6f6f8;
  padding: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem) 0;
}
.solution-detail-feature .section-title {
  margin-bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.solution-detail-feature ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.solution-detail-feature ul li {
  background: #fff;
  padding: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  transition: all 0.3s;
}
.solution-detail-feature ul li:hover {
  background: var(--color-second);
  color: #fff;
}
.solution-detail-feature ul li:hover p {
  color: #fff;
}
.solution-detail-feature ul li h3 {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  margin-bottom: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
}
.solution-detail-feature ul li p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #666;
  line-height: 1.8;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .solution-detail-feature ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.solution-detail-recommend {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.solution-detail-recommend .section-title {
  margin-bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}

.solution-detail-case.index-solution {
  background: #fff;
  padding-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}

.solution-detail-quote {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  padding-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.solution-detail-quote.contact-quote {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  background: #f6f6f8;
}
.solution-detail-quote.contact-quote .product-detail-quote form .group {
  background: #fff;
}
.solution-detail-quote .section-title {
  margin-bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.solution-detail-quote .product-detail-quote form {
  grid-template-columns: repeat(2, 1fr);
}
.solution-detail-quote .product-detail-quote form .group:nth-child(5), .solution-detail-quote .product-detail-quote form .group:nth-child(6) {
  grid-column: span 2;
}

.page-navigation {
  padding: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem) 0;
  margin-top: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid #dedede;
}
.page-navigation .page-prev, .page-navigation .page-next {
  flex-shrink: 0;
  width: 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.page-navigation .page-prev a, .page-navigation .page-next a {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  color: #666;
}
.page-navigation .page-prev a .img, .page-navigation .page-next a .img {
  width: clamp(6.25rem, 3.7697441602rem + 4.0044493882vw, 8.5rem);
  height: clamp(4rem, 2.622080089rem + 2.2246941046vw, 5.25rem);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.page-navigation .page-prev a h2, .page-navigation .page-next a h2 {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.page-navigation .page-prev a .more, .page-navigation .page-next a .more {
  margin-top: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
  display: flex;
  align-items: center;
  gap: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
  font-size: 14px;
}
.page-navigation .page-prev a .more i, .page-navigation .page-next a .more i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  background: var(--color-second);
  transition: all 0.3s;
}
.page-navigation .page-next {
  align-items: flex-end;
}
.page-navigation .page-next a .img {
  order: 2;
}
@media screen and (max-width: 991px) {
  .page-navigation {
    flex-direction: column;
  }
  .page-navigation .page-prev, .page-navigation .page-next {
    width: 100%;
  }
}

.case-detail {
  padding-bottom: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.case-detail .container {
  display: flex;
  gap: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.case-detail .left {
  width: 100%;
}
.case-detail .left h1 {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.case-detail .left .time-read {
  padding-bottom: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  border-bottom: 1px solid #dedede;
  margin: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) 0;
  color: #999;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.case-detail .left .time-read span {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.case-detail .left .time-read span i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: var(--color-second);
}
.case-detail .left .g-content p {
  margin-bottom: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.case-detail .right {
  width: clamp(22.5rem, 19.0552002225rem + 5.5617352614vw, 25.625rem);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.case-detail .right > div {
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  background: #f6f6f6;
}
.case-detail .right > div .title {
  margin-bottom: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  padding-bottom: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  position: relative;
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.case-detail .right > div .title::after, .case-detail .right > div .title::before {
  content: "";
  width: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  left: 0;
  bottom: 0;
}
.case-detail .right > div .title::before {
  width: clamp(3.75rem, 2.7854560623rem + 1.5572858732vw, 4.625rem);
  left: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
  background: var(--color-second);
}
.case-detail .right .case-search form {
  display: flex;
  align-items: center;
  background: #fff;
  height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
}
.case-detail .right .case-search form input, .case-detail .right .case-search form button {
  background: none;
  outline: none;
}
.case-detail .right .case-search form input {
  padding-left: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  height: 100%;
  width: 100%;
}
.case-detail .right .case-search form button {
  margin: 0 clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.case-detail .right .case-search form i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.case-detail .right .category ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.case-detail .right .category ul li a {
  padding: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem) clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding-right: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  border: 1px solid #dedede;
  transition: all 0.3s;
}
.case-detail .right .category ul li a:hover {
  background: var(--color-second);
  color: #fff;
}
.case-detail .right .related.news-related ul li .item {
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.case-detail .right .related.news-related ul li .item .img {
  width: 136px;
  height: 85px;
}
.case-detail .right .related.news-related ul li .item .text h3 {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: #222;
}
.case-detail .right .related ul li {
  padding: clamp(0.5rem, 0.0866240267rem + 0.6674082314vw, 0.875rem) 0;
  transition: all 0.3s;
  position: relative;
}
.case-detail .right .related ul li::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-second);
  opacity: 0;
}
.case-detail .right .related ul li:not(:last-child) {
  border-bottom: 1px solid #dedede;
}
.case-detail .right .related ul li:not(:last-child):hover::after {
  opacity: 1;
}
.case-detail .right .related ul li:hover {
  border-bottom-color: var(--color-second);
}
.case-detail .right .related ul li:hover .item .text .more i {
  background: var(--color-second);
}
.case-detail .right .related ul li .item {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.case-detail .right .related ul li .item .img {
  width: 110px;
  height: 85px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.case-detail .right .related ul li .item .text h3 {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.case-detail .right .related ul li .item .text .more {
  margin-top: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  color: rgba(0, 0, 0, 0.88);
}
.case-detail .right .related ul li .item .text .more i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  background: var(--color-primary);
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .case-detail .container {
    flex-direction: column;
  }
  .case-detail .right {
    width: 100%;
  }
}

.service-skill {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  padding-bottom: clamp(3.75rem, -2.4506395996rem + 10.0111234705vw, 9.375rem);
}
.service-skill .section-head {
  align-items: flex-end;
  margin-bottom: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
}
.service-skill ul {
  display: flex;
  justify-content: space-between;
}
.service-skill ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f6f6f8;
  padding: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem) clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  text-align: center;
  width: calc(100% - clamp(12.5rem, 5.6104004449rem + 11.1234705228vw, 18.75rem) / 6);
  transition: all 0.3s;
}
.service-skill ul li:hover {
  background: var(--color-second);
  color: #fff;
}
.service-skill ul li:hover i {
  background: #fff;
  color: var(--color-second);
}
.service-skill ul li:hover h3 {
  color: #fff;
}
.service-skill ul li i {
  width: clamp(2.5rem, 1.3976640712rem + 1.7797552836vw, 3.5rem);
  height: clamp(2.5rem, 1.3976640712rem + 1.7797552836vw, 3.5rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-second);
  color: #fff;
  font-size: clamp(1.25rem, 0.8366240267rem + 0.6674082314vw, 1.625rem);
  transition: all 0.3s;
}
.service-skill ul li h3 {
  margin-top: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  color: var(--color-second);
  transition: all 0.3s;
}
.service-skill ul li p {
  line-height: 1.6;
}
.service-skill ul .you {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  background: url(../img/s-1.jpg) no-repeat center center;
  background-size: 50% auto;
}
.service-skill ul .you:last-child {
  display: none;
}
@media screen and (max-width: 991px) {
  .service-skill ul {
    flex-wrap: wrap;
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem) 0;
  }
  .service-skill ul li {
    width: calc((100% - clamp(1.875rem, 1.1860400445rem + 1.1123470523vw, 2.5rem)) / 2);
    transform: translateY(0) !important;
  }
  .service-skill ul .you {
    width: clamp(1.875rem, 1.1860400445rem + 1.1123470523vw, 2.5rem);
  }
  .service-skill ul .you:nth-child(4n) {
    display: none;
  }
}

.service-after {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.service-after .section-title {
  margin-bottom: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.service-after ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem);
}
.service-after ul li {
  height: clamp(6.875rem, 6.1860400445rem + 1.1123470523vw, 7.5rem);
  overflow: hidden;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  padding: 0 clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.service-after ul li:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: transparent;
}
.service-after ul li:hover .group i:last-child {
  background: var(--color-second);
  color: #fff;
}
.service-after ul li:hover .group .text {
  transform: translateY(0);
}
.service-after ul li:hover .group .text p {
  opacity: 1;
}
.service-after ul li .group {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  height: 100%;
}
.service-after ul li .group i {
  flex-shrink: 0;
}
.service-after ul li .group i:first-child {
  font-size: clamp(1.5rem, 0.3976640712rem + 1.7797552836vw, 2.5rem);
}
.service-after ul li .group i:last-child {
  width: clamp(2.25rem, 1.9744160178rem + 0.4449388209vw, 2.5rem);
  height: clamp(2.25rem, 1.9744160178rem + 0.4449388209vw, 2.5rem);
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  color: var(--color-second);
  transition: all 0.3s;
}
.service-after ul li .group .text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
  transform: translateY(30%);
  transition: all 0.3s;
}
.service-after ul li .group .text p {
  line-height: 1.6;
  opacity: 0;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.service-after .p {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #fff;
  margin-top: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}

.service-operation {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.service-operation .section-title {
  margin-bottom: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.service-operation .container > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -4.261679644rem + 8.8987764182vw, 6.25rem);
}
.service-operation .container > ul > li {
  background: #f6f6f8;
}
.service-operation .container > ul > li:hover .img img {
  transform: scale(1.05);
}
.service-operation .container > ul > li .img {
  padding-top: 61%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.service-operation .container > ul > li .img img {
  transition: all 0.3s;
}
.service-operation .container > ul > li .text {
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  color: #000;
}
.service-operation .container > ul > li .text i {
  font-size: clamp(1.875rem, 0.497080089rem + 2.2246941046vw, 3.125rem);
  color: var(--color-second);
  line-height: 1.2;
}
.service-operation .container > ul > li .text h3 {
  margin-bottom: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.service-operation .container > ul > li .text ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.service-operation .container > ul > li .text ul li {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.service-operation .container > ul > li .text ul li::before {
  content: "";
  width: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  height: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  background: var(--color-second);
}
@media screen and (max-width: 991px) {
  .service-operation .container > ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.news-content {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.news-content .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem) clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}

.contact {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.contact .company {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem);
}
.contact .company .card {
  background: #f6f6f8;
}
.contact .company .card:hover .img img {
  transform: scale(1.05);
}
.contact .company .card .img {
  padding-top: 52%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.contact .company .card .img img {
  transition: all 0.3s;
}
.contact .company .card .text {
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  padding-bottom: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
  color: #001910;
}
.contact .company .card .text h3 {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.contact .company .card .text ul {
  margin-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem) clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
}
.contact .company .card .text ul li {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
}
.contact .company .card .text ul li i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  flex-shrink: 0;
  color: var(--color-second);
}
@media screen and (max-width: 991px) {
  .contact .company {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact .company .card .text ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact-join {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.contact-join ul {
  display: flex;
  justify-content: space-around;
  margin: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem) 0;
}
.contact-join ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
}
.contact-join ul li i {
  font-size: clamp(1.875rem, 0.497080089rem + 2.2246941046vw, 3.125rem);
  color: var(--color-second);
}
.contact-join ul li h3 {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  margin-top: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.contact-join ul li p {
  color: #666;
}
.contact-join .card {
  background: #f6f6f8;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.contact-join .card:hover .img img {
  animation: zoomloop 6s linear;
}
@keyframes zoomloop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.contact-join .card .img {
  padding-top: 63%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.contact-join .card .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  padding: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem);
}
.contact-join .card .info h3 {
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.contact-join .card .info .g-content {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  line-height: 2;
  color: #222;
}
@media screen and (max-width: 991px) {
  .contact-join .card {
    grid-template-columns: repeat(1, 1fr);
  }
}

.resources {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.resources .resources-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9375rem, -0.2337319244rem + 1.8909899889vw, 2rem) clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem);
}
.resources .resources-list .item {
  background: #f5f5f9;
  min-height: clamp(5rem, 2.6575361513rem + 3.7819799778vw, 7.125rem);
  padding: 0 clamp(0.9375rem, -0.7848998888rem + 2.7808676307vw, 2.5rem);
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.resources .resources-list .item:hover {
  background: var(--color-second);
  color: #fff;
}
.resources .resources-list .item:hover i, .resources .resources-list .item:hover h2, .resources .resources-list .item:hover span i {
  color: inherit;
}
.resources .resources-list .item i {
  font-size: clamp(1.5rem, 0.3976640712rem + 1.7797552836vw, 2.5rem);
  color: var(--color-second);
}
.resources .resources-list .item h2 {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #222;
}
.resources .resources-list .item span {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
}
.resources .resources-list .item span i {
  font-size: clamp(1.5rem, 1.0866240267rem + 0.6674082314vw, 1.875rem);
  color: #454545;
}
@media screen and (max-width: 991px) {
  .resources .resources-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* download modal overlay */
.download-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  display: none;
}
.download-modal-overlay.active {
  display: block;
}

.download-model {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%) scale(0.5);
  background: #fff;
  border-radius: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  padding: clamp(1.25rem, -4.261679644rem + 8.8987764182vw, 6.25rem) clamp(0.9375rem, -1.4738598443rem + 3.893214683vw, 3.125rem);
  width: clamp(46.875rem, 6.2263626251rem + 65.6284760845vw, 83.75rem);
  max-width: 90%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.download-model.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.download-model .close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  color: #999;
  cursor: pointer;
}
.download-model .close-btn:hover {
  color: var(--color-second);
}
.download-model .close-btn i {
  font-size: clamp(1.5rem, 0.3976640712rem + 1.7797552836vw, 2.5rem);
}
.download-model .product-detail-quote form {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  grid-template-columns: repeat(2, 1fr);
}
.download-model .product-detail-quote form .group:nth-child(5) {
  grid-column: span 2;
}
.download-model .product-detail-quote form .group:last-child {
  margin-top: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}

.page-search {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  background: #f1f4f7;
}

.search-category {
  padding: 2rem 0;
  border-bottom: 1px solid #dedede;
  margin-bottom: 2.5rem;
}
.search-category ul li {
  position: relative;
}
.search-category ul li:not(:first-child) {
  padding-left: 2rem;
}
.search-category ul li:not(:last-child) {
  padding-right: 2rem;
}
.search-category ul li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 1rem;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.search-category ul li.active a {
  color: var(--color-primary);
  font-weight: bold;
}
.search-category ul li a {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  color: #333;
}

.global-search {
  margin: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) auto;
  width: 70%;
  height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  position: relative;
}
.global-search input {
  width: 100%;
  height: 100%;
  padding-left: 3rem;
  padding-right: 10rem;
  border-radius: 2.5rem;
  border: none;
  outline: none;
  background: #fff;
  font-size: clamp(0.875rem, 0.4616240267rem + 0.6674082314vw, 1.25rem);
}
.global-search button {
  position: absolute;
  width: clamp(6.25rem, 3.494160178rem + 4.4493882091vw, 8.75rem);
  right: 0;
  top: 0;
  height: 100%;
  border-radius: clamp(1.875rem, 1.1860400445rem + 1.1123470523vw, 2.5rem);
  border: none;
  outline: none;
  background: var(--color-primary);
  z-index: 2;
  color: #fff;
}
.global-search button i {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
@media screen and (max-width: 991px) {
  .global-search {
    width: 100%;
  }
}

.search-list .item {
  display: block;
  margin-bottom: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.search-list .item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  transition: all 0.3s;
  padding: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem) clamp(0.9375rem, -2.1628197998rem + 5.0055617353vw, 3.75rem);
  color: #333;
}
.search-list .item a:hover {
  border-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  box-shadow: 0 clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem) clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem) rgba(0, 0, 0, 0.1);
}
.search-list .item h3 {
  margin-bottom: clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem);
  font-weight: bold;
}
.search-list .item p {
  margin-bottom: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
}
.search-list .item time {
  color: #666;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}/*# sourceMappingURL=styles.css.map */