@charset "UTF-8";
:root {
  --header-height: 6.25rem;
  --page-aside: calc((100% - 1600px) / 2);
  --color-primary: #001962;
  --color-secondary: #75bd42;
  --color-blue: #1f2f53;
  --color-btn: #002e71;
  --color-desc: #474747;
  --color-desc2: #9f9f9f;
  --color-bg: #f1f4fd;
  --color-bg2: #f2f2f2;
  --color-bg3: #f4f4f4;
  --color-line: #dddddd;
  --color-black30: rgba(0, 0, 0, 0.3);
  --color-black50: rgba(0, 0, 0, 0.5);
  --color-black60: rgba(0, 0, 0, 0.6);
  --color-black75: rgba(0, 0, 0, 0.75);
  --color-black85: rgba(0, 0, 0, 0.85);
  --color-white30: rgba(255, 255, 255, 0.3);
  --color-white50: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 1920px) {
  :root {
    --page-aside: 10rem;
  }
}

.container {
  max-width: 1600px !important;
  width: calc(100% - 20rem) !important;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px;
  }
}

.w1700 {
  max-width: 1700px !important;
  width: calc(100% - 13.75rem) !important;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .w1700 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px;
  }
}

.overflow-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* 超出部分隐藏 */
  text-overflow: ellipsis;
}

.overflow-x-scroll {
  overflow-x: scroll;
}

.overflow-y-scroll {
  overflow-y: scroll;
}

.overflow-y-auto {
  overflow-y: auto;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.img100 img {
  display: block;
  width: 100%;
}

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

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

.text-bold {
  font-weight: bold;
}

.text-white {
  color: #fff !important;
}

.pos-center, .why-1 .list .item .img-box i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pos-x-center, .index-banner .swiper .swiper-pagination-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

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

/* flex布局 */
.flex {
  display: flex;
}

.flex-center, .more-btn i, .product2Style .img-box, .index-banner .swiper .swiper-slide, .index-solution-list .item i, .why-1 .list .item .img-box i, .why-2 .item i, .product-3-1 .img-box, .product-7 .list li .img-box, .solution-1-1 .block .text-box, .solution-1-2 .swiper-btn-prev,
.solution-1-2 .swiper-btn-next, .solution-2 .iconList i, .solution-3 .list .item i, .solution-4 .block .text-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.items-start {
  align-items: flex-start;
}

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

.items-end {
  align-items: flex-end;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink {
  flex-shrink: 0;
}

/* 定位 */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.hidden {
  display: none !important;
}

.mt-1 {
  margin-top: 2rem;
}

@media screen and (max-width: 992px) {
  .lg-hidden {
    display: none !important;
  }
  .lg-block {
    display: block !important;
  }
  .lg-flex {
    display: flex !important;
  }
  .lg-flex-wrap {
    flex-wrap: wrap !important;
  }
  .lg-flex-column {
    flex-direction: column !important;
  }
  .lg-justify-center {
    justify-content: center !important;
  }
  .lg-justify-end {
    justify-content: flex-end !important;
  }
  .lg-justify-between {
    justify-content: space-between !important;
  }
  .lg-justify-around {
    justify-content: space-around !important;
  }
  .lg-items-start {
    align-items: flex-start !important;
  }
  .lg-items-center {
    align-items: center !important;
  }
  .lg-items-end {
    align-items: flex-end !important;
  }
  .lg-w-full {
    width: 100% !important;
  }
  .lg-h-full {
    height: 100% !important;
  }
  .lg-mt-1 {
    margin-top: 2rem;
  }
  .lg-mt-2 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (max-width: 640px) {
  .xs-flex-wrap {
    flex-wrap: wrap !important;
  }
  .xs-block {
    display: block !important;
  }
}

pre {
  white-space: normal;
}

/**
 * grid布局
 * @param {number} $cols   列数
 * @param {number} $colGip 列间隔
 * @param {number} $rowGip 行间隔
 * @param {list}   $mobile 断点配置列表(默认空)
    * @param {number} $breakpoint 断点值
    * @param {number} $cols       列数
    * @param {number} $colGap     行列间隔
*/
/** 
* font-size
* @param $min-size 最小字号
* @param $normal-size 常规字号
* @param $max-size 最大字号
 */
/**
 * 默认过渡动画
 * @param {string} $property 过渡属性 (默认 all)
 * @param {time}   $time     过渡时间 (默认 .5s)
 * @param {string} $ease     缓动函数 (默认 ease-in-out)
 */
@font-face {
  font-family: D-DINCondensed-Bold;
  src: url(../fonts/D-DINCONDENSED-BOLD.TTF);
}

@font-face {
  font-family: D-DIN;
  src: url(../fonts/D-DIN.ttf);
}

@font-face {
  font-family: AvantGardeITCbyBT-Book;
  src: url(../fonts/AVGARDN.TTF);
}

* {
  font-family: D-DIN, serif;
  box-sizing: border-box;
}

.rotateSvg-180 svg {
  transform: rotate(180deg);
}

.font-DinBold, .page-title, .more-btn span, header .pc-nav .one-title > a, footer .footer_form .input-box button, footer .footer-nav .item h2 a, footer .bq, footer .bq a, .innerNav .navList h2 a, .product2Style .index-product-title, .index-banner .swiper .banner-title, .index-banner .swiper .banner-desc, .index-company .numbList .item .numberBox, .index-company .numbList .item .numberBox span, .index-solution-list .item .title, .index-global .map .point .country, .index-global .map .point .text .title, .index-news .index-newsStyle .news-title, .index-news .index-newsStyle .news-time, .about-1 .right .numbList .item .numberBox, .about-1 .right .numbList .item .numberBox span, .about-2 .row .text-box .title, .culture-1 .list .title, .why-1 .list .item .text-box .title, .why-2 .item .title, .why-3 .list .item .text-box .title, .case-xq .box-title, .page-btn-prev p, .page-btn-next p, .xq-title, .news-1 .list .text-box .title, .contact-1 .list .item p, .contact-1 .list .item .text, .service-1 .list .item .text-box .title, .product-1 .text-box .title, .product-1 .text-box > p, .product-3-2 .item .number, .solution .solution-title .title-text, .solution-1-1 .block .text-box .title, .solution-1-2 .swiper .swiper-slide .title, .solution-2 .table-box .item .title, .solution-2 .iconList .title, .solution-3 .list .item .title, .solution-4 .block .text-box .title {
  font-family: D-DINCondensed-Bold;
}

.page-title {
  font-size: clamp(30px, 3.75rem, 3.125vw);
  color: var(--color-primary);
  line-height: 0.9;
}

.page-title.white {
  color: #fff;
}

.page-title.black {
  color: #000;
}

.page-desc {
  font-size: clamp(16px, 1.25rem, 1.04167vw);
  line-height: 1.65;
  color: var(--color-desc);
}

.swiper-button-prev i,
.swiper-button-next i {
  font-size: clamp(20px, 1.875rem, 1.5625vw);
  font-weight: bold;
  color: var(--color-desc2);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}

.more-btn {
  display: inline-block;
  position: relative;
  --btn-w: 4.0625rem;
  --btn-h: 4.0625rem;
  --lable-w: 11.875rem;
}

.more-btn i {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--btn-w);
  height: var(--btn-h);
  background: var(--color-primary);
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.more-btn span {
  width: var(--lable-w);
  height: var(--btn-h);
  margin-left: var(--btn-w);
  color: var(--color-btn);
  border: 2px solid var(--color-btn);
  font-size: clamp(14px, 1.5rem, 1.25vw);
}

.more-btn:hover i {
  width: 100%;
}

.more-btn.white i {
  background: #fff;
  color: var(--color-primary);
}

.more-btn.white span {
  color: #fff;
  border-color: #fff;
}

@media screen and (max-width: 992px) {
  .more-btn {
    --btn-w: 3.125rem;
    --btn-h: 3.125rem;
    --lable-w: 9.375rem;
  }
}

@media screen and (max-width: 768px) {
  .more-btn {
    --btn-w: 35px;
    --btn-h: 35px;
    --lable-w: 120px;
  }
}

.backList {
  font-size: clamp(14px, 1rem, 0.83333vw);
  display: flex;
  padding: 0.9375rem 1.5625rem;
  border: 1px dashed #010101;
  border-radius: 1.875rem;
  color: var(--color-black75);
  transition: all 0.5s ease-in-out;
}

.backList i {
  color: var(--color-primary);
  margin-left: 1.25rem;
  transition: all 0.5s ease-in-out;
}

.backList:hover {
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.backList:hover i {
  color: #fff;
}

.mode-content {
  font-size: clamp(14px, 1.25rem, 1.04167vw);
  line-height: 1.8;
}

.mode-content ul,
.mode-content ol,
.mode-content li {
  list-style: inherit;
  padding-left: 1.25rem;
}

.mode-content li {
  padding-left: 0;
}

.mode-content li::marker {
  color: var(--color-secondary);
}

.mode-content img {
  max-width: 100%;
}

.mode-content table {
  width: 100% !important;
}

.mode-content table tr td {
  height: 45px;
  text-align: center;
  font-size: clamp(14px, 1.25rem, 1.04167vw);
}

.mode-content table tr:nth-child(odd) {
  background: var(--color-bg2);
}

.mode-content table tr.first-row {
  background: var(--color-secondary);
  color: #fff;
}

.mode-content table tr.first-row td {
  font-size: clamp(16px, 1.5rem, 1.25vw);
}

.mode-content table tr:not(:first-child) td:first-child {
  text-align: left;
  padding: 0 3.125rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

header .container {
  height: var(--header-height);
}

header .logo {
  height: 70%;
}

header .logo .logo_white {
  display: block;
}

header .logo .logo_active {
  display: none;
}

header .logo img {
  display: block;
  height: 100%;
  width: auto;
}

header .pc-nav {
  margin-right: 2.5rem;
}

header .pc-nav .one-title {
  position: relative;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

header .pc-nav .one-title > a {
  color: #fff;
  font-size: clamp(16px, 1.25rem, 1.04167vw);
}

header .pc-nav .one-title > a:hover {
  color: var(--color-secondary) !important;
}

header .pc-nav .one-title .subList {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -10%);
  background: #fff;
  padding: 0.625rem 1.5625rem;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

header .pc-nav .one-title .subList a {
  display: block;
  padding: 0.625rem 0;
  color: var(--color-black75);
  font-size: clamp(14px, 1rem, 0.83333vw);
  white-space: nowrap;
  transition: all 0.5s ease-in-out;
}

header .pc-nav .one-title .subList a:hover {
  color: var(--color-secondary);
}

header .pc-nav .one-title:not(:last-child) {
  padding-right: 1.25rem;
  margin-right: 1.25rem;
}

header .pc-nav .one-title:hover .subList {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

header .pc-nav .one-title.active > a {
  color: var(--color-secondary) !important;
}

header .iconList .item {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-black30);
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
  position: relative;
}

header .iconList .item i,
header .iconList .item span {
  color: #fff;
  font-size: clamp(12px, 1rem, 0.83333vw);
}

header .iconList .item .code-box {
  background: #fff;
  width: 7.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.625rem;
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

header .iconList .item .code-box img {
  display: block;
  width: 100%;
}

header .iconList .item .text-box {
  font-size: 14px;
  color: #000;
  padding: .625rem .9375rem;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

header .iconList .item:not(:last-child) {
  margin-right: 1.25rem;
}

header .iconList .item:hover {
  background: var(--color-primary);
}

header .iconList .item:hover .code-box {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 992px) {
  header .iconList .item {
    width: 30px;
    height: 30px;
  }
  header .iconList .item span {
    font-size: 14px;
  }
}

@media screen and (max-width: 992px) {
  header .iconList {
    margin-right: 1.25rem;
  }
}

header .menu {
  font-size: 24px;
  color: #fff;
}

header.fixed {
  background: #fff;
}

header.fixed .logo_white {
  display: none;
}

header.fixed .logo_active {
  display: block;
}

header.fixed .pc-nav .one-title > a {
  color: #000;
}

header.fixed .menu {
  color: #000;
}

footer {
  background: var(--color-blue);
  padding-top: 5.625rem;
}

footer .footer-logo {
  display: block;
  width: 15rem;
}

@media screen and (max-width: 768px) {
  footer .footer-logo {
    width: 20rem;
    margin: 0 auto;
  }
}

footer .footer_form .tip {
  margin-top: 6.875rem;
  color: #fff;
  font-size: clamp(14px, 1.125rem, 0.9375vw);
}

footer .footer_form .input-box {
  margin-top: 2.5rem;
  --input-h: 5rem;
  height: var(--input-h);
  transition: all 0.5s ease-in-out;
}

footer .footer_form .input-box input {
  width: 23.125rem;
  background: #fff;
  color: #000;
  padding: 0 1.875rem;
  font-size: clamp(16px, 1.5rem, 1.25vw);
}

footer .footer_form .input-box input:placeholder {
  color: var(--color-black30);
}

footer .footer_form .input-box button {
  padding: 0 1.125rem;
  color: #fff;
  background: var(--color-secondary);
  cursor: pointer;
  font-size: clamp(16px, 1.875rem, 1.5625vw);
}

footer .footer_form .input-box.active {
  box-shadow: 0 0 10px 5px var(--color-secondary);
}

footer .footer-nav .item {
  max-width: 10rem;
}

footer .footer-nav .item h2 {
  margin-bottom: 3.125rem;
}

footer .footer-nav .item h2 a {
  color: #fff;
  font-size: clamp(14px, 1.25rem, 1.04167vw);
}

footer .footer-nav .item h3 a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

footer .footer-nav .item h3:not(:last-child) {
  margin-bottom: 1.25rem;
}

footer .footer-nav .item:not(:last-child) {
  margin-right: 1.875rem;
}

footer .iconList .item {
  width: 1.875rem;
  height: 1.875rem;
  background: var(--color-white30);
  border-radius: 50%;
  transition: background 0.5s ease-in-out;
  position: relative;
}

footer .iconList .item i,
footer .iconList .item span {
  color: #fff;
  font-size: clamp(12px, 1rem, 0.83333vw);
}

footer .iconList .item .code-box {
  background: #fff;
  width: 7.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  padding: 0.625rem;
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

footer .iconList .item .code-box img {
  display: block;
  width: 100%;
}

footer .iconList .item .text-box {
  font-size: 14px;
  color: #000;
  padding: .625rem .9375rem;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
}

footer .iconList .item:not(:last-child) {
  margin-right: 0.9375rem;
}

footer .iconList .item:hover {
  background: var(--color-primary);
}

footer .iconList .item:hover .code-box,
footer .iconList .item:hover .text-box {
  opacity: 1;
  pointer-events: auto;
}

footer .footer_bq {
  margin-top: 7.5rem;
  padding-bottom: 2.1875rem;
}

footer .bq {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  color: var(--color-white30);
}

footer .bq a {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  color: var(--color-white30);
}

.banner {
  height: 39.375rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner .page-title {
  font-size: clamp(30px, 4.375rem, 3.64583vw);
}

@media screen and (max-width: 992px) {
  .banner {
    height: 500px;
  }
}

@media screen and (max-width: 768px) {
  .banner {
    height: 300px;
  }
}

.innerNav {
  --height: 6.5625rem;
  background: #fff;
  box-shadow: 0px 8px 49px 0px rgba(10, 2, 5, 0.06);
  position: relative;
  z-index: 50;
}

.innerNav .container {
  height: var(--height);
}

.innerNav .navList h2 a {
  font-size: clamp(14px, 1.375rem, 1.14583vw);
  color: #000;
}

.innerNav .navList h2:not(:last-child) {
  margin-right: 7.5rem;
}

.innerNav .navList h2.active a {
  color: var(--color-secondary);
}

@media screen and (max-width: 992px) {
  .innerNav {
    --height: 60px;
  }
  .innerNav .navList {
    display: none;
  }
}

.breadCrumbs a {
  display: flex;
  align-items: center;
  color: #000;
  font-size: clamp(14px, 1.125rem, 0.9375vw);
}

.breadCrumbs a i {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  margin-right: 0.625rem;
}

.breadCrumbs a:last-child span {
  color: var(--color-primary);
}

main:not(.index) {
  margin-top: var(--header-height);
}

.product2Style .index-product-title {
  font-size: clamp(16px, 1.75rem, 1.45833vw);
  line-height: 1.4;
  color: var(--color-primary);
  margin-top: 2.5rem;
  padding: 0 1.875rem;
  position: relative;
  z-index: 2;
}

.product2Style .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  z-index: 1;
  border-radius: 1.875rem;
  transition: opacity 0.5s ease-in-out;
}

.product2Style .bg-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1.875rem;
  background-blend-mode: screen;
}

.product2Style .img-box {
  aspect-ratio: 1 / 0.8;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease-in-out;
}

.product2Style .img-box img {
  display: block;
  max-height: 80%;
  max-width: 80%;
}

.index {
  overflow: hidden;
}

.index-banner .swiper {
  height: 58.75rem;
}

.index-banner .swiper .swiper-slide {
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index-banner .swiper .banner-title {
  font-size: clamp(30px, 6.25rem, 5.20833vw);
  line-height: 1;
}

.index-banner .swiper .banner-desc {
  width: 57%;
  margin-top: 3.125rem;
  line-height: 1.5;
  font-size: clamp(14px, 1.875rem, 1.5625vw);
}

.index-banner .swiper .swiper-pagination-box {
  bottom: 5.625rem;
  width: 100%;
  z-index: 20;
}

.index-banner .swiper .swiper-pagination-box .swiper-pagination {
  position: static;
}

.index-banner .swiper .swiper-pagination-box .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
}

.index-banner .swiper .swiper-pagination-box .swiper-pagination-bullet:not(:last-child) {
  margin-right: 2rem;
}

.index-banner .swiper .swiper-pagination-box .swiper-pagination-bullet-active {
  width: 17px;
  height: 17px;
  opacity: 1;
}

@media screen and (max-width: 992px) {
  .index-banner .swiper {
    height: 500px;
  }
}

@media screen and (max-width: 768px) {
  .index-banner .swiper {
    height: 300px;
  }
  .index-banner .swiper .banner-desc {
    width: 100%;
    margin-top: 20px;
  }
}

.index-product {
  padding: 8.125rem 0;
  background: var(--color-bg);
}

.index-product .page-desc {
  width: 44.75%;
}

.index-product .swiper-box {
  position: relative;
}

.index-product .swiper {
  height: 27.8125rem;
  padding-top: 10rem;
  box-sizing: content-box;
}

.index-product .swiper .swiper-wrapper .swiper-slide {
  background: #fff;
  transition: all 0.5s ease-in-out;
}

.index-product .swiper .swiper-wrapper .swiper-slide.active {
  border-radius: 1.875rem;
}

.index-product .swiper .swiper-wrapper .swiper-slide.active .bg-img {
  opacity: 1;
}

.index-product .swiper .swiper-wrapper .swiper-slide.active .img-box {
  transform: translateY(-50%);
}

.index-product .swiper .swiper-wrapper .swiper-slide.active .index-product-title {
  color: #fff;
}

.index-product .swiper-button-prev {
  margin-top: 0;
  left: 0;
  top: 60%;
  right: unset;
  transform: translateX(calc(-100% - 2.25rem));
}

.index-product .swiper-button-next {
  margin-top: 0;
  right: 0;
  top: 60%;
  transform: translateX(calc(100% + 2.25rem));
}

@media screen and (max-width: 992px) {
  .index-product {
    padding: 75px 0;
  }
  .index-product .swiper-button-prev {
    left: 0;
    right: unset;
    top: 60%;
    transform: translateY(-50%);
  }
  .index-product .swiper-button-next {
    left: unset;
    right: 0;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  .index-product {
    padding: 50px 0;
  }
}

.index-company {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 12.5rem;
}

@media screen and (max-width: 992px) {
  .index-company {
    padding-top: 5rem;
  }
}

.index-company .page-desc {
  width: 48.75%;
}

.index-company .left {
  position: relative;
  width: 45%;
}

.index-company .numbList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 0 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  min-height: 18.75rem;
  margin-top: 1.875rem;
}

@media (max-width: 992px) {
  .index-company .numbList {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

.index-company .numbList .item:not(:last-child) {
  border-right: 1px solid var(--color-line);
}

.index-company .numbList .item .numberBox {
  font-size: clamp(20px, 5.5rem, 4.58333vw);
  color: var(--color-primary);
}

.index-company .numbList .item .numberBox span {
  font-size: clamp(12px, 1.5rem, 1.25vw);
}

.index-company .numbList .item .numberBox span.number {
  font-size: clamp(20px, 5.5rem, 4.58333vw);
}

.index-company .numbList .item .desc {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  color: var(--color-desc2);
}

@media screen and (max-width: 992px) {
  .index-company .numbList {
    bottom: 0;
  }
  .index-company .numbList .item {
    justify-content: flex-start;
    padding: 15px;
    border-bottom: 1px solid var(--color-line);
  }
  .index-company .numbList .item .desc {
    color: #000;
  }
}

.index-company .video-btn {
  text-align: center;
  padding: 7.8125rem 0 16rem;
}

.index-company .video-btn i {
  font-size: clamp(50px, 9.5rem, 7.91667vw);
  color: #fff;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .index-company .video-btn {
    padding: 7.8125rem 0 24rem;
  }
}

.index-solution {
  padding-top: 6.25rem;
}

@media screen and (max-width: 992px) {
  .index-solution {
    padding: 75px 0;
  }
}

@media screen and (max-width: 768px) {
  .index-solution {
    padding: 50px 0;
  }
}

.index-solution .right {
  width: 56.875%;
}

.index-solution-list {
  min-height: 50rem;
  margin-top: 2.8125rem;
}

.index-solution-list .item {
  width: 24%;
  color: #fff;
  display: flex;
  align-items: end;
  padding: 0 0.625rem 5.625rem 0.625rem;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.6s ease-in-out;
}

.index-solution-list .item .text {
  position: relative;
  z-index: 2;
}

.index-solution-list .item i {
  --i-w: 6.75rem;
  width: var(--i-w);
  height: var(--i-w);
  border: 4px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
  font-size: clamp(16px, 3.75rem, 3.125vw);
}

.index-solution-list .item .title {
  text-align: center;
  margin-top: 2rem;
  font-size: clamp(16px, 1.875rem, 1.5625vw);
}

.index-solution-list .item .desc {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  line-height: 1.8;
  opacity: 0;
  position: absolute;
}

.index-solution-list .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72%;
  z-index: 1;
  background-image: linear-gradient(0deg, var(--color-primary) 0%, transparent 100%);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.index-solution-list .item.active {
  width: 75%;
  padding: 0 5.625rem 5.625rem 5.625rem;
}

.index-solution-list .item.active::after {
  opacity: 1;
}

.index-solution-list .item.active .text {
  opacity: 0;
  animation: bhbAni 0.6s forwards;
}

.index-solution-list .item.active i {
  margin-left: 0;
}

.index-solution-list .item.active .title {
  text-align: left;
}

.index-solution-list .item.active .title br {
  display: none;
}

.index-solution-list .item.active .desc {
  opacity: 1;
  position: static;
}

.index-solution-list .item:hover {
  width: 75%;
  padding: 0 5.625rem 5.625rem 5.625rem;
}

.index-solution-list .item:hover::after {
  opacity: 1;
}

.index-solution-list .item:hover .text {
  opacity: 0;
  animation: bhbAni 0.6s forwards;
}

.index-solution-list .item:hover i {
  margin-left: 0;
}

.index-solution-list .item:hover .title {
  text-align: left;
}

.index-solution-list .item:hover .desc {
  opacity: 1;
  position: static;
}

@media screen and (max-width: 768px) {
  .index-solution-list {
    flex-direction: column;
  }
  .index-solution-list .item {
    width: 100% !important;
    height: auto;
    padding: 5rem !important;
  }
  .index-solution-list .item::after {
    opacity: 1;
  }
  .index-solution-list .item .text {
    opacity: 0;
    animation: bhbAni 0.6s forwards;
  }
  .index-solution-list .item i {
    margin-left: 0;
  }
  .index-solution-list .item .title {
    text-align: left;
  }
  .index-solution-list .item .title br {
    display: none;
  }
  .index-solution-list .item .desc {
    opacity: 1;
    position: static;
  }
}

.index-global {
  padding: 9.375rem 0;
}

@media screen and (max-width: 992px) {
  .index-global {
    padding: 75px 0;
  }
}

@media screen and (max-width: 768px) {
  .index-global {
    padding: 50px 0;
  }
}

.index-global .right {
  width: 53.75%;
}

.index-global .map {
  position: relative;
  margin-top: 2.1875rem;
}

.index-global .map .bgImg {
  display: block;
  width: 100%;
}

.index-global .map .point {
  position: absolute;
  width: 1px;
  height: 1px;
}

.index-global .map .point .item {
  position: absolute;
  top: 50%;
  left: 50%;
}

.index-global .map .point .dot {
  position: relative;
  --dot-w: 0.9375rem;
  background: var(--color-secondary);
  width: var(--dot-w);
  height: var(--dot-w);
  border-radius: 50%;
}

.index-global .map .point .dot::after {
  content: "";
  background: rgba(117, 189, 66, 0.27);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  animation: boderAni 3s infinite;
  z-index: 1;
  border-radius: 50%;
}

.index-global .map .point .dot::before {
  content: "";
  background: rgba(117, 189, 66, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300%;
  height: 300%;
  animation: boderAni 3s infinite;
  z-index: 1;
  border-radius: 50%;
}

.index-global .map .point .country {
  font-size: clamp(14px, 1.25rem, 1.04167vw);
  color: var(--color-black60);
  position: absolute;
  white-space: nowrap;
}

.index-global .map .point .country.bottom {
  top: 125%;
  left: 50%;
  transform: translateX(-50%);
}

.index-global .map .point .country.left {
  top: 50%;
  left: -25%;
  transform: translate(-100%, -50%);
}

.index-global .map .point .country.right {
  top: 50%;
  left: 125%;
  transform: translateY(-50%);
}

.index-global .map .point .country.top {
  top: -150%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .index-global .map .point .country {
    display: none;
  }
}

.index-global .map .point .text {
  width: 19.625rem;
  background: var(--color-secondary);
  background-clip: padding-box;
  border-radius: 1.25rem;
  border: 0.625rem solid var(--color-white50);
  position: absolute;
  left: calc(100% + 1.25rem);
  top: 50%;
  transform: translateY(-50%);
  padding: 1.25rem;
  color: #fff;
}

.index-global .map .point .text .title {
  font-size: clamp(14px, 1rem, 0.83333vw);
}

.index-global .map .point .text .line {
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 1rem 0;
}

.index-global .map .point .text .desc {
  font-size: clamp(14px, 1rem, 0.83333vw);
}

@media screen and (max-width: 992px) {
  .index-global .map .point .text {
    left: -50%;
    top: 0;
    transform: translate(-50%, -120%);
  }
}

@media screen and (max-width: 768px) {
  .index-global .map .point .text {
    display: none;
  }
}

.index-global .map .point.imgDot .dot {
  --dot-w: auto;
  background: transparent;
  border-radius: 0;
}

.index-global .map .point.imgDot .dot::after, .index-global .map .point.imgDot .dot::before {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0;
  width: 100%;
  height: 100%;
}

.index-global .map .point.imgDot .dot::before {
  width: 150%;
  height: 150%;
}

.index-global .map .point.imgDot img {
  display: block;
  width: 40px;
  position: relative;
  z-index: 2;
}

.index-news {
  min-height: 52.5rem;
  padding-bottom: 4.6875rem;
}

.index-news .index-newsStyle .news-title {
  font-size: clamp(20px, 2.875rem, 2.39583vw);
  transition: all 0.5s ease-in-out;
  color: var(--color-desc2);
  line-height: 0.8;
}

.index-news .index-newsStyle .news-desc {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  line-height: 1.4;
  color: var(--color-desc2);
}

.index-news .index-newsStyle .news-time {
  font-size: clamp(14px, 1.25rem, 1.04167vw);
  color: var(--color-blue);
}

.index-news .index-newsStyle .news-line {
  width: 100%;
  height: 1px;
  background: var(--color-blue);
}

.index-news .left {
  width: 52.6%;
  padding: 12.1875rem 3.75rem 5rem var(--page-aside);
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index-news .left .more-btn {
  margin-top: 3.125rem;
  position: relative;
  z-index: 2;
}

.index-news .left .index-newsStyle {
  position: relative;
  z-index: 2;
}

.index-news .left .index-newsStyle .news-title,
.index-news .left .index-newsStyle .news-desc,
.index-news .left .index-newsStyle .news-time {
  color: #fff;
}

.index-news .left .index-newsStyle .news-title {
  font-size: clamp(20px, 3.125rem, 2.60417vw);
  line-height: 1.1;
}

.index-news .left .index-newsStyle .news-desc {
  width: 36.25rem;
  margin: 2.8125rem 0 1.875rem;
}

.index-news .left .index-news-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  display: block;
  width: 17.5rem;
  z-index: 1;
}

@media screen and (max-width: 992px) {
  .index-news .left {
    padding: 50px 15px;
  }
  .index-news .left .index-newsStyle {
    margin-top: 5rem;
  }
  .index-news .left .index-newsStyle .news-desc {
    margin: 1.25rem 0;
  }
}

.index-news .right {
  width: 47.4%;
  padding-right: var(--page-aside);
  padding-left: 9.0625rem;
}

.index-news .right .news-title {
  margin: 1.5rem 0 1.25rem;
}

.index-news .right .news-line {
  margin-top: 1rem;
}

.index-news .right a:hover .news-title,
.index-news .right a:hover .news-desc {
  color: var(--color-blue);
}

@media screen and (max-width: 992px) {
  .index-news .right {
    padding: 0 15px;
    margin-top: 5rem;
  }
  .index-news .right a:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}

.about-1 {
  padding: 11.5625rem 0 37.1875rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-1 .left {
  text-align: center;
}

.about-1 .left .page-title {
  text-align: left;
  line-height: 1.1;
}

.about-1 .left i {
  cursor: pointer;
  display: inline-block;
  margin-top: 9.375rem;
  font-size: clamp(50px, 7.5rem, 6.25vw);
  color: var(--color-primary);
}

.about-1 .right {
  width: 63%;
}

.about-1 .right .desc {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  line-height: 1.22;
  color: var(--color-black85);
}

.about-1 .right .numbList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 0 0;
  margin-top: 6.25rem;
}

@media (max-width: 992px) {
  .about-1 .right .numbList {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

.about-1 .right .numbList .item .numberBox {
  font-size: clamp(20px, 5.5rem, 4.58333vw);
  color: var(--color-primary);
}

.about-1 .right .numbList .item .numberBox span {
  font-size: clamp(12px, 1.5rem, 1.25vw);
}

.about-1 .right .numbList .item .numberBox span.number {
  font-size: clamp(20px, 5.5rem, 4.58333vw);
}

@media screen and (max-width: 768px) {
  .about-1 .right .numbList .item .numberBox {
    color: #fff;
  }
}

.about-1 .right .numbList .item .desc {
  font-size: clamp(14px, 1rem, 0.83333vw);
  color: var(--color-desc2);
}

.about-1 .right .numbList .item .desc br {
  display: none;
}

@media screen and (max-width: 768px) {
  .about-1 .right .numbList .item .desc {
    color: #fff !important;
  }
}

@media screen and (max-width: 992px) {
  .about-1 .right .numbList {
    bottom: 0;
  }
  .about-1 .right .numbList .item {
    justify-content: flex-start;
    padding: 15px;
    border-bottom: 1px solid var(--color-line);
  }
  .about-1 .right .numbList .item .desc {
    color: #000;
  }
}

@media screen and (max-width: 992px) {
  .about-1 {
    padding: 5rem 0;
  }
  .about-1 .left i {
    display: none;
  }
  .about-1 .left .page-title br {
    display: none;
  }
  .about-1 .right .desc {
    margin-top: 2.5rem;
  }
}

.about-2 {
  padding: 4.375rem 0 6.25rem;
}

.about-2 .row {
  background: #f0f0f0;
  min-height: 31.875rem;
}

.about-2 .row .text-box {
  width: 52.5%;
  padding: 0 3.125rem;
}

.about-2 .row .text-box .title {
  font-size: clamp(18px, 2.5rem, 2.08333vw);
  color: var(--color-primary);
}

.about-2 .row .text-box .desc {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  margin-top: 2.1875rem;
  color: var(--color-black75);
  line-height: 1.2;
}

.about-2 .row .img-box {
  width: 47.5%;
}

.about-2 .row:nth-child(even) {
  flex-direction: row-reverse;
}

.about-2 .row:not(:last-child) {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
  .about-2 {
    padding: 5rem 0;
  }
  .about-2 .row {
    flex-direction: column !important;
  }
  .about-2 .row .text-box {
    padding: 3.125rem;
    width: 100% !important;
  }
  .about-2 .row .img-box {
    width: 100% !important;
    height: 300px;
  }
}

.about-3 {
  background: rgba(0, 25, 98, 0.07);
  padding: 7.8125rem 0;
}

.about-3 .desc {
  width: 63%;
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  line-height: 1.22;
  color: var(--color-black85);
}

@media screen and (max-width: 992px) {
  .about-3 .desc {
    margin-top: 2.5rem;
  }
}

.about-3 .logoList {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 2.5rem 2.5rem;
  margin-top: 4rem;
}

@media (max-width: 992px) {
  .about-3 .logoList {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.about-3 .logoList .item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 9.75rem;
  overflow: hidden;
  background: #fff;
}

.about-3 .logoList .item img {
  display: block;
  max-width: 80%;
  max-height: 60%;
}

@media screen and (max-width: 992px) {
  .about-3 {
    padding: 5rem 0;
  }
}

.culture-1 {
  padding: 5rem 0 3.4375rem;
}

@media screen and (max-width: 992px) {
  .culture-1 {
    padding: 5rem 0;
  }
}

.culture-1 .list {
  gap: 0.625rem;
  height: 43.4375rem;
}

.culture-1 .list .title {
  font-size: clamp(16px, 1.875rem, 1.5625vw);
}

.culture-1 .list .desc {
  font-size: clamp(14px, 1.625rem, 1.35417vw);
  line-height: 1.26;
}

.culture-1 .list .item {
  width: 20%;
  position: relative;
  display: flex;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s ease-in-out;
}

.culture-1 .list .item.active {
  width: 60%;
}

.culture-1 .list .item.active .text-box {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.culture-1 .list .item.active .icon-box {
  opacity: 0;
  transform: translateY(-60px);
}

.culture-1 .list .icon-box {
  text-align: center;
  position: absolute;
  left: 0;
  top: 8.4375rem;
  width: 100%;
  opacity: 1;
  transition: all 0.5s ease-in-out;
}

.culture-1 .list .icon-box i {
  width: 6.875rem;
  height: 6.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(16px, 3.125rem, 2.60417vw);
  border: 4px solid #fff;
  border-radius: 50%;
  margin: 0 auto 2.5rem;
}

.culture-1 .list .text-box {
  opacity: 0;
  padding: 0 4.0625rem 4.6875rem 4.0625rem;
  transform: translateY(60px);
  transition: all 0.5s ease-in-out;
}

.culture-1 .list .text-box i {
  font-size: clamp(20px, 3.75rem, 3.125vw);
}

.culture-1 .list .text-box .title {
  margin: 1.5625rem 0 1.875rem;
}

@media screen and (max-width: 992px) {
  .culture-1 .list {
    height: auto;
    flex-direction: column;
  }
  .culture-1 .list .item {
    width: 100% !important;
  }
  .culture-1 .list .item .text-box {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
    padding: 3.125rem;
  }
  .culture-1 .list .item .icon-box {
    opacity: 0;
    transform: translateY(-60px);
  }
}

.culture-2 {
  height: 55rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.culture-2 .desc {
  color: #fff;
  line-height: 1.6;
  margin-top: 5.625rem;
  font-size: clamp(16px, 1.875rem, 1.5625vw);
}

.history-1 {
  min-height: 54.375rem;
  padding-top: 6.875rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 992px) {
  .history-1 {
    min-height: auto;
    padding: 5rem 0;
  }
}

.history-1 .swiper-box {
  position: relative;
  margin-top: 9.375rem;
}

@media screen and (max-width: 768px) {
  .history-1 .swiper-box {
    text-align: center;
    margin-top: 5rem;
  }
}

.history-1 .swiper {
  width: 51.25rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .history-1 .swiper {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}

.history-1 .year {
  font-size: clamp(100px, 19.75rem, 16.45833vw);
  color: var(--color-primary);
  font-family: AvantGardeITCbyBT-Book;
  letter-spacing: -0.5rem;
  line-height: 0.8;
}

.history-1 .desc {
  margin-top: 3.125rem;
  font-size: clamp(16px, 1.25rem, 1.04167vw);
  line-height: 1.75;
}

.history-1 .prev-btn,
.history-1 .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .history-1 .prev-btn p,
  .history-1 .next-btn p {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .history-1 .prev-btn,
  .history-1 .next-btn {
    position: static;
    transform: none;
    display: inline-block;
  }
}

.history-1 .prev-btn {
  left: 0;
}

.history-1 .prev-btn .btn {
  margin-right: 1.25rem;
}

.history-1 .prev-btn:hover i {
  color: #fff;
}

.history-1 .prev-btn:hover svg path {
  fill: var(--color-primary);
}

.history-1 .next-btn {
  right: 0;
  flex-direction: row-reverse;
}

.history-1 .next-btn .btn {
  margin-left: 1.25rem;
}

.history-1 .next-btn:hover i {
  color: #fff;
}

.history-1 .next-btn:hover svg path {
  fill: var(--color-primary);
}

.history-1 .btn {
  position: relative;
  width: 70px;
  height: 62px;
}

.history-1 .btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(14px, 1.25rem, 1.04167vw);
  color: var(--color-primary);
  z-index: 20;
}

.history-1 .btn svg {
  width: 100%;
  height: 100%;
}

.history-1 .btn svg path {
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 992px) {
  .history-1 .btn {
    width: 50px;
    height: 42px;
  }
}

.history-1 p {
  font-family: AvantGardeITCbyBT-Book;
  letter-spacing: -1px;
  font-size: clamp(20px, 2.5rem, 2.08333vw);
}

.honors-1 {
  padding-top: 10.625rem;
  padding-bottom: 3.125rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.honors-1 .row {
  position: relative;
}

.honors-1 .row .swiper img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 992px) {
  .honors-1 .row .swiper {
    width: 80% !important;
  }
}

.honors-1 .row .swiper-bg {
  display: block;
  width: 113.9375rem;
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  .honors-1 .row .swiper-bg {
    width: 100%;
  }
}

.honors-1 .row .swiper-btn {
  position: absolute;
  bottom: 6.5625rem;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 992px) {
  .honors-1 .row .swiper-btn {
    position: relative;
    bottom: 0;
    top: -2rem;
  }
  .honors-1 .row .swiper-btn .container {
    justify-content: center;
  }
}

.honors-1 .row .swiper-button-prev,
.honors-1 .row .swiper-button-next {
  position: static;
  width: 3.25rem;
  height: 3.25rem;
  transform: none;
  margin-top: 0;
}

.honors-1 .row .swiper-button-prev i,
.honors-1 .row .swiper-button-next i {
  font-size: clamp(12px, 0.875rem, 0.72917vw);
  color: #fff;
}

.honors-1 .row .swiper-button-prev {
  background: var(--color-secondary);
}

.honors-1 .row .swiper-button-next {
  background: var(--color-primary);
}

.honors-1 .row1 {
  margin-top: 8.125rem;
}

.honors-1 .row1 .swiper {
  width: 93.4375rem;
}

.honors-1 .row2 .swiper {
  width: 88.4375rem;
}

@media screen and (max-width: 992px) {
  .honors-1 {
    padding: 5rem 0;
  }
}

.why-1 {
  padding: 5.625rem 0;
}

.why-1 .list {
  margin-top: 5.9375rem;
  gap: 2.75rem;
}

.why-1 .list .item {
  flex: 1;
  background: rgba(8, 8, 8, 0.05);
}

.why-1 .list .item .img-box {
  position: relative;
  width: 100%;
  padding-top: 57.6%;
  aspect-ratio: 504/290;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.why-1 .list .item .img-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  opacity: 0.27;
  mix-blend-mode: multiply;
  z-index: 1;
}

.why-1 .list .item .img-box i {
  --i-w: 6.6875rem;
  width: var(--i-w);
  height: var(--i-w);
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  font-size: clamp(20px, 2.8125rem, 2.34375vw);
  z-index: 2;
}

.why-1 .list .item .text-box {
  padding: 4.0625rem 1.875rem 1.875rem;
}

.why-1 .list .item .text-box .title {
  font-size: clamp(18px, 1.875rem, 1.5625vw);
  color: var(--color-primary);
}

.why-1 .list .item .text-box .desc {
  margin-top: 2.5rem;
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  line-height: 1.5;
  color: var(--color-black85);
}

.why-2 {
  height: 55.375rem;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.why-2::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-primary);
  opacity: 0.68;
  mix-blend-mode: multiply;
  z-index: 1;
}

.why-2 .item {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  z-index: 2;
  color: #fff;
  padding-bottom: 7.1875rem;
  text-align: center;
}

.why-2 .item .text-box {
  position: relative;
  z-index: 2;
}

.why-2 .item i {
  --i-w: 7rem;
  width: var(--i-w);
  height: var(--i-w);
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  font-size: clamp(20px, 3.125rem, 2.60417vw);
  z-index: 2;
  margin: 0 auto;
}

.why-2 .item .title {
  margin-top: 2.8125rem;
  font-size: clamp(18px, 1.875rem, 1.5625vw);
}

.why-2 .item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  opacity: 0.24;
}

.why-2 .item::before {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, var(--color-secondary) 0%, transparent 100%);
  z-index: 1;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.why-2 .item:hover::before {
  opacity: 1;
  height: 100%;
}

.why-2 .page-title {
  position: absolute;
  top: 11.25rem;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
}

@media screen and (max-width: 992px) {
  .why-2 {
    height: auto;
    padding: 2.5rem 0;
  }
  .why-2 .page-title {
    position: static;
  }
  .why-2 .item {
    padding: 5rem 0;
  }
  .why-2 .item:hover::before {
    opacity: 0;
    height: 0;
  }
}

.why-3 {
  padding: 7.5rem 0 5.625rem;
}

.why-3 .list {
  position: relative;
  height: 35.3125rem;
  margin-top: 11.875rem;
  cursor: grab;
}

@media screen and (max-width: 992px) {
  .why-3 .list {
    height: 67.3125rem;
    margin-top: 15rem;
  }
}

.why-3 .list .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.why-3 .list .item .item-wrapper {
  height: 100%;
  background: var(--color-bg2);
}

.why-3 .list .item .img-box {
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.why-3 .list .item .text-box {
  width: 50%;
  padding: 2.5rem;
}

.why-3 .list .item .text-box .title {
  color: var(--color-primary);
  font-size: clamp(18px, 1.875rem, 1.5625vw);
  line-height: 1.2;
}

.why-3 .list .item .text-box .desc {
  margin-top: 1.25rem;
  color: var(--color-black75);
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  line-height: 1.4;
  max-height: 24.375rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.why-3 .list .item .text-box .desc::-webkit-scrollbar {
  width: 4px;
}

.why-3 .list .item .text-box .desc::-webkit-scrollbar-track {
  background: #fff;
}

.why-3 .list .item .text-box .desc::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 2px;
}

@media screen and (max-width: 992px) {
  .why-3 .list .item .item-wrapper {
    flex-direction: column;
  }
  .why-3 .list .item .item-wrapper .text-box {
    width: 100%;
  }
  .why-3 .list .item .item-wrapper .img-box {
    height: 300px;
    width: 100%;
  }
}

.why-3 .list:active {
  cursor: grabbing;
}

.why-3 .drag-tip {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  z-index: 20;
  pointer-events: none;
  /* 不干扰点击 */
  animation: floatTip 2s infinite;
  text-align: center;
}

.why-3 .drag-tip i {
  font-size: clamp(16px, 3.125rem, 2.60417vw);
  color: var(--color-primary);
  display: block;
}

.why-3 .swiper-btn {
  margin-top: 2.5rem;
}

.why-3 .swiper-btn .swiper-button-prev,
.why-3 .swiper-btn .swiper-button-next {
  position: static;
  width: 3.25rem;
  height: 3.25rem;
  transform: none;
  margin-top: 0;
}

.why-3 .swiper-btn .swiper-button-prev i,
.why-3 .swiper-btn .swiper-button-next i {
  font-size: clamp(12px, 0.875rem, 0.72917vw);
  color: #fff;
}

.why-3 .swiper-btn .swiper-button-prev {
  background: var(--color-secondary);
}

.why-3 .swiper-btn .swiper-button-next {
  background: var(--color-primary);
}

.global .index-global {
  padding: 5rem 0;
}

.global .index-global .global-desc {
  margin: 2.1875rem 0 4.6875rem;
  color: var(--color-desc);
  font-size: clamp(14px, 1.25rem, 1.04167vw);
  text-align: center;
}

.case-1 {
  background: #f5f5f5;
  padding: 4.375rem 0;
}

.case-1 .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 4.6875rem 3.4375rem;
}

@media (max-width: 992px) {
  .case-1 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.case-1 .list li {
  width: 100%;
  background: #fff;
}

.case-1 .list li a {
  display: block;
}

.case-1 .list li .img-box {
  overflow: hidden;
}

.case-1 .list li .img-box .imgPos {
  padding-top: 60%;
  aspect-ratio: 1/0.6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s ease-in-out;
}

.case-1 .list li .text-box {
  height: 5.3125rem;
  display: flex;
  align-items: center;
  padding: 0 2.25rem;
  color: #080808;
  position: relative;
  font-size: clamp(14px, 1.125rem, 0.9375vw);
}

.case-1 .list li .text-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-secondary);
  z-index: 0;
  transition: all 0.5s ease-in-out;
}

.case-1 .list li .text-box p {
  position: relative;
  z-index: 12;
}

.case-1 .list li:hover .img-box .imgPos {
  transform: scale(1.1);
}

.case-1 .list li:hover .text-box {
  color: #fff;
}

.case-1 .list li:hover .text-box::after {
  width: 100%;
}

.case-xq {
  padding: 3.125rem 0 9.375rem;
  background: var(--color-bg2);
}

.case-xq .xq-title {
  margin: 2.5rem 0;
}

.case-xq .box {
  background: #fff;
  border-radius: 1.25rem;
  padding: 3.75rem 2.5rem;
  transition: all 0.5s ease-in-out;
}

.case-xq .box-title {
  font-size: clamp(18px, 1.75rem, 1.45833vw);
  padding-left: 12px;
  position: relative;
}

.case-xq .box-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 1.375rem;
  background: var(--color-secondary);
}

.case-xq .box .mode-content {
  margin-top: 1.875rem;
}

.case-xq .box:not(:last-child) {
  margin-bottom: 2.5rem;
}

.case-xq .box:hover {
  box-shadow: 0px 8px 73px 0px rgba(11, 3, 5, 0.16);
}

.case-xq .page-btn {
  margin-top: 5.3125rem;
}

.page-btn {
  margin: 0 auto;
  width: 80.3125rem;
}

.page-btn-prev, .page-btn-next {
  display: flex;
  align-items: center;
  width: 44%;
  height: 6.25rem;
  border: 1px solid #000;
  color: #000;
  border-radius: 10px;
  padding: 0 1.25rem;
}

.page-btn-prev i, .page-btn-next i {
  font-size: clamp(14px, 1.375rem, 1.14583vw);
  color: var(--color-secondary);
  margin-right: 1.25rem;
}

.page-btn-prev p, .page-btn-next p {
  font-size: clamp(14px, 1rem, 0.83333vw);
  margin-bottom: 0.625rem;
}

.page-btn-prev .title, .page-btn-next .title {
  font-size: clamp(16px, 1.1875rem, 0.98958vw);
}

@media screen and (max-width: 992px) {
  .page-btn-prev {
    margin-bottom: 20px;
  }
}

.xq-title {
  font-size: clamp(22px, 2.5rem, 2.08333vw);
  color: #000;
}

.news-1 {
  padding: 4.375rem 0;
  background: var(--color-bg2);
}

.news-1 .list {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 5rem 3.125rem;
}

@media (max-width: 992px) {
  .news-1 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .news-1 .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.news-1 .list li:hover .text-box {
  background: var(--color-secondary);
}

.news-1 .list li:hover a {
  color: #fff;
}

.news-1 .list li:hover .imgPos {
  transform: scale(1.1);
}

.news-1 .list a {
  display: block;
  background: #fff;
  color: #080808;
}

.news-1 .list .img-box {
  padding-top: 60%;
  position: relative;
  aspect-ratio: 5/3;
  overflow: hidden;
}

.news-1 .list .img-box .imgPos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s ease-in-out;
}

.news-1 .list .text-box {
  padding: 2.5rem 1.25rem;
  transition: all 0.5s ease-in-out;
}

.news-1 .list .text-box .title {
  font-size: clamp(16px, 1.5rem, 1.25vw);
  margin-bottom: 1.25rem;
  min-height: 3.4375rem;
}

.news-1 .list .text-box .desc {
  font-size: clamp(12px, 1rem, 0.83333vw);
  line-height: 1.3;
  min-height: 3.875rem;
}

.news-1 .list .text-box p {
  margin-top: 2.5rem;
  font-size: clamp(12px, 1rem, 0.83333vw);
}

.news-xq {
  background: var(--color-bg2);
  padding: 3.125rem 0 4.0625rem;
}

.news-xq .box {
  background: #fff;
  border-radius: 1.25rem;
  margin-top: 1.875rem;
  padding: 5.625rem 4.375rem;
}

@media screen and (max-width: 992px) {
  .news-xq .box {
    padding: 2.5rem 1.5rem;
  }
}

.news-xq .xq-desc {
  margin: 1.875rem 0 2.5rem;
}

.news-xq .xq-desc .item:not(:last-child) {
  margin-right: 6.25rem;
}

.news-xq .xq-desc i {
  font-size: clamp(14px, 1.5rem, 1.25vw);
  color: var(--color-primary);
  margin-right: 1.125rem;
}

.news-xq .xq-desc span {
  font-size: clamp(14px, 1rem, 0.83333vw);
  color: var(--color-black50);
}

.news-xq .line {
  width: 100%;
  height: 1px;
  background: #909090;
  opacity: 0.2;
}

.news-xq .mode-content {
  margin: 3.125rem 0 6.875rem;
}

.contact-1 {
  background: var(--color-bg2);
  padding: 9.375rem 0 11.875rem;
}

.contact-1 .list {
  margin-top: 4.6875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 4.6875rem 4.6875rem;
}

@media (max-width: 992px) {
  .contact-1 .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.contact-1 .list .item {
  color: #000;
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.5s ease-in-out;
}

.contact-1 .list .item i {
  font-size: clamp(18px, 1.875rem, 1.5625vw);
  color: var(--color-primary);
  transition: all 0.5s ease-in-out;
}

.contact-1 .list .item p {
  font-size: clamp(16px, 1.25rem, 1.04167vw);
  margin: 0.625rem 0 1.25rem;
}

.contact-1 .list .item .text {
  font-size: clamp(16px, 1.5rem, 1.25vw);
}

.contact-1 .list .item:hover {
  color: #fff;
  background: var(--color-secondary);
}

.contact-1 .list .item:hover i {
  color: #fff;
}

@media screen and (max-width: 992px) {
  .contact-1 {
    padding: 5rem 0;
  }
}

.contact-2 {
  padding: 6.25rem 0;
}

.contact-2 .left {
  width: 35%;
}

.contact-2 .right {
  width: 58%;
}

.contact-2 .contact-form {
  margin-top: 3.75rem;
}

.contact-2 input {
  display: block;
  height: 5rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  width: 100%;
  padding: 0 1.875rem;
  transition: all 0.5s ease-in-out;
  font-size: clamp(14px, 1rem, 0.83333vw);
}

.contact-2 input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.contact-2 input:not(:last-child) {
  margin-bottom: 2.25rem;
}

.contact-2 input:focus {
  border: 1px solid var(--color-secondary);
  box-shadow: 0 0 10px 2px rgba(117, 189, 66, 0.5);
}

.contact-2 textarea {
  display: block;
  width: 100%;
  height: 19.125rem;
  resize: none;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 1.875rem 2.5rem;
  font-size: clamp(14px, 1rem, 0.83333vw);
  transition: all 0.5s ease-in-out;
}

.contact-2 textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.contact-2 textarea:focus {
  border: 1px solid var(--color-secondary);
  box-shadow: 0 0 10px 2px rgba(117, 189, 66, 0.5);
}

.contact-2 .code-box {
  margin-top: 2.25rem;
}

.contact-2 .code-box input {
  width: 13.75rem;
  margin-bottom: 0;
}

.contact-2 .code-box .code {
  width: 150px;
  height: 45px;
  background: var(--color-secondary);
  margin-left: 1.375rem;
}

.contact-2 .btn {
  margin-top: 3.4375rem;
}

.contact-2 .btn button {
  font-size: clamp(14px, 1rem, 0.83333vw);
  padding: 1.5625rem 4.6875rem;
  background: var(--color-secondary);
  border-radius: 2rem;
  color: #fff;
  cursor: pointer;
}

.service-1 {
  background: var(--color-bg2);
  padding: 6.5625rem 0;
}

.service-1 .list .item {
  background: #fff;
  min-height: 28.75rem;
}

.service-1 .list .item .img-box {
  width: 49%;
  position: relative;
  overflow: hidden;
}

.service-1 .list .item .img-box .imgPos {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s ease-in-out;
}

.service-1 .list .item .text-box {
  width: 51%;
  padding: 0 3.75rem;
}

.service-1 .list .item .text-box i {
  font-size: clamp(24px, 3.125rem, 2.60417vw);
  color: var(--color-secondary);
}

.service-1 .list .item .text-box .title {
  font-size: clamp(18px, 1.875rem, 1.5625vw);
  margin: 2.5rem 0;
}

.service-1 .list .item .text-box .desc {
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  color: var(--color-black75);
  line-height: 1.3;
}

.service-1 .list .item:not(:last-child) {
  margin-bottom: 2.8125rem;
}

.service-1 .list .item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-1 .list .item:hover .imgPos {
  transform: scale(1.1);
}

@media screen and (max-width: 992px) {
  .service-1 .list .item {
    flex-direction: column !important;
  }
  .service-1 .list .item .text-box {
    width: 100%;
    padding: 2.5rem;
  }
  .service-1 .list .item .img-box {
    width: 100%;
    height: 300px;
    order: 2;
  }
}

.product-1 {
  background: var(--color-bg3);
  padding: 6.25rem 0 10.625rem;
}

@media screen and (max-width: 992px) {
  .product-1 {
    padding: 5rem 0;
  }
}

.product-1 .item {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 35.9375rem;
  transition: all 0.5s ease-in-out;
}

.product-1 .item:not(:last-child) {
  margin-bottom: 2.8125rem;
}

.product-1 .item:hover {
  box-shadow: 0px 10px 60px 2px rgba(10, 2, 4, 0.22);
}

.product-1 .item:hover .showImg {
  opacity: 0;
  z-index: 1;
}

.product-1 .item:hover .hideImg {
  opacity: 1;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .product-1 .item {
    flex-direction: column-reverse;
    min-height: auto;
  }
}

.product-1 .img-box {
  width: 30%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 1.25rem;
}

.product-1 .img-box .imgPos {
  opacity: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s ease-in-out;
}

.product-1 .img-box .hideImg {
  background-size: contain;
}

.product-1 .img-box .showImg {
  opacity: 1;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .product-1 .img-box {
    height: 300px;
    width: 60%;
    margin: 0 auto;
  }
}

.product-1 .text-box {
  width: 70%;
  padding: 1.875rem 1.875rem 1.875rem 9.0625rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.product-1 .text-box .title {
  font-size: clamp(16px, 1.875rem, 1.5625vw);
  color: var(--color-primary);
}

.product-1 .text-box > p {
  color: #000;
  font-size: clamp(14px, 1.625rem, 1.35417vw);
  margin-top: 2.5rem;
}

.product-1 .text-box .desc {
  font-size: clamp(12px, 1.25rem, 1.04167vw);
  color: var(--color-black60);
}

.product-1 .text-box .mode-content {
  margin-top: 1.875rem;
  font-size: clamp(12px, 1.25rem, 1.04167vw);
  color: var(--color-black60);
}

@media screen and (max-width: 992px) {
  .product-1 .text-box {
    padding: 1.875rem;
  }
}

@media screen and (max-width: 768px) {
  .product-1 .text-box {
    width: 100%;
  }
}

.product-2 {
  background: var(--color-bg3);
  padding: 7.875rem 0 6.875rem;
}

.product-2 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 4.6875rem 1.5625rem;
}

@media (max-width: 992px) {
  .product-2 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.product-2 .list .item a {
  background: #fff;
  display: block;
  position: relative;
  min-height: 27.875rem;
}

.product-2 .list .item a:hover {
  border-radius: 1.875rem;
}

.product-2 .list .item a:hover .bg-img {
  opacity: 1;
}

.product-2 .list .item a:hover .img-box {
  transform: translateY(-50%);
}

.product-2 .list .item a:hover .index-product-title {
  color: #fff;
}

.product-3 {
  background: var(--color-bg3);
  padding-bottom: 7.5rem;
}

.product-3-1 {
  padding: 5rem 0;
}

.product-3-1 .img-box {
  width: 44.4%;
}

.product-3-1 .img-box img {
  display: block;
  max-width: 80%;
  max-height: 90%;
}

.product-3-1 .text-box {
  width: 55.6%;
}

.product-3-1 .text-box .product-title {
  font-size: clamp(24px, 2.5rem, 2.08333vw);
  color: var(--color-primary);
}

.product-3-1 .text-box .mode-content {
  margin-top: 3.75rem;
}

.product-3-1 .text-box .mode-content li {
  list-style: square;
}

@media screen and (max-width: 992px) {
  .product-3-1 {
    flex-direction: column;
  }
  .product-3-1 .img-box {
    width: 60%;
  }
  .product-3-1 .text-box {
    width: 100%;
    padding: 2.5rem;
  }
}

.product-3-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 1.875rem 1.875rem;
}

@media (max-width: 992px) {
  .product-3-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.product-3-2 .item {
  background: #fff;
  padding: 2.8125rem 1.875rem;
  border-radius: 20px;
  min-height: 16.25rem;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.product-3-2 .item .number {
  font-size: clamp(30px, 4.625rem, 3.85417vw);
  color: var(--color-secondary);
  transition: all 0.5s ease-in-out;
}

.product-3-2 .item .desc {
  margin-top: 1.875rem;
  font-size: clamp(14px, 1.25rem, 1.04167vw);
  color: var(--color-black85);
  transition: all 0.5s ease-in-out;
}

.product-3-2 .item:hover {
  background: var(--color-secondary);
}

.product-3-2 .item:hover .number,
.product-3-2 .item:hover .desc {
  color: #fff;
}

.product-4 {
  padding: 6.25rem 0;
  overflow: hidden;
}

.product-4 .mode-content {
  margin-top: 3.125rem;
}

@media screen and (max-width: 992px) {
  .product-4 .mode-content {
    overflow-x: scroll;
  }
  .product-4 .mode-content table {
    width: 1000px;
  }
}

.product-5 {
  padding: 5rem 0 6.875rem;
}

.product-5 .list {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 4.6875rem 1.5625rem;
}

@media (max-width: 992px) {
  .product-5 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.product-6 {
  padding-bottom: 1.25rem;
}

.product-6 .product-3-1 {
  border-bottom: 1px solid rgba(9, 9, 9, 0.17);
}

.product-7 {
  background: var(--color-bg3);
  padding: 5.625rem 0 10rem;
}

.product-7 .page-desc {
  color: var(--color-black75);
  margin: 2.5rem 0 3.75rem;
}

.product-7 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 2.8125rem 1.5625rem;
}

@media (max-width: 992px) {
  .product-7 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.product-7 .list li {
  background: #fff;
  padding: 2.25rem 0;
  transition: all 0.5s ease-in-out;
}

.product-7 .list li .img-box {
  --img-w: 17.8125rem;
  width: var(--img-w);
  height: var(--img-w);
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.05);
  margin: 0 auto;
}

.product-7 .list li .img-box img {
  display: block;
  width: 85%;
  border-radius: 50%;
}

.product-7 .list li .text-box {
  text-align: center;
  margin: 2.25rem 2.5rem 0;
  padding-top: 1.875rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-7 .list li:hover {
  box-shadow: 0px 14px 32px 0px rgba(11, 3, 5, 0.18);
}

.solution .solution-title {
  padding-bottom: 1.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.24);
  display: flex;
  position: relative;
}

.solution .solution-title .title-text {
  font-size: clamp(24px, 2.5rem, 2.08333vw);
  color: #000;
  position: relative;
}

.solution .solution-title .title-text::after {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 0;
  width: 100%;
  height: 0.3125rem;
  background: var(--color-secondary);
}

.solution-1 {
  background: var(--color-bg3);
  padding: 5.625rem 0 8.125rem;
}

.solution-1-1 .page-desc {
  margin-top: 2.5rem;
}

.solution-1-1 .block {
  background: #fff;
  min-height: 30rem;
  margin-top: 4.375rem;
}

.solution-1-1 .block .img-box {
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution-1-1 .block .text-box {
  width: 50%;
  padding: 0 3.125rem 0 4.375rem;
}

.solution-1-1 .block .text-box i {
  font-size: clamp(24px, 3.125rem, 2.60417vw);
  color: var(--color-secondary);
}

.solution-1-1 .block .text-box .title {
  font-size: clamp(16px, 2.5rem, 2.08333vw);
  color: #000;
  margin: 3.75rem 0 1.875rem;
}

.solution-1-1 .block .text-box .desc {
  font-size: clamp(14px, 1.25rem, 1.04167vw);
}

@media screen and (max-width: 992px) {
  .solution-1-1 .block .img-box {
    width: 100%;
    height: 300px;
    order: 2;
  }
  .solution-1-1 .block .text-box {
    padding: 2.5rem;
  }
  .solution-1-1 .block .text-box .title {
    margin: 1.5rem 0;
  }
}

.solution-1-2 {
  margin-top: 5.625rem;
  overflow: hidden;
}

.solution-1-2 .solution-title {
  display: flex;
  justify-content: space-between;
}

.solution-1-2 .swiper-btn {
  display: flex;
  --btn-w: 3.75rem;
  gap: 1.875rem;
}

.solution-1-2 .swiper-btn-prev,
.solution-1-2 .swiper-btn-next {
  position: static;
  width: var(--btn-w);
  height: var(--btn-w);
  border: 1px dashed rgba(0, 0, 0, 0.24);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.solution-1-2 .swiper-btn-prev i,
.solution-1-2 .swiper-btn-next i {
  font-size: clamp(14px, 1.25rem, 1.04167vw);
  color: rgba(0, 0, 0, 0.45);
  transition: all 0.5s ease-in-out;
}

.solution-1-2 .swiper-btn-prev:hover,
.solution-1-2 .swiper-btn-next:hover {
  background: var(--color-secondary);
}

.solution-1-2 .swiper-btn-prev:hover i,
.solution-1-2 .swiper-btn-next:hover i {
  color: #fff;
}

.solution-1-2 .swiper {
  margin-left: var(--page-aside);
  margin-top: 3.75rem;
}

.solution-1-2 .swiper .swiper-slide {
  background: #fff;
  min-height: 18.75rem;
  height: auto;
  padding: 2.1875rem 4.375rem 4.375rem 2.1875rem;
}

.solution-1-2 .swiper .swiper-slide i {
  font-size: clamp(24px, 3.125rem, 2.60417vw);
  color: var(--color-secondary);
}

.solution-1-2 .swiper .swiper-slide .title {
  margin: 1.25rem 0 1.5625rem;
  font-size: clamp(18px, 1.875rem, 1.5625vw);
  color: var(--color-secondary);
}

.solution-1-2 .swiper .swiper-slide .desc {
  font-size: clamp(14px, 1.25rem, 1.04167vw);
  color: var(--color-black80);
}

@media screen and (max-width: 992px) {
  .solution-1-2 .swiper {
    margin: 1.5rem 15px !important;
  }
}

.solution-2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 53.75rem;
  padding-top: 8.75rem;
}

@media screen and (max-width: 992px) {
  .solution-2 {
    min-height: auto;
    padding: 5rem 0;
  }
}

.solution-2 .table-box {
  margin-top: 6.25rem;
  position: relative;
  overflow: hidden;
}

.solution-2 .table-box .item {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.solution-2 .table-box .item .title {
  font-size: clamp(18px, 1.875rem, 1.5625vw);
  color: #fff;
}

.solution-2 .table-box .item .desc {
  width: 82%;
  margin: 2.1875rem auto 0;
  font-size: clamp(14px, 1.125rem, 0.9375vw);
  color: #fff;
  opacity: 0.77;
}

.solution-2 .table-box .item.active {
  opacity: 1;
  position: static;
}

.solution-2 .iconList {
  margin-top: 6.25rem;
}

.solution-2 .iconList i {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 1px dashed #fff;
  transition: all 0.5s ease-in-out;
  font-size: clamp(24px, 4.375rem, 3.64583vw);
  color: #fff;
  margin: 0 auto;
  position: relative;
}

.solution-2 .iconList .title {
  margin-top: 2.5rem;
  font-size: clamp(14px, 1.25rem, 1.04167vw);
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

.solution-2 .iconList .item {
  flex: 1;
  position: relative;
  cursor: pointer;
}

.solution-2 .iconList .item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5rem;
  right: 0;
  transform: translate(50%, -50%);
  width: 3.75rem;
  height: 3.75rem;
  background: url(../images/arrow.png) no-repeat center;
  background-size: contain;
}

.solution-2 .iconList .item:hover i {
  background: var(--color-secondary);
  color: #fff;
  border: 1px solid var(--color-secondary);
}

.solution-2 .iconList .item.active i {
  background: var(--color-secondary);
  color: #fff;
  border: 1px solid var(--color-secondary);
}

@media screen and (max-width: 992px) {
  .solution-2 .iconList {
    flex-wrap: wrap;
  }
  .solution-2 .iconList .item {
    width: 50%;
    margin-bottom: 2rem;
  }
  .solution-2 .iconList .item::after {
    content: none !important;
  }
  .solution-2 .iconList .title {
    margin-top: 1.25rem;
  }
}

.solution-3 {
  background: var(--color-bg3);
  padding-top: 5.625rem;
}

.solution-3 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
  gap: 1.25rem 1.25rem;
  margin-top: 4.375rem;
}

@media (max-width: 992px) {
  .solution-3 .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .solution-3 .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }
}

.solution-3 .list .item {
  background: #fff;
  min-height: 30rem;
  padding: 3.125rem 1.25rem;
  text-align: center;
  color: #000;
  transition: all 0.5s ease-in-out;
}

.solution-3 .list .item i {
  width: 9.625rem;
  height: 9.625rem;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  font-size: clamp(24px, 3.125rem, 2.60417vw);
  margin: 0 auto;
  transition: all 0.5s ease-in-out;
}

.solution-3 .list .item .title {
  font-size: clamp(18px, 1.875rem, 1.5625vw);
  margin: 2.5rem 0 1.875rem;
}

.solution-3 .list .item .desc {
  font-size: clamp(14px, 1.25rem, 1.04167vw);
  opacity: 0.6;
  line-height: 1.3;
}

.solution-3 .list .item:hover {
  background: var(--color-secondary);
  color: #fff;
}

.solution-3 .list .item:hover i {
  background: #fff;
  color: var(--color-secondary);
}

.solution-4 {
  padding: 5rem 0 6.25rem;
  background: var(--color-bg3);
}

.solution-4 .block {
  background: #fff;
  min-height: 30rem;
  margin-top: 4.375rem;
}

.solution-4 .block .img-box {
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution-4 .block .text-box {
  width: 50%;
  padding: 0 3.75rem;
}

.solution-4 .block .text-box .title {
  font-size: clamp(16px, 2.5rem, 2.08333vw);
  color: #000;
}

.solution-4 .block .text-box .desc {
  margin: 2.1875rem 0;
  font-size: clamp(14px, 1.25rem, 1.04167vw);
}

@media screen and (max-width: 992px) {
  .solution-4 .block {
    min-height: auto;
  }
  .solution-4 .block .img-box {
    width: 100%;
    height: 300px;
  }
  .solution-4 .block .text-box {
    padding: 1.5rem;
  }
}

@keyframes bhbAni {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes boderAni {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  75% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes floatTip {
  0%,
  100% {
    transform: translate(100%, -50%);
  }
  50% {
    transform: translate(100%, -40%);
  }
  100% {
    transform: translate(100%, -50%);
  }
}

.m-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  transition: all 0.5s ease;
  display: flex;
}

.m-nav .mNavList-box {
  width: 280px;
  height: 100vh;
  background: #fff;
  overflow-y: scroll;
  transform: translateX(-280px);
  transition: transform 0.5s ease-in-out;
  flex-shrink: 0;
}

.m-nav .mNavList-box .m-nav-btn {
  height: var(--header-height);
  border-bottom: 1px solid #eee;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 20px;
}

.m-nav .mNavList-box .m-nav-btn i {
  font-size: 20px;
}

.m-nav .mNavList-box .m-navList {
  --li-height: 40px;
}

.m-nav .mNavList-box .m-navList .one-title {
  border-bottom: 1px solid #eee;
}

.m-nav .mNavList-box .m-navList .one-title h2 {
  height: var(--li-height);
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-nav .mNavList-box .m-navList .one-title h2 a {
  color: #000;
}

.m-nav .mNavList-box .m-navList .one-title.active h2 a,
.m-nav .mNavList-box .m-navList .one-title.active h2 i {
  color: var(--text-color);
}

.m-nav .mNavList-box .m-navList .one-title.active .subList {
  display: block;
}

.m-nav .mNavList-box .m-navList .subList {
  display: none;
}

.m-nav .mNavList-box .m-navList .subList .two-title {
  border-bottom: 1px solid #eee;
}

.m-nav .mNavList-box .m-navList .subList .two-title h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--li-height);
  padding: 0 20px 0 30px;
  font-weight: normal;
}

.m-nav .mNavList-box .m-navList .subList .two-title h3 a {
  color: #000;
}

.m-nav .mNavList-box .m-navList .subList .two-title h3 i {
  margin-right: 5px;
}

.m-nav .mNavList-box .m-navList .subList .two-title:first-child {
  border-top: 1px solid #eee;
}

.m-nav .mNavList-box .m-navList .subList2 {
  display: none;
}

.m-nav .mNavList-box .m-navList .subList2 h4 {
  border-bottom: 1px solid #eee;
  height: var(--li-height);
  padding: 0 20px 0 40px;
}

.m-nav .mNavList-box .m-navList .subList2 h4 a {
  line-height: var(--li-height);
  display: block;
  width: 100%;
  color: #000;
}

.m-nav .mNavList-box .m-navList .subList2 h4:first-child {
  border-top: 1px solid #eee;
}

.m-nav .mNavList-box .m-navList i {
  transition: transform 0.5s ease-in-out;
}

.m-nav .mNavList-box .m-navList i.aniRote {
  transform: rotate(180deg);
}

.m-nav .m-bg {
  flex: 1;
  height: 100%;
}

.m-nav.active {
  opacity: 1;
  z-index: 100000;
  pointer-events: auto;
}

.m-nav.active .mNavList-box {
  transform: translateX(0);
}

.webMap-box {
  background: #f2f2f2;
  padding: 5rem 0;
}

.webMap-box .list {
  margin-top: 2.5rem;
}

.webMap-box .list a {
  color: #000;
}

.webMap-box .list .one-title {
  width: 33%;
  margin-bottom: 40px;
}

.webMap-box .list .one-title h2 {
  margin-bottom: 30px;
}

.webMap-box .list .one-title h2 a {
  font-size: 24px;
}

.webMap-box .list .two-title i {
  font-size: 20px;
  margin-right: 5px;
}

.webMap-box .list .two-title:not(:last-child) {
  margin-bottom: 20px;
}

.webMap-box .list .subList2 {
  margin-top: 10px;
}

.webMap-box .list .subList2 h4 a {
  font-weight: 100;
  opacity: 0.4;
  font-size: 16px;
  text-indent: 2em;
}

.webMap-box .list .subList2 h4:not(:last-child) {
  margin-bottom: 10px;
}

.webMap-box .list h3 a {
  font-size: 20px;
  opacity: 0.8;
  font-weight: normal;
}

.w1200 {
  max-width: 1200px !important;
  width: calc(100% - 45rem) !important;
  margin: 0 auto;
  box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .w1200 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px;
  }
}

.page {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  --itemBorder: 40px;
}

.page .page-item .page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--itemBorder);
  height: var(--itemBorder);
  font-size: 16px;
  color: #000;
  transition: all 0.5s ease-in-out;
  padding: 0;
  background: #fff;
  border-radius: 5px;
}

.page .page-item.active .page-link {
  background: var(--color-primary);
  color: #fff;
}

.page .page-item:hover .page-link {
  background: var(--color-primary);
  color: #fff;
}

.page .page-item:not(:last-child) {
  margin-right: 20px;
}

aside {
  position: fixed;
  bottom: 5vh;
  right: 30px;
}

aside .item {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

aside .item i {
  font-size: 20px;
  color: #fff;
}

aside .item:hover {
  background: var(--color-secondary);
}

aside .mod_backTop {
  opacity: 0;
}

aside .mod_backTop.active {
  opacity: 1;
}
