@charset "UTF-8";
:root {
  --color-primary: #ff6d48;
  --color-primary-rgb: 255, 30, 0;
  --color-second: #092ca7;
  --color-second-rgb: 9, 4, 135;
  --color-text: #333333;
  --color-text-light: #474747;
  --color-text-gray: #777777;
  --color-placeholder: #9f9f9f;
  --color-border: #dddddd;
  --bg-light: #edf3f8;
}

@font-face {
  font-display: swap;
  font-family: "OUTFIT-REGULAR";
  src: url("../fonts/OUTFIT-REGULAR.OTF");
}
@font-face {
  font-display: swap;
  font-family: "OUTFIT-BOLD";
  src: url("../fonts/OUTFIT-BOLD.TTF");
}
@font-face {
  font-display: swap;
  font-family: "Roboto-Black";
  src: url("../fonts/Roboto-Black.ttf");
}
@font-face {
  font-display: swap;
  font-family: "Roboto-Medium";
  src: url("../fonts/Roboto-Medium.ttf");
}
.fm-bold, .section-title .title, .index-history .left ul li h3, .news-list .text h3, .about-history .items .item .year, .products-img ul, .product-detail .g-editor table tr.firstrow td, .footer .footer-content .left .left-bottom .foot-nav ul li a, .header #navMenu > li.active > a {
  font-family: "OUTFIT-BOLD";
}

*, *::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: "OUTFIT-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);
}

.relative {
  position: relative;
  z-index: 2;
}

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

.d-flex {
  display: flex;
}

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

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

@media screen and (min-width: 992px) {
  .flex-lg-end-between {
    align-items: flex-end;
    justify-content: space-between;
  }
}
.g-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

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

.g-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: clamp(1.875rem, -1.5697997775rem + 5.5617352614vw, 5rem);
  list-style: none;
}
.g-pagination li.page-item:first-child > *, .g-pagination li.page-item:last-child > * {
  position: relative;
  display: block;
}
.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: "\e60f";
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  display: inline-block;
}
.g-pagination li.page-item:first-child > * {
  transform: rotateY(180deg);
}
.g-pagination li.active.disabled {
  opacity: 1;
}
.g-pagination li.active span {
  background-color: var(--color-primary);
  color: #fff;
}
.g-pagination li.disabled {
  opacity: 0.65;
}
.g-pagination li a,
.g-pagination li span {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  margin: 0 8px;
  padding: 8px 16px;
  border-radius: 0.25rem;
  color: #454545;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
}
.g-pagination li a.active:hover {
  color: #fff;
}
.g-pagination li a:hover {
  color: var(--color-primary);
}

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

/* 设置滚动条的样式 */
.h-auto, .about-history .items {
  overflow-y: auto;
  overscroll-behavior: contain;
}
.h-auto::-webkit-scrollbar, .about-history .items::-webkit-scrollbar {
  width: 2px;
}
.h-auto::-webkit-scrollbar-track, .about-history .items::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
.h-auto::-webkit-scrollbar-thumb, .about-history .items::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}

/* 针对特定列数多的表格 */
.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);
}

.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: #fff;
  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%;
  }
}

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

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

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

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

.page-sitemap {
  padding: clamp(1.875rem, -1.5697997775rem + 5.5617352614vw, 5rem) 0;
}
.page-sitemap h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e8e8e8;
  position: relative;
}
.page-sitemap h1::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
}
.page-sitemap .container > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-sitemap .container > ul > li {
  margin-bottom: 24px;
  padding: 20px 24px;
  background: #f8f9fc;
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
  transition: background 0.2s ease;
}
.page-sitemap .container > ul > li:hover {
  background: #f0f2f7;
}
.page-sitemap .container > ul > li > a {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  font-weight: 600;
  color: #1a1a2e;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.page-sitemap .container > ul > li > a:hover {
  color: var(--color-primary);
}
.page-sitemap .container > ul > li > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px 16px;
}
.page-sitemap .container > ul > li > ul > li {
  padding: 6px 0;
}
.page-sitemap .container > ul > li > ul > li a {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #555;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.page-sitemap .container > ul > li > ul > li a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  transform: translateX(4px);
}
.page-sitemap .container > ul > li > ul > li a[href=""] {
  color: #999;
  cursor: default;
  border-bottom: 1px dashed #ddd;
}
.page-sitemap .container > ul > li > ul > li a[href=""]:hover {
  color: #999;
  border-bottom-color: #ddd;
  transform: none;
}
@media (max-width: 768px) {
  .page-sitemap h1 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .page-sitemap .container > ul > li {
    padding: 16px 18px;
  }
  .page-sitemap .container > ul > li > a {
    font-size: 16px;
  }
  .page-sitemap .container > ul > li > ul {
    grid-template-columns: 1fr 1fr;
  }
  .page-sitemap .container > ul > li > ul > li a {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .page-sitemap .container > ul > li {
    padding: 14px 16px;
  }
  .page-sitemap .container > ul > li > ul {
    grid-template-columns: 1fr;
  }
}

/* 全局组件 */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: clamp(2.5rem, 1.4665600667rem + 1.6685205784vw, 3.4375rem);
}
.logo .label {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #000;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
.logo .label img {
  height: clamp(1rem, 0.1043520578rem + 1.446051168vw, 1.8125rem);
}

.header {
  position: fixed;
  top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  left: 0;
  width: 100%;
  z-index: 1000;
}
.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 #navbar {
  height: clamp(4.375rem, 3.6860400445rem + 1.1123470523vw, 5rem);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem) rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding: 0 clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
  border-radius: 40px;
}
.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-primary);
  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 #navMenu {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -2.130839822rem + 4.4493882091vw, 3.125rem);
  margin-left: auto;
  position: relative;
}
.header #navMenu::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, #fff 0%, #fff 100%);
  transition: left 0.3s ease, width 0.3s ease, opacity 0.3s ease;
  opacity: var(--indicator-opacity, 0);
  pointer-events: none;
  display: none;
}
.header #navMenu > li {
  position: relative;
}
.header #navMenu > li > a {
  display: block;
  height: 80px;
  padding: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  display: flex;
  align-items: center;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  transition: all 0.3s;
  color: #000;
}
.header #navMenu > li.active > a {
  color: var(--color-primary);
}
.header #navMenu > li:hover > a {
  color: var(--color-primary);
}
.header #navMenu > li > ul {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 140px;
  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;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.3s;
}
.header #navMenu > li > ul li a {
  display: block;
  padding: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem) clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
  text-align: center;
  position: relative;
  z-index: 2;
}
.header #navMenu > li > ul li a:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.header #navMenu > li > ul li:last-child a {
  border-bottom: none;
}
.header #navMenu > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}
.header .actions {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem);
}
.header .actions > button, .header .actions > a {
  color: #000;
  width: clamp(2rem, 1.7244160178rem + 0.4449388209vw, 2.25rem);
  height: clamp(2rem, 1.7244160178rem + 0.4449388209vw, 2.25rem);
  border: 1px solid #dedede;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.header .actions > button:hover, .header .actions > a:hover {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.header .actions > button i, .header .actions > a i {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
}
.header .actions #langSwitcher {
  position: relative;
}
.header .actions #langSwitcher > button {
  width: auto;
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  transition: color 0.3s;
}
.header .actions #langSwitcher > button i:first-child {
  width: clamp(2rem, 1.7244160178rem + 0.4449388209vw, 2.25rem);
  height: clamp(2rem, 1.7244160178rem + 0.4449388209vw, 2.25rem);
  border-radius: 50%;
  background: #c5c6ca;
  color: #fff;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.header .actions #langSwitcher > button i:last-child {
  font-size: 14px;
  transition: all 0.3s;
}
.header .actions #langSwitcher.active > button {
  color: var(--color-primary);
}
.header .actions #langSwitcher.active > button i:first-child {
  background: var(--color-primary);
  color: #fff;
}
.header .actions #langSwitcher.active > button i:last-child {
  transform: rotateX(180deg);
}
.header .actions #langSwitcher > ul {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  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: translate(-50%, -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);
  cursor: pointer;
  transition: all 0.3s;
}
.header .actions #langSwitcher > ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.header .actions #langSwitcher > ul li a * {
  flex-shrink: 0;
}
.header .actions #langSwitcher > ul li a img {
  width: 24px;
}
.header .actions #langSwitcher > ul li:hover {
  color: var(--color-primary);
}
.header .actions #langSwitcher > ul li.active {
  color: var(--color-primary);
}
.header .actions #langSwitcher.active > ul {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 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 nav {
    height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  }
  .header.transparent {
    background-color: #fff;
  }
  .header.transparent .logo img {
    filter: none;
  }
  .header.transparent #navMenu > li > a {
    color: var(--color-text) !important;
  }
  .header.transparent #hamburger span {
    background-color: var(--color-text) !important;
  }
  .header.scrolled #navMenu > li > a {
    color: #fff !important;
  }
  .header #hamburger {
    display: flex;
  }
  .header #navMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    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 #navMenu.active {
    transform: translateX(0);
  }
  .header #navMenu::after {
    display: none;
  }
  .header #navMenu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .header #navMenu > li > a {
    height: auto;
    padding: clamp(0.75rem, 0.5433120133rem + 0.3337041157vw, 0.9375rem) clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  }
  .header #navMenu > li > ul {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: transparent;
  }
  .header #navMenu > li > ul.active {
    display: block;
    transform: translateX(0);
  }
  .header #navMenu > li > ul li a {
    padding-left: clamp(1.875rem, 0.8415600667rem + 1.6685205784vw, 2.8125rem);
    text-align: left;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header #navMenu > li > ul li a:hover {
    background: none;
    color: rgba(255, 255, 255, 0.75);
  }
  .header #navMenu > li:has(> ul) > a {
    position: relative;
  }
  .header #navMenu > li:has(> ul) > a::after {
    content: "+";
    position: absolute;
    right: clamp(0.9375rem, 0.2485400445rem + 1.1123470523vw, 1.5625rem);
    font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
    transition: transform 0.3s;
  }
  .header #navMenu > 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: calc(100% + 1px);
  left: 0;
  width: 100%;
  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);
  border-bottom: 2px solid var(--color-primary);
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) rgba(0, 0, 0, 0.1);
  padding: 0 clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  border-radius: clamp(1.25rem, 0.7677280311rem + 0.7786429366vw, 1.6875rem);
  margin-left: 70%;
}
.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);
  background: none;
  outline: none;
}
.header #searchPanel form input::placeholder {
  color: #999;
}
.header #searchPanel form button {
  flex-shrink: 0;
  width: clamp(2.125rem, 1.7116240267rem + 0.6674082314vw, 2.5rem);
  height: clamp(2.125rem, 1.7116240267rem + 0.6674082314vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #fff;
  background: var(--color-primary);
}
.header #searchPanel form button[type=submit] i {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
}

html[lang=ar] .header #navMenu {
  margin-left: 0;
  margin-right: auto;
}

.footer {
  position: relative;
  margin: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  background: #000047;
  border-radius: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  padding: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem) clamp(1rem, -1.755839822rem + 4.4493882091vw, 3.5rem);
  color: #fff;
}
.footer .footer-content {
  border-radius: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  padding: clamp(1.25rem, -8.3954393771rem + 15.5728587319vw, 10rem) clamp(1.25rem, -3.5727196885rem + 7.786429366vw, 5.625rem);
  background-image: linear-gradient(to bottom, #16309f, #050c5c);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 992px) {
  .footer .footer-content {
    mask-image: url("../img/foot.svg");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("../img/foot.svg"); /* 兼容 Safari/旧版 Chrome */
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
  }
}
.footer .footer-content .left .section-title {
  margin-bottom: clamp(0.625rem, -1.4418798665rem + 3.3370411568vw, 2.5rem);
}
.footer .footer-content .left .section-title .sub-title {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: clamp(1.0625rem, 0.8558120133rem + 0.3337041157vw, 1.25rem);
  height: clamp(2.125rem, 1.7116240267rem + 0.6674082314vw, 2.5rem);
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.footer .footer-content .left p {
  line-height: 1.8;
}
.footer .footer-content .left .left-bottom {
  margin-top: clamp(0.625rem, -5.5756395996rem + 10.0111234705vw, 6.25rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.footer .footer-content .left .left-bottom .foot-links {
  flex-shrink: 0;
  min-width: 30%;
}
.footer .footer-content .left .left-bottom .foot-links .logo .label {
  color: #fff;
}
.footer .footer-content .left .left-bottom .foot-links .logo .label img {
  filter: invert(1) brightness(10);
}
.footer .footer-content .left .left-bottom .foot-links ul {
  margin-top: clamp(0.9375rem, -0.7848998888rem + 2.7808676307vw, 2.5rem);
  display: flex;
  justify-content: space-between;
}
.footer .footer-content .left .left-bottom .foot-links ul li:hover a {
  transform: scale(1.3);
  color: #fff;
}
.footer .footer-content .left .left-bottom .foot-links ul li a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  transition: transform 0.5s;
}
.footer .footer-content .left .left-bottom .foot-links ul i {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.footer .footer-content .left .left-bottom .foot-nav ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, -0.3523359288rem + 1.7797552836vw, 1.75rem);
}
.footer .footer-content .left .left-bottom .foot-nav ul li a {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.footer .footer-content .left .left-bottom .foot-contact {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -1.4290878754rem + 3.1145717464vw, 2.25rem);
}
.footer .footer-content .left .left-bottom .foot-contact .card {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.footer .footer-content .left .left-bottom .foot-contact .card span {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  opacity: 0.75;
}
.footer .footer-content .right {
  padding-left: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem);
}
.footer .footer-content .right form {
  margin-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
}
.footer .footer-content .right form .group {
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.footer .footer-content .right form .group:nth-last-child(2) {
  grid-column: span 2;
}
.footer .footer-content .right form .group input, .footer .footer-content .right form .group textarea {
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  background: rgba(255, 255, 255, 0.13);
  padding: 0 clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  border: none;
  outline: none;
  color: #fff;
}
.footer .footer-content .right form .group input {
  height: clamp(2.125rem, 0.6781840934rem + 2.3359288098vw, 3.4375rem);
}
.footer .footer-content .right form .group textarea {
  padding: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.footer .footer-content .right form .btn-primary {
  margin-top: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.footer .footer-bottom {
  margin-top: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  padding: 0 clamp(1.25rem, -3.5727196885rem + 7.786429366vw, 5.625rem);
}
.footer .footer-bottom .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.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-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .footer .footer-content .left .left-bottom {
    flex-wrap: wrap;
  }
  .footer .footer-content .left .left-bottom .foot-links {
    width: 100%;
  }
  .footer .footer-content .left .left-bottom .foot-links ul {
    justify-content: flex-start;
    gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  }
  .footer .footer-content .left .left-bottom .foot-contact {
    width: 100%;
    max-width: 100%;
  }
  .footer .footer-content .right {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer .footer-content .right form {
    grid-template-columns: 1fr;
  }
  .footer .footer-content .right form .group:nth-last-child(2) {
    grid-column: span 1;
  }
}

.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;
  border-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  background-image: linear-gradient(to bottom, var(--color-second), var(--color-primary));
}
.suspend ul li {
  position: relative;
}
.suspend ul li:hover .phone,
.suspend ul li:hover .wechat {
  visibility: visible;
}
.suspend ul li.go-top {
  transition: all 0.3s;
  opacity: 1;
  pointer-events: auto;
}
.suspend ul li > a, .suspend ul li > button {
  width: clamp(3.125rem, 1.0581201335rem + 3.3370411568vw, 5rem);
  height: clamp(3.125rem, 1.0581201335rem + 3.3370411568vw, 5rem);
  border: none;
  padding: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.1s;
  position: relative;
  font-size: clamp(0.875rem, 0.8061040044rem + 0.1112347052vw, 0.9375rem);
  font-weight: bold;
}
.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);
  font-weight: normal;
}
.suspend ul li .phone,
.suspend ul li .wechat {
  position: absolute;
  right: calc(100% + 4px);
  top: 50%;
  transform: translateY(-50%);
  min-height: clamp(3.125rem, 1.747080089rem + 2.2246941046vw, 4.375rem);
  border-radius: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  background-image: linear-gradient(to bottom, var(--color-second), var(--color-primary));
  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);
  font-family: "Montserrat";
  font-weight: bold;
}
.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;
  }
}

.btn-primary.big a, .btn-primary.big button, .btn-primary.big span {
  height: clamp(2.5rem, 1.5354560623rem + 1.5572858732vw, 3.375rem);
  border-radius: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
  padding-right: clamp(0.125rem, 0.125rem + 0vw, 0.125rem);
  padding-left: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.btn-primary.big a i, .btn-primary.big button i, .btn-primary.big span i {
  width: clamp(2.25rem, 1.2854560623rem + 1.5572858732vw, 3.125rem);
  height: clamp(2.25rem, 1.2854560623rem + 1.5572858732vw, 3.125rem);
}
.btn-primary.white a, .btn-primary.white button, .btn-primary.white span {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary.white a i, .btn-primary.white button i, .btn-primary.white span i {
  background: #fff;
  color: var(--color-primary);
}
.btn-primary a, .btn-primary button, .btn-primary span {
  padding-left: clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem);
  padding-right: clamp(0.25rem, 0.1811040044rem + 0.1112347052vw, 0.3125rem);
  height: clamp(2.5rem, 2.0866240267rem + 0.6674082314vw, 2.875rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  background: #fff;
  border-radius: clamp(1.25rem, 1.0433120133rem + 0.3337041157vw, 1.4375rem);
  color: #05163b;
  overflow: hidden;
  position: relative;
  z-index: 2;
  transition: all 0.5s;
}
.btn-primary a:hover, .btn-primary button:hover, .btn-primary span:hover {
  color: #fff;
}
.btn-primary a:hover i, .btn-primary button:hover i, .btn-primary span:hover i {
  transform: rotate(45deg);
}
.btn-primary a:hover i::after, .btn-primary button:hover i::after, .btn-primary span:hover i::after {
  transform: scale(10);
}
.btn-primary a i, .btn-primary button i, .btn-primary span i {
  width: clamp(2.125rem, 1.7116240267rem + 0.6674082314vw, 2.5rem);
  height: clamp(2.125rem, 1.7116240267rem + 0.6674082314vw, 2.5rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  transition: all 0.3s;
  position: relative;
  z-index: -1;
}
.btn-primary a i::after, .btn-primary button i::after, .btn-primary span i::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.5s ease-in;
  z-index: -1;
}

.page-crumbs {
  padding: clamp(0.9375rem, 0.31743604rem + 1.0011123471vw, 1.5rem) 0;
}
.page-crumbs .container {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
  color: rgba(0, 0, 0, 0.37);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
.page-crumbs a, .page-crumbs span {
  color: inherit;
  display: flex;
  align-items: center;
  gap: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
}
.page-crumbs a i, .page-crumbs span i {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.page-crumbs i {
  font-size: clamp(0.75rem, 0.6122080089rem + 0.2224694105vw, 0.875rem);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(1.25rem, 0.2854560623rem + 1.5572858732vw, 2.125rem);
}
.section-head a.rel-more {
  color: var(--color-primary);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.section-head a.rel-more i {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
}

.section-title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(0.9375rem, 0.31743604rem + 1.0011123471vw, 1.5rem);
  color: #000;
}
.section-title.white {
  color: #fff;
}
.section-title.text-center {
  align-items: center;
}
.section-title.text-center .sub-title {
  justify-content: center;
}
.section-title .title {
  font-size: clamp(1.25rem, 0.0098720801rem + 2.0022246941vw, 2.375rem);
  line-height: 1.2;
}
.section-title .sub-title {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
}
.section-title .sub-title::before {
  content: "";
  width: clamp(0.625rem, 0.4872080089rem + 0.2224694105vw, 0.75rem);
  height: clamp(0.625rem, 0.4872080089rem + 0.2224694105vw, 0.75rem);
  border-radius: 50%;
  background: var(--color-primary);
}
.section-title p {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  line-height: 1.8;
}

.page-nav {
  padding: clamp(0.625rem, -1.4418798665rem + 3.3370411568vw, 2.5rem) 0;
}
.page-nav .page-crumbs {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
  color: rgba(0, 0, 0, 0.37);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
.page-nav .back {
  height: clamp(2.5rem, 2.3622080089rem + 0.2224694105vw, 2.625rem);
  padding: 0 clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  border: 1px solid #dedede;
  border-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  transition: all 0.3s;
}
.page-nav .back:hover {
  background: var(--color-primary);
  color: #fff;
}
.page-nav .back:hover i {
  color: inherit;
}
.page-nav .back i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #666;
}
.page-nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  .page-nav .page-crumbs {
    padding: 0;
  }
  .page-nav .row {
    padding: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem) 0;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  }
}

.index-hero {
  position: relative;
  height: clamp(22.5rem, -17.4596774194rem + 64.5161290323vw, 58.75rem);
  margin: 0 clamp(0.9375rem, -0.2337319244rem + 1.8909899889vw, 2rem);
  margin-top: clamp(0.625rem, 0.0738320356rem + 0.8898776418vw, 1.125rem);
  border-radius: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  overflow: hidden;
}
.index-hero .hero-swiper {
  height: 100%;
}
.index-hero .swiper-slide {
  display: flex;
  align-items: center;
  position: relative;
}
.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;
  max-width: 50%;
  color: #fff;
}
.index-hero .hero-content .title {
  font-size: clamp(1.5rem, -3.3227196885rem + 7.786429366vw, 5.875rem);
  margin-bottom: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
}
.index-hero .hero-content .sub-title {
  font-size: clamp(1.125rem, 0.2982480534rem + 1.3348164627vw, 1.875rem);
  margin-bottom: 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: 18%;
  z-index: 10;
}
.index-hero .hero-pagination-container .hero-pagination {
  position: static;
  display: flex;
  align-items: flex-end;
  gap: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
}
.index-hero .hero-pagination-container .hero-pagination .swiper-pagination-bullet {
  width: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  height: 2px;
  background: #fff;
  opacity: 1;
  transition: all 0.3s;
  border-radius: 0;
}
.index-hero .hero-pagination-container .hero-pagination .swiper-pagination-bullet-active {
  width: clamp(1.875rem, -0.880839822rem + 4.4493882091vw, 4.375rem);
  background: var(--color-primary);
}
@media screen and (max-width: 991px) {
  .index-hero {
    height: 40vh;
  }
  .index-hero .hero-content {
    max-width: 100%;
    margin-top: 15%;
  }
  .index-hero .control-btn {
    display: none;
  }
  .index-hero .hero-pagination-container {
    bottom: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  }
}

.page-hero {
  height: clamp(18.75rem, -15.0090378198rem + 54.5050055617vw, 49.375rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-top: 5%;
}
.page-hero.null {
  padding-top: 0;
  height: clamp(5.625rem, 3.5581201335rem + 3.3370411568vw, 7.5rem);
}
.page-hero .section-title {
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  gap: 0;
}
.page-hero .section-title .title {
  font-size: clamp(1.5rem, -1.6692157953rem + 5.1167964405vw, 4.375rem);
}
.page-hero .section-title p {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.swiper-custom-buttons {
  position: relative;
}
.swiper-custom-buttons .swiper-button-prev {
  transform: translate(-100%, -50%);
  left: calc(-1 * clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem));
}
.swiper-custom-buttons .swiper-button-next {
  transform: translate(100%, -50%);
  right: calc(-1 * clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem));
}
.swiper-custom-buttons .swiper-button-prev, .swiper-custom-buttons .swiper-button-next {
  top: 50%;
  margin: 0;
  width: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all 0.3s;
}
.swiper-custom-buttons .swiper-button-prev.swiper-button-lock, .swiper-custom-buttons .swiper-button-next.swiper-button-lock {
  display: none;
}
.swiper-custom-buttons .swiper-button-prev::after, .swiper-custom-buttons .swiper-button-next::after {
  display: none;
}
.swiper-custom-buttons .swiper-button-prev:hover, .swiper-custom-buttons .swiper-button-next:hover {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}
.swiper-custom-buttons .swiper-button-prev i, .swiper-custom-buttons .swiper-button-next i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
@media screen and (max-width: 991px) {
  .swiper-custom-buttons .swiper-button-prev {
    transform: translate(0, -50%);
    left: 10px;
  }
  .swiper-custom-buttons .swiper-button-next {
    transform: translate(0, -50%);
    right: 10px;
  }
}

.index-history {
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) 0;
  padding-top: clamp(2.5rem, -0.9447997775rem + 5.5617352614vw, 5.625rem);
}
.index-history .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.index-history .left ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-history .left ul li {
  min-height: clamp(3.75rem, 1.2697441602rem + 4.0044493882vw, 6rem);
  padding: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem) clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  display: flex;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #dedede;
  border-radius: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem);
  position: relative;
  cursor: pointer;
}
.index-history .left ul li::before {
  content: "";
  width: 5px;
  height: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
  background: var(--color-primary);
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
}
.index-history .left ul li.active h3 i {
  opacity: 0;
}
.index-history .left ul li.active h3 i::after {
  right: 0;
}
.index-history .left ul li.active .text {
  grid-template-rows: 1fr;
  margin-top: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.index-history .left ul li h3 {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.125rem, 0.6427280311rem + 0.7786429366vw, 1.5625rem);
}
.index-history .left ul li h3 i {
  width: clamp(2.25rem, 1.2854560623rem + 1.5572858732vw, 3.125rem);
  height: clamp(2.25rem, 1.2854560623rem + 1.5572858732vw, 3.125rem);
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}
.index-history .left ul li h3 i::before {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-second);
  color: #fff;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.index-history .left ul li h3 i::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 50%;
  border: 1px solid #dedede;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.3s;
}
.index-history .left ul li .text {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.4s ease;
}
.index-history .left ul li .text p {
  min-height: 0;
  overflow: hidden;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #666;
  line-height: 1.5;
}
.index-history .right {
  padding-left: clamp(2.5rem, -5.7675194661rem + 13.3481646274vw, 10rem);
}
.index-history .right .box {
  border-radius: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.index-history .right .box::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 60%;
  background-image: linear-gradient(to bottom, rgba(22, 48, 159, 0), rgb(22, 48, 159));
}
.index-history .right .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-history .right .box .info {
  position: absolute;
  bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  left: 0;
  z-index: 2;
  margin: 0 clamp(0.9375rem, -0.7848998888rem + 2.7808676307vw, 2.5rem);
  padding: clamp(0.9375rem, 0.0418520578rem + 1.446051168vw, 1.75rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.index-history .right .box .info .year {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  flex-shrink: 0;
}
.index-history .right .box .info .year span {
  font-size: clamp(1.875rem, -1.5697997775rem + 5.5617352614vw, 5rem);
  font-family: "Roboto-Black";
}
.index-history .right .box .info .text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
}
.index-history .right .box .info .text h3 {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.index-history .right .box .info .text p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
@media screen and (max-width: 991px) {
  .index-history .container {
    grid-template-columns: repeat(1, 1fr);
    gap: clamp(1.5rem, 0.3976640712rem + 1.7797552836vw, 2.5rem);
  }
  .index-history .right {
    padding-left: 0;
  }
}

.index-business {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.index-business ul {
  margin-top: clamp(1.875rem, -0.880839822rem + 4.4493882091vw, 4.375rem);
  display: flex;
  justify-content: space-between;
}
.index-business ul li {
  width: 21.6666666667%;
  height: clamp(16.25rem, -7.8635984427rem + 38.9321468298vw, 38.125rem);
  padding: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  overflow: hidden;
  color: #fff;
}
.index-business ul li::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}
.index-business ul li.active {
  width: 30%;
}
.index-business ul li img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.index-business ul li i {
  width: clamp(2.5rem, -0.9447997775rem + 5.5617352614vw, 5.625rem);
  height: clamp(2.5rem, -0.9447997775rem + 5.5617352614vw, 5.625rem);
  margin-left: auto;
  background: #fff;
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, -0.2912958843rem + 2.8921023359vw, 3.125rem);
  color: var(--color-primary);
}
@media screen and (max-width: 991px) {
  .index-business ul {
    flex-wrap: wrap;
    gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  }
  .index-business ul li {
    width: calc(50% - clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem));
  }
  .index-business ul li.active {
    width: calc(50% - clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem));
  }
}

.news-business {
  padding: clamp(1.875rem, -0.880839822rem + 4.4493882091vw, 4.375rem) 0;
}
.news-business .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-business .section-title {
  width: 45%;
  flex-shrink: 0;
}
.news-business p {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  line-height: 1.8;
}
@media screen and (max-width: 991px) {
  .news-business .container {
    flex-direction: column;
  }
  .news-business .section-title {
    width: 100%;
  }
}

.index-products {
  padding: clamp(3.75rem, -2.7951195773rem + 10.5672969967vw, 9.6875rem) 0;
  min-height: clamp(18.75rem, -26.7213570634rem + 73.4149054505vw, 60rem);
  display: flex;
  align-items: flex-end;
}
.index-products .container {
  position: relative;
  z-index: 2;
}
.index-products::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(15deg, rgba(27, 56, 163, 0.9), rgba(27, 56, 163, 0) 80%);
}
.index-products .section-title {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .index-products .section-title {
    width: 100%;
  }
}

.index-news {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.index-news .news-list {
  margin-top: clamp(1.875rem, -0.880839822rem + 4.4493882091vw, 4.375rem);
  display: flex;
  padding-left: 8%;
}
.index-news .swiper-control {
  margin-top: clamp(1.25rem, -4.261679644rem + 8.8987764182vw, 6.25rem);
  padding: 0 clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 0.2854560623rem + 1.5572858732vw, 2.125rem);
}
.index-news .swiper-control .index {
  flex-shrink: 0;
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.index-news .swiper-control .index .current {
  font-size: clamp(1.5rem, 1.0866240267rem + 0.6674082314vw, 1.875rem);
  color: var(--color-primary);
}
.index-news .swiper-control .line {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #dedede;
}
.index-news .swiper-control .swiper-custom-buttons {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.index-news .swiper-control .swiper-custom-buttons .swiper-button-prev, .index-news .swiper-control .swiper-custom-buttons .swiper-button-next {
  position: static;
  transform: translate(0);
}
@media screen and (max-width: 991px) {
  .index-news .news-list {
    margin: 0 clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
    margin-top: clamp(1.875rem, 1.1860400445rem + 1.1123470523vw, 2.5rem);
    padding: 0;
  }
}

.news-list .list-item a {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem);
  background: #f7f9fb;
  border: 1px solid #e5e5e5;
  border-radius: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  transition: all 0.3s;
}
.news-list .list-item a:hover {
  background: var(--color-primary);
}
.news-list .list-item a:hover .img img {
  transform: scale(1.05);
}
.news-list .list-item a:hover .foot {
  color: #fff;
}
.news-list .list-item a:hover .foot .more i {
  background: #fff;
  color: var(--color-primary);
}
.news-list .list-item a:hover .foot time {
  color: inherit;
}
.news-list .list-item a:hover .foot time i {
  color: inherit;
}
.news-list .img {
  width: 100%;
  padding-top: 78%;
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  overflow: hidden;
}
.news-list .img img {
  transition: all 0.3s;
}
.news-list .text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  position: relative;
  z-index: 2;
  margin: 0 clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  margin-top: calc(-1 * clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem));
  padding: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  background: #fff;
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.news-list .text h3 {
  font-size: clamp(1rem, 0.5866240267rem + 0.6674082314vw, 1.375rem);
  height: clamp(2.5rem, 1.5354560623rem + 1.5572858732vw, 3.375rem);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list .text p {
  color: #666;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-list .foot {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem);
  margin-top: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  transition: all 0.3s;
}
.news-list .foot .more {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.news-list .foot .more i {
  width: 20px;
  height: 20px;
  font-size: 14px;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}
.news-list .foot time {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  color: rgba(0, 0, 0, 0.75);
}
.news-list .foot time i {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
  color: var(--color-primary);
}
@media screen and (max-width: 991px) {
  .news-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.about-history {
  padding-top: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  padding-bottom: clamp(2.5rem, -3.011679644rem + 8.8987764182vw, 7.5rem);
}
.about-history img.g-bg {
  object-fit: 100% auto;
  object-position: center bottom;
}
.about-history .items {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  height: clamp(28.75rem, 5.3253615128rem + 37.8197997775vw, 50rem);
  overflow: auto;
  margin-top: clamp(1.875rem, -2.9477196885rem + 7.786429366vw, 6.25rem);
}
.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(1.875rem, -0.880839822rem + 4.4493882091vw, 4.375rem);
  position: relative;
}
.about-history .items .item::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #afb4c3;
  position: absolute;
  left: 50%;
  top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  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 .year {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  display: inline-block;
  position: relative;
}
.about-history .items .item .year::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-primary);
  position: absolute;
  top: 50%;
}
.about-history .items .item p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.8);
}
@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 {
  padding: clamp(2.5rem, -5.0785595106rem + 12.2358175751vw, 9.375rem) 0;
  background-image: linear-gradient(to right, #030855, #142c97);
}
.about-honor .swiper {
  margin-top: clamp(1.875rem, 0.497080089rem + 2.2246941046vw, 3.125rem);
  padding-top: clamp(0rem, -1.377919911rem + 2.2246941046vw, 1.25rem);
}
.about-honor .swiper .swiper-slide {
  padding: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  background: #fff;
  transition: transform 0.3s;
}
.about-honor .swiper .swiper-slide:hover {
  transform: translateY(calc(-1 * clamp(0rem, -1.377919911rem + 2.2246941046vw, 1.25rem)));
}
.about-honor .swiper .img {
  padding-top: 132%;
  overflow: hidden;
}
.about-honor .swiper .img img.g-bg {
  object-fit: contain;
}
.about-honor .swiper h3 {
  text-align: center;
  margin-top: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
}

.about-services {
  padding: clamp(2.5rem, -0.9447997775rem + 5.5617352614vw, 5.625rem) 0;
}
.about-services .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.about-services .container:hover .img img {
  transform: scale(1.05);
}
.about-services .img {
  padding-top: 70%;
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  overflow: hidden;
}
.about-services .img img {
  transition: transform 0.5s;
}
.about-services .text {
  background: var(--color-primary);
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  display: flex;
  align-items: center;
  padding: 0 clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
}
.about-services .text .section-title .sub-title::before {
  background: #fff;
}

.product-info {
  padding-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  padding-bottom: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem);
}
.product-info .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.875rem, -2.258759733rem + 6.6740823137vw, 5.625rem);
}
.product-info .container:hover .img img {
  transform: scale(1.05);
}
.product-info .img {
  padding-top: 72%;
  overflow: hidden;
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.product-info .img img {
  transition: transform 0.5s;
}
.product-info .text {
  display: flex;
  align-items: center;
}
.product-info .text .download {
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  padding: 0 clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  color: #fff;
  background: var(--color-primary);
  border-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.product-info .text .download i {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}

.products-img .section-title {
  position: absolute;
  top: 13%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.products-img ul {
  position: absolute;
  bottom: 10.5%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15%;
  font-size: clamp(1.125rem, 0.2982480534rem + 1.3348164627vw, 1.875rem);
  color: #fff;
}

.product-detail {
  padding: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem) 0;
}
.product-detail .g-editor {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.product-detail .g-editor table {
  color: #222;
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.product-detail .g-editor table tr.firstrow td {
  background: var(--color-primary) !important;
  color: #fff;
  border-top: none;
}
.product-detail .g-editor table tr:nth-child(2n-1) td {
  background: #fff5f2;
}
.product-detail .g-editor table tr td {
  padding: clamp(0.25rem, -0.1633759733rem + 0.6674082314vw, 0.625rem) clamp(0.375rem, -0.5895439377rem + 1.5572858732vw, 1.25rem);
  border-right: 1px solid #eee;
  border-top: 1px solid #eee;
}

.product-contact {
  padding-top: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem);
  padding-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  background: #f7f9fb;
}
.product-contact .section-title a {
  margin-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  width: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem);
  height: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem);
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-contact .section-title a i {
  font-size: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  transform: rotate(90deg);
}

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

.news-detail {
  padding-bottom: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.news-detail.news-detail .left .g-content p:not(:has(img)) {
  text-indent: 2em;
}
.news-detail .container {
  display: flex;
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.news-detail .left {
  width: 100%;
  background: #fff;
  padding: clamp(0.9375rem, -1.1982758621rem + 3.4482758621vw, 2.875rem);
  border-radius: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.news-detail .left h1 {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.news-detail .left .time {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  border-bottom: 1px solid #dedede;
  margin-top: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  padding-bottom: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  color: #999;
}
.news-detail .left .time i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: var(--color-primary);
}
.news-detail .left .g-editor {
  color: #333;
}
.news-detail .left .g-editor p {
  margin-bottom: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.news-detail .right {
  width: clamp(22.5rem, 19.744160178rem + 4.4493882091vw, 25rem);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.news-detail .right > div {
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  border-radius: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  background: #fff;
}
.news-detail .right > div .title {
  margin-bottom: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  padding-bottom: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  position: relative;
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.news-detail .right > div .title::after, .news-detail .right > div .title::before {
  content: "";
  width: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  height: 2px;
  background: var(--color-second);
  position: absolute;
  left: 0;
  bottom: 0;
}
.news-detail .right > div .title::before {
  width: clamp(3.75rem, 2.7854560623rem + 1.5572858732vw, 4.625rem);
  left: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
  background: var(--color-primary);
}
.news-detail .right .news-search form {
  width: 100%;
  display: flex;
  align-items: center;
  background: #f7f7f7;
  height: clamp(2.5rem, 1.5354560623rem + 1.5572858732vw, 3.375rem);
}
.news-detail .right .news-search form input, .news-detail .right .news-search form button {
  background: none;
  outline: none;
}
.news-detail .right .news-search form input {
  padding-left: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  height: 100%;
  width: 100%;
}
.news-detail .right .news-search form button {
  margin: 0 clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.news-detail .right .news-search form i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: var(--color-primary);
}
.news-detail .right .category ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.news-detail .right .category ul li a {
  padding: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem) clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding-right: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  border: 1px solid #dedede;
  transition: all 0.3s;
  color: #666;
}
.news-detail .right .category ul li a:hover {
  background: var(--color-primary);
  color: #fff;
}
.news-detail .right .news-related {
  background: none;
  padding: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) 0;
}
.news-detail .right .news-related .title {
  margin: 0 clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.news-detail .right .news-related .news-list {
  margin-top: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
@media screen and (max-width: 991px) {
  .news-detail .container {
    flex-direction: column;
  }
  .news-detail .right {
    width: 100%;
  }
}

.page-navigation {
  margin-top: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9375rem, -0.5093159066rem + 2.3359288098vw, 2.25rem);
}
.page-navigation a {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  padding: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem) clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  border: 1px solid #dedede;
  border-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  transition: border 0.3s;
}
.page-navigation a:hover {
  border-color: var(--color-primary);
}
.page-navigation a:hover .text h2 {
  color: var(--color-primary);
}
.page-navigation a i {
  color: var(--color-primary);
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.page-navigation a .text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
}
.page-navigation a .text .label {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}
.page-navigation a .text h2 {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #666;
  font-weight: normal;
  transition: color 0.3s;
}
.page-navigation a .more {
  margin-top: clamp(0.3125rem, -0.0319799778rem + 0.5561735261vw, 0.625rem);
  display: flex;
  align-items: center;
  gap: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
  font-size: 14px;
}
.page-navigation a .more i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  background: var(--color-second);
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .page-navigation {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page-contact {
  padding-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding-bottom: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
}
.page-contact .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 10px;
}
.page-contact .container > div {
  border-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  overflow: hidden;
}
.page-contact .info {
  background: #f7f7f7;
  padding: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.9375rem, -0.5093159066rem + 2.3359288098vw, 2.25rem);
}
.page-contact .info .section-title {
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.page-contact .info .group {
  display: flex;
  gap: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
}
.page-contact .info .group i {
  margin-top: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
  color: var(--color-primary);
}
.page-contact .info .group p {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
}
.page-contact .info .group p span {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}/*# sourceMappingURL=styles.css.map */