@charset "UTF-8";
:root {
  --color-primary: #011342;
  --color-primary-rgb: 0, 137, 225;
  --color-second: #0081e0;
  --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: "ROBOTO-REGULAR";
  src: url("https://deshengli.oss-cn-beijing.aliyuncs.com/themes/default/public/assets/fonts/ROBOTO-REGULAR.TTF");
}
@font-face {
  font-display: swap;
  font-family: "Roboto-Light";
  src: url("https://deshengli.oss-cn-beijing.aliyuncs.com/themes/default/public/assets/fonts/Roboto Light.ttf");
}
@font-face {
  font-display: swap;
  font-family: "Roboto-Black";
  src: url("https://deshengli.oss-cn-beijing.aliyuncs.com/themes/default/public/assets/fonts/Roboto-Black.ttf");
}
@font-face {
  font-display: swap;
  font-family: "Roboto-Medium";
  src: url("https://deshengli.oss-cn-beijing.aliyuncs.com/themes/default/public/assets/fonts/Roboto-Medium.ttf");
}
.fm-regular {
  font-family: "ROBOTO-REGULAR";
}

.fm-medium, .index-product .swiper-content .item .title, .product-list .list-item .title, .solution-detail .block-1 .left .section-title, .solution-detail .block-3 .left .section-title, .header .header-top, .header .nav-menu > ul > li > a, .btn-primary {
  font-family: "Roboto-Medium";
}

.fm-light, .index-about .about-cards .card p, .index-layout .swiper .country, .index-why ul li h3, .index-why ul li p, .footer .footer-head .footer-take .text, .footer .footer-head .footer-take form input, .footer .footer-content .footer-info p, .footer .footer-content .footer-links > ul > li ul a, .footer .footer-bottom, .sub-title {
  font-family: "Roboto-Light";
}

.fm-bold, .index-hero .hero-content .title, .index-about .about-cards .card .head .number, .index-why ul li.active h3, .index-solution .tab-category ul li, .index-news .swiper-news .title, .index-contact form .group:last-child button, .about-history .items .item .year, .about-honor .swiper-foot .honor-index .current, .product-content .left-menu > ul > li .title a span, .news-list .title, .footer .footer-head .footer-take .text span, .footer .footer-content .footer-links > ul > li > a, .header .nav-menu > ul > li.active > a, .section-title {
  font-family: "Roboto-Black";
}

*, *::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: "ROBOTO-REGULAR", "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-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;
  }
}
.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.8110400445rem + 1.1123470523vw, 3.125rem);
  padding: 0 clamp(1.25rem, 0.2854560623rem + 1.5572858732vw, 2.125rem);
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  color: #fff;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  text-transform: capitalize;
  transition: color 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn-primary:hover::before {
  transform: scaleX(1);
}
.btn-primary.gray {
  background: #ebecf0;
  color: var(--color-primary);
}
.btn-primary.gray::before {
  background-color: var(--color-second);
}
.btn-primary.gray:hover {
  color: #fff;
}
.btn-primary.white {
  background: #fff;
  color: var(--color-primary);
}
.btn-primary.white::before {
  background-color: var(--color-second);
}
.btn-primary.white:hover {
  color: #fff;
}

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

.section-title {
  font-size: clamp(1.5rem, -0.2912958843rem + 2.8921023359vw, 3.125rem);
  color: var(--color-primary);
  text-transform: capitalize;
  line-height: 1.2;
}
.section-title.black {
  color: #000;
}
.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, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.g-pagination li.page-item:first-child > *, .g-pagination li.page-item:last-child > * {
  position: relative;
  background: transparent;
}
.g-pagination li.page-item:first-child > *::before, .g-pagination li.page-item:last-child > *::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  content: "\e636";
  font-family: "iconfont" !important;
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}
.g-pagination li.page-item:first-child > *::before {
  content: "\e624";
}
.g-pagination li.active.disabled {
  opacity: 1;
}
.g-pagination li.active span {
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  clip-path: polygon(0 0, calc(100% - clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem)) 0, 100% 12px, 100% 100%, clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem) 100%, 0 calc(100% - clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem)));
  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.2854560623rem + 1.5572858732vw, 3.125rem);
  height: clamp(2.25rem, 1.2854560623rem + 1.5572858732vw, 3.125rem);
  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;
}
.g-content table {
  max-width: 100% !important;
}
.g-content iframe, .g-content video {
  aspect-ratio: 16/9;
}

/* 设置滚动条的样式 */
.h-auto, .index-why ul li p, .index-news .swiper-news .title, .about-history .items, .news-list .title {
  overflow-y: auto;
  overscroll-behavior: contain;
}
.h-auto::-webkit-scrollbar, .index-why ul li p::-webkit-scrollbar, .index-news .swiper-news .title::-webkit-scrollbar, .about-history .items::-webkit-scrollbar, .news-list .title::-webkit-scrollbar {
  width: 0.25rem;
}
.h-auto::-webkit-scrollbar-track, .index-why ul li p::-webkit-scrollbar-track, .index-news .swiper-news .title::-webkit-scrollbar-track, .about-history .items::-webkit-scrollbar-track, .news-list .title::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}
.h-auto::-webkit-scrollbar-thumb, .index-why ul li p::-webkit-scrollbar-thumb, .index-news .swiper-news .title::-webkit-scrollbar-thumb, .about-history .items::-webkit-scrollbar-thumb, .news-list .title::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.6);
}

/* 针对特定列数多的表格 */
.responsive-table {
  width: 100%;
  overflow-x: auto;
  display: block; /* 让表格可以滚动 */
  white-space: nowrap; /* 防止换行 */
  -webkit-overflow-scrolling: touch;
}

.responsive-table table {
  border-collapse: collapse;
  width: 100%;
}

.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: rgba(255, 255, 255, 0.85);
  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::after {
  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::after {
  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(3.125rem, 2.4360400445rem + 1.1123470523vw, 3.75rem)));
}
@media screen and (max-width: 991px) {
  .header.scrolled {
    transform: translateY(calc(-1 * clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem)));
  }
}
.header .header-top {
  background-color: #011342;
  height: clamp(3.125rem, 2.4360400445rem + 1.1123470523vw, 3.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.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.4872080089rem + 0.2224694105vw, 0.75rem);
}
.header .header-top .text a {
  color: #fff;
}
.header .header-top .text .divide {
  width: 1px;
  height: 15px;
  background-color: #fff;
}
.header .header-top .customize a {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  text-transform: uppercase;
}
.header .header-top .customize a i {
  transform: rotate(-45deg);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
@media screen and (max-width: 991px) {
  .header .header-top {
    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.0482480534rem + 1.3348164627vw, 2.625rem);
  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: var(--color-text);
  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;
  position: relative;
}
.header .nav-menu::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: var(--indicator-left, -100px);
  width: var(--indicator-width, 0px);
  height: clamp(0.125rem, -0.0816879867rem + 0.3337041157vw, 0.3125rem);
  background-image: linear-gradient(to right, var(--color-second) 0%, var(--color-primary) 100%);
  transform: skewX(24deg);
  transition: left 0.3s ease, width 0.3s ease, opacity 0.3s ease;
  opacity: var(--indicator-opacity, 0);
  pointer-events: none;
}
.header .nav-menu > ul {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -1.9930478309rem + 4.2269187987vw, 3rem);
}
.header .nav-menu > ul > li {
  position: relative;
}
.header .nav-menu > ul > li > a {
  display: block;
  height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  display: flex;
  align-items: center;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  transition: color 0.3s;
  text-transform: uppercase;
  color: #000;
}
.header .nav-menu > ul > li.active > a {
  color: var(--color-primary);
}
.header .nav-menu > ul > li:hover > a {
  color: var(--color-primary);
}
.header .nav-menu > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  border-radius: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  background-color: #fff;
  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: #fff;
  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.625rem, 0.2805200222rem + 0.5561735261vw, 0.9375rem) clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
}
.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.0639599555rem + 1.1123470523vw, 1.25rem);
  flex-shrink: 0;
  background-color: var(--color-primary);
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  border-radius: clamp(1.25rem, 0.9055200222rem + 0.5561735261vw, 1.5625rem);
  padding: 0 clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
}
.header .actions button {
  color: #fff;
}
.header .actions button i {
  font-size: clamp(1.125rem, 0.8494160178rem + 0.4449388209vw, 1.375rem);
}
.header .actions .socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .actions .socials a:hover {
  color: #fff;
}
.header .actions .divider {
  width: 1px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.3);
}
.header .actions #langSwitcher {
  position: relative;
}
.header .actions #langSwitcher > ul {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 100px;
  background-color: #fff;
  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;
}
.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;
}
.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-primary);
  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 .actions .socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.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: #fff;
    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::after {
    display: none;
  }
  .header .nav-menu > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .header .nav-menu > ul > li {
    border-bottom: 1px solid #f0f0f0;
  }
  .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 > ul {
    position: static;
    left: auto;
    transform: none;
    min-width: 0;
    border-radius: 0;
    background-color: #f7f7f7;
    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 #ebebeb;
  }
  .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: none;
    color: var(--color-primary);
  }
  .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 > ul > li > ul > li > a:hover {
    background: none;
    color: var(--color-primary);
  }
  .header .nav-menu > ul li:has(> ul) > a {
    position: relative;
  }
  .header .nav-menu > ul li:has(> ul) > a::after {
    content: "+";
    position: absolute;
    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 .actions {
    display: none;
  }
  .header .actions .socials, .header .actions .cta, .header .actions .divider {
    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(2.5rem, -0.9447997775rem + 5.5617352614vw, 5.625rem);
  color: #fff;
  position: relative;
}
.footer .footer-head {
  padding-bottom: clamp(1.25rem, -0.6790878754rem + 3.1145717464vw, 3rem);
  border-bottom: clamp(0.125rem, -0.0816879867rem + 0.3337041157vw, 0.3125rem) solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1.25rem, -0.5412958843rem + 2.8921023359vw, 2.875rem);
}
.footer .footer-head .footer-logo img {
  filter: invert(1) brightness(20);
  height: clamp(2.25rem, 1.2854560623rem + 1.5572858732vw, 3.125rem);
}
.footer .footer-head .footer-take {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  width: 50%;
}
.footer .footer-head .footer-take .text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  flex-shrink: 0;
}
.footer .footer-head .footer-take .text span {
  font-size: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  text-transform: uppercase;
}
.footer .footer-head .footer-take form {
  width: 100%;
  display: flex;
  height: clamp(2.875rem, 1.9104560623rem + 1.5572858732vw, 3.75rem);
  position: relative;
}
.footer .footer-head .footer-take form::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.footer .footer-head .footer-take form input {
  width: 100%;
  height: 100%;
  outline: none;
  background: none;
  color: #fff;
  padding-left: clamp(0.9375rem, 0.31743604rem + 1.0011123471vw, 1.5rem);
}
.footer .footer-head .footer-take form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-head .footer-take form button {
  width: clamp(3.75rem, 1.6831201335rem + 3.3370411568vw, 5.625rem);
  flex-shrink: 0;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  padding-left: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
  clip-path: polygon(clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) 0, 100% 0, 100% 100%, 0 100%);
  transition: all 0.3s;
}
.footer .footer-head .footer-take form button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
  z-index: -1;
}
.footer .footer-head .footer-take form button:hover {
  color: #fff;
}
.footer .footer-head .footer-take form button:hover::before {
  transform: scaleX(1);
}
.footer .footer-head .footer-take form button i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.footer .footer-content {
  display: flex;
}
.footer .footer-content .footer-info, .footer .footer-content .footer-links {
  width: 50%;
}
.footer .footer-content .footer-info {
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
}
.footer .footer-content .footer-info .company {
  margin-bottom: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  font-size: clamp(1.25rem, 0.9744160178rem + 0.4449388209vw, 1.5rem);
}
.footer .footer-content .footer-info p {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.footer .footer-content .footer-info p i {
  font-size: clamp(1.125rem, 0.8494160178rem + 0.4449388209vw, 1.375rem);
}
.footer .footer-content .footer-links > ul {
  display: flex;
  justify-content: space-between;
}
.footer .footer-content .footer-links > ul > li > a {
  font-size: clamp(1.25rem, 0.9744160178rem + 0.4449388209vw, 1.5rem);
}
.footer .footer-content .footer-links > ul > li ul {
  margin-top: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.footer .footer-content .footer-links > ul > li ul a {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
.footer .footer-bottom {
  margin-top: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
  padding: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
}
.footer .footer-bottom .social-links {
  display: flex;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.footer .footer-bottom .social-links a {
  transition: all 0.2s;
}
.footer .footer-bottom .social-links a i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.footer .footer-bottom .social-links a:hover {
  transform: scale(1.5);
}
.footer .footer-bottom p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.footer .footer-bottom p a {
  transition: all 0.3s;
}
.footer .footer-bottom p a:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .footer .footer-head {
    flex-direction: column;
  }
  .footer .footer-head .footer-logo {
    display: none;
  }
  .footer .footer-head .footer-take {
    align-items: flex-start;
    width: 100%;
    flex-direction: column;
  }
  .footer .footer-content {
    flex-direction: column;
  }
  .footer .footer-content .footer-info {
    width: 100%;
  }
  .footer .footer-content .footer-links {
    width: 100%;
    display: none;
  }
}

.index-hero {
  position: relative;
  height: 100vh;
}
.index-hero .hero-swiper {
  height: 100%;
}
.index-hero .swiper-slide {
  display: flex;
  align-items: center;
}
.index-hero .swiper-slide.swiper-slide-active .hero-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.index-hero .hero-content {
  opacity: 0;
  transform: translateY(20%);
  transition: all 0.8s ease;
}
.index-hero .hero-content .title {
  font-size: clamp(1.5rem, -0.2912958843rem + 2.8921023359vw, 3.125rem);
  font-weight: normal;
  color: #fff;
  line-height: 1.3;
  margin-bottom: clamp(1.875rem, -2.258759733rem + 6.6740823137vw, 5.625rem);
  letter-spacing: -1px;
}
.index-hero .hero-content .hero-buttons {
  display: flex;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.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);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 10;
}
.index-hero .hero-pagination-container .hero-pagination {
  position: static;
  display: flex;
  align-items: flex-end;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-hero .hero-pagination-container .hero-pagination .swiper-pagination-bullet {
  width: clamp(0.625rem, 0.3494160178rem + 0.4449388209vw, 0.875rem);
  height: clamp(0.625rem, 0.3494160178rem + 0.4449388209vw, 0.875rem);
  border-radius: 0;
  background: rgb(255, 255, 255);
  opacity: 1;
  transition: all 0.3s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.index-hero .hero-pagination-container .hero-pagination .swiper-pagination-bullet-active {
  height: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem)), 0 100%);
}
.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(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  }
  .index-hero .control-btn {
    display: none;
  }
  .index-hero .hero-pagination-container .explore {
    display: none;
  }
}

.page-hero {
  position: relative;
  height: clamp(25rem, 18.1104004449rem + 11.1234705228vw, 31.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: clamp(6.25rem, 3.494160178rem + 4.4493882091vw, 8.75rem);
}
.page-hero.null {
  height: clamp(6.875rem, 4.8081201335rem + 3.3370411568vw, 8.75rem);
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding-top: 0;
}
.page-hero .page-hero-content {
  text-align: center;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  margin: auto 0;
}
.page-hero .page-hero-content .section-title {
  color: inherit;
}
.page-hero .hero-pagination-container {
  margin-bottom: clamp(0.625rem, -1.4418798665rem + 3.3370411568vw, 2.5rem);
  display: flex;
  justify-content: flex-end;
}
.page-hero .hero-pagination-container.solution-nav {
  justify-content: space-between;
}
.page-hero .hero-pagination-container.solution-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -6.2645995551rem + 11.1234705228vw, 6.875rem);
}
.page-hero .hero-pagination-container.solution-nav ul li.active a::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skewX(-10deg);
  content: "";
  width: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
  height: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
  background: #fff;
}
.page-hero .hero-pagination-container.solution-nav ul li.active a:hover {
  transform: scale(1);
}
.page-hero .hero-pagination-container.solution-nav ul li a {
  position: relative;
  color: #fff;
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  padding: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem) 0;
  display: block;
  transition: all 0.3s;
}
.page-hero .hero-pagination-container.solution-nav ul li a:hover {
  transform: scale(1.1);
}
.page-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;
}
.page-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) {
  .page-hero {
    height: 200px;
    margin-top: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  }
  .page-hero.null {
    height: 0;
  }
  .page-hero .hero-pagination-container .explore {
    display: none;
  }
}

.index-product {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  background: #ebedf1;
  position: relative;
}
.index-product .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
}
.index-product .section-head ul {
  display: flex;
  gap: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
.index-product .section-head ul li.active a {
  color: var(--color-primary);
  cursor: pointer;
}
.index-product .section-head ul li.active a::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-top: clamp(0.3125rem, 0.1747080089rem + 0.2224694105vw, 0.4375rem) solid #fff;
  border-left: clamp(0.3125rem, 0.1747080089rem + 0.2224694105vw, 0.4375rem) solid transparent;
  border-right: clamp(0.3125rem, 0.1747080089rem + 0.2224694105vw, 0.4375rem) solid transparent;
}
.index-product .section-head ul li a {
  background: #fff;
  height: clamp(2.125rem, 1.7116240267rem + 0.6674082314vw, 2.5rem);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  text-transform: capitalize;
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #000;
  border-radius: clamp(1.0625rem, 0.8558120133rem + 0.3337041157vw, 1.25rem);
  position: relative;
}
.index-product .swiper-content .swiper-tab {
  display: none;
}
.index-product .swiper-content .swiper-tab.active {
  display: block;
}
.index-product .swiper-content .swiper-wrapper {
  align-items: stretch;
}
.index-product .swiper-content .swiper-wrapper .swiper-slide {
  height: auto;
}
.index-product .swiper-content .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(1.25rem, 0.0098720801rem + 2.0022246941vw, 2.375rem) clamp(0.9375rem, -0.6471078977rem + 2.5583982202vw, 2.375rem);
  border-radius: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 2;
}
.index-product .swiper-content .item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.index-product .swiper-content .item:hover::after {
  opacity: 1;
}
.index-product .swiper-content .item:hover > img {
  opacity: 1;
  transform: scale(1);
}
.index-product .swiper-content .item:hover .title, .index-product .swiper-content .item:hover h3 {
  color: #fff;
}
.index-product .swiper-content .item .title {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  font-size: clamp(1.125rem, 0.2982480534rem + 1.3348164627vw, 1.875rem);
  color: #000;
  transition: all 0.3s;
  height: calc(clamp(1.125rem, 0.2982480534rem + 1.3348164627vw, 1.875rem) * 1.2 * 2);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.index-product .swiper-content .item .title i {
  font-size: clamp(1.5rem, 0.2598720801rem + 2.0022246941vw, 2.625rem);
}
.index-product .swiper-content .item .img {
  padding-top: 100%;
  position: relative;
  z-index: 2;
}
.index-product .swiper-content .item h3 {
  font-weight: normal;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.index-product .swiper-content .item > img {
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.3s;
}
.index-product .swiper-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(1.25rem, -0.2657119021rem + 2.447163515vw, 2.625rem);
}
.index-product .swiper-foot .product-buttons {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
@media screen and (max-width: 991px) {
  .index-product .section-head {
    flex-direction: column;
  }
}

.swiper-control-btns {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
.swiper-control-btns .swiper-button-prev, .swiper-control-btns .swiper-button-next {
  position: static;
  margin: 0;
  width: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-primary);
  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;
}
.swiper-control-btns .swiper-button-prev::after, .swiper-control-btns .swiper-button-next::after {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
}
.swiper-control-btns .swiper-button-next {
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  color: #fff;
}

.index-about {
  width: 100%;
  overflow: hidden;
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  position: relative;
  z-index: 2;
}
.index-about > img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
}
.index-about .about-content {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.index-about .about-content .left {
  width: 33.33%;
}
.index-about .about-content .left .section-title {
  margin-bottom: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.index-about .about-content .left p {
  line-height: 1.6;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.index-about .about-content .left .btn-primary {
  margin-top: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
}
.index-about .about-content .right {
  width: 66.66%;
}
.index-about .about-content .right .btn-vr {
  margin: 0 auto;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  text-shadow: 0 0 4px rgb(0, 0, 0), 0 0 4px rgb(0, 0, 0), 0 0 4px rgb(0, 0, 0);
}
.index-about .about-content .right .btn-vr i {
  width: clamp(3.125rem, 0.369160178rem + 4.4493882091vw, 5.625rem);
  height: clamp(3.125rem, 0.369160178rem + 4.4493882091vw, 5.625rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-size: clamp(1.875rem, 1.1860400445rem + 1.1123470523vw, 2.5rem);
  color: var(--color-primary);
  text-shadow: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}
.index-about .about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9375rem, -1.4738598443rem + 3.893214683vw, 3.125rem);
  margin-top: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.index-about .about-cards .card {
  background: #ebedf1;
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) clamp(0.9375rem, -0.7848998888rem + 2.7808676307vw, 2.5rem);
  clip-path: polygon(0 0, 100% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  transition: all 0.3s;
}
.index-about .about-cards .card:hover {
  clip-path: polygon(0 0, calc(100% - clamp(1.5625rem, -0.1598998888rem + 2.7808676307vw, 3.125rem)) 0, 100% clamp(1.5625rem, -0.1598998888rem + 2.7808676307vw, 3.125rem), 100% 100%, clamp(1.5625rem, -0.1598998888rem + 2.7808676307vw, 3.125rem) 100%, 0 calc(100% - clamp(1.5625rem, -0.1598998888rem + 2.7808676307vw, 3.125rem)));
}
.index-about .about-cards .card:hover p {
  color: var(--color-primary);
}
.index-about .about-cards .card .head {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
}
.index-about .about-cards .card .head .number {
  font-size: clamp(1.5rem, -0.9802558398rem + 4.0044493882vw, 3.75rem);
  line-height: 1.2;
}
.index-about .about-cards .card .head i {
  font-size: clamp(1.875rem, 0.0837041157rem + 2.8921023359vw, 3.5rem);
}
.index-about .about-cards .card p {
  line-height: 1.8;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
@media screen and (max-width: 991px) {
  .index-about {
    grid-template-columns: repeat(2, 1fr);
  }
  .index-about .about-content {
    flex-direction: column;
  }
  .index-about .about-content .left, .index-about .about-content .right {
    width: 100%;
  }
  .index-about .about-content .btn-vr {
    border: 1px solid #dedede;
  }
  .index-about .about-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.index-layout {
  padding: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem) 0;
  background-image: linear-gradient(to right, #011549, #008ae3, #5fa7dc);
  width: 100%;
  overflow: hidden;
}
.index-layout .global-layout {
  height: clamp(25rem, 7.0870411568rem + 28.9210233593vw, 41.25rem);
  position: relative;
}
.index-layout .global-layout ul {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.index-layout .global-layout ul li {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #fff;
  border-radius: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  padding: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  line-height: 1.6;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  width: clamp(22.5rem, 18.366240267rem + 6.6740823137vw, 26.25rem);
}
.index-layout .global-layout ul li:nth-child(1) {
  right: 64%;
  top: 50%;
}
.index-layout .global-layout ul li:nth-child(2) {
  left: 60%;
  top: 20%;
}
.index-layout .global-layout ul li:nth-child(3) {
  left: 61%;
  top: 60%;
}
.index-layout .swiper {
  margin-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.index-layout .swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.index-layout .swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.index-layout .swiper .flag {
  width: clamp(2.125rem, 1.8494160178rem + 0.4449388209vw, 2.375rem);
  height: clamp(2.125rem, 1.8494160178rem + 0.4449388209vw, 2.375rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  padding: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  flex-shrink: 0;
}
.index-layout .swiper .flag img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.index-layout .swiper .country {
  color: #fff;
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  text-transform: capitalize;
}
@media screen and (max-width: 991px) {
  .index-layout .global-layout ul {
    display: none;
  }
}

.index-why {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  background: #ebedf1;
}
.index-why.about-why {
  background: #fff;
}
.index-why.about-why .right ul li {
  background: #ebecf0;
}
.index-why.about-why.product-advantages {
  background: none;
}
.index-why.about-why.product-advantages ul p {
  max-height: inherit;
}
.index-why .container {
  display: flex;
  gap: 20px;
}
.index-why .left {
  width: 25.625%;
}
.index-why .left .section-title {
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-why .right {
  width: 74.375%;
}
.index-why ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.index-why ul li {
  display: flex;
  align-items: center;
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding: clamp(0.9375rem, -0.3715239155rem + 2.1134593993vw, 2.125rem) clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem);
  background: #fff;
  position: relative;
  z-index: 2;
}
.index-why ul li::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.index-why ul li.active {
  color: #fff;
  align-items: flex-start;
}
.index-why ul li.active::after {
  opacity: 1;
}
.index-why ul li.active .ico i {
  -webkit-text-fill-color: #fff;
}
.index-why ul li.active p {
  margin-top: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  visibility: visible;
  display: block;
}
.index-why ul li .ico {
  width: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
  flex-shrink: 0;
}
.index-why ul li .ico i {
  font-size: clamp(1.5rem, 0.3976640712rem + 1.7797552836vw, 2.5rem);
  /* 设置背景为线性渐变 */
  background: linear-gradient(to right, var(--color-second), var(--color-primary));
  /* 将背景裁剪到文字形状 */
  -webkit-background-clip: text;
  background-clip: text;
  /* 设置文字颜色为透明以显示背景 */
  -webkit-text-fill-color: transparent;
  transition: all 0.3s;
}
.index-why ul li h3 {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.index-why ul li p {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  line-height: 1.6;
  transition: all 0.3s;
  display: none;
  visibility: hidden;
  overflow: auto;
  max-height: clamp(5rem, 4.3110400445rem + 1.1123470523vw, 5.625rem);
}
@media screen and (max-width: 991px) {
  .index-why .container {
    flex-direction: column;
  }
  .index-why .left, .index-why .right {
    width: 100%;
  }
}

.index-solution {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
.index-solution > img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.index-solution > img.active {
  position: static;
  opacity: 1;
}
.index-solution .title {
  position: absolute;
  z-index: 1;
  top: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem);
  left: 0;
  right: 0;
}
.index-solution .tab-category {
  position: absolute;
  bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  left: 0;
  right: 0;
  z-index: 2;
}
.index-solution .tab-category ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.index-solution .tab-category ul li {
  font-size: clamp(1.125rem, 0.2982480534rem + 1.3348164627vw, 1.875rem);
  color: #fff;
  opacity: 0.6;
  cursor: pointer;
}
.index-solution .tab-category ul li.active {
  opacity: 1;
}
.index-solution .tab-category ul li a {
  font-size: inherit;
  color: inherit;
}
.index-solution .tabs {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.index-solution .tabs .content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.index-solution .tabs .content.active {
  visibility: visible;
}
.index-solution .tabs .content.active ul {
  opacity: 1;
  transform: translateY(0);
}
.index-solution .tabs .content ul {
  width: 100%;
  height: 100%;
  position: relative;
  opacity: 0;
  transform: translateY(8%);
  transition: all 0.5s ease;
}
.index-solution .tabs .content ul li {
  position: absolute;
  width: 0;
  height: 0;
}
.index-solution .tabs .content ul li a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  padding: 0 clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  align-items: center;
  justify-content: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  white-space: nowrap;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.7);
  border-radius: clamp(1.25rem, 0.9055200222rem + 0.5561735261vw, 1.5625rem);
  overflow: hidden;
  transition: all 0.3s;
}
.index-solution .tabs .content ul li a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
  z-index: -1;
}
.index-solution .tabs .content ul li a:hover {
  color: #fff;
}
.index-solution .tabs .content ul li a:hover::before {
  background: #fff;
}
.index-solution .tabs .content ul li a:hover::after {
  transform: scaleX(1);
}
.index-solution .tabs .content ul li a::before {
  content: "";
  width: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  height: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .index-solution {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
    padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) 0;
  }
  .index-solution .title {
    position: static;
  }
  .index-solution .title > * {
    color: #000 !important;
  }
  .index-solution .tabs {
    order: 2;
    position: static;
    padding: 0 10px;
  }
  .index-solution .tabs .content {
    position: static;
    display: none;
  }
  .index-solution .tabs .content.active {
    display: block;
  }
  .index-solution .tabs .content ul {
    display: flex;
    flex-direction: column;
    gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  }
  .index-solution .tabs .content ul li {
    position: static;
    width: auto;
    height: auto;
  }
  .index-solution .tabs .content ul li a {
    position: static;
    transform: translate(0);
    background: rgba(255, 255, 255, 0.85);
  }
  .index-solution .tabs .content ul li a:hover {
    color: var(--color-primary);
  }
  .index-solution .tabs .content ul li a::after {
    display: none;
  }
  .index-solution .tab-category {
    position: static;
    align-items: flex-start;
  }
  .index-solution .tab-category ul li {
    opacity: 0.5;
    color: #000;
  }
  .index-solution .tab-category .btn-primary.white {
    background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
    color: #fff;
  }
  .index-solution > img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.index-news {
  padding: clamp(1.875rem, -0.880839822rem + 4.4493882091vw, 4.375rem) 0;
  background: #ebedf1;
  width: 100%;
  overflow: hidden;
}
.index-news.about-parner .section-title {
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-news.about-parner .swiper-partner {
  margin-top: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
.index-news .swiper-news {
  max-width: 1890px;
  margin: 0 auto;
  margin-top: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  padding-left: clamp(1.25rem, -7.7064794216rem + 14.4605116796vw, 9.375rem);
}
.index-news .swiper-news .item {
  padding: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  background: #fff;
  border-radius: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  overflow: hidden;
  color: var(--color-primary);
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  height: 100%;
}
.index-news .swiper-news .item:hover {
  color: #fff;
}
.index-news .swiper-news .item:hover .category::before {
  background: #fff;
}
.index-news .swiper-news .item:hover .img {
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
}
.index-news .swiper-news .item:hover .img::after {
  opacity: 1;
}
.index-news .swiper-news .item:hover .sub-ico {
  opacity: 1;
  transform: rotate(45deg) translate(70%, 0);
}
.index-news .swiper-news .item:hover .sub-ico::after {
  opacity: 1;
  transform: translateX(clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem));
}
.index-news .swiper-news .item:hover .sub-ico i {
  opacity: 1;
  transform: rotate(-45deg);
}
.index-news .swiper-news .category {
  padding-bottom: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
  border-bottom: 1px solid #b3bccc;
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.index-news .swiper-news .category::before {
  content: "";
  width: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
  height: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
  background: var(--color-primary);
  flex-shrink: 0;
  transition: all 0.3s;
}
.index-news .swiper-news .title {
  display: block;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  height: clamp(4.375rem, 3.4104560623rem + 1.5572858732vw, 5.25rem);
}
.index-news .swiper-news p {
  width: calc(100% - clamp(5.625rem, 3.5581201335rem + 3.3370411568vw, 7.5rem));
  line-height: 1.4;
  height: clamp(3.75rem, 3.1988320356rem + 0.8898776418vw, 4.25rem);
  pointer-events: none;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.index-news .swiper-news .img {
  display: block;
  width: clamp(5rem, 3.622080089rem + 2.2246941046vw, 6.25rem);
  height: clamp(3rem, 2.1732480534rem + 1.3348164627vw, 3.75rem);
  border-radius: clamp(0.1875rem, 0.1186040044rem + 0.1112347052vw, 0.25rem);
  position: absolute;
  right: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  overflow: hidden;
  z-index: -1;
  transition: all 0.5s;
}
.index-news .swiper-news .img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  opacity: 0;
}
.index-news .swiper-news .sub-ico {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(7.5rem, 6.122080089rem + 2.2246941046vw, 8.75rem);
  height: clamp(7.5rem, 6.122080089rem + 2.2246941046vw, 8.75rem);
  background: #ebedf1;
  display: flex;
  align-items: center;
  color: #fff;
  transform: rotate(45deg) translate(120%, 0);
  padding-left: clamp(0.875rem, -0.0895439377rem + 1.5572858732vw, 1.75rem);
  transition: all 0.3s;
  opacity: 1;
  pointer-events: none;
}
.index-news .swiper-news .sub-ico::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.index-news .swiper-news .sub-ico i {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
  transform: rotate(-45deg);
  opacity: 0;
}
.index-news .swiper-news .swiper-control-btns {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-news .swiper-partner, .index-news .swiper-company {
  margin-top: clamp(1.25rem, -2.0570077864rem + 5.3392658509vw, 4.25rem);
}
.index-news .swiper-partner .swiper-wrapper, .index-news .swiper-company .swiper-wrapper {
  transition-duration: 0;
  transition-timing-function: linear;
}
.index-news .swiper-partner .swiper-slide, .index-news .swiper-company .swiper-slide {
  position: relative;
}
.index-news .swiper-partner .swiper-slide:hover::after, .index-news .swiper-partner .swiper-slide:hover::before, .index-news .swiper-company .swiper-slide:hover::after, .index-news .swiper-company .swiper-slide:hover::before {
  opacity: 1;
  transform: scale(1);
}
.index-news .swiper-partner .swiper-slide:hover .img, .index-news .swiper-company .swiper-slide:hover .img {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem)) 0, 100% clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem), 100% 100%, clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem) 100%, 0 calc(100% - clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem)));
}
.index-news .swiper-partner .swiper-slide::after, .index-news .swiper-partner .swiper-slide::before, .index-news .swiper-company .swiper-slide::after, .index-news .swiper-company .swiper-slide::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  z-index: 3;
  transition: all 0.3s;
}
.index-news .swiper-partner .swiper-slide::after, .index-news .swiper-company .swiper-slide::after {
  right: 0;
  top: 0;
  border-top: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) solid var(--color-second);
  border-left: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) solid transparent;
  border-right: 0;
  transform: scale(0.3);
  opacity: 0;
}
.index-news .swiper-partner .swiper-slide::before, .index-news .swiper-company .swiper-slide::before {
  left: 0;
  bottom: 0;
  border-bottom: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) solid var(--color-second);
  border-right: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) solid transparent;
  border-left: 0;
  transform: scale(0.3);
  opacity: 0;
}
.index-news .swiper-partner .img, .index-news .swiper-company .img {
  width: 100%;
  background: #fff;
  height: clamp(5.625rem, 2.7313681869rem + 4.6718576196vw, 8.25rem);
  border-radius: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  position: relative;
  z-index: 2;
}
.index-news .swiper-partner .img img.g-bg, .index-news .swiper-company .img img.g-bg {
  object-fit: contain;
}

.index-contact {
  padding: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem) 0;
  background-image: linear-gradient(to right, #66aadb, var(--color-second), var(--color-primary));
}
.index-contact p {
  color: #fff;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  line-height: 1.6;
  margin-top: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
}
.index-contact form {
  margin-top: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  display: flex;
  justify-content: space-between;
  gap: clamp(0.5rem, 0.0177280311rem + 0.7786429366vw, 0.9375rem);
}
.index-contact form .group {
  background: #ffffff;
  height: clamp(2.875rem, 1.9104560623rem + 1.5572858732vw, 3.75rem);
  border-radius: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  padding: 0 clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  width: 21.25%;
}
.index-contact form .group:nth-child(3) {
  width: 36.25%;
}
.index-contact form .group:last-child {
  padding: 0;
  width: clamp(12.5rem, 6.988320356rem + 8.8987764182vw, 17.5rem);
  border-radius: 0;
  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)));
}
.index-contact form .group:last-child button {
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
  color: var(--color-primary);
}
.index-contact form .group input {
  height: 100%;
  width: 100%;
  background: none;
  outline: none;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
@media screen and (max-width: 991px) {
  .index-contact form {
    flex-direction: column;
  }
  .index-contact form .group {
    width: 100% !important;
  }
}

.about-block-1 {
  display: flex;
  align-items: center;
  margin-top: clamp(1.875rem, -1.5697997775rem + 5.5617352614vw, 5rem);
}
.about-block-1 .left {
  width: 50%;
  padding-right: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
.about-block-1 .left .mod-content {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
  line-height: 1.8;
}
.about-block-1 .right {
  width: 50%;
}
.about-block-1 .right img {
  clip-path: polygon(0 0, calc(100% - clamp(0.625rem, -2.130839822rem + 4.4493882091vw, 3.125rem)) 0, 100% clamp(0.625rem, -2.130839822rem + 4.4493882091vw, 3.125rem), 100% 100%, clamp(0.625rem, -2.130839822rem + 4.4493882091vw, 3.125rem) 100%, 0 calc(100% - clamp(0.625rem, -2.130839822rem + 4.4493882091vw, 3.125rem)));
}
@media screen and (max-width: 991px) {
  .about-block-1 {
    flex-direction: column;
  }
  .about-block-1 .left {
    padding-right: 0;
    width: 100%;
  }
  .about-block-1 .right {
    width: 100%;
  }
}

.about-culture {
  padding-top: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem);
  padding-bottom: clamp(1.875rem, -1.2942157953rem + 5.1167964405vw, 4.75rem);
  position: relative;
}
.about-culture .culture-content {
  margin-top: clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem);
  display: flex;
}
.about-culture .culture-content .tabs {
  width: 35%;
  padding-top: clamp(0rem, -6.8895995551rem + 11.1234705228vw, 6.25rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
.about-culture .culture-content .tabs li {
  font-size: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  color: #fff;
  opacity: 0.2;
  cursor: pointer;
}
.about-culture .culture-content .tabs li.active {
  opacity: 1;
}
.about-culture .culture-content .contents {
  width: 60%;
  position: relative;
}
.about-culture .culture-content .contents .content {
  padding: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem) clamp(0.625rem, -3.508759733rem + 6.6740823137vw, 4.375rem);
  border-radius: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.5));
  min-height: clamp(12.5rem, 1.4766407119rem + 17.7975528365vw, 22.5rem);
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  visibility: hidden;
  transform: translateY(clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem));
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
  opacity: 0;
}
.about-culture .culture-content .contents .content.active {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}
.about-culture .culture-content .contents .content i {
  font-size: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
}
.about-culture .culture-content .contents .content h3 {
  font-size: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
  margin-bottom: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
  margin-top: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
}
.about-culture .culture-content .contents .content p {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}

.about-history {
  background: #fafafb;
  padding: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem) 0;
  position: relative;
  z-index: 2;
}
.about-history img.g-bg {
  top: auto;
  bottom: 0;
  height: auto;
  object-fit: contain;
}
.about-history .items {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  height: clamp(28.75rem, 17.7266407119rem + 17.7975528365vw, 38.75rem);
  overflow: auto;
  margin-top: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem);
}
.about-history .items::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
.about-history .items::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}
.about-history .items .item {
  padding-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  position: relative;
}
.about-history .items .item::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #afb4c3;
  position: absolute;
  left: 50%;
  top: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  z-index: -1;
}
.about-history .items .item:nth-child(2n-1) {
  padding-left: 50%;
  padding-right: 8.75%;
}
.about-history .items .item:nth-child(2n-1) * {
  padding-left: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.about-history .items .item:nth-child(2n-1) .year::before {
  left: 0;
  transform: translateX(-50%);
}
.about-history .items .item:nth-child(2n) {
  padding-right: 50%;
  padding-left: 8.75%;
  text-align: right;
}
.about-history .items .item:nth-child(2n) * {
  padding-right: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.about-history .items .item:nth-child(2n) .year::before {
  right: 0;
  transform: translateX(50%);
}
.about-history .items .item:hover .year {
  background: linear-gradient(to right, var(--color-second), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 8rpx 6rpx 3rpx rgba(35, 136, 255, 0.2);
}
.about-history .items .item .year {
  font-size: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  color: var(--color-primary);
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  line-height: 1;
  display: inline-block;
  position: relative;
}
.about-history .items .item .year::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  position: absolute;
  top: 50%;
}
.about-history .items .item p {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  line-height: 1.7;
}
@media screen and (max-width: 991px) {
  .about-history .items {
    height: initial;
  }
  .about-history .items .item:nth-child(2n-1), .about-history .items .item:nth-child(2n) {
    padding: 0 !important;
    text-align: left !important;
  }
  .about-history .items .item::after {
    display: none;
  }
  .about-history .items .item .year, .about-history .items .item p {
    padding: 0 !important;
  }
  .about-history .items .item .year::before {
    display: none;
  }
}

.about-honor {
  background: #f2f3f5;
  padding: clamp(1.875rem, -0.880839822rem + 4.4493882091vw, 4.375rem) 0;
  position: relative;
  z-index: 2;
}
.about-honor::after {
  content: "";
  width: 100%;
  height: 35%;
  background: #e4e6ea;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.about-honor .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.about-honor .section-head ul {
  display: flex;
  gap: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
.about-honor .section-head ul li.active a {
  color: var(--color-primary);
}
.about-honor .section-head ul li.active a::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-top: clamp(0.3125rem, 0.1747080089rem + 0.2224694105vw, 0.4375rem) solid #fff;
  border-left: clamp(0.3125rem, 0.1747080089rem + 0.2224694105vw, 0.4375rem) solid transparent;
  border-right: clamp(0.3125rem, 0.1747080089rem + 0.2224694105vw, 0.4375rem) solid transparent;
}
.about-honor .section-head ul li a {
  background: #fff;
  height: clamp(2.125rem, 1.7116240267rem + 0.6674082314vw, 2.5rem);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  text-transform: capitalize;
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #000;
  border-radius: clamp(1.0625rem, 0.8558120133rem + 0.3337041157vw, 1.25rem);
  position: relative;
}
.about-honor .swiper-content .swiper-tab {
  display: none;
}
.about-honor .swiper-content .swiper-tab.activer {
  display: block;
}
.about-honor .swiper-content .item {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-honor .swiper-content .item:hover .img img {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem)) 0, 100% clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem), 100% 100%, clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem) 100%, 0 calc(100% - clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem)));
}
.about-honor .swiper-content .item:hover .img::after, .about-honor .swiper-content .item:hover .img::before {
  opacity: 1;
  transform: scale(1);
}
.about-honor .swiper-content .item:hover .title {
  color: var(--color-primary);
}
.about-honor .swiper-content .item .title {
  text-align: center;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.about-honor .swiper-content .item .img-box {
  padding-top: 140%;
  position: relative;
  z-index: 2;
}
.about-honor .swiper-content .item .img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-height: 100%;
}
.about-honor .swiper-content .item .img::after, .about-honor .swiper-content .item .img::before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  z-index: 3;
  transition: all 0.3s;
}
.about-honor .swiper-content .item .img::after {
  right: 0;
  top: 0;
  border-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) solid var(--color-second);
  border-left: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) solid transparent;
  border-right: 0;
  transform: scale(0.3);
  opacity: 0;
}
.about-honor .swiper-content .item .img::before {
  left: 0;
  bottom: 0;
  border-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) solid var(--color-second);
  border-right: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) solid transparent;
  border-left: 0;
  transform: scale(0.3);
  opacity: 0;
}
.about-honor .swiper-content .item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-honor .swiper-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(1.25rem, -0.2657119021rem + 2.447163515vw, 2.625rem);
}
.about-honor .swiper-foot .honor-index {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #777777;
}
.about-honor .swiper-foot .honor-index .current {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
}
@media screen and (max-width: 991px) {
  .about-honor .section-head {
    flex-direction: column;
  }
  .about-honor .section-head .title {
    text-align: center;
  }
}

.product-content {
  background: #ebedf1;
  padding: clamp(1.875rem, -1.5697997775rem + 5.5617352614vw, 5rem) 0;
}
.product-content .container {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.product-content .left-menu {
  flex-shrink: 0;
  width: clamp(18.75rem, 14.616240267rem + 6.6740823137vw, 22.5rem);
  position: relative;
}
.product-content .left-menu > ul.is-fixed {
  position: fixed;
  z-index: 10;
}
.product-content .left-menu > ul.is-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.product-content .left-menu > ul > li {
  padding: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) 0;
  border-bottom: 1px solid #bdc2cf;
}
.product-content .left-menu > ul > li:first-child {
  padding-top: 0;
}
.product-content .left-menu > ul > li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.product-content .left-menu > ul > li.open .title a i {
  background: linear-gradient(to right, var(--color-second), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-content .left-menu > ul > li.open .title a span {
  background: linear-gradient(to right, var(--color-second), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.product-content .left-menu > ul > li.open .title > i {
  color: var(--color-primary);
  transform: rotate(-180deg);
}
.product-content .left-menu > ul > li.open ul {
  padding-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  display: block;
}
.product-content .left-menu > ul > li .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
}
.product-content .left-menu > ul > li .title a {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  transition: all 0.3s;
}
.product-content .left-menu > ul > li .title a i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.product-content .left-menu > ul > li .title a span {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.product-content .left-menu > ul > li .title > i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #231815;
  transition: all 0.3s;
  cursor: pointer;
}
.product-content .left-menu > ul > li ul {
  display: none;
}
.product-content .left-menu > ul > li ul li.active a {
  color: var(--color-primary);
}
.product-content .left-menu > ul > li ul li.active a::before {
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e68b";
  background: var(--color-second);
  border-color: var(--color-second);
}
.product-content .left-menu > ul > li ul li:hover a {
  color: var(--color-second);
}
.product-content .left-menu > ul > li ul li:hover a::before {
  border-color: var(--color-second);
}
.product-content .left-menu > ul > li ul li a {
  display: block;
  padding: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem) 0;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  transition: all 0.3s;
}
.product-content .left-menu > ul > li ul li a::before {
  content: "";
  width: clamp(0.75rem, 0.4744160178rem + 0.4449388209vw, 1rem);
  height: clamp(0.75rem, 0.4744160178rem + 0.4449388209vw, 1rem);
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
}
@media screen and (max-width: 991px) {
  .product-content .container {
    flex-direction: column;
  }
  .product-content .left-menu {
    width: 100%;
  }
}

.product-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) clamp(0.625rem, -0.6151279199rem + 2.0022246941vw, 1.75rem);
}
.product-list .list-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(1.25rem, 0.0098720801rem + 2.0022246941vw, 2.375rem) clamp(0.9375rem, -0.6471078977rem + 2.5583982202vw, 2.375rem);
  border-radius: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 2;
}
.product-list .list-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.product-list .list-item:hover::after {
  opacity: 1;
}
.product-list .list-item:hover > img {
  opacity: 1;
  transform: scale(1);
}
.product-list .list-item:hover .title, .product-list .list-item:hover h3 {
  color: #fff;
}
.product-list .list-item .title {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  font-size: clamp(1.125rem, 0.2982480534rem + 1.3348164627vw, 1.875rem);
  color: #000;
  transition: all 0.3s;
}
.product-list .list-item .title i {
  font-size: clamp(1.5rem, 0.2598720801rem + 2.0022246941vw, 2.625rem);
}
.product-list .list-item .img {
  padding-top: 100%;
  position: relative;
  z-index: 2;
}
.product-list .list-item h3 {
  font-weight: normal;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-list .list-item > img {
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .product-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.product-detail .g-crumbs {
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: clamp(1.25rem, -0.5412958843rem + 2.8921023359vw, 2.875rem) 0;
}
.product-detail .product-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-detail .product-detail-header .product-detail-img, .product-detail .product-detail-header .product-detail-info {
  width: 50%;
}
.product-detail .product-detail-header .product-detail-img {
  display: flex;
  justify-content: space-between;
  gap: clamp(0.625rem, -1.4418798665rem + 3.3370411568vw, 2.5rem);
}
.product-detail .product-detail-header .thumbnail {
  width: clamp(5rem, 1.5552002225rem + 5.5617352614vw, 8.125rem);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(0.625rem, -2.130839822rem + 4.4493882091vw, 3.125rem);
}
.product-detail .product-detail-header .swiper-thumb {
  width: 100%;
  height: clamp(16.25rem, 4.5376807564rem + 18.9098998888vw, 26.875rem);
}
.product-detail .product-detail-header .swiper-thumb .swiper-slide {
  background: #fff;
  aspect-ratio: 1/1;
  border-radius: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  overflow: hidden;
  height: clamp(6.25rem, 4.1831201335rem + 3.3370411568vw, 8.125rem);
  z-index: 2;
  cursor: pointer;
}
.product-detail .product-detail-header .swiper-thumb .swiper-slide.swiper-slide-thumb-active::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-primary);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
}
.product-detail .product-detail-header .swiper-thumb .swiper-slide img {
  object-fit: contain;
}
.product-detail .product-detail-header .thumb-pagination {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
}
.product-detail .product-detail-header .thumb-pagination .thumb-prev, .product-detail .product-detail-header .thumb-pagination .thumb-next {
  position: static;
  margin: 0;
  width: clamp(2rem, 0.7598720801rem + 2.0022246941vw, 3.125rem);
  height: clamp(2rem, 0.7598720801rem + 2.0022246941vw, 3.125rem);
  border-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  transition: all 0.3s;
}
.product-detail .product-detail-header .thumb-pagination .thumb-prev::after, .product-detail .product-detail-header .thumb-pagination .thumb-next::after {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
.product-detail .product-detail-header .thumb-pagination .thumb-prev:hover, .product-detail .product-detail-header .thumb-pagination .thumb-next:hover {
  background: var(--color-primary);
}
.product-detail .product-detail-header .swiper-detail {
  width: 100%;
  aspect-ratio: 61/52;
  background: #fff;
  border-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.product-detail .product-detail-header .swiper-detail .swiper-slide {
  position: relative;
  z-index: 2;
}
.product-detail .product-detail-header .swiper-detail .swiper-slide img.g-bg {
  object-fit: cover;
}
.product-detail .product-detail-header .product-detail-info {
  padding-left: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
}
.product-detail .product-detail-header .product-detail-info > i {
  font-size: clamp(1.5rem, -0.9802558398rem + 4.0044493882vw, 3.75rem);
}
.product-detail .product-detail-header .product-detail-info .g-content {
  color: #333;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
.product-detail .product-detail-header .product-detail-info .product-buttons {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: flex;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
@media screen and (max-width: 991px) {
  .product-detail .product-detail-header {
    flex-direction: column;
  }
  .product-detail .product-detail-header .product-detail-img, .product-detail .product-detail-header .product-detail-info {
    width: 100%;
  }
  .product-detail .product-detail-header .product-detail-img {
    align-items: center;
  }
  .product-detail .product-detail-header .product-detail-info {
    padding-left: 0;
    margin-top: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  }
}
.product-detail .product-cards {
  margin-top: clamp(1.25rem, -2.0570077864rem + 5.3392658509vw, 4.25rem);
  display: flex;
  justify-content: space-between;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.product-detail .product-cards .product-card {
  width: 50%;
  background: #fff;
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  align-items: flex-start;
}
.product-detail .product-cards .product-card i {
  font-size: clamp(1.5rem, -0.2912958843rem + 2.8921023359vw, 3.125rem);
}
.product-detail .product-cards .product-card h2 {
  font-size: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
}
.product-detail .product-cards .product-card p {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
  .product-detail .product-cards {
    flex-direction: column;
  }
  .product-detail .product-cards .product-card {
    width: 100%;
  }
}

.section-title2 {
  font-size: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
}

.product-quote .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.product-quote .fz-18 {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.product-quote .fz-16 {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #9f9f9f;
}
.product-quote form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.product-quote form .form-item {
  height: clamp(2.875rem, 1.9104560623rem + 1.5572858732vw, 3.75rem);
  background: #fff;
  padding: 0 clamp(1rem, 0.5866240267rem + 0.6674082314vw, 1.375rem);
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  width: calc((100% - clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem)) / 2);
  outline: none;
}
.product-quote form .form-item.name, .product-quote form .form-item.email, .product-quote form .form-item.phone {
  width: calc((100% - clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem)) / 3);
}
.product-quote form textarea.form-item {
  padding: clamp(1rem, 0.5866240267rem + 0.6674082314vw, 1.375rem);
  width: 100%;
  height: auto;
}
.product-quote form p {
  width: 100%;
}
.product-quote .btn-primary {
  margin-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding: 0 clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
@media screen and (max-width: 991px) {
  .product-quote form {
    flex-direction: column;
  }
  .product-quote form .form-item {
    width: 100% !important;
  }
}

.product-related {
  padding: clamp(1.875rem, -0.880839822rem + 4.4493882091vw, 4.375rem) 0;
}
.product-related .product-list {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
}
@media screen and (max-width: 991px) {
  .product-related .product-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.solution-content {
  background: #ebedf1;
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) clamp(1.25rem, 0.8366240267rem + 0.6674082314vw, 1.625rem);
}
.solution-list .list-item {
  position: relative;
}
.solution-list .list-item a {
  display: block;
  border-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 0 100%);
  background: #fff;
  transition: all 0.3s;
}
.solution-list .list-item:hover a {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - clamp(1.875rem, -2.9477196885rem + 7.786429366vw, 6.25rem)), calc(100% - clamp(1.875rem, -2.9477196885rem + 7.786429366vw, 6.25rem)) 100%, 0 100%);
}
.solution-list .list-item:hover .img img {
  transform: scale(1.05);
}
.solution-list .list-item:hover .sub {
  color: #fff;
}
.solution-list .list-item:hover .sub::after {
  opacity: 1;
}
.solution-list .list-item .img {
  position: relative;
  z-index: 2;
  padding-top: 71%;
  border-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  overflow: hidden;
}
.solution-list .list-item .img img {
  transition: all 0.3s;
}
.solution-list .list-item .text {
  padding: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  min-height: clamp(11.25rem, 7.8052002225rem + 5.5617352614vw, 14.375rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.solution-list .list-item .text h3 {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.solution-list .list-item .text p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.solution-list .list-item .sub {
  width: clamp(1.25rem, -2.7459677419rem + 6.4516129032vw, 4.875rem);
  height: clamp(1.25rem, -2.7459677419rem + 6.4516129032vw, 4.875rem);
  border-bottom-right-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  overflow: hidden;
  padding-left: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
  padding-top: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  transition: all 0.3s;
}
.solution-list .list-item .sub::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .solution-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .solution-list .list-item .text {
    min-height: inherit;
  }
  .solution-list .list-item .sub i {
    display: none;
  }
}

.solution-detail .g-crumbs {
  justify-content: flex-start;
  padding: clamp(1.25rem, -0.5412958843rem + 2.8921023359vw, 2.875rem) 0;
}
.solution-detail .block-1 {
  padding-bottom: clamp(2.5rem, 0.4331201335rem + 3.3370411568vw, 4.375rem);
}
.solution-detail .block-1 .container {
  display: flex;
  align-items: center;
}
.solution-detail .block-1 .left {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.solution-detail .block-1 .left .tag {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
}
.solution-detail .block-1 .left .tag span {
  background: #ebecf0;
  padding: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem) clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  border-radius: clamp(1.625rem, 1.3494160178rem + 0.4449388209vw, 1.875rem);
}
.solution-detail .block-1 .left p {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  line-height: 1.6;
}
.solution-detail .block-1 .left .buttons {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: flex;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.solution-detail .block-1 .right {
  padding-left: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.solution-detail .block-1 .right img {
  width: 100%;
  border-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
@media screen and (max-width: 991px) {
  .solution-detail .block-1 .container {
    flex-direction: column;
    gap: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  }
  .solution-detail .block-1 .right {
    padding-left: 0;
  }
}
.solution-detail .block-2 {
  padding: clamp(2.5rem, -9.2123192436rem + 18.9098998888vw, 13.125rem) 0;
}
.solution-detail .block-2 .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
}
.solution-detail .block-2 .cards .card {
  padding: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem) clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  background: #fff;
  border-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  line-height: 1.6;
  clip-path: polygon(0 0, 100% 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.solution-detail .block-2 .cards .card::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  opacity: 0;
  z-index: -1;
  transition: all 0.3s;
}
.solution-detail .block-2 .cards .card:hover {
  color: #fff;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - clamp(1.5625rem, -0.1598998888rem + 2.7808676307vw, 3.125rem)) 0, 100% clamp(1.5625rem, -0.1598998888rem + 2.7808676307vw, 3.125rem), 100% 100%, clamp(1.5625rem, -0.1598998888rem + 2.7808676307vw, 3.125rem) 100%, 0 calc(100% - clamp(1.5625rem, -0.1598998888rem + 2.7808676307vw, 3.125rem)));
}
.solution-detail .block-2 .cards .card:hover::after {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .solution-detail .block-2 .cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.solution-detail .block-3 {
  padding: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem) 0;
}
.solution-detail .block-3 .container {
  display: flex;
  align-items: center;
}
.solution-detail .block-3 .left {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  padding-right: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.solution-detail .block-3 .left p {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  line-height: 1.6;
}
.solution-detail .block-3 .left .buttons {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: flex;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.solution-detail .block-3 .right img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .solution-detail .block-3 .container {
    flex-direction: column;
    gap: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  }
  .solution-detail .block-3 .left {
    padding-right: 0;
  }
}
.solution-detail .block-4 {
  padding: clamp(2.5rem, 0.4331201335rem + 3.3370411568vw, 4.375rem) 0;
}
.solution-detail .block-4 .solution-list {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}

.service-content {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.service-content .head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.service-content .head .left .section-title {
  margin-bottom: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.service-content .head .right {
  width: 56.25%;
  line-height: 1.6;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.service-content .custom-vr {
  position: relative;
}
.service-content .custom-vr img {
  border-radius: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.service-content .custom-vr .btn-vr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(3.125rem, 0.369160178rem + 4.4493882091vw, 5.625rem);
  height: clamp(3.125rem, 0.369160178rem + 4.4493882091vw, 5.625rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--color-primary);
}
.service-content .custom-vr .btn-vr i {
  font-size: clamp(1.875rem, 1.1860400445rem + 1.1123470523vw, 2.5rem);
}
@media screen and (max-width: 991px) {
  .service-content .head {
    flex-direction: column;
  }
  .service-content .head .right {
    width: 100%;
  }
}

.equipment-content {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.equipment-content .nav {
  margin-bottom: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  display: flex;
  gap: clamp(0.9375rem, 0.2485400445rem + 1.1123470523vw, 1.5625rem);
}
.equipment-content .nav li {
  flex: 1;
}
.equipment-content .nav li.active a {
  color: #fff;
  clip-path: polygon(0 0, calc(100% - clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem)) 0, 100% clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem), 100% 100%, clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) 100%, 0 calc(100% - clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem)));
}
.equipment-content .nav li.active a::after {
  opacity: 1;
}
.equipment-content .nav li:hover a {
  clip-path: polygon(0 0, calc(100% - clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem)) 0, 100% clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem), 100% 100%, clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) 100%, 0 calc(100% - clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem)));
}
.equipment-content .nav li a {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100%;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  background: #ebedf0;
  padding: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) 0;
  color: var(--color-primary);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  clip-path: polygon(0 0, 100% 0, 100% 0, 100% 100%, 0% 100%, 0 100%);
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.equipment-content .nav li a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.equipment-content .nav li a i {
  font-size: clamp(1.5rem, 0.6732480534rem + 1.3348164627vw, 2.25rem);
}
@media screen and (max-width: 991px) {
  .equipment-content .nav {
    flex-direction: column;
    gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  }
  .equipment-content .nav li a {
    flex-direction: row;
    padding: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem) clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  }
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.equipment-list .list-item {
  background: #ebedf0;
}
.equipment-list .list-item:hover .img img {
  transform: scale(1.05);
}
.equipment-list .list-item:hover .title {
  color: #fff;
}
.equipment-list .list-item:hover .title::after {
  opacity: 1;
}
.equipment-list .list-item a {
  display: block;
  height: 100%;
}
.equipment-list .list-item .img {
  padding-top: 60%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.equipment-list .list-item .img img {
  transition: all 0.3s;
}
.equipment-list .list-item .title {
  height: clamp(4.375rem, 3.6860400445rem + 1.1123470523vw, 5rem);
  display: flex;
  align-items: center;
  padding: 0 clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  background: #ebedf0;
  position: relative;
  font-weight: normal;
  transition: all 0.3s;
  z-index: 2;
}
.equipment-list .list-item .title::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .equipment-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.workmanship-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.workmanship-list .list-item:hover .img i {
  background: transparent;
  color: #fff;
  box-shadow: 0 0 clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem) rgba(0, 0, 0, 0.2);
}
.workmanship-list .list-item:hover .img i::after {
  opacity: 1;
}
.workmanship-list .list-item:hover .img img {
  transform: scale(1.05);
}
.workmanship-list .list-item:hover .title {
  color: #fff;
}
.workmanship-list .list-item:hover .title::after {
  opacity: 1;
}
.workmanship-list .list-item a {
  display: block;
  height: 100%;
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  overflow: hidden;
}
.workmanship-list .list-item .img {
  padding-top: 60%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.workmanship-list .list-item .img i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(3.125rem, 0.369160178rem + 4.4493882091vw, 5.625rem);
  height: clamp(3.125rem, 0.369160178rem + 4.4493882091vw, 5.625rem);
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--color-primary);
  font-size: clamp(1.5rem, 0.6732480534rem + 1.3348164627vw, 2.25rem);
  transition: all 0.3s;
}
.workmanship-list .list-item .img i::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.workmanship-list .list-item .img img {
  transition: all 0.3s;
}
.workmanship-list .list-item .title {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  padding: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem) clamp(0.9375rem, -0.7848998888rem + 2.7808676307vw, 2.5rem);
  background: #ebedf0;
  position: relative;
  transition: all 0.3s;
  z-index: 2;
}
.workmanship-list .list-item .title i {
  font-size: clamp(1.5rem, -0.0157119021rem + 2.447163515vw, 2.875rem);
}
.workmanship-list .list-item .title h2 {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.workmanship-list .list-item .title::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary));
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .workmanship-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.news-content {
  padding: clamp(2.5rem, -0.9447997775rem + 5.5617352614vw, 5.625rem) 0;
  background: #ebedf1;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.news-list .item {
  padding: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  background: #fff;
  border-radius: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  overflow: hidden;
  color: var(--color-primary);
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
.news-list .item:hover {
  color: #fff;
}
.news-list .item:hover .category::before {
  background: #fff;
}
.news-list .item:hover .img {
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
}
.news-list .item:hover .img::after {
  opacity: 1;
}
.news-list .item:hover .sub-ico {
  opacity: 1;
  transform: rotate(45deg) translate(70%, 0);
}
.news-list .item:hover .sub-ico::after {
  opacity: 1;
  transform: translateX(clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem));
}
.news-list .item:hover .sub-ico i {
  opacity: 1;
  transform: rotate(-45deg);
}
.news-list .category {
  padding-bottom: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
  border-bottom: 1px solid #b3bccc;
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.news-list .category::before {
  content: "";
  width: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
  height: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
  background: var(--color-primary);
  flex-shrink: 0;
  transition: all 0.3s;
}
.news-list .title {
  display: block;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  height: clamp(4.375rem, 3.4104560623rem + 1.5572858732vw, 5.25rem);
}
.news-list p {
  width: calc(100% - clamp(5.625rem, 3.5581201335rem + 3.3370411568vw, 7.5rem));
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  pointer-events: none;
}
.news-list .img {
  display: block;
  width: clamp(5rem, 3.622080089rem + 2.2246941046vw, 6.25rem);
  height: clamp(3rem, 2.1732480534rem + 1.3348164627vw, 3.75rem);
  border-radius: clamp(0.1875rem, 0.1186040044rem + 0.1112347052vw, 0.25rem);
  position: absolute;
  right: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  overflow: hidden;
  z-index: -1;
  transition: all 0.5s;
}
.news-list .img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  opacity: 0;
}
.news-list .sub-ico {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(7.5rem, 6.122080089rem + 2.2246941046vw, 8.75rem);
  height: clamp(7.5rem, 6.122080089rem + 2.2246941046vw, 8.75rem);
  background: #ebedf1;
  display: flex;
  align-items: center;
  color: #fff;
  transform: rotate(45deg) translate(120%, 0);
  padding-left: clamp(0.875rem, -0.0895439377rem + 1.5572858732vw, 1.75rem);
  transition: all 0.3s;
  opacity: 1;
  pointer-events: none;
}
.news-list .sub-ico::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--color-second), var(--color-primary) 30%);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.news-list .sub-ico i {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
  transform: rotate(-45deg);
  opacity: 0;
}
@media screen and (max-width: 991px) {
  .news-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.news-detail {
  padding-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.news-detail .g-crumbs {
  justify-content: flex-start;
  margin-bottom: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.news-detail .news-detail-content {
  background: #fff;
  padding: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem) clamp(0.9375rem, -8.3634593993rem + 15.0166852058vw, 9.375rem);
  border-radius: clamp(0.9375rem, 0.31743604rem + 1.0011123471vw, 1.5rem);
}
.news-detail .news-detail-content h1 {
  font-size: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  font-weight: normal;
  text-align: center;
}
.news-detail .news-detail-content .related {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9375rem, -2.8517797553rem + 6.1179087875vw, 4.375rem);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #666;
  margin: clamp(0.9375rem, 0.31743604rem + 1.0011123471vw, 1.5rem);
}
.news-detail .news-detail-content .related span {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.news-detail .news-detail-content .g-content {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.news-detail .news-detail-content .buttons {
  margin: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}

.page-control {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9375rem, -2.1628197998rem + 5.0055617353vw, 3.75rem);
}
.page-control .page-control-btn {
  padding: clamp(0.625rem, -0.2017519466rem + 1.3348164627vw, 1.375rem) clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  border: 2px solid #dcdfeb;
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  transition: all 0.3s;
}
.page-control .page-control-btn:hover {
  border-color: #dadde8;
  background: #f1f3ff;
}
.page-control .page-control-btn.page-btn-prev i::before {
  transform: rotate(180deg);
}
.page-control .page-control-btn.page-btn-next i::before {
  order: 2;
}
.page-control .page-control-btn i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  color: var(--color-primary);
}
.page-control .page-control-btn i::before {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
@media screen and (max-width: 991px) {
  .page-control {
    grid-template-columns: repeat(1, 1fr);
  }
}

.news-related {
  padding: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem) 0;
}
.news-related .news-list {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}

.contact-content {
  padding-top: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
  position: relative;
  z-index: 2;
  padding-bottom: clamp(10rem, -18.2473581758rem + 45.6062291435vw, 35.625rem);
}
.contact-content img.g-bg {
  object-fit: contain;
  object-position: center bottom;
}
.contact-content .info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.contact-content .info .card {
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  background: #ebedf1;
  padding: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) clamp(0.9375rem, -1.4738598443rem + 3.893214683vw, 3.125rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.contact-content .info .card .company {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  margin-bottom: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.contact-content .info .card p {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.contact-content .info .card p i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: var(--color-primary);
}
@media screen and (max-width: 991px) {
  .contact-content .info {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page-search {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  background: #f1f4f7;
}
.page-search .download-search input {
  background: #fff;
}
.page-search .cplist {
  display: flex;
  flex-direction: column;
}
.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;
}

.download-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;
}
.download-search input {
  width: 100%;
  height: 100%;
  padding-left: 3rem;
  padding-right: 10rem;
  border-radius: 2.5rem;
  border: none;
  outline: none;
  background: #f1f4f7;
  font-size: clamp(0.875rem, 0.4616240267rem + 0.6674082314vw, 1.25rem);
}
.download-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;
}
.download-search button i {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
@media screen and (max-width: 991px) {
  .download-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;
  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);
}

html[lang=ar] .index-about > img {
  transform: translateX(-36%);
}
@media screen and (max-width: 991px) {
  html[lang=ar] .index-about > img {
    transform: translateX(0);
    opacity: 0.3;
  }
}
html[lang=ar] .footer .footer-head .footer-take form input {
  padding-left: 0;
  padding-right: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
html[lang=ar] .footer .footer-head .footer-take form button {
  clip-path: polygon(0 0, calc(100% - clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem)) 0, 100% 100%, 0 100%);
  padding-left: 0;
  padding-right: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
}
html[lang=ar] .product-detail .product-detail-header .product-detail-info {
  padding-left: 0;
  padding-right: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
@media screen and (max-width: 991px) {
  html[lang=ar] .product-detail .product-detail-header .product-detail-info {
    padding-right: 0;
  }
}
html[lang=ar] .index-news .swiper-news .item:hover .img {
  left: 0;
}
html[lang=ar] .index-news .swiper-news .item .img {
  right: auto;
  left: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
html[lang=ar] .index-news .swiper-news .sub-ico {
  justify-content: flex-end;
}
html[lang=ar] .news-list .item:hover .img {
  left: 0;
}
html[lang=ar] .news-list .item .img {
  right: auto;
  left: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
html[lang=ar] .news-list .sub-ico {
  justify-content: flex-end;
}/*# sourceMappingURL=styles.css.map */