@charset "UTF-8";
@import "../fonts/iconfont/iconfont.css";
:root {
  --primary-color: #222;
  --select-color: #2264c1;
  --text-color: #666;
  --white: #fff;
  --fz-min: 16px;
  --fz-scale: 1;
  --p-scale: 1;
  --m-scale: 1;
  --lh-scale: 1;
  --gp-scale: 1;
  --img-scale: 1;
}

/* 当屏幕宽度大于等于 1000px 时，最小值切换为 16px */
@media (max-width: 1000px) {
  :root {
    --fz-min: 14px;
  }
}
/**
 * 悬停显示下划线效果 (背景渐变实现)
 * @param {Length} $height - 下划线高度，默认 2px
 * @param {Color} $color - 下划线颜色，默认取 --selection-color
 * @param {Length} $offset - (可选) 下划线距离底部的偏移量，默认 0
 */
/**
 * 多行文本截断
 * @param {Number} $lines - 限制显示的行数
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* ::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  font-family: Arial, "Microsoft YaHei", sans-serif;
  color: var(--text-color);
  font-size: 14px;
}
body a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
  display: block;
  cursor: pointer;
}
body a:hover {
  color: var(--select-color);
}

ul,
ol {
  list-style: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}

input,
select,
textarea {
  outline: none;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  color: var(--text-color);
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999;
}

.email a,
.email {
  word-break: break-all;
}

.edit-inner {
  text-decoration: none;
}

.edit-inner em {
  font-style: normal;
}

.edit-inner {
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}

.edit-inner strong {
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}

.edit-inner {
  background-image: linear-gradient(to right, var(--selection-color) 50%, var(--selection-color) 50%);
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}

.edit-inner:hover {
  background-size: 100% 2px;
}

.edit-inner table {
  width: 100%;
  border-collapse: collapse;
  border: hidden;
  border: 1px solid #ccc;
}

.edit-inner tr {
  background: rgba(34, 100, 193, 0.2);
}

.edit-inner tr:nth-child(even) {
  background: #f8f9fd;
}

.edit-inner td {
  border: 1px solid #ccc;
  font-family: Arial;
  padding-left: calc(75px * var(--p-scale));
  width: auto;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(39px * var(--lh-scale)); /* 166.667% */
}

.edit-inner td:has(strong) {
  padding-left: calc(120px * var(--p-scale));
  width: 31.3%;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(39px * var(--lh-scale)); /* 166.667% */
}

.safe-range {
  max-width: 1500px;
  margin: 0 auto;
}

.swiper-prev,
.swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: max(14px, calc(64px * var(--fz-scale)));
  height: max(14px, calc(64px * var(--fz-scale)));
  aspect-ratio: 1/1;
  border: 1px solid #c4c4c4;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-self: center;
  transition: all 0.3s ease;
}
.swiper-prev .icon-img,
.swiper-next .icon-img {
  width: max(14px, calc(26px * var(--fz-scale)));
  height: max(14px, calc(26px * var(--fz-scale)));
  position: relative;
}
.swiper-prev .icon-img img,
.swiper-next .icon-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.swiper-prev .icon-left,
.swiper-prev .icon-right,
.swiper-next .icon-left,
.swiper-next .icon-right {
  font-size: max(14px, calc(26px * var(--fz-scale)));
}
.swiper-prev .hidden,
.swiper-next .hidden {
  opacity: 0;
}
.swiper-prev:hover,
.swiper-next:hover {
  background: var(--select-color);
  color: var(--white);
}
.swiper-prev:hover .view,
.swiper-next:hover .view {
  opacity: 0;
}
.swiper-prev:hover .hidden,
.swiper-next:hover .hidden {
  opacity: 1;
}

.swiper-next {
  right: -8.8%;
}

.swiper-prev {
  left: -8.8%;
}

.inner-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.inner-header.disabled .header-text {
  cursor: default !important;
}
.inner-header.disabled .header-text:hover {
  color: var(--primary-color);
}
.inner-header.disabled .select-text {
  cursor: default !important;
}
.inner-header.disabled .select-text:hover {
  color: var(--select-color);
}
.inner-header .header-text {
  font-family: Arial;
  text-transform: uppercase;
  padding-left: calc(1px * var(--p-scale));
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(46px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(62px * var(--lh-scale)); /* 166.667% */
}
.inner-header .select-text {
  transition: all 0.3s ease;
  color: var(--select-color);
  cursor: pointer;
}
.inner-header .select-text:hover {
  color: var(--select-color);
}
.inner-header .header-btn {
  display: flex;
  gap: calc(35px * var(--gp-scale));
  margin-top: calc(6px * var(--m-scale));
}
.inner-header .header-title {
  font-size: max(14px, calc(28px * var(--fz-scale)));
  font-weight: bold;
  color: var(--primary-color);
  text-transform: uppercase;
}
.inner-header .header-more {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--select-color);
  border-radius: calc(30px * var(--fz-scale));
  transition: all 0.3s;
  font-family: Arial;
  width: max(14px, calc(260px * var(--fz-scale)));
  padding: calc(12px * var(--p-scale)) calc(10px * var(--p-scale)) calc(11px * var(--p-scale));
  gap: calc(10px * var(--gp-scale));
  overflow: hidden;
  cursor: pointer;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(24px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(35px * var(--lh-scale)); /* 166.667% */
}
.inner-header .header-more .icon-img {
  width: max(14px, calc(30px * var(--fz-scale)));
  height: max(14px, calc(30px * var(--fz-scale)));
  position: relative;
}
.inner-header .header-more:hover, .inner-header .header-more.active {
  background: var(--select-color);
  color: var(--white);
}
.inner-header .header-more:hover img, .inner-header .header-more.active img {
  filter: grayscale(1) brightness(10);
}
.inner-header .header-text:hover {
  cursor: pointer;
  color: var(--select-color);
}

.more-btn {
  display: flex;
  gap: calc(11px * var(--gp-scale));
}
.more-btn .more {
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: calc(30px * var(--fz-scale));
  transition: all 0.3s;
  font-family: Arial;
  padding: calc(10px * var(--p-scale)) calc(21px * var(--p-scale)) calc(10px * var(--p-scale)) calc(22px * var(--p-scale));
  overflow: hidden;
  background: var(--select-color);
  border: 1px solid transparent;
  color: var(--white);
  gap: calc(12px * var(--gp-scale));
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.more-btn .more .icon {
  width: max(14px, calc(26px * var(--fz-scale)));
  height: max(14px, calc(26px * var(--fz-scale)));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--white);
}
.more-btn .more .icon .iconfont {
  font-size: calc(8px * var(--fz-scale));
}
.more-btn .more:hover {
  background: transparent;
  border: 1px solid var(--select-color);
  color: var(--select-color);
}
.more-btn .more:hover .icon {
  border: 1px solid var(--select-color);
}
.more-btn .more:hover .iconfont {
  color: var(--select-color);
}

.select-range {
  max-width: max(14px, calc(1920px * var(--fz-scale)));
  overflow: hidden;
}

.banner-select {
  margin-top: max(14px, calc(110px * var(--fz-scale)));
  position: relative;
  height: max(14px, calc(460px * var(--fz-scale)));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner-select img {
  position: absolute;
  z-index: -1;
}
.banner-select .banner-inner {
  position: relative;
  z-index: 1;
}
.banner-select .title {
  margin-bottom: calc(8px * var(--m-scale));
  text-transform: uppercase;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(46px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(62px * var(--lh-scale)); /* 166.667% */
}
.banner-select .breadcrumb {
  text-align: center;
  margin: 0 auto;
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.banner-select .breadcrumb a,
.banner-select .breadcrumb span {
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
  font-family: "Source Sans Pro";
}
.banner-select .breadcrumb a {
  display: inline-block;
  text-decoration: none;
  transition: color 0.3s ease;
  background-image: linear-gradient(to right, var(--white) 50%, var(--white) 50%);
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.banner-select .breadcrumb a:hover {
  background-size: 100% 2px;
}
.banner-select .breadcrumb .separator {
  margin: 0 calc(4px * var(--gp-scale));
}

.projects {
  padding: calc(90px * var(--p-scale)) 0;
}
.projects .inner-header .more-btn {
  transform: translateY(calc(6px * var(--fz-scale)));
}
.projects .header-text {
  margin-bottom: calc(60px * var(--m-scale));
}
.projects .swiper-box {
  position: relative;
}
.projects .projects-swiper {
  position: relative;
}
.projects .item {
  position: relative;
  overflow: hidden;
}
.projects .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.projects .item .text-box {
  position: absolute;
  z-index: 10;
  width: 100%;
  bottom: 0;
  left: 0;
  padding-left: calc(16px * var(--p-scale));
  padding-bottom: calc(18px * var(--p-scale));
  display: flex;
  align-items: end;
  transition: all 0.3s ease;
}
.projects .item .text-box .text {
  margin-right: calc(5px * var(--m-scale));
  width: calc(100% - max(14px, calc(54px * var(--fz-scale))));
}
.projects .item .text-box .title,
.projects .item .text-box .desc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.projects .item .text-box .title {
  margin-bottom: calc(5px * var(--m-scale));
  background-image: linear-gradient(to right, var(--white) 50%, var(--white) 50%);
  background-size: 0% calc(2px * var(--fz-scale));
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.projects .item .text-box .title:hover {
  background-size: 100% calc(2px * var(--fz-scale));
}
.projects .item .text-box .title {
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.projects .item .text-box .desc {
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
  width: calc(100% - max(14px, calc(16px * var(--fz-scale))));
}
.projects .item .text-box .icon {
  flex: 1;
  width: max(14px, calc(26px * var(--fz-scale)));
  height: max(14px, calc(26px * var(--fz-scale)));
  position: absolute;
  top: 50%;
  right: max(14px, calc(22px * var(--fz-scale)));
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.projects .item .text-box .icon:hover {
  cursor: pointer;
  transform: translateY(calc(-50% - 6px));
}
.projects .swiper-box {
  position: relative;
}
.projects .swiper-box .swiper-prev .icon-img .hidden {
  transform: rotate(180deg) translateX(50%) translateY(50%);
}
.projects .swiper-box .swiper-next .icon-img .view {
  transform: rotate(180deg) translateX(50%) translateY(50%);
}

.projects-2 {
  padding: calc(90px * var(--p-scale)) 0;
}
.projects-2 .header-text {
  margin-bottom: calc(40px * var(--m-scale));
}
.projects-2 .projects-swiper {
  display: flex;
}
.projects-2 .projects-swiper .item {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.projects-2 .projects-swiper .item .img-box {
  overflow: hidden;
}
.projects-2 .projects-swiper .item .img-box img {
  width: 100%;
  transition: transform 0.3s ease;
}
.projects-2 .projects-swiper .item .img-box:hover {
  cursor: pointer;
}
.projects-2 .projects-swiper .item .img-box:hover img {
  transform: scale(1.1);
}
.projects-2 .projects-swiper .item .text-box {
  margin-top: calc(15px * var(--m-scale));
  width: 100%;
}
.projects-2 .projects-swiper .item .text-box .title {
  margin-top: calc(5px * var(--m-scale));
  width: 100%;
  overflow: hidden;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.projects-2 .projects-swiper .item .text-box .title a {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.projects-2 .projects-swiper .item .text-box .desc {
  margin-top: calc(12px * var(--m-scale));
  min-height: max(14px, calc(56px * var(--fz-scale)));
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--40, var(--text-color));
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.projects-2 .projects-swiper .item .text-box .divider {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  margin-top: calc(19px * var(--m-scale));
  margin-bottom: calc(18px * var(--m-scale));
}
.projects-2 .projects-swiper .item .text-box .btn {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
  background-image: linear-gradient(to right, var(--select-color) 50%, var(--select-color) 50%);
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.projects-2 .projects-swiper .item .text-box .btn:hover {
  background-size: 100% 2px;
}
.projects-2 .swiper-box {
  position: relative;
}
.projects-2 .swiper-box .swiper-prev .icon-img .hidden {
  transform: rotate(180deg) translateX(50%) translateY(50%);
}
.projects-2 .swiper-box .swiper-next .icon-img .view {
  transform: rotate(180deg) translateX(50%) translateY(50%);
}

.pri-btn {
  display: flex;
  gap: calc(11px * var(--gp-scale));
}
.pri-btn .more {
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: calc(30px * var(--fz-scale));
  transition: all 0.3s;
  font-family: Arial;
  padding: calc(10px * var(--p-scale)) calc(21px * var(--p-scale)) calc(10px * var(--p-scale)) calc(22px * var(--p-scale));
  overflow: hidden;
  background: var(--select-color);
  border: 1px solid transparent;
  color: var(--white);
  gap: calc(12px * var(--gp-scale));
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.pri-btn .more .icon {
  width: max(14px, calc(26px * var(--fz-scale)));
  height: max(14px, calc(26px * var(--fz-scale)));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--white);
}
.pri-btn .more .icon .iconfont {
  font-size: calc(8px * var(--fz-scale));
}
.pri-btn .more:hover {
  background: transparent;
  border: 1px solid var(--select-color);
  color: #2264c1;
}
.pri-btn .more:hover .icon {
  border-color: #2264c1;
}

.def-btn {
  display: flex;
  gap: calc(11px * var(--gp-scale));
}
.def-btn .more {
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: calc(30px * var(--fz-scale));
  transition: all 0.3s;
  font-family: Arial;
  padding: calc(10px * var(--p-scale)) calc(21px * var(--p-scale)) calc(10px * var(--p-scale)) calc(22px * var(--p-scale));
  overflow: hidden;
  background: transparent;
  border: 1px solid var(--select-color);
  color: var(--white);
  gap: calc(12px * var(--gp-scale));
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.def-btn .more .icon {
  width: max(14px, calc(26px * var(--fz-scale)));
  height: max(14px, calc(26px * var(--fz-scale)));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--select-color);
}
.def-btn .more .icon .iconfont {
  font-size: calc(8px * var(--fz-scale));
}
.def-btn .more:hover {
  background: var(--select-color);
  border: 1px solid var(--white);
  color: var(--white);
}
.def-btn .more:hover .icon {
  border-color: var(--white);
}

.pagination-section {
  padding-bottom: calc(90px * var(--p-scale));
}
.pagination-section .pagination-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20px * var(--gp-scale));
}
.pagination-section .pagination {
  display: flex;
  align-items: center;
  gap: calc(16px * var(--gp-scale));
}
.pagination-section .pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: calc(4px * var(--fz-scale));
  text-decoration: none;
  transition: all 0.3s ease;
  width: calc(48px * var(--fz-scale));
  height: calc(48px * var(--fz-scale));
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(14px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(24px * var(--lh-scale)); /* 166.667% */
}
.pagination-section .pagination a:hover {
  background: var(--select-color) !important;
  color: #fff !important;
}
.pagination-section .pagination a.disabled {
  pointer-events: none;
}
.pagination-section .pagination .dots {
  border: none;
  letter-spacing: calc(2px * var(--fz-scale));
}
.pagination-section .pagination .page-prev,
.pagination-section .pagination .page-next {
  background: rgba(34, 100, 193, 0.1);
  color: var(--select-color);
}
.pagination-section .pagination .page-prev .iconfont,
.pagination-section .pagination .page-next .iconfont {
  font-size: calc(12px * var(--fz-scale));
}
.pagination-section .pagination a:not(.page-prev):not(.page-next) {
  background: #ebebeb;
}
.pagination-section .pagination a.active:not(.page-prev):not(.page-next) {
  background: #fff;
  border-color: var(--select-color);
  color: var(--select-color);
}
.pagination-section .add-inquiry {
  white-space: nowrap;
  transition: border 0.3s ease, color 0.3s ease;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  background: url(../images/1-1products-icon-1.png) no-repeat right center;
  background-size: calc(16px * var(--fz-scale)) calc(28px * var(--fz-scale));
  padding-right: calc(calc(16px * var(--fz-scale)) + calc(11px * var(--gp-scale)));
  padding-left: 0;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.pagination-section .add-inquiry:hover {
  border-bottom-color: var(--select-color);
}

.customized {
  padding-top: calc(70px * var(--p-scale));
  padding-bottom: calc(53px * var(--p-scale));
  background: url(../images/footer-customized-bg.jpg) no-repeat center center/cover;
  width: 100%;
  text-align: center;
}
.customized .title {
  margin-bottom: calc(15px * var(--p-scale));
  text-transform: uppercase;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(46px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(62px * var(--lh-scale)); /* 166.667% */
}
.customized .desc {
  margin-bottom: calc(40px * var(--p-scale));
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(20px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.customized .more-btn {
  display: inline-block;
}
.customized .more-btn .more:hover {
  background: var(--white);
  color: var(--select-color);
}
.customized .more-btn .more:hover .icon i {
  color: var(--select-color);
}

#baguetteBox-overlay {
  display: none;
  opacity: 0;
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 100000000000000000000000000000000000000;
}
#baguetteBox-overlay.visible {
  opacity: 1;
}
#baguetteBox-overlay .full-image {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}
#baguetteBox-overlay .full-image figure {
  display: inline;
  margin: 0;
  height: 100%;
}
#baguetteBox-overlay .full-image img {
  display: inline-block;
  width: auto;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}
#baguetteBox-overlay .full-image figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.8;
  color: #ccc;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: Mont-Regular, Arial, sans-serif;
}
#baguetteBox-overlay .full-image:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}

#baguetteBox-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  -webkit-transition: left 0.4s ease, -webkit-transform 0.4s ease;
  transition: left 0.4s ease, -moz-transform 0.4s ease;
  transition: left 0.4s ease, transform 0.4s ease;
}
#baguetteBox-slider.bounce-from-right {
  -webkit-animation: bounceFromRight 0.4s ease-out;
  animation: bounceFromRight 0.4s ease-out;
}
#baguetteBox-slider.bounce-from-left {
  -webkit-animation: bounceFromLeft 0.4s ease-out;
  animation: bounceFromLeft 0.4s ease-out;
}

.baguetteBox-button {
  position: absolute;
  cursor: pointer;
  outline: 0;
  padding: 0;
  margin: 0;
  border: 0;
  -moz-border-radius: 15%;
  border-radius: 15%;
  background-color: #323232;
  background-color: rgba(50, 50, 50, 0.5);
  color: #ddd;
  font: 1.6em sans-serif;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
.baguetteBox-button:hover {
  background-color: rgba(50, 50, 50, 0.9);
}
.baguetteBox-button svg {
  position: absolute;
  left: 0;
  top: 0;
}
.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
  top: 50%;
  top: calc(50% - 30px);
  width: 44px;
  height: 60px;
}
.baguetteBox-button#next-button {
  right: 2%;
}
.baguetteBox-button#previous-button {
  left: 2%;
}
.baguetteBox-button#close-button {
  top: 20px;
  right: 2%;
  right: calc(2% + 6px);
  width: 30px;
  height: 30px;
}

.spinner {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
}
.spinner .double-bounce1,
.spinner .double-bounce2 {
  width: 100%;
  height: 100%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}
.spinner .double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromRight {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: -30px;
  }
  100% {
    margin-left: 0;
  }
}
@-webkit-keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
@keyframes bounceFromLeft {
  0% {
    margin-left: 0;
  }
  50% {
    margin-left: 30px;
  }
  100% {
    margin-left: 0;
  }
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
.projects-section img {
  object-fit: fill !important;
  display: inline !important;
  object-position: 50% 50% !important;
  max-width: 100% !important;
}

.header-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: max(14px, calc(110px * var(--fz-scale)));
}
.header-page .header-con {
  background: var(--white);
  height: 100%;
}
.header-page .header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-page .header-logo {
  flex-shrink: 0;
  width: max(14px, calc(138px * var(--fz-scale)));
}
.header-page .header-logo a {
  display: block;
}
.header-page .header-logo img {
  width: 100%;
  display: block;
}
.header-page .nav-box {
  display: flex;
  height: 100%;
  align-items: center;
}
.header-page .header-nav {
  display: flex;
  align-items: center;
  gap: calc(67px * var(--gp-scale));
  height: 100%;
}
.header-page .header-nav > a {
  color: var(--text-color);
  font-family: "Alimama FangYuanTi Medium";
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  text-transform: capitalize;
  padding: calc(10px * var(--p-scale)) 0;
  white-space: nowrap;
  position: relative;
}
.header-page .header-nav > a:hover {
  color: var(--select-color);
}
.header-page .header-nav .nav-item {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.header-page .header-nav .nav-item > a {
  text-transform: capitalize;
  padding: calc(10px * var(--p-scale)) 0;
  white-space: nowrap;
  cursor: pointer;
  padding-top: calc(16px * var(--p-scale));
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.header-page .header-nav .nav-item > a:hover {
  color: var(--select-color);
}
.header-page .header-nav .nav-item.active > a {
  color: var(--select-color);
  font-weight: 700;
}
.header-page .header-right {
  display: flex;
  align-items: center;
  margin-left: calc(131px * var(--m-scale));
  position: relative;
}
.header-page .header-right .search-icon {
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
  width: max(14px, calc(24px * var(--fz-scale)));
  height: max(14px, calc(24px * var(--fz-scale)));
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-page .header-right .search-icon .iconfont {
  font-size: max(14px, calc(21px * var(--fz-scale)));
  color: var(--primary-color);
  font-weight: 600;
}
.header-page .header-right .search-icon:hover {
  color: var(--select-color);
}
.header-page .header-right .search-divider {
  width: 1px;
  height: calc(18px * var(--gp-scale));
  background: var(--primary-color);
  margin: 0 calc(18px * var(--gp-scale));
}
.header-page .header-right .lang-switch-box {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--text-color);
  font-size: max(14px, calc(16px * var(--fz-scale)));
  transition: color 0.3s;
}
.header-page .header-right .lang-switch-box:hover {
  color: var(--select-color);
}
.header-page .header-right .lang-switch-box .globe-icon {
  font-size: max(14px, calc(18px * var(--fz-scale)));
}
.header-page .header-right .lang-switch {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  color: #222;
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.header-page .header-right .lang-switch .lang-icon-img {
  width: max(14px, calc(30px * var(--fz-scale)));
  height: max(14px, calc(16px * var(--fz-scale)));
  aspect-ratio: 15/8;
  margin-right: calc(7px * var(--gp-scale));
}
.header-page .header-right .lang-switch .lang-icon-img img {
  width: 100%;
}
.header-page .header-right .lang-switch .lang-text {
  margin-right: calc(3px * var(--gp-scale));
}
.header-page .header-right .lang-switch .iconfont {
  font-size: 7px;
  width: 10px;
  margin-left: calc(2px * var(--gp-scale));
}
.header-page .header-right .lang-switch .lay-dropdown-content {
  left: auto;
  right: 0;
  transform: translateX(10px);
}
.header-page .header-mobile-btn {
  display: none;
  flex-direction: column;
  gap: calc(5px * var(--gp-scale));
  background: none;
  border: none;
  cursor: pointer;
  padding: calc(10px * var(--p-scale));
}
.header-page .header-mobile-btn span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s;
}
.header-page .down-inner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: -1;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-200%);
  background: var(--white);
  padding-top: calc(5px * var(--p-scale));
  background-color: transparent;
}
.header-page .down-inner .product_box,
.header-page .down-inner .about_box {
  background-color: var(--white);
  box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.12);
}
.header-page .down-inner .product_box {
  padding: max(14px, calc(26px * var(--fz-scale))) max(14px, calc(49px * var(--fz-scale)));
  gap: calc(52px * var(--gp-scale));
  display: flex;
}
.header-page .nav-inner_product .item {
  flex: 1;
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.header-page .nav-inner_product .item .pri-btn {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
  transition: all 0.3s ease;
}
.header-page .nav-inner_product .item .box:hover .pri-btn {
  opacity: 1;
}
.header-page .nav-inner_product .item .img_box {
  width: max(14px, calc(240px * var(--fz-scale)));
  overflow: hidden;
}
.header-page .nav-inner_product .item .img_box img {
  max-width: auto;
  transition: all 0.3s ease;
}
.header-page .nav-inner_product .title {
  text-align: center;
  color: var(--text-color);
  margin-top: calc(20px * var(--p-scale));
  margin-bottom: calc(10px * var(--m-scale));
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.header-page .nav-inner_product .title:hover {
  color: var(--select-color);
}
.header-page .nav-inner_about {
  padding-top: calc(5px * var(--p-scale));
}
.header-page .nav-inner_about li a {
  width: max(14px, calc(230px * var(--fz-scale)));
  height: max(14px, calc(60px * var(--fz-scale)));
  padding-left: calc(20px * var(--p-scale));
  padding-right: calc(15px * var(--p-scale));
  line-height: max(14px, calc(60px * var(--fz-scale)));
  transition: all 0.3s ease;
  color: var(--333);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(60px * var(--lh-scale)); /* 166.667% */
}
.header-page .nav-inner_about li a:hover {
  color: var(--white);
  background-color: var(--select-color);
}
.header-page .header-nav .nav-down:hover {
  cursor: pointer;
}
.header-page .header-nav .nav-down:hover .down-inner {
  transform: translateX(-50%);
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  display: none;
}

.lay-dropdown-content {
  display: none;
  position: absolute;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
  padding: calc(10px * var(--p-scale)) 0;
  left: 0;
  top: 100%;
  transform: translateX(-50%) translateY(6px);
}
.lay-dropdown-content.layui-dropdown-show {
  display: block;
}
.lay-dropdown-content .search-box {
  display: flex;
  align-items: center;
  padding: calc(5px * var(--p-scale)) calc(18px * var(--p-scale));
}
.lay-dropdown-content .search-box input[type=text] {
  flex: 1;
  border: 1px solid var(--text-color);
  padding: calc(8px * var(--p-scale)) calc(15px * var(--p-scale));
  font-size: max(14px, calc(14px * var(--fz-scale)));
  outline: none;
  width: max(14px, calc(240px * var(--fz-scale)));
  height: max(14px, calc(42px * var(--fz-scale)));
}
.lay-dropdown-content .search-box input[type=text]::placeholder {
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(14px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(4428px * var(--lh-scale)); /* 166.667% */
}
.lay-dropdown-content .search-box .search-btn {
  height: max(14px, calc(42px * var(--fz-scale)));
  font-family: "iconfont";
  background: var(--select-color);
  border: none;
  color: var(--white);
  padding: calc(8px * var(--p-scale)) calc(15px * var(--p-scale));
  cursor: pointer;
  font-family: "iconfont";
  font-size: max(14px, calc(16px * var(--fz-scale)));
}
.lay-dropdown-content a {
  display: block;
  padding: calc(8px * var(--p-scale)) calc(20px * var(--p-scale));
  color: var(--text-color);
  font-size: max(14px, calc(14px * var(--fz-scale)));
  transition: all 0.3s;
}
.lay-dropdown-content a:hover, .lay-dropdown-content a.active {
  background: #f5f5f5;
  color: var(--select-color);
}

.footer {
  background: #1e1e1e;
  padding-bottom: calc(36px * var(--p-scale));
  color: rgba(255, 255, 255, 0.6);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(36px * var(--lh-scale)); /* 166.667% */
}
.footer .footer-header {
  display: flex;
  height: max(14px, calc(116px * var(--fz-scale)));
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #4b4b4b;
}
.footer .footer-header .header-logo img {
  width: max(14px, calc(138px * var(--fz-scale)));
}
.footer .footer-header .header-icon_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(14px * var(--gp-scale));
}
.footer .footer-header .header-icon_list .icon {
  width: max(14px, calc(40px * var(--fz-scale)));
  height: max(14px, calc(40px * var(--fz-scale)));
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.footer .footer-header .header-icon_list .icon .iconfont {
  transition: all 0.3s ease;
  font-size: max(14px, calc(18px * var(--fz-scale)));
}
.footer .footer-header .header-icon_list .icon:hover {
  background: var(--select-color);
}
.footer .footer-header .header-icon_list .icon:hover .iconfont {
  color: var(--white);
}
.footer .footer-inner a,
.footer .footer-bottom a {
  display: inline-block;
  background-image: linear-gradient(to right, var(--select-color) 50%, var(--select-color) 50%);
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.footer .footer-inner a:hover,
.footer .footer-bottom a:hover {
  background-size: 100% 2px;
}
.footer .footer-inner {
  padding-top: calc(40px * var(--p-scale));
  display: flex;
  padding-bottom: calc(32px * var(--p-scale));
  border-bottom: 1px solid #4b4b4b;
  font-style: normal;
}
.footer .footer-inner .list-box:nth-child(1) {
  width: 23%;
}
.footer .footer-inner .list-box:nth-child(2) {
  width: 22.2%;
}
.footer .footer-inner .list-box:nth-child(3) {
  width: 25.27%;
  padding-right: 6%;
}
.footer .footer-inner .list-box.footer-form {
  width: 29.53%;
}
.footer .footer-inner .list-box.footer-form form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.footer .footer-inner .list-box.footer-form .form-item {
  position: relative;
  margin-bottom: 15px;
}
.footer .footer-inner .list-box.footer-form .form-item.required::before {
  content: "*";
  position: absolute;
  left: 8px;
  top: calc(10px * var(--fz-scale));
  z-index: 1;
  color: #f00;
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.footer .footer-inner .list-box.footer-form .form-row {
  display: flex;
  gap: calc(18px * var(--gp-scale));
  margin-bottom: 15px;
}
.footer .footer-inner .list-box.footer-form .form-row .form-item {
  flex: 1;
  margin-bottom: 0;
}
.footer .footer-inner .list-box.footer-form input,
.footer .footer-inner .list-box.footer-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  height: 50px;
  padding: 8px;
  padding-left: 20px;
  border-radius: calc(8px * var(--fz-scale));
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  color: var(--white);
  color: rgba(255, 255, 255, 0.6);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.footer .footer-inner .list-box.footer-form input::placeholder,
.footer .footer-inner .list-box.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.footer .footer-inner .list-box.footer-form textarea {
  height: max(14px, calc(82px * var(--fz-scale)));
  padding-top: calc(10px * var(--p-scale));
  resize: none;
}
.footer .footer-inner .list-box.footer-form input[type=submit] {
  width: max(14px, calc(150px * var(--fz-scale)));
  background: var(--select-color);
  cursor: pointer;
  padding-left: 8px;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
  transition: all 0.3s;
}
.footer .footer-inner .list-box.footer-form input[type=submit]:hover {
  opacity: 0.9;
}
.footer .footer-inner .list-box.footer-form .captcha-box input {
  padding-right: calc(20.5% + 20px * var(--p-scale));
}
.footer .footer-inner .list-box.footer-form .captcha-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  right: 8px;
  top: 50%;
  width: 20.5%;
  transform: translateY(-50%);
  cursor: pointer;
  background: transparent;
  border: none;
  outline: #f3fbfe;
}
.footer .footer-inner .list-box .title {
  margin-bottom: 21px;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(20px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.footer .footer-inner .list-box a.title:hover {
  color: var(--select-color);
}
.footer .footer-bottom {
  padding-top: calc(22px * var(--p-scale));
}
.footer .footer-bottom .copyright,
.footer .footer-bottom .links {
  font-size: 16px;
  line-height: 26px;
}
.footer .footer-bottom .copyright a,
.footer .footer-bottom .copyright p,
.footer .footer-bottom .links a,
.footer .footer-bottom .links p {
  font-size: inherit;
  line-height: inherit;
}
.footer .footer-bottom .links {
  margin-top: 2px;
  display: flex;
}
.footer .footer-bottom .links a {
  margin-right: 10px;
}
.footer .footer-bottom .links span {
  margin-right: 10px;
}
.footer .footer-bottom .copyright p {
  display: inline;
}
.footer .footer-bottom .copyright a {
  display: inline-block;
}
.footer .footer-bottom .copyright .image {
  margin-left: 14px;
}

.side-bar--page {
  position: fixed;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
}
.side-bar--page .bar-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: max(14px, calc(30px * var(--fz-scale)));
  margin-bottom: calc(10px * var(--m-scale));
  background: rgba(0, 0, 0, 0.36);
  display: flex;
  padding: 11px 0;
  width: max(14px, calc(50px * var(--fz-scale)));
}
.side-bar--page .bar-item {
  color: var(--white);
  border-radius: 50%;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border-radius: 50%;
  width: 100%;
  height: max(14px, calc(48px * var(--fz-scale)));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.side-bar--page .bar-item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-bar--page .bar-item .iconfont {
  font-size: max(14px, calc(23px * var(--fz-scale)));
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-bar--page .bar-item:hover {
  color: var(--select-color);
}
.side-bar--page .code,
.side-bar--page .phone {
  position: relative;
}
.side-bar--page .code .hidden-box,
.side-bar--page .phone .hidden-box {
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  transform: translate(150%, -50%);
  padding: 10px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  pointer-events: none;
  transition: 0.4s ease all;
  white-space: nowrap;
}
.side-bar--page .code .hidden-box img,
.side-bar--page .phone .hidden-box img {
  display: block;
  width: max(14px, calc(150px * var(--fz-scale)));
  height: max(14px, calc(150px * var(--fz-scale)));
  max-width: none;
}
.side-bar--page .code .hidden-box .text,
.side-bar--page .phone .hidden-box .text {
  color: var(--select-color);
  font-size: 16px;
  font-weight: 600;
}
.side-bar--page .code.active .hidden-box,
.side-bar--page .phone.active .hidden-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(calc(calc(-50px * var(--fz-scale)) - max(14px, calc(6px * var(--fz-scale))))) translateY(-50%);
}
.side-bar--page .top {
  background-color: var(--select-color);
  color: var(--white);
  height: max(14px, calc(50px * var(--fz-scale)));
  border: 1px solid transparent;
}
.side-bar--page .top:hover {
  background-color: var(--white);
  color: var(--select-color);
  border-color: var(--select-color);
}
@media screen and (max-width: 1000px) {
  .side-bar--page {
    display: flex;
    flex-direction: row;
    width: 100%;
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    margin: auto;
    transform: translateY(0);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    background: #1e1e1e;
    border-top: 1px solid #4b4b4b;
    height: 50px;
  }
  .side-bar--page .bar-list {
    height: 100%;
    flex: 4;
    flex-direction: row;
    border-radius: 0;
    margin: 0;
    padding: 0;
    background-color: transparent;
  }
  .side-bar--page .bar-list .bar-item {
    height: 100%;
    width: 100%;
    border-radius: 0;
    border-right: 1px solid #4b4b4b;
  }
  .side-bar--page .bar-list .bar-item:hover {
    background-color: var(--white);
    color: var(--select-color);
    border-color: var(--select-color);
  }
  .side-bar--page .code .hidden-box,
  .side-bar--page .phone .hidden-box {
    position: absolute;
    top: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    margin: 0;
    padding: 10px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all;
    white-space: nowrap;
  }
  .side-bar--page .code .hidden-box img,
  .side-bar--page .phone .hidden-box img {
    display: block;
    width: 150px;
    height: 150px;
    max-width: none;
  }
  .side-bar--page .code .hidden-box .text,
  .side-bar--page .phone .hidden-box .text {
    color: var(--select-color);
    font-size: 16px;
    font-weight: 600;
  }
  .side-bar--page .code.active .hidden-box,
  .side-bar--page .phone.active .hidden-box {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(calc(-100% - 6px));
  }
  .side-bar--page .top {
    flex: 1;
    border-radius: 0;
    margin: 0;
    height: 100%;
    padding: max(14px, calc(11px * var(--fz-scale))) 0;
    margin: 0;
    background-color: transparent;
  }
}

.index--page .banner {
  margin-top: max(14px, calc(110px * var(--fz-scale)));
}
.index--page .banner .banner-inner {
  padding-top: 39.5833%;
  width: 100%;
  position: relative;
}
.index--page .banner .banner-inner .swiper-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.index--page .banner .banner-inner .swiper-slide .image {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.index--page .banner .banner-inner .swiper-slide .image img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: all 6s ease-out;
}
.index--page .banner .banner-inner .swiper-slide.swiper-slide-active .image img {
  transform: scale(1);
}
.index--page .banner .banner-inner .swiper-slide {
  position: relative;
  height: 100%;
}
.index--page .banner .banner-inner .banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index--page .banner .banner-inner .swiper-slide iframe {
  position: absolute;
  width: 100%;
  z-index: 9;
  object-fit: cover;
}
.index--page .banner .banner-inner .swiper-prev,
.index--page .banner .banner-inner .swiper-next {
  transform: translateY(-93%);
  border-color: #fff;
}
.index--page .banner .banner-inner .swiper-prev {
  left: calc(78px * var(--p-scale));
}
.index--page .banner .banner-inner .swiper-prev .icon-img .hidden {
  transform: rotate(180deg) translateX(50%) translateY(50%);
}
.index--page .banner .banner-inner .swiper-next {
  right: calc(78px * var(--p-scale));
}
.index--page .banner .banner-inner .swiper-next .icon-img .view {
  transform: rotate(180deg) translateX(50%) translateY(50%);
}
.index--page .hot-product {
  padding: calc(90px * var(--p-scale)) 0;
  padding-bottom: calc(45px * var(--p-scale));
  background: #fff;
}
.index--page .hot-product .swiper-prev,
.index--page .hot-product .swiper-next {
  transform: translateY(-75%);
}
.index--page .hot-product .inner-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.index--page .hot-product .inner-header .header-text {
  margin-bottom: calc(54px * var(--p-scale));
  padding-left: calc(1px * var(--p-scale));
}
.index--page .hot-product .inner-header .hot-header-btn {
  margin-top: calc(6px * var(--m-scale));
}
.index--page .hot-product .hot-product-title {
  font-size: max(14px, calc(28px * var(--fz-scale)));
  font-weight: bold;
  color: var(--primary-color);
  text-transform: uppercase;
}
.index--page .hot-product .more-list_box {
  position: relative;
}
.index--page .hot-product .more-list_box .swiper-prev .icon-img .hidden {
  transform: rotate(180deg) translateX(50%) translateY(50%);
}
.index--page .hot-product .more-list_box .swiper-next .icon-img .view {
  transform: rotate(180deg) translateX(50%) translateY(50%);
}
.index--page .hot-product .hot-product-more {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--select-color);
  border-radius: calc(30px * var(--fz-scale));
  transition: all 0.3s;
  font-family: Arial;
  width: max(14px, calc(260px * var(--fz-scale)));
  padding: calc(12px * var(--p-scale)) calc(10px * var(--p-scale));
  gap: calc(10px * var(--gp-scale));
  overflow: hidden;
  cursor: pointer;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(24px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(35px * var(--lh-scale)); /* 166.667% */
}
.index--page .hot-product .hot-product-more:hover, .index--page .hot-product .hot-product-more.active {
  background: var(--select-color);
  color: var(--white);
}
.index--page .hot-product .hot-product-more:hover img, .index--page .hot-product .hot-product-more.active img {
  filter: grayscale(1) brightness(10);
}
.index--page .hot-product .more-list {
  display: none;
}
.index--page .hot-product .more-list.active {
  display: block;
}
.index--page .hot-product .hot-product-swiper {
  overflow: hidden;
}
.index--page .hot-product .hot-product-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #edf0f5;
}
.index--page .hot-product .hot-product-img img {
  object-fit: contain;
  transition: transform 0.3s ease;
}
.index--page .hot-product .hot-product-img:hover img {
  transform: scale(1.1);
}
.index--page .hot-product .hot-product-info {
  padding: calc(20px * var(--p-scale)) calc(25px * var(--p-scale)) calc(16px * var(--p-scale)) calc(25px * var(--p-scale));
}
.index--page .hot-product .hot-product-info a {
  color: var(--222, #222);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index--page .hot-product .hot-product-info a span {
  background-image: linear-gradient(to right, var(--white) 50%, var(--white) 50%);
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.index--page .hot-product .hot-product-info a span:hover {
  background-size: 100% 2px;
}
.index--page .hot-product .hot-product-info a {
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(24px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(35px * var(--lh-scale)); /* 166.667% */
}
.index--page .hot-product .hot-product-info .desc {
  margin-top: calc(4px * var(--m-scale));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.index--page .hot-product .hot-product-item {
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s ease;
  background: #f8f9fd;
}
.index--page .hot-product .hot-product-item:hover {
  background: var(--select-color);
}
.index--page .hot-product .hot-product-item:hover a,
.index--page .hot-product .hot-product-item:hover .desc {
  color: var(--white);
}
.index--page .hot-product .hot-product-desc {
  font-size: max(14px, calc(13px * var(--fz-scale)));
  color: var(--text-color);
  margin-bottom: calc(15px * var(--p-scale));
  height: calc(40px * var(--p-scale));
  overflow: hidden;
}
.index--page .hot-product .hot-product-link {
  font-size: max(14px, calc(13px * var(--fz-scale)));
  color: var(--select-color);
  margin-right: calc(15px * var(--p-scale));
}
.index--page .hot-product .hot-product-inquire {
  font-size: max(14px, calc(13px * var(--fz-scale)));
  color: var(--white);
  background: var(--select-color);
  padding: calc(6px * var(--p-scale)) calc(15px * var(--p-scale));
  border-radius: calc(15px * var(--p-scale));
  text-decoration: none;
}

.index--page .about {
    padding-top: calc(45px * var(--p-scale));
    padding-bottom: calc(8px * var(--p-scale));
    position: relative;
}

.index--page .about .text-bg {
    position: absolute;
    left: calc(54px * var(--gp-scale));
    bottom: calc(8px * var(--gp-scale));
    z-index: -1;
}

.index--page .about .about-inner {
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.index--page .about .about-left {
    width: calc(50% + 20px);
    padding-right: calc(20px * var(--p-scale));
}

.index--page .about .about-left .inner-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: calc(12px * var(--m-scale));
}

.index--page .about .about-left .inner-header .header-text {
  padding-left: calc(1px * var(--p-scale));
}

.index--page .about .about-left .inner-header .select-text {
    color: var(--select-color);
}

.index--page .about .about-left .desc {
    margin-bottom: calc(45px * var(--m-scale));
    color: var(--select-color);
    font-family: Arial, sans-serif;
    font-size: max(14px, calc(18px * var(--fz-scale)));
    font-style: normal;
    font-weight: 700;
    line-height: calc(30px * var(--lh-scale));
    /* 166.667% */
}

.index--page .about .about-left .edit-inner {
    margin-bottom: calc(54px * var(--m-scale));
    color: var(--text-color);
    font-family: Arial, sans-serif;
    font-size: max(14px, calc(16px * var(--fz-scale)));
    font-style: normal;
    font-weight: 400;
    line-height: calc(28px * var(--lh-scale));
    /* 166.667% */
}

.index--page .about .btn {
    display: flex;
    gap: calc(11px * var(--gp-scale));
}

.index--page .about .btn .more {
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: calc(30px * var(--fz-scale));
    transition: all 0.3s;
    font-family: Arial;
    padding: calc(10px * var(--p-scale)) calc(21px * var(--p-scale)) calc(10px * var(--p-scale)) calc(22px * var(--p-scale));
    overflow: hidden;
    background: var(--select-color);
    border: 1px solid transparent;
    color: var(--white);
    gap: calc(12px * var(--gp-scale));
    color: var(--white);
    font-family: Arial, sans-serif;
    font-size: max(14px, calc(16px * var(--fz-scale)));
    font-style: normal;
    font-weight: 400;
    line-height: calc(28px * var(--lh-scale));
    /* 166.667% */
}

.index--page .about .btn .more .icon {
    width: max(14px, calc(26px * var(--fz-scale)));
    height: max(14px, calc(26px * var(--fz-scale)));
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--white);
}

.index--page .about .btn .more .icon .iconfont {
    font-size: calc(8px * var(--fz-scale));
}

.index--page .about .btn .more:hover {
    color: var(--primary-color);
    background: transparent;
    border: 1px solid var(--select-color);
}

.index--page .about .about-title {
    font-size: max(14px, calc(28px * var(--fz-scale)));
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: calc(20px * var(--p-scale));
}

.index--page .about .about-desc {
    font-size: max(14px, calc(16px * var(--fz-scale)));
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: calc(30px * var(--p-scale));
}

.index--page .about .about-link {
    font-size: max(14px, calc(16px * var(--fz-scale)));
    color: var(--select-color);
    padding: calc(12px * var(--p-scale)) calc(30px * var(--p-scale));
    border: 2px solid var(--select-color);
    border-radius: calc(30px * var(--p-scale));
    transition: all 0.3s;
    display: inline-block;
}

.index--page .about .about-link:hover {
    background: var(--select-color);
    color: var(--white);
}

.index--page .about .about-right {
    flex: 1;
    -webkit-clip-path: polygon(8% 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(8% 0, 100% 0%, 100% 100%, 0% 100%);
    overflow: hidden;
    transform: translateY(-5px);
}

.index--page .about .about-right img {
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    height: auto;
}

.index--page .about .about-right:hover img {
    transform: scale(1.1);
}

.index--page .about .about-stats {
    display: flex;
    justify-content: space-around;
    margin-top: calc(60px * var(--p-scale));
    padding: calc(40px * var(--p-scale)) 0;
    background: #f8f9fa;
}

.index--page .about .about-stat {
    text-align: center;
}

.index--page .about .about-stat-num {
    display: block;
    font-size: max(14px, calc(48px * var(--fz-scale)));
    font-weight: bold;
    color: var(--select-color);
    margin-bottom: calc(10px * var(--p-scale));
}

.index--page .about .about-stat-text {
    display: block;
    font-size: max(14px, calc(14px * var(--fz-scale)));
    color: var(--text-color);
}
.index--page .factory {
  padding: calc(50px * var(--p-scale)) 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.index--page .factory .factory-inner {
  margin: 0 auto;
}
.index--page .factory .factory-content {
  text-align: center;
  color: var(--white);
}
.index--page .factory .stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.index--page .factory .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 17%;
}
.index--page .factory .num {
  display: flex;
  justify-content: center;
  align-items: end;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(46px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(62px * var(--lh-scale)); /* 166.667% */
}
.index--page .factory .unit {
  height: 100%;
  display: flex;
  align-items: end;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(30px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(48px * var(--lh-scale)); /* 166.667% */
}
.index--page .factory .text {
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.index--page .vr {
  max-width: 1920px;
  margin: 0 auto;
}
.index--page .vr .vr-inner {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.index--page .vr .vr-inner img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  cursor: pointer;
}
.index--page .vr .vr-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.index--page .equipment {
  padding: calc(90px * var(--p-scale)) 0;
  background: #fff;
}
.index--page .equipment .inner-header .more-btn {
  transform: translateY(6px);
}
.index--page .equipment .equipment-text {
  margin-top: calc(21px * var(--m-scale));
  margin-bottom: calc(64px * var(--m-scale));
  max-width: 66%;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.index--page .equipment .equipment-list {
  display: flex;
  justify-content: space-between;
  gap: calc(19px * var(--gp-scale));
  max-height: max(14px, calc(400px * var(--fz-scale)));
}
.index--page .equipment .equipment-list .left {
  width: 27.933%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: calc(13px * var(--gp-scale));
}
.index--page .equipment .equipment-list .left .left-item {
  width: 100%;
  height: calc(50% - 7px);
}
.index--page .equipment .equipment-list .center {
  width: 46%;
}
.index--page .equipment .equipment-list .about-right {
  width: 23.533%;
}
.index--page .capabilities {
  padding-top: calc(80px * var(--p-scale));
  padding-bottom: calc(75px * var(--p-scale));
  background-color: #003074;
}
.index--page .capabilities .capabilities-inner .header {
  text-align: center;
  margin-bottom: calc(45px * var(--m-scale));
}
.index--page .capabilities .capabilities-inner .title {
  text-transform: uppercase;
  margin-bottom: calc(10px * var(--m-scale));
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(46px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(62px * var(--lh-scale)); /* 166.667% */
}
.index--page .capabilities .capabilities-inner .desc {
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.index--page .capabilities .capabilities-list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(102px * var(--gp-scale));
}
.index--page .capabilities .capabilities-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 11%;
}
.index--page .capabilities .capabilities-icon {
  width: max(14px, calc(100px * var(--fz-scale)));
  height: max(14px, calc(100px * var(--fz-scale)));
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin-bottom: calc(30px * var(--m-scale));
}
.index--page .capabilities .capabilities-icon img {
  width: max(14px, calc(50px * var(--fz-scale)));
  height: max(14px, calc(50px * var(--fz-scale)));
}
.index--page .capabilities .capabilities-name {
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(20px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(30px * var(--lh-scale));
}
.index--page .industry {
  padding-top: calc(90px * var(--p-scale));
  padding-bottom: calc(94px * var(--p-scale));
  background: #fff;
  max-width: max(14px, calc(1920px * var(--fz-scale)));
  overflow: hidden;
}
.index--page .industry .swiper-prev,
.index--page .industry .swiper-next {
  transform: translateY(-47%);
}
.index--page .industry .industry-inner .inner-header {
  margin-bottom: calc(60px * var(--m-scale));
}
.index--page .industry .industry-inner .inner-header .more-btn {
  transform: translateY(6px);
}
.index--page .industry .industry-swiper {
  position: relative;
}
.index--page .industry .industry-swiper .swiper-slide {
  width: max(14px, calc(500px * var(--fz-scale)));
  height: max(14px, calc(490px * var(--fz-scale)));
  position: relative;
  overflow: hidden;
}
.index--page .industry .industry-swiper .swiper-slide .text-box {
  position: absolute;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: calc(0px * var(--p-scale)) calc(49px * var(--p-scale)) calc(22px * var(--p-scale)) calc(27px * var(--p-scale));
  transform: translateY(max(14px, calc(144px * var(--fz-scale))));
  transition: all 0.3s ease;
}
.index--page .industry .industry-swiper .swiper-slide .view-icon {
  margin-bottom: calc(10px * var(--m-scale));
  width: max(14px, calc(40px * var(--fz-scale)));
  height: max(14px, calc(40px * var(--fz-scale)));
}
.index--page .industry .industry-swiper .swiper-slide .view-title {
  margin-bottom: calc(10px * var(--m-scale));
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(20px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.index--page .industry .industry-swiper .swiper-slide .hidden-desc,
.index--page .industry .industry-swiper .swiper-slide .hidden-more {
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.index--page .industry .industry-swiper .swiper-slide .hidden-more {
  display: inline-block;
}
.index--page .industry .industry-swiper .swiper-slide .hidden-desc {
  margin-bottom: calc(48px * var(--m-scale));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.index--page .industry .industry-swiper .swiper-slide .hidden-box {
  opacity: 0;
}
.index--page .industry .industry-swiper .swiper-slide:hover .text-box {
  transform: translateY(0);
}
.index--page .industry .industry-swiper .swiper-slide:hover .text-box .hidden-box {
  opacity: 1;
}
.index--page .industry .industry-swiper .swiper-slide .view-title,
.index--page .industry .industry-swiper .swiper-slide .hidden-more {
  position: relative;
  text-decoration: none;
}
.index--page .industry .industry-swiper .swiper-slide .view-title::after,
.index--page .industry .industry-swiper .swiper-slide .hidden-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}
.index--page .industry .industry-swiper .swiper-slide .view-title:hover::after,
.index--page .industry .industry-swiper .swiper-slide .hidden-more:hover::after {
  width: 100%;
}
.index--page .industry .industry-swiper .swiper-prev .icon-img .hidden {
  transform: rotate(180deg) translateX(50%) translateY(50%);
}
.index--page .industry .industry-swiper .swiper-next .icon-img .view {
  transform: rotate(180deg) translateX(50%) translateY(50%);
}
.index--page .certification {
  padding-top: calc(90px * var(--p-scale));
  padding-bottom: calc(60px * var(--p-scale));
  background: url(../images/index-certification-bg.jpg) no-repeat 0 0/100% 100%;
  max-width: 1920px;
  overflow: hidden;
}
.index--page .certification img {
  height: auto;
}
.index--page .certification .certification-inner {
  max-width: 100%;
}
.index--page .certification .certification-inner .inner-header {
  margin-bottom: calc(32px * var(--m-scale));
}
.index--page .certification .certification-inner .inner-header .header-text {
  padding: 0;
}
.index--page .certification .swiper-btn_box {
  height: max(14px, calc(64px * var(--fz-scale)));
  display: flex;
  gap: calc(12px * var(--gp-scale));
}
.index--page .certification .swiper-btn {
  width: max(14px, calc(64px * var(--fz-scale)));
  height: max(14px, calc(64px * var(--fz-scale)));
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: max(14px, calc(12px * var(--fz-scale)));
  position: relative;
  background-color: #eeeeee;
  transition: background-color 0.3s ease;
}
.index--page .certification .swiper-btn img {
  transition: opacity 0.3s ease;
  width: max(14px, calc(26px * var(--fz-scale)));
  height: max(14px, calc(26px * var(--fz-scale)));
}
.index--page .certification .swiper-btn .view {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.index--page .certification .swiper-btn:hover {
  background-color: var(--select-color);
  border-color: transparent;
}
.index--page .certification .swiper-btn:hover img {
  opacity: 1;
}
.index--page .certification .swiper-btn:hover .view {
  opacity: 0;
}
.index--page .certification .certification-prev .hidden {
  transform: rotate(180deg);
}
.index--page .certification .certification-next .view {
  transform: rotate(180deg) translate(50%, 50%);
}
.index--page .certification .certification-swiper {
  padding-top: calc(38px * var(--p-scale));
  position: relative;
  margin: 0 auto;
  max-width: max(14px, calc(1664px * var(--fz-scale)));
}
.index--page .certification .certification-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}
.index--page .certification .certification-swiper .swiper-slide:hover {
  transform: translateY(-10px);
}
.index--page .certification .certification-swiper .swiper-slide .slide_inner {
  width: max(14px, calc(294px * var(--fz-scale)));
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.index--page .certification .certification-swiper .swiper-slide .slide_inner img {
  transform: scale(0.76);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}
.index--page .certification .certification-swiper .swiper-slide .slide_inner .text-box {
  margin-top: calc(68px * var(--m-scale));
  opacity: 0;
  align-items: end;
  display: flex;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(20px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.index--page .certification .certification-swiper .swiper-slide-active .slide_inner img {
  transform: scale(1);
}
.index--page .certification .certification-swiper .swiper-slide-active .slide_inner .text-box {
  opacity: 1;
}
.index--page .certification .certification-swiper .swiper-slide-prev .slide_inner img {
  transform: scale(0.856);
  transform-origin: 7% bottom;
}
.index--page .certification .certification-swiper .swiper-slide-next .slide_inner img {
  transform: scale(0.858);
  transform-origin: 92% bottom;
}
.index--page .blog {
  padding-top: calc(99px * var(--p-scale));
  padding-bottom: calc(57px * var(--p-scale));
}
.index--page .blog .blog-inner {
  margin: 0 auto;
}
.index--page .blog .inner-header .header-text {
  margin-bottom: calc(20px * var(--m-scale));
}
.index--page .blog .inner-header .more-btn {
  transform: translateY(calc(12px * var(--p-scale)));
}
.index--page .blog .blog-list {
  background: url(../images/blog-bg.jpg) no-repeat center center/cover;
}
.index--page .blog .blog-list .blog-item {
  display: flex;
  gap: calc(47px * var(--gp-scale));
  padding-top: calc(40px * var(--p-scale));
  padding-bottom: calc(47px * var(--p-scale));
}
.index--page .blog .blog-list .blog-item:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}
.index--page .blog .blog-list .item-img {
  width: max(14px, calc(216px * var(--fz-scale)));
  overflow: hidden;
  cursor: pointer;
}
.index--page .blog .blog-list .item-img img {
  height: auto;
  transition: transform 0.3s ease;
}
.index--page .blog .blog-list .item-img:hover img {
  transform: scale(1.1);
}
.index--page .blog .blog-list .item-text {
  max-width: 70%;
  margin-top: calc(11px * var(--m-scale));
}
.index--page .blog .blog-list .item-text .blog-date {
  margin-bottom: calc(12px * var(--m-scale));
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.index--page .blog .blog-list .item-text .blog-title {
  display: block;
  margin-bottom: calc(11px * var(--m-scale));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.index--page .blog .blog-list .item-text .blog-title:hover {
  color: var(--select-color);
}
.index--page .blog .blog-list .item-text .blog-desc {
  width: 90%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.index--page .blog .blog-list .item-more {
  flex: 1;
  text-align: right;
  position: relative;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.index--page .blog .blog-list .item-more a {
  position: absolute;
  top: 42%;
  right: 0;
  display: inline-block;
  background-image: linear-gradient(to right, var(--select-color) 50%, var(--select-color) 50%);
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.index--page .blog .blog-list .item-more a:hover {
  background-size: 100% 2px;
}

.products--page {
  background-color: #f8f9fd;
}
.products--page .products-content form {
  display: flex;
  gap: calc(60px * var(--gp-scale));
  padding-top: calc(70px * var(--p-scale));
  flex-wrap: wrap;
}
.products--page .products-content .sidebar {
  width: calc(22% + 1px);
}
.products--page .products-content .sidebar .sidebar-header {
  background-color: var(--select-color);
  padding: calc(12px * var(--p-scale)) calc(28px * var(--p-scale)) calc(13px * var(--p-scale)) calc(20px * var(--p-scale));
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(24px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(35px * var(--lh-scale)); /* 166.667% */
}
.products--page .products-content .sidebar .category-list {
  border: 1px solid #e5e5e5;
  border-top: none;
}
.products--page .products-content .sidebar .category-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.products--page .products-content .sidebar .category-item:last-child {
  border-bottom: none;
}
.products--page .products-content .sidebar .category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(20px * var(--p-scale)) calc(13px * var(--p-scale)) calc(17px * var(--p-scale)) calc(20px * var(--p-scale));
  transition: all 0.3s ease;
  background-color: #edf0f5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(19px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.products--page .products-content .sidebar .category-header:hover {
  color: var(--select-color);
}
.products--page .products-content .sidebar .category-header a,
.products--page .products-content .sidebar .category-header .toggle-icon {
  cursor: pointer;
}
.products--page .products-content .sidebar .category-header .toggle-icon {
  width: calc(32px * var(--fz-scale));
  height: calc(32px * var(--fz-scale));
  background-color: var(--select-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.products--page .products-content .sidebar .category-header .toggle-icon .inner {
  background-color: var(--white);
  width: calc(14px * var(--fz-scale));
  height: calc(2px * var(--fz-scale));
}
.products--page .products-content .sidebar .category-header .toggle-icon .v {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transition: all 0.3s ease;
}
.products--page .products-content .sidebar .category-item.active > .category-header {
  position: relative;
  color: var(--select-color);
}
.products--page .products-content .sidebar .category-item.active > .category-header::before {
  content: "";
  width: calc(3px * var(--fz-scale));
  height: calc(20px * var(--fz-scale));
  background-color: var(--select-color);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.products--page .products-content .sidebar .category-item.active > .category-header .v {
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
}
.products--page .products-content .sidebar .sub-category {
  display: none;
}
.products--page .products-content .sidebar .sub-category li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.products--page .products-content .sidebar .sub-category li:last-child {
  border-bottom: none;
}
.products--page .products-content .sidebar .sub-category a {
  padding: calc(15px * var(--p-scale)) 0 calc(13px * var(--p-scale)) calc(20px * var(--p-scale));
  text-decoration: none;
  transition: all 0.3s ease;
  color: #333;
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.products--page .products-content .sidebar .sub-category a:hover {
  color: var(--select-color);
}
.products--page .products-content .sidebar .sub-category a.active {
  color: var(--select-color);
}
.products--page .products-content .product-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: calc(50px * var(--gp-scale)) calc(30px * var(--gp-scale));
}
.products--page .products-content .product-grid .card {
  background-color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.products--page .products-content .product-grid .card .img {
  overflow: hidden;
  background-color: #edf0f5;
}
.products--page .products-content .product-grid .card .img img {
  transition: all 0.3s ease;
}
.products--page .products-content .product-grid .card .img:hover img {
  transform: scale(1.1);
}
.products--page .products-content .product-grid .card .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: calc(17.5px * var(--p-scale)) calc(20px * var(--p-scale));
  padding-bottom: calc(16px * var(--p-scale));
  justify-content: space-between;
}
.products--page .products-content .product-grid .card .title {
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(24px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(35px * var(--lh-scale)); /* 166.667% */
}
.products--page .products-content .product-grid .card .desc {
  margin-top: calc(5px * var(--m-scale));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.products--page .products-content .product-grid .card .inquire {
  margin-top: calc(3px * var(--m-scale));
  display: flex;
  align-items: center;
  gap: calc(8px * var(--gp-scale));
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.products--page .products-content .product-grid .card .inquire input,
.products--page .products-content .product-grid .card .inquire a {
  cursor: pointer;
}
.products--page .products-content .product-grid .card .inquire a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(to right, var(--select-color) 50%, var(--select-color) 50%);
  background-size: 0% 1px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.products--page .products-content .product-grid .card .inquire a:hover {
  background-size: 100% 1px;
}
.products--page .products-content .product-grid .card .inquire input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  width: 15px;
  height: 15px;
  border: 1px solid var(--select-color);
  border-radius: 0;
  position: relative;
  flex-shrink: 0;
  padding: 0;
}
.products--page .products-content .product-grid .card .inquire input[type=checkbox]:checked {
  background-color: var(--select-color);
}
.products--page .products-content .product-grid .card .inquire input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.products--page .products-content .pagination-section {
  padding-left: 26.4%;
  width: 100%;
  padding-top: calc(10px * var(--p-scale));
}
.products--page .blog {
  padding-top: calc(99px * var(--p-scale));
  padding-bottom: calc(57px * var(--p-scale));
  background-color: #fff;
}
.products--page .blog .blog-inner {
  margin: 0 auto;
}
.products--page .blog .inner-header .header-text {
  margin-bottom: calc(20px * var(--m-scale));
}
.products--page .blog .inner-header .more-btn {
  transform: translateY(calc(12px * var(--p-scale)));
}
.products--page .blog .blog-list {
  background: url(../images/blog-bg.jpg) no-repeat center center/cover;
}
.products--page .blog .blog-list .blog-item {
  display: flex;
  gap: calc(47px * var(--gp-scale));
  padding-top: calc(40px * var(--p-scale));
  padding-bottom: calc(47px * var(--p-scale));
}
.products--page .blog .blog-list .blog-item:not(:last-child) {
  border-bottom: 1px solid #d9d9d9;
}
.products--page .blog .blog-list .item-img {
  width: max(14px, calc(216px * var(--fz-scale)));
  overflow: hidden;
  cursor: pointer;
}
.products--page .blog .blog-list .item-img img {
  transition: transform 0.3s ease;
}
.products--page .blog .blog-list .item-img:hover img {
  transform: scale(1.1);
}
.products--page .blog .blog-list .item-text {
  max-width: 70%;
  margin-top: calc(11px * var(--m-scale));
}
.products--page .blog .blog-list .item-text .blog-date {
  margin-bottom: calc(12px * var(--m-scale));
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.products--page .blog .blog-list .item-text .blog-title {
  display: block;
  margin-bottom: calc(11px * var(--m-scale));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.products--page .blog .blog-list .item-text .blog-title:hover {
  color: var(--select-color);
}
.products--page .blog .blog-list .item-text .blog-desc {
  width: 90%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.products--page .blog .blog-list .item-more {
  flex: 1;
  text-align: right;
  position: relative;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.products--page .blog .blog-list .item-more a {
  position: absolute;
  top: 42%;
  right: 0;
  display: inline-block;
  background-image: linear-gradient(to right, var(--select-color) 50%, var(--select-color) 50%);
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.products--page .blog .blog-list .item-more a:hover {
  background-size: 100% 2px;
}

.product-detail--page .section-title {
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(36px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(54px * var(--lh-scale)); /* 166.667% */
}
.product-detail--page .product-display {
  padding-top: calc(70px * var(--p-scale));
  padding-bottom: calc(68px * var(--p-scale));
}
.product-detail--page .product-display .product-display-inner {
  display: flex;
}
.product-detail--page .product-display .product-display-inner .main-image {
  width: max(14px, calc(506px * var(--fz-scale)));
}
.product-detail--page .product-display .product-display-inner .main-image img {
  width: 100%;
  height: auto;
  display: block;
}
.product-detail--page .product-display .product-display-inner .swiper-box {
  height: calc(520px * var(--img-scale));
  padding: 0 calc(25px * var(--p-scale));
  display: flex;
  flex-direction: column;
}
.product-detail--page .product-display .product-display-inner .swiper-box .swiper {
  height: calc(100% - calc(44px * var(--fz-scale)));
  margin-left: 0;
  margin-right: 0;
}
.product-detail--page .product-display .product-display-inner .swiper-box .thumb-list {
  flex: 1;
  width: 100%;
}
.product-detail--page .product-display .product-display-inner .swiper-box .thumb-list .thumb-item {
  overflow: hidden;
  border: 1px solid transparent;
  width: 100%;
}
.product-detail--page .product-display .product-display-inner .swiper-box .thumb-list .thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-detail--page .product-display .product-display-inner .swiper-box .thumb-list .thumb-item:hover {
  cursor: pointer;
}
.product-detail--page .product-display .product-display-inner .swiper-box .thumb-list .thumb-item:hover img {
  transform: scale(1.1);
}
.product-detail--page .product-display .product-display-inner .swiper-box .thumb-list .thumb-item.swiper-slide-thumb-active {
  border: 1px solid var(--select-color);
}
.product-detail--page .product-display .product-display-inner .swiper-box .prev-btn,
.product-detail--page .product-display .product-display-inner .swiper-box .next-btn {
  flex-shrink: 0;
  width: 100%;
  height: calc(22px * var(--fz-scale));
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-detail--page .product-display .product-display-inner .swiper-box .prev-btn .iconfont,
.product-detail--page .product-display .product-display-inner .swiper-box .next-btn .iconfont {
  font-size: calc(12px * var(--fz-scale));
  color: var(--text-color);
  transition: color 0.3s ease;
  height: calc(12px * var(--fz-scale));
  line-height: calc(12px * var(--fz-scale));
}
.product-detail--page .product-display .product-display-inner .swiper-box .prev-btn:hover .iconfont,
.product-detail--page .product-display .product-display-inner .swiper-box .next-btn:hover .iconfont {
  color: var(--select-color);
}
.product-detail--page .product-display .product-display-inner .swiper-box .prev-btn.swiper-button-disabled,
.product-detail--page .product-display .product-display-inner .swiper-box .next-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.product-detail--page .product-display .product-display-inner .swiper-box .prev-btn.swiper-button-disabled:hover .iconfont,
.product-detail--page .product-display .product-display-inner .swiper-box .next-btn.swiper-button-disabled:hover .iconfont {
  color: var(--text-color);
}
.product-detail--page .product-display .product-display-inner .swiper-box .prev-btn {
  align-items: start;
}
.product-detail--page .product-display .product-display-inner .swiper-box .next-btn {
  align-items: end;
}
.product-detail--page .product-display .product-display-inner .product-info {
  flex: 1;
  padding-left: calc(29px * var(--p-scale));
  padding-top: calc(27px * var(--p-scale));
  padding-bottom: calc(35px * var(--p-scale));
}
.product-detail--page .product-display .product-display-inner .product-info .product-title {
  width: 100%;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(36px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(54px * var(--lh-scale)); /* 166.667% */
  padding-bottom: calc(16px * var(--p-scale));
  border-bottom: 1px solid #e8e8e8;
}
.product-detail--page .product-display .product-display-inner .product-info .share-icons {
  display: flex;
  align-items: center;
  margin-top: calc(29px * var(--m-scale));
  gap: calc(4px * var(--gp-scale));
}
.product-detail--page .product-display .product-display-inner .product-info .share-icons .share-label {
  color: #4d4d4d;
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.product-detail--page .product-display .product-display-inner .product-info .share-icons .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-left: calc(5px * var(--p-scale));
}
.product-detail--page .product-display .product-display-inner .product-info .info-inner {
  display: flex;
  flex-direction: column;
  gap: calc(70px * var(--gp-scale));
  margin-top: calc(41px * var(--m-scale));
}
.product-detail--page .product-display .product-display-inner .product-info .info-inner .product-desc {
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.product-detail--page .product-display .product-display-inner .product-info .info-inner .product-btn {
  display: flex;
  gap: calc(15px * var(--gp-scale));
}
.product-detail--page .tech-specs {
  padding-bottom: calc(70px * var(--p-scale));
}
.product-detail--page .edit-inner--section {
  padding-bottom: calc(70px * var(--p-scale));
}
.product-detail--page .edit-inner--section .section-title {
  padding-bottom: calc(30px * var(--p-scale));
}
.product-detail--page .material-list {
  padding-bottom: calc(70px * var(--p-scale));
}
.product-detail--page .tech-specs .section-inner,
.product-detail--page .material-list .section-inner {
  margin: 0 auto;
}
.product-detail--page .tech-specs .section-inner .section-title,
.product-detail--page .material-list .section-inner .section-title {
  padding-bottom: calc(30px * var(--p-scale));
}
.product-detail--page .tech-specs .section-inner table,
.product-detail--page .material-list .section-inner table {
  width: 100%;
  border-collapse: collapse;
}
.product-detail--page .implementation-standard,
.product-detail--page .application-industry {
  padding-bottom: calc(25px * var(--p-scale));
}
.product-detail--page .implementation-standard .section-inner .section-title,
.product-detail--page .application-industry .section-inner .section-title {
  padding-bottom: calc(5px * var(--p-scale));
}
.product-detail--page .implementation-standard .section-inner .section-text,
.product-detail--page .application-industry .section-inner .section-text {
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.product-detail--page .capabilities {
  background-color: #f5f7fa;
  padding-top: calc(55px * var(--p-scale));
  padding-bottom: calc(59px * var(--p-scale));
}
.product-detail--page .capabilities .capabilities-inner .header {
  text-align: left;
  margin-bottom: calc(36px * var(--m-scale));
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(36px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(54px * var(--lh-scale)); /* 166.667% */
}
.product-detail--page .capabilities .capabilities-inner .header .title {
  margin-bottom: calc(10px * var(--m-scale));
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(36px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(62px * var(--lh-scale)); /* 166.667% */
}
.product-detail--page .capabilities .capabilities-inner .header .desc {
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.product-detail--page .capabilities .capabilities-inner .capabilities-list {
  display: flex;
  flex-wrap: wrap;
}
.product-detail--page .capabilities .capabilities-inner .capabilities-list .capabilities-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 11.0665%;
}
.product-detail--page .capabilities .capabilities-inner .capabilities-list .capabilities-item .capabilities-icon {
  width: max(14px, calc(100px * var(--fz-scale)));
  height: max(14px, calc(100px * var(--fz-scale)));
  border-radius: 50%;
  background-color: var(--select-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  margin-bottom: calc(30px * var(--m-scale));
}
.product-detail--page .capabilities .capabilities-inner .capabilities-list .capabilities-item .capabilities-icon img {
  width: max(14px, calc(50px * var(--fz-scale)));
  height: max(14px, calc(50px * var(--fz-scale)));
  filter: brightness(0) invert(1);
}
.product-detail--page .capabilities .capabilities-inner .capabilities-list .capabilities-item .capabilities-icon .iconfont {
  font-size: calc(46px * var(--fz-scale));
  color: var(--white);
}
.product-detail--page .capabilities .capabilities-inner .capabilities-list .capabilities-item .capabilities-name {
  text-align: center;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.product-detail--page .faq {
  padding-top: calc(70px * var(--p-scale));
  padding-bottom: calc(90px * var(--p-scale));
}
.product-detail--page .faq .faq-inner {
  margin: 0 auto;
}
.product-detail--page .faq .inner-header {
  margin-bottom: calc(40px * var(--m-scale));
}
.product-detail--page .faq .inner-header .view-more-btn {
  margin-top: calc(7px * var(--m-scale));
}
.product-detail--page .faq .faq-list .item {
  margin-top: calc(10px * var(--m-scale));
  overflow: hidden;
}
.product-detail--page .faq .faq-list .item .question {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #f8f9fd;
  cursor: pointer;
  transition: background 0.3s ease;
}
.product-detail--page .faq .faq-list .item .question em,
.product-detail--page .faq .faq-list .item .question .label {
  color: var(--, #2264c1);
  font-family: Arial;
  font-size: calc(18px * var(--fz-scale));
  font-style: normal;
  font-weight: 700;
  line-height: max(14px, calc(30px * var(--fz-scale)));
  transition: all 0.3s ease;
}
.product-detail--page .faq .faq-list .item .question .label {
  flex: 1;
  display: flex;
  gap: 4px;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.product-detail--page .faq .faq-list .item .question .btns {
  position: relative;
  flex-shrink: 0;
  width: max(14px, calc(28px * var(--fz-scale)));
  height: max(14px, calc(28px * var(--fz-scale)));
  margin-left: calc(15px * var(--m-scale));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.product-detail--page .faq .faq-list .item .question .btns i {
  position: absolute;
  width: calc(12px * var(--fz-scale));
  height: 2px;
  background: var(--select-color);
  transition: all 0.3s ease;
}
.product-detail--page .faq .faq-list .item .question .btns i.move {
  transform: rotate(90deg);
}
.product-detail--page .faq .faq-list .item .question:hover .label {
  color: var(--select-color);
}
.product-detail--page .faq .faq-list .item .answer {
  overflow: auto;
  display: none;
}
.product-detail--page .faq .faq-list .item .answer .answer-inner {
  display: flex;
  padding: 27px 20px 12px;
}
.product-detail--page .faq .faq-list .item .answer .answer-inner .label {
  flex-shrink: 0;
  margin-right: calc(10px * var(--m-scale));
  color: var(--, #2264c1);
  font-family: Arial;
  font-size: calc(18px * var(--fz-scale));
  font-style: normal;
  font-weight: 700;
  line-height: max(14px, calc(30px * var(--fz-scale)));
}
.product-detail--page .faq .faq-list .item .answer .answer-inner .standardEdit {
  flex: 1;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.product-detail--page .faq .faq-list .item:first-child .answer {
  display: block;
}
.product-detail--page .faq .faq-list .item.active .question {
  background: #f5f7fa;
}
.product-detail--page .faq .faq-list .item.active .question .label {
  color: var(--select-color);
}
.product-detail--page .faq .faq-list .item.active .btns i.move {
  transform: rotate(0);
}
.product-detail--page .faq .faq-list .item.active .answer .answer-inner .label {
  color: var(--select-color);
}
.product-detail--page .faq .faq-list .item:first-child {
  margin-top: calc(0px * var(--m-scale));
}

.about--page .inner-header {
  margin-bottom: calc(33px * var(--m-scale));
}
.about--page .about-section {
  padding-top: calc(70px * var(--p-scale));
  padding-bottom: calc(73px * var(--p-scale));
  background: url(../images/2-1aboutUs-bg-1.png) no-repeat center center/cover;
}
.about--page .about-section .about-left {
  width: 64.7333%;
}
.about--page .about-section .about-left .inner-header {
  margin-bottom: calc(12px * var(--m-scale));
}
.about--page .about-section .about-left .desc {
  margin-bottom: calc(45px * var(--m-scale));
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.about--page .about-section .about-left .edit-inner {
  padding-bottom: calc(6px * var(--p-scale));
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.about--page .about-section .divider {
  margin-top: calc(58px * var(--m-scale));
  margin-bottom: calc(61px * var(--m-scale));
  background-color: #efefef;
  width: 100%;
  height: 1px;
}
.about--page .about-section .factory-inner .factory-content {
  text-align: center;
  color: var(--white);
}
.about--page .about-section .factory-inner .stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about--page .about-section .factory-inner .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 17%;
}
.about--page .about-section .factory-inner .num {
  display: flex;
  justify-content: center;
  align-items: end;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(46px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(62px * var(--lh-scale)); /* 166.667% */
}
.about--page .about-section .factory-inner .unit {
  height: 100%;
  display: flex;
  align-items: end;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(30px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(48px * var(--lh-scale)); /* 166.667% */
}
.about--page .about-section .factory-inner .text {
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.about--page .vr-section {
  max-width: 1920px;
  margin: 0 auto;
}
.about--page .vr-section .vr-inner {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.about--page .vr-section .vr-inner img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
  cursor: pointer;
}
.about--page .vr-section .vr-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.about--page .corporate-section {
  background: url(../images/2-1aboutUs-bg-2.jpg) no-repeat center center/cover;
  padding-top: calc(85px * var(--p-scale));
  padding-bottom: calc(85px * var(--p-scale));
}
.about--page .corporate-section .corporate-inner {
  display: flex;
}
.about--page .corporate-section .corporate-left {
  width: 40%;
}
.about--page .corporate-section .corporate-left .img-box {
  width: max(14px, calc(460px * var(--fz-scale)));
  height: max(14px, calc(460px * var(--fz-scale)));
  border-radius: 50%;
  overflow: hidden;
}
.about--page .corporate-section .corporate-right {
  width: 60%;
  margin-top: calc(3px * var(--m-scale));
}
.about--page .corporate-section .corporate-right .text-box {
  display: flex;
  flex-direction: column;
  gap: calc(46px * var(--gp-scale));
}
.about--page .corporate-section .corporate-right .text-item .title {
  margin-bottom: calc(5px * var(--m-scale));
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(20px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.about--page .corporate-section .corporate-right .text-item .divider {
  width: max(14px, calc(70px * var(--fz-scale)));
  height: 2px;
  margin-bottom: calc(13px * var(--m-scale));
  background-color: var(--white);
}
.about--page .corporate-section .corporate-right .text-item .edit-inner {
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.about--page .equipment-section {
  overflow: hidden;
  padding-top: calc(90px * var(--p-scale));
  padding-bottom: calc(9px * var(--p-scale));
}
.about--page .equipment-section .equipment-inner .inner-header {
  margin-bottom: calc(19px * var(--m-scale));
}
.about--page .equipment-section .equipment-inner .inner-header .more-btn .swiper-btn_box {
  height: max(14px, calc(64px * var(--fz-scale)));
  display: flex;
  gap: calc(12px * var(--gp-scale));
  transform: translateY(-2px);
}
.about--page .equipment-section .equipment-inner .inner-header .more-btn .swiper-btn {
  width: max(14px, calc(64px * var(--fz-scale)));
  height: max(14px, calc(64px * var(--fz-scale)));
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: max(14px, calc(12px * var(--fz-scale)));
  position: relative;
  background-color: #eeeeee;
  transition: background-color 0.3s ease;
}
.about--page .equipment-section .equipment-inner .inner-header .more-btn .swiper-btn img {
  transition: opacity 0.3s ease;
  width: max(14px, calc(26px * var(--fz-scale)));
  height: max(14px, calc(26px * var(--fz-scale)));
}
.about--page .equipment-section .equipment-inner .inner-header .more-btn .swiper-btn .view {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.about--page .equipment-section .equipment-inner .inner-header .more-btn .swiper-btn:hover {
  background-color: var(--select-color);
  border-color: transparent;
}
.about--page .equipment-section .equipment-inner .inner-header .more-btn .swiper-btn:hover img {
  opacity: 1;
}
.about--page .equipment-section .equipment-inner .inner-header .more-btn .swiper-btn:hover .view {
  opacity: 0;
}
.about--page .equipment-section .equipment-inner .inner-header .more-btn .equipment-prev .hidden {
  transform: rotate(180deg);
}
.about--page .equipment-section .equipment-inner .inner-header .more-btn .equipment-next .view {
  transform: rotate(180deg) translate(50%, 50%);
}
.about--page .equipment-section .equipment-text {
  margin-bottom: calc(63px * var(--m-scale));
  padding-right: 26%;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.about--page .equipment-section .equipment-swiper {
  position: relative;
  width: 1230px;
  margin: 0 auto;
}
.about--page .main-equipmen-section {
  padding-top: calc(90px * var(--p-scale));
  padding-bottom: calc(90px * var(--p-scale));
}
.about--page .main-equipmen-section .inner-header {
  margin-bottom: calc(39px * var(--m-scale));
}
.about--page .main-equipmen-section .more-btn .swiper-btn_box {
  height: max(14px, calc(64px * var(--fz-scale)));
  display: flex;
  gap: calc(12px * var(--gp-scale));
}
.about--page .main-equipmen-section .more-btn .swiper-btn {
  width: max(14px, calc(64px * var(--fz-scale)));
  height: max(14px, calc(64px * var(--fz-scale)));
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: max(14px, calc(12px * var(--fz-scale)));
  position: relative;
  background-color: #eeeeee;
  transition: background-color 0.3s ease;
}
.about--page .main-equipmen-section .more-btn .swiper-btn img {
  transition: opacity 0.3s ease;
  width: max(14px, calc(26px * var(--fz-scale)));
  height: max(14px, calc(26px * var(--fz-scale)));
}
.about--page .main-equipmen-section .more-btn .swiper-btn .view {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.about--page .main-equipmen-section .more-btn .swiper-btn:hover {
  background-color: var(--select-color);
  border-color: transparent;
}
.about--page .main-equipmen-section .more-btn .swiper-btn:hover img {
  opacity: 1;
}
.about--page .main-equipmen-section .more-btn .swiper-btn:hover .view {
  opacity: 0;
}
.about--page .main-equipmen-section .more-btn .main-equipmen-prev .hidden {
  transform: rotate(180deg);
}
.about--page .main-equipmen-section .more-btn .main-equipmen-next .view {
  transform: rotate(180deg) translate(50%, 50%);
}
.about--page .main-equipmen-section .main-equipmen_swiper {
  position: relative;
}
.about--page .main-equipmen-section .item {
  position: relative;
  overflow: hidden;
}
.about--page .main-equipmen-section .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.about--page .main-equipmen-section .item .text-box {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding-left: calc(16px * var(--p-scale));
  padding-bottom: calc(18px * var(--p-scale));
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  padding: 0 17.35%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.about--page .main-equipmen-section .item .text-box .text {
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(24px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(35px * var(--lh-scale)); /* 166.667% */
}
.about--page .main-equipmen-section .item:hover {
  cursor: default;
}
.about--page .main-equipmen-section .item:hover .text-box {
  opacity: 1;
}
.about--page .design-strength-section {
  overflow: hidden;
}
.about--page .design-strength-section .design-strength-inner .inner-header {
  margin-bottom: calc(45px * var(--m-scale));
}
.about--page .design-strength-section .design-strength-text {
  padding-bottom: calc(90px * var(--p-scale));
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.about--page .quality-control-section {
  padding-top: calc(108px * var(--p-scale));
  padding-bottom: calc(102px * var(--p-scale));
  /*background: url(../images/2-1aboutUs-bg-3.png) no-repeat center center/cover;*/
}
.about--page .quality-control-section .quality-control-left {
  width: 44.2666%;
}
.about--page .quality-control-section .quality-control-left .inner-header {
  margin-bottom: calc(33px * var(--m-scale));
}
.about--page .quality-control-section .quality-control-left .inner-header .header-text {
  color: var(--white);
}
.about--page .quality-control-section .quality-control-left .edit-inner {
  padding-bottom: calc(6px * var(--p-scale));
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.about--page .quality-control-section .divider {
  margin: calc(60px * var(--m-scale)) 0;
  background-color: #efefef;
  width: 100%;
  height: 1px;
}
.about--page .quality-control-section .factory-inner .factory-content {
  text-align: center;
  color: var(--white);
}
.about--page .quality-control-section .factory-inner .stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about--page .quality-control-section .factory-inner .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 17%;
}
.about--page .quality-control-section .factory-inner .num {
  display: flex;
  justify-content: center;
  align-items: end;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(46px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(62px * var(--lh-scale)); /* 166.667% */
}
.about--page .quality-control-section .factory-inner .unit {
  height: 100%;
  display: flex;
  align-items: end;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(30px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(48px * var(--lh-scale)); /* 166.667% */
}
.about--page .quality-control-section .factory-inner .text {
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.about--page .projects .inner-header {
  margin-bottom: 0;
}

.certification-page .patent-certificate {
  padding-top: calc(70px * var(--p-scale));
  padding-bottom: calc(90px * var(--p-scale));
}
.certification-page .patent-certificate .patent-certificate-inner .inner-header {
  margin-bottom: calc(70px * var(--p-scale));
}
.certification-page .patent-certificate .cert-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(50px * var(--gp-scale)) calc(33px * var(--gp-scale));
}
.certification-page .patent-certificate .cert-item {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.certification-page .patent-certificate .cert-item .cert-img {
  width: 100%;
  overflow: hidden;
  background: #edf0f5;
  padding: calc(30px * var(--p-scale)) calc(35px * var(--p-scale));
  border: 1px solid #eee;
}
.certification-page .patent-certificate .cert-item .cert-img img {
  transition: transform 0.3s ease;
}
.certification-page .patent-certificate .cert-item .cert-img:hover img {
  cursor: pointer;
  transform: scale(1.1);
}
.certification-page .patent-certificate .cert-item .cert-caption {
  padding: calc(25px * var(--p-scale)) calc(10px * var(--p-scale)) 0;
  text-align: center;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.certification-page .patent-certificate .cert-item .cert-caption:hover {
  color: var(--select-color);
}

.industries--page .industries-section {
  padding-top: calc(70px * var(--p-scale));
  padding-bottom: calc(90px * var(--p-scale));
}
.industries--page .industries-section img {
  height: auto;
  width: auto;
}
.industries--page .industries-section .inner-header {
  margin-bottom: calc(70px * var(--m-scale));
}
.industries--page .industries-section .inner-header .header-search {
  width: max(14px, calc(402px * var(--fz-scale)));
  position: relative;
  transform: translateY(7px);
}
.industries--page .industries-section .inner-header .header-search input {
  border: 1px solid #666;
  padding: calc(9px * var(--p-scale)) calc(20px * var(--p-scale));
  padding-right: calc(50px * var(--p-scale));
  color: #666;
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.industries--page .industries-section .inner-header .header-search input[type=submit] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border: none;
  font-family: "iconfont";
  cursor: pointer;
  background: none;
  padding: 0;
  right: calc(20px * var(--p-scale));
  width: max(14px, calc(24px * var(--fz-scale)));
  font-size: max(14px, calc(22px * var(--fz-scale)));
  font-weight: 700;
}
.industries--page .industries-section .list_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(60px * var(--gp-scale)) calc(45px * var(--gp-scale));
  width: 100%;
}
.industries--page .industries-section .list_box .item {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.industries--page .industries-section .list_box .item .img-box {
  overflow: hidden;
  line-height: 0;
}
.industries--page .industries-section .list_box .item .img-box img {
  width: 100%;
  transition: transform 0.3s ease;
}
.industries--page .industries-section .list_box .item .img-box:hover {
  cursor: pointer;
}
.industries--page .industries-section .list_box .item .img-box:hover img {
  transform: scale(1.1);
}
.industries--page .industries-section .list_box .item .text-box {
  margin-top: calc(20px * var(--m-scale));
  width: 100%;
  max-width: 97.5%;
}
.industries--page .industries-section .list_box .item .text-box .title {
  width: 100%;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(24px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(35px * var(--lh-scale)); /* 166.667% */
}
.industries--page .industries-section .list_box .item .text-box .title a {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.industries--page .industries-section .list_box .item .text-box .title a span {
  background-image: linear-gradient(to right, var(--select-color) 50%, var(--select-color) 50%);
  background-size: 0% calc(2px * var(--fz-scale));
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.industries--page .industries-section .list_box .item .text-box .title a span:hover {
  background-size: 100% calc(2px * var(--fz-scale));
}
.industries--page .industries-section .list_box .item .text-box .desc {
  margin-top: calc(13px * var(--m-scale));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--40, var(--text-color));
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.industries--page .industries-section .list_box .item .text-box .def-btn {
  margin-top: calc(29px * var(--m-scale));
}

.industry-detail--page .oil-gas-section {
  padding-top: calc(70px * var(--p-scale));
}
.industry-detail--page .oil-gas-section .info-text_header .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: calc(20px * var(--m-scale));
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(36px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(54px * var(--lh-scale)); /* 166.667% */
}
.industry-detail--page .oil-gas-section .info-text_header .bottom {
  gap: calc(45px * var(--gp-scale));
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.industry-detail--page .oil-gas-section .info-text_header .share-icons {
  display: flex;
  align-items: center;
  gap: calc(4px * var(--gp-scale));
}
.industry-detail--page .oil-gas-section .info-text_header .share-icons .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /*width: max(14px, calc(148px * var(--fz-scale)));*/
  /*height: calc(24px * var(--fz-scale));*/
}
.industry-detail--page .oil-gas-section .divider {
  margin-top: calc(27px * var(--m-scale));
  margin-bottom: calc(30px * var(--m-scale));
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}
.industry-detail--page .background-section .section-inner .section-title,
.industry-detail--page .points-section .section-inner .section-title,
.industry-detail--page .offer-section .section-inner .section-title {
  margin-bottom: calc(20px * var(--m-scale));
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(30px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(48px * var(--lh-scale)); /* 166.667% */
}
.industry-detail--page .background-section .section-inner .edit-inner,
.industry-detail--page .points-section .section-inner .edit-inner,
.industry-detail--page .offer-section .section-inner .edit-inner {
  margin-bottom: calc(38px * var(--m-scale));
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.industry-detail--page .background-section {
  padding-bottom: calc(11px * var(--p-scale));
}
.industry-detail--page .background-section .section-inner .section-title {
  margin-bottom: calc(21px * var(--m-scale));
}
.industry-detail--page .points-section {
  padding-top: calc(51px * var(--p-scale));
  padding-bottom: calc(15px * var(--p-scale));
  background-color: #f8f9fd;
}
.industry-detail--page .points-section .section-inner .section-title {
  margin-bottom: calc(21px * var(--m-scale));
}
.industry-detail--page .points-section .text-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 calc(28px * var(--gp-scale));
}
.industry-detail--page .points-section .text-list .num {
  width: max(14px, calc(40px * var(--fz-scale)));
  height: max(14px, calc(40px * var(--fz-scale)));
  background-color: var(--select-color);
  margin-bottom: calc(15px * var(--m-scale));
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.industry-detail--page .points-section .text-list .title {
  color: #333;
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.industry-detail--page .points-section .text-list .divider {
  background-color: var(--select-color);
  width: 100%;
  height: 1px;
  margin-top: calc(19px * var(--m-scale));
  margin-bottom: calc(21px * var(--m-scale));
}
.industry-detail--page .points-section .text-list .edit-inner {
  margin-bottom: calc(44px * var(--m-scale));
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.industry-detail--page .offer-section {
  padding-top: calc(50px * var(--p-scale));
  padding-bottom: calc(90px * var(--m-scale));
}
.industry-detail--page .offer-section .offer-list {
  margin-top: calc(45px * var(--m-scale));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(25px * var(--gp-scale));
}
.industry-detail--page .offer-section .offer-list .offer-item {
  position: relative;
  padding: calc(58px * var(--p-scale)) calc(34px * var(--p-scale)) calc(22px * var(--p-scale));
  background-color: #f8f9fd;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.industry-detail--page .offer-section .offer-list .offer-item .title {
  transition: all 0.3s ease;
  z-index: 10;
  height: max(14px, calc(72px * var(--fz-scale)));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.industry-detail--page .offer-section .offer-list .offer-item .text {
  transition: all 0.3s ease;
  z-index: 10;
  flex: 1;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.industry-detail--page .offer-section .offer-list .offer-item .item-num {
  transition: all 0.3s ease;
  position: absolute;
  top: max(14px, calc(18px * var(--fz-scale)));
  left: max(14px, calc(34px * var(--fz-scale)));
  color: rgba(34, 100, 193, 0.2);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(70px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(62px * var(--lh-scale)); /* 166.667% */
}
.industry-detail--page .offer-section .offer-list .offer-item:hover {
  background-color: var(--select-color);
}
.industry-detail--page .offer-section .offer-list .offer-item:hover .title,
.industry-detail--page .offer-section .offer-list .offer-item:hover .text {
  color: var(--white);
}
.industry-detail--page .offer-section .offer-list .offer-item:hover .item-num {
  color: #4e83cd;
}
.industry-detail--page .projects-2 {
  padding-bottom: 0;
}

.projects--page .projects-section {
  padding-top: calc(70px * var(--p-scale));
  padding-bottom: calc(90px * var(--p-scale));
}
.projects--page .projects-section img {
  height: auto;
  width: auto;
  max-width: 100%;
}
.projects--page .projects-section .inner-header {
  margin-bottom: calc(70px * var(--m-scale));
}
.projects--page .projects-section .inner-header .header-search {
  width: max(14px, calc(402px * var(--fz-scale)));
  position: relative;
  transform: translateY(7px);
}
.projects--page .projects-section .inner-header .header-search input {
  border: 1px solid #666;
  padding: calc(9px * var(--p-scale)) calc(20px * var(--p-scale));
  padding-right: calc(50px * var(--p-scale));
  color: #666;
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.projects--page .projects-section .inner-header .header-search input[type=submit] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border: none;
  font-family: "iconfont";
  cursor: pointer;
  background: none;
  padding: 0;
  right: calc(20px * var(--p-scale));
  width: max(14px, calc(24px * var(--fz-scale)));
}
.projects--page .projects-section .list_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(50px * var(--gp-scale)) calc(60px * var(--gp-scale));
  width: 100%;
}
.projects--page .projects-section .list_box .item {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.projects--page .projects-section .list_box .item .img-box {
  overflow: hidden;
  line-height: 0;
}
.projects--page .projects-section .list_box .item .img-box img {
  transition: transform 0.3s ease;
}
.projects--page .projects-section .list_box .item .img-box:hover {
  cursor: pointer;
}
.projects--page .projects-section .list_box .item .img-box:hover img {
  transform: scale(1.1);
}
.projects--page .projects-section .list_box .item .text-box {
  margin-top: calc(20px * var(--m-scale));
  width: 100%;
  max-width: 97.5%;
}
.projects--page .projects-section .list_box .item .text-box .title {
  width: 100%;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.projects--page .projects-section .list_box .item .text-box .title a {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.projects--page .projects-section .list_box .item .text-box .title a:hover {
  color: var(--select-color);
}
.projects--page .projects-section .list_box .item .text-box .desc {
  margin-top: calc(9px * var(--m-scale));
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--40, var(--text-color));
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.projects--page .projects-section .list_box .item .text-box .divider {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  margin-top: calc(13px * var(--m-scale));
  margin-bottom: calc(20px * var(--m-scale));
}
.projects--page .projects-section .list_box .item .text-box .btn {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
  background-image: linear-gradient(to right, var(--select-color) 50%, var(--select-color) 50%);
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.projects--page .projects-section .list_box .item .text-box .btn:hover {
  background-size: 100% 2px;
}

.project-detail--page .project-display {
  padding-top: calc(70px * var(--p-scale));
  padding-bottom: calc(90px * var(--p-scale));
}
.project-detail--page .project-display .info-text_header .title {
  margin-bottom: calc(20px * var(--m-scale));
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(36px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(54px * var(--lh-scale)); /* 166.667% */
}
.project-detail--page .project-display .info-text_header .bottom {
  gap: calc(45px * var(--gp-scale));
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.project-detail--page .project-display .info-text_header .share-icons {
  display: flex;
  align-items: center;
  gap: calc(4px * var(--gp-scale));
}
.project-detail--page .project-display .info-text_header .share-icons .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /*width: max(14px, calc(148px * var(--fz-scale)));*/
  /*height: calc(24px * var(--fz-scale));*/
}
.project-detail--page .project-display .divider {
  margin-top: calc(27px * var(--m-scale));
  margin-bottom: calc(50px * var(--m-scale));
  width: 93.33%;
  height: 1px;
  background-color: #d9d9d9;
}
.project-detail--page .project-display .inner .inner-top {
  display: flex;
}
.project-detail--page .project-display .inner .inner-top .main-image {
  width: calc(50% - 20px * var(--gp-scale));
  overflow: hidden;
  position: relative;
}
.project-detail--page .project-display .inner .inner-top .main-image .item_img {
  height: 100%;
}
.project-detail--page .project-display .inner .inner-top .main-image .img-caption {
  height: auto;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--select-color);
  padding: calc(10px * var(--p-scale));
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.project-detail--page .project-display .inner .inner-top .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: calc(50px * var(--p-scale));
}
.project-detail--page .project-display .inner .inner-top .info .title {
  padding-bottom: calc(30px * var(--p-scale));
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(36px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(54px * var(--lh-scale)); /* 166.667% */
}
.project-detail--page .project-display .inner .inner-top .info .image-caption {
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.project-detail--page .project-display .inner .inner-bottom {
  margin-top: calc(60px * var(--m-scale));
}
.project-detail--page .project-display .inner .inner-bottom .bottom-detail .title {
  padding-bottom: 1px;
  color: var(--222, var(--primary-color));
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(36px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(54px * var(--lh-scale)); /* 166.667% */
}
.project-detail--page .project-display .inner .inner-bottom .bottom-detail .inner .header {
  margin-top: calc(28px * var(--m-scale));
  background-color: #edf0f5;
  padding: calc(15px * var(--p-scale)) calc(20px * var(--p-scale));
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(20px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.project-detail--page .project-display .inner .inner-bottom .bottom-detail .inner .info {
  margin-top: calc(22px * var(--m-scale));
}
.project-detail--page .project-display .inner .inner-bottom .bottom-detail .inner .info em {
  display: flex;
  align-items: center;
  gap: calc(8px * var(--gp-scale));
  margin-bottom: 11.5px;
}
.project-detail--page .project-display .inner .inner-bottom .bottom-detail .inner .info em::before {
  content: "";
  width: calc(12px * var(--fz-scale));
  height: calc(12px * var(--fz-scale));
  background-color: var(--select-color);
  border-radius: 50%;
}
.project-detail--page .project-display .inner .inner-bottom .bottom-detail .inner .info {
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.project-detail--page .project-display .inner .inner-bottom .bottom-img-box {
  margin-top: calc(78px * var(--m-scale));
  display: flex;
  gap: calc(40px * var(--gp-scale));
}
.project-detail--page .project-display .inner .inner-bottom .bottom-img-box .item {
  flex: 1;
  position: relative;
}
.project-detail--page .project-display .inner .inner-bottom .bottom-img-box .item_img {
  height: 100%;
}
.project-detail--page .project-display .inner .inner-bottom .bottom-img-box .img-caption {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--select-color);
  padding: calc(10px * var(--p-scale));
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}

.blog--page .blog-section {
  padding-top: calc(70px * var(--p-scale));
  padding-bottom: calc(90px * var(--p-scale));
  background: #fff;
}
.blog--page .blog-section .inner-header {
  align-items: center;
}
@media (min-width: 1660px) {
  .blog--page .blog-section .inner-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
}
.blog--page .blog-section .inner-header {
  margin-bottom: calc(20px * var(--m-scale));
}
.blog--page .blog-section .inner-header .header-btn_custom {
  display: flex;
  gap: calc(20px * var(--gp-scale));
}
.blog--page .blog-section .inner-header .header-btn_custom .custom-more {
  background-color: #edf0f5;
  transition: all 0.3s ease;
  padding: calc(8px * var(--p-scale)) calc(20px * var(--p-scale));
  color: #333;
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.blog--page .blog-section .inner-header .header-btn_custom .custom-more.active, .blog--page .blog-section .inner-header .header-btn_custom .custom-more:hover {
  cursor: pointer;
  background-color: var(--select-color);
  color: var(--white);
}
.blog--page .blog-section .blog-title {
  font-size: max(14px, calc(28px * var(--fz-scale)));
  font-weight: bold;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: mm(20);
}
.blog--page .blog-section .more-list_box img {
  height: auto;
}
.blog--page .blog-section .more-list_box .more-list {
  display: none;
}
.blog--page .blog-section .more-list_box .more-list.active {
  display: block;
}
.blog--page .blog-section .more-list_box .more-list .more-list_item {
  display: flex;
  gap: calc(30px * var(--gp-scale));
  padding-top: calc(50px * var(--p-scale));
  padding-bottom: calc(49px * var(--p-scale));
  border-bottom: 1px solid #d9d9d9;
}
.blog--page .blog-section .more-list_box .more-list .item-img {
  width: 21.3332;
  overflow: hidden;
  cursor: pointer;
}
.blog--page .blog-section .more-list_box .more-list .item-img img {
  transition: transform 0.3s ease;
}
.blog--page .blog-section .more-list_box .more-list .item-img:hover img {
  transform: scale(1.1);
}
.blog--page .blog-section .more-list_box .more-list .item-text {
  flex: 1;
}
.blog--page .blog-section .more-list_box .more-list .item-text .date {
  margin-bottom: calc(20px * var(--m-scale));
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.blog--page .blog-section .more-list_box .more-list .item-text .title {
  display: block;
  margin-bottom: calc(15px * var(--m-scale));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog--page .blog-section .more-list_box .more-list .item-text .title span {
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(24px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(35px * var(--lh-scale)); /* 166.667% */
}
.blog--page .blog-section .more-list_box .more-list .item-text .title span:hover {
  color: var(--select-color);
}
.blog--page .blog-section .more-list_box .more-list .item-text .desc {
  width: 100%;
  margin-bottom: calc(55px * var(--m-scale));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.blog--page .blog-section .more-list_box .more-list .item-text .more-btn {
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.blog--page .blog-section .more-list_box .more-list .item-text .more-btn a span {
  background-image: linear-gradient(to right, var(--select-color) 50%, var(--select-color) 50%);
  background-size: 0% 2px;
  background-position: left bottom;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.blog--page .blog-section .more-list_box .more-list .item-text .more-btn a span:hover {
  background-size: 100% 2px;
}

.blog-detail--page .blog-display {
  padding-top: calc(70px * var(--p-scale));
  padding-bottom: calc(90px * var(--p-scale));
}
.blog-detail--page .blog-display .info-text_header .title {
  margin-bottom: calc(20px * var(--m-scale));
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(36px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(54px * var(--lh-scale)); /* 166.667% */
}
.blog-detail--page .blog-display .info-text_header .bottom {
  gap: calc(45px * var(--gp-scale));
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.blog-detail--page .blog-display .info-text_header .share-icons {
  display: flex;
  align-items: center;
  gap: calc(4px * var(--gp-scale));
}
.blog-detail--page .blog-display .info-text_header .share-icons .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /*width: max(14px, calc(148px * var(--fz-scale)));*/
  /*height: calc(24px * var(--fz-scale));*/
}
.blog-detail--page .blog-display .divider {
  margin-top: calc(27px * var(--m-scale));
  margin-bottom: calc(30px * var(--m-scale));
  width: 93.33%;
  height: 1px;
  background-color: #d9d9d9;
}
.blog-detail--page .blog-display .blog-inner .info {
  margin-top: calc(22px * var(--m-scale));
}
.blog-detail--page .blog-display .blog-inner .info em {
  display: flex;
  align-items: center;
  gap: calc(8px * var(--gp-scale));
  margin-bottom: 11.5px;
}
.blog-detail--page .blog-display .blog-inner .info em::before {
  content: "";
  width: calc(12px * var(--fz-scale));
  height: calc(12px * var(--fz-scale));
  background-color: var(--select-color);
  border-radius: 50%;
}
.blog-detail--page .blog-display .blog-inner .info {
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.blog-detail--page .blog-display .blog-inner .inner-img-box {
  margin-top: calc(40px * var(--m-scale));
  display: flex;
  gap: calc(32px * var(--gp-scale));
}
.blog-detail--page .blog-display .blog-inner .inner-img-box .item_img {
  flex: 1;
  height: 100%;
}
.blog-detail--page .blog-display .divider_bottom {
  margin-top: calc(60px * var(--m-scale));
  margin-bottom: calc(45px * var(--m-scale));
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}
.blog-detail--page .blog-display .page-btn_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.blog-detail--page .blog-display .page-btn_box .text-box {
  max-width: 51%;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.blog-detail--page .blog-display .page-btn_box .text-box .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.blog-detail--page .blog-display .page-btn_box .text-box .desc span {
  transition: all 0.6s ease;
}
.blog-detail--page .blog-display .page-btn_box .text-box .desc:hover span {
  color: var(--select-color);
}
.blog-detail--page .blog-display .page-btn_box .page-prev,
.blog-detail--page .blog-display .page-btn_box .page-next {
  flex: 1;
  display: flex;
  align-items: center;
  gap: calc(20px * var(--gp-scale));
}
.blog-detail--page .blog-display .page-btn_box .page-prev .btn-item a,
.blog-detail--page .blog-display .page-btn_box .page-next .btn-item a {
  background-color: #f8f9fd;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: calc(8px * var(--fz-scale));
  text-decoration: none;
  transition: all 0.3s ease;
  width: calc(48px * var(--fz-scale));
  height: calc(48px * var(--fz-scale));
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(14px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(24px * var(--lh-scale)); /* 166.667% */
}
.blog-detail--page .blog-display .page-btn_box .page-prev .btn-item a .iconfont,
.blog-detail--page .blog-display .page-btn_box .page-next .btn-item a .iconfont {
  font-size: calc(12px * var(--fz-scale));
}
.blog-detail--page .blog-display .page-btn_box .page-prev .btn-item:hover a,
.blog-detail--page .blog-display .page-btn_box .page-next .btn-item:hover a {
  background: var(--select-color);
  color: #fff;
}
.blog-detail--page .blog-display .page-btn_box .page-prev.disabled .btn-item, .blog-detail--page .blog-display .page-btn_box .page-prev.disabled .title,
.blog-detail--page .blog-display .page-btn_box .page-next.disabled .btn-item,
.blog-detail--page .blog-display .page-btn_box .page-next.disabled .title {
  pointer-events: none;
}
.blog-detail--page .blog-display .page-btn_box .page-prev {
  justify-content: flex-start;
}
.blog-detail--page .blog-display .page-btn_box .page-next {
  justify-content: flex-end;
  text-align: right;
}

.faq--page .faq-section {
  padding-top: calc(70px * var(--p-scale));
  padding-bottom: calc(90px * var(--p-scale));
}
.faq--page .faq-section .inner-header {
  margin-bottom: calc(70px * var(--m-scale));
}
.faq--page .faq-section .inner-header .header-text_custom {
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(46px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(62px * var(--lh-scale)); /* 166.667% */
}
.faq--page .faq-section .faq-list .item {
  border-radius: calc(8px * var(--fz-scale));
  margin-top: calc(21px * var(--m-scale));
  overflow: auto;
}
.faq--page .faq-section .faq-list .item .question {
  display: flex;
  align-items: center;
  padding: calc(20px * var(--p-scale)) calc(30px * var(--p-scale));
  padding-bottom: calc(18px * var(--p-scale));
  background-color: #f5f6f7;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.faq--page .faq-section .faq-list .item .question em {
  font-style: normal;
}
.faq--page .faq-section .faq-list .item .question .label {
  flex: 1;
  display: flex;
  gap: 4px;
}
.faq--page .faq-section .faq-list .item .question .btns {
  position: relative;
  flex-shrink: 0;
  width: max(14px, calc(20px * var(--fz-scale)));
  height: max(14px, calc(20px * var(--fz-scale)));
  margin-left: calc(15px * var(--m-scale));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: var(--select-color);
  border-radius: 50%;
}
.faq--page .faq-section .faq-list .item .question .btns i {
  position: absolute;
  width: calc(10px * var(--fz-scale));
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.faq--page .faq-section .faq-list .item .question .btns i.move {
  transform: rotate(90deg);
}
.faq--page .faq-section .faq-list .item .question:hover .label {
  color: var(--select-color);
}
.faq--page .faq-section .faq-list .item:first-child .answer {
  display: block;
}
.faq--page .faq-section .faq-list .item .answer {
  display: none;
  padding: calc(24px * var(--p-scale)) calc(30px * var(--p-scale)) calc(28px * var(--p-scale));
  background-color: #f5f6f7;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.faq--page .faq-section .faq-list .item .answer .answer-inner {
  overflow: auto;
  transition: max-height 0.4s ease;
}
.faq--page .faq-section .faq-list .item.active .question {
  background: var(--select-color);
}
.faq--page .faq-section .faq-list .item.active .question em,
.faq--page .faq-section .faq-list .item.active .question .label {
  color: var(--white);
}
.faq--page .faq-section .faq-list .item.active .btns {
  opacity: 0;
}
.faq--page .faq-section .faq-list .item:first-child {
  margin-top: calc(0px * var(--m-scale));
}
.faq--page .pagination-section .pagination .page-item a {
  background-color: #e9f0f9;
}

.contact--page .contact-section {
  padding-top: calc(70px * var(--p-scale));
  padding-bottom: calc(82px * var(--p-scale));
}
.contact--page .contact-section .contact-header {
  text-align: center;
}
.contact--page .contact-section .contact-header .title {
  margin-bottom: calc(19px * var(--m-scale));
  color: var(--select-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(46px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(62px * var(--lh-scale)); /* 166.667% */
}
.contact--page .contact-section .contact-header .desc {
  margin-bottom: calc(54px * var(--m-scale));
  padding: 0 20%;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.contact--page .contact-section .contact-info {
  margin-top: calc(91.75px * var(--m-scale));
}
.contact--page .contact-section .contact-info .info-list {
  display: grid;
  gap: calc(28.91px * var(--gp-scale));
  grid-template-columns: repeat(4, 1fr);
}
.contact--page .contact-section .contact-info .info-list .info-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f8f9fb;
  border-radius: calc(20px * var(--fz-scale));
  position: relative;
  min-height: max(14px, calc(212px * var(--fz-scale)));
  padding-bottom: 12px;
  flex-shrink: 0;
}
.contact--page .contact-section .contact-info .info-list .info-item .info-icon {
  position: absolute;
  top: 0;
  width: max(14px, calc(78.64px * var(--fz-scale)));
  height: max(14px, calc(78.64px * var(--fz-scale)));
  border-radius: 50%;
  background: var(--select-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
}
.contact--page .contact-section .contact-info .info-list .info-item .info-icon img {
  width: max(14px, calc(31.04px * var(--fz-scale)));
  height: max(14px, calc(31.04px * var(--fz-scale)));
}
.contact--page .contact-section .contact-info .info-list .info-item .info-text {
  margin-top: calc(53px * var(--m-scale));
  padding: 0 6%;
}
.contact--page .contact-section .contact-info .info-list .info-item .info-text .info-title {
  margin-bottom: calc(6px * var(--m-scale));
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(18px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(30px * var(--lh-scale)); /* 166.667% */
}
.contact--page .contact-section .contact-info .info-list .info-item .info-text .info-desc {
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.contact--page .contact-section .contact-info .info-list .info-item .E-mail .info-desc:hover {
  color: var(--select-color);
}
.contact--page .contact-section .contact-form {
  background: #eef1f6;
  border-radius: calc(16px * var(--fz-scale));
  padding: calc(50px * var(--p-scale));
  margin-top: calc(71.25px * var(--m-scale));
  padding-right: calc(49px * var(--p-scale));
}
.contact--page .contact-section .contact-form .header {
  text-align: center;
  margin-bottom: calc(40px * var(--m-scale));
}
.contact--page .contact-section .contact-form .header .title {
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(36px * var(--fz-scale)));
  font-style: normal;
  font-weight: 700;
  line-height: calc(54px * var(--lh-scale)); /* 166.667% */
}
.contact--page .contact-section .contact-form .header .title span {
  color: var(--select-color);
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(14px * var(--gp-scale));
  margin-bottom: calc(12px * var(--m-scale));
  width: 100%;
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row:last-child {
  margin-bottom: 0;
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col-24 {
  grid-column: span 2;
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col input,
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col input[type=text],
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col input[type=email],
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col input[type=tel],
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col textarea {
  background-color: transparent;
  height: max(14px, calc(62px * var(--fz-scale)));
  width: 100%;
  border: 1px solid #d2d2d2;
  border-radius: calc(4px * var(--fz-scale));
  outline: none;
  transition: all 0.3s ease;
  display: block;
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col input::placeholder,
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col input[type=text]::placeholder,
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col input[type=email]::placeholder,
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col input[type=tel]::placeholder,
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col textarea::placeholder {
  color: var(--text-color);
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col textarea {
  resize: none;
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel {
  position: relative;
  width: 100%;
  height: max(14px, calc(62px * var(--fz-scale)));
  user-select: none;
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel .sel-btn {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: 1px solid #d2d2d2;
  padding-left: calc(14px * var(--p-scale));
  padding-right: calc(14px * var(--p-scale));
  border-radius: calc(4px * var(--fz-scale));
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel .sel-btn .sel-txt {
  color: var(--primary-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel .sel-btn .sel-txt.ph {
  color: var(--text-color);
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel .sel-btn .iconfont {
  color: var(--text-color);
  font-size: max(14px, calc(14px * var(--fz-scale)));
  transition: transform 0.3s ease;
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel .sel-list {
  position: absolute;
  top: calc(100% + calc(6px * var(--m-scale)));
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  border-radius: calc(4px * var(--fz-scale));
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-height: max(14px, calc(240px * var(--fz-scale)));
  overflow-y: auto;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s ease;
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel .sel-list li {
  padding: calc(10px * var(--fz-scale));
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(24px * var(--lh-scale)); /* 166.667% */
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel .sel-list li:hover, .contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel .sel-list li.on {
  background-color: color-mix(in srgb, var(--select-color) 10%, #fff);
  color: var(--select-color);
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel .sel-list li.on {
  background-color: var(--select-color);
  color: #fff;
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel.on .sel-btn {
  border-color: var(--select-color);
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel.on .sel-btn .iconfont {
  transform: rotate(180deg);
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .sel.on .sel-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col.required {
  position: relative;
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col.required::before {
  content: "*";
  position: absolute;
  left: calc(15px * var(--p-scale));
  top: calc(20px * var(--p-scale));
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  color: #f00;
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(20px * var(--lh-scale)); /* 166.667% */
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col.required input,
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col.required textarea {
  padding-left: calc(calc(10px * var(--p-scale)) + max(14px, calc(14px * var(--fz-scale))));
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .captcha-box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid #d2d2d2;
  border-radius: calc(4px * var(--fz-scale));
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .captcha-box input {
  flex: 1;
  border: none;
  border-radius: 0;
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .captcha-box .captcha-img {
  flex-shrink: 0;
  cursor: pointer;
  background-color: #f3f4f6;
  padding-right: calc(14px * var(--p-scale));
  width: max(14px, calc(95px * var(--fz-scale)));
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .captcha-box .captcha-img img {
  height: auto;
  display: block;
  width: 100%;
  object-fit: cover;
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .submit-btn {
  width: 100%;
  height: 100%;
  background: var(--select-color);
  border: 1px solid transparent;
  padding: calc(12px * var(--p-scale)) calc(20px * var(--p-scale));
  border-radius: calc(4px * var(--fz-scale));
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: max(14px, calc(16px * var(--fz-scale)));
  font-style: normal;
  font-weight: 400;
  line-height: calc(28px * var(--lh-scale)); /* 166.667% */
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col .submit-btn:hover {
  background: #fff;
  border-color: var(--select-color);
  color: var(--select-color);
}
.contact--page .contact-section .contact-form .contact-form-inner .form-row .col textarea {
  height: max(14px, calc(216px * var(--fz-scale)));
}

body {
  min-width: 320px;
}

@media (max-width: 1800px) {
  .global .swiper-prev {
    left: 0;
    width: 56px;
    height: 56px;
    transform: translateY(-50%) translateX(calc(-100% - 5px));
  }
  .global .swiper-next {
    right: 0;
    width: 56px;
    height: 56px;
    transform: translateY(-50%) translateX(calc(100% + 5px));
  }
  .industry-detail--page .industries .inner-header .header-search {
    transform: none;
  }
  .index--page .capabilities .capabilities-list {
    gap: 0;
    justify-content: space-around;
  }
  .index--page .capabilities .capabilities-list .capabilities-item {
    width: 16.5%;
  }
  .index--page .hot-product .swiper-prev,
  .index--page .industry .swiper-prev {
    left: 0;
    width: 56px;
    height: 56px;
    transform: translateY(-50%) translateX(calc(-100% - 5px));
  }
  .index--page .hot-product .swiper-next,
  .index--page .industry .swiper-next {
    right: 0;
    width: 56px;
    height: 56px;
    transform: translateY(-50%) translateX(calc(100% + 5px));
  }
}
@media (max-width: 1660px) {
  :root {
    --fz-scale: 0.8;
    --p-scale: 0.7;
    --m-scale: 0.7;
    --lh-scale: 0.8;
    --gp-scale: 0.7;
    --img-scale: 0.8;
  }
  .safe-range {
    max-width: calc(100% - 120px);
    margin: 0 auto;
  }
  .global .swiper-prev {
    left: 0;
    width: 48px;
    height: 48px;
    transform: translateY(-50%) translateX(calc(-100% - 5px));
  }
  .global .swiper-next {
    right: 0;
    width: 48px;
    height: 48px;
    transform: translateY(-50%) translateX(calc(100% + 5px));
  }
  .global .footer .footer-inner .list-box.footer-form textarea {
    padding-top: calc(15px * var(--p-scale));
  }
  .global .edit-inner table td {
    padding: 0 5%;
  }
  .index--page .industry {
    max-width: 1920px;
  }
  .index--page .hot-product .swiper-prev,
  .index--page .hot-product .swiper-next,
  .index--page .industry .swiper-prev,
  .index--page .industry .swiper-next {
    width: 48px;
    height: 48px;
  }
  .index--page .hot-product .swiper-prev,
  .index--page .industry .swiper-prev {
    left: 0;
    transform: translateY(-50%) translateX(calc(-100% - 5px));
  }
  .index--page .hot-product .swiper-next,
  .index--page .industry .swiper-next {
    right: 0;
    transform: translateY(-50%) translateX(calc(100% + 5px));
  }
}
@media (max-width: 1333px) {
  :root {
    --fz-scale: 0.6;
    --lh-scale: 0.7;
    --img-scale: 0.6;
    --p-scale: 0.6;
    --gp-scale: 0.6;
    --m-scale: 0.6;
  }
  .safe-range {
    max-width: calc(100% - 120px);
    margin: 0 auto;
  }
  .header-page .header-right {
    margin-left: 30px;
  }
  .index--page .equipment .equipment-list {
    max-height: 220px;
  }
  .index--page .factory .item {
    width: 20%;
  }
  .index--page .factory:nth-of-type(:last-child) {
    text-align: left;
  }
  .index--page .blog .blog-list .blog-item {
    gap: 12px;
  }
  .products--page .products-content .product-grid .card .info {
    gap: 6px;
  }
  .products--page .blog .blog-list .blog-item {
    gap: 12px;
  }
  .certification-page .patent-certificate .cert-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .industry-detail--page .industries .list_box {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact--page .contact-section .contact-info .info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(max(14px, calc(39.32px * var(--fz-scale))) + 12px) 18px;
  }
  .about--page .about-section .factory-inner .stats {
    flex-wrap: wrap;
    justify-content: start;
    gap: 6px;
  }
  .about--page .about-section .factory-inner .item {
    width: calc(33.33% - 6px);
  }
  .about--page .about-section .factory-inner:nth-of-type(:last-child) {
    text-align: left;
  }
  .about--page .corporate-section .corporate-left .img-box {
    width: max(14px, calc(560px * var(--fz-scale)));
    height: max(14px, calc(560px * var(--fz-scale)));
  }
}
@media (max-width: 1000px) {
  .safe-range,
  .equipment-swiper {
    max-width: calc(100% - 80px);
    margin: 0 auto;
  }
  .global {
    padding-bottom: 50px;
    /* ===== Mobile Menu ===== */
  }
  .global .mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100vh;
    background: #1e1e1e;
    z-index: 998;
    padding-top: 80px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .global .mobile-menu.active {
    transform: translateX(0);
  }
  .global .mobile-menu .nav {
    display: flex;
    flex-direction: column;
    padding: 0 30px;
  }
  .global .mobile-menu .nav .search-box {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0;
  }
  .global .mobile-menu .nav .search-box input[type=text] {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
  }
  .global .mobile-menu .nav .search-box input[type=text]::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .global .mobile-menu .nav .search-box .search-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    font-family: "iconfont";
  }
  .global .mobile-menu .nav .link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    padding: 14px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.3s;
  }
  .global .mobile-menu .nav .link.active {
    color: #fff;
    font-weight: 700;
  }
  .global .mobile-menu .nav .nav-item.has-sub .nav-item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .global .mobile-menu .nav .nav-item.has-sub .nav-item-inner .link {
    border-bottom: none;
    flex: 1;
  }
  .global .mobile-menu .nav .nav-item.has-sub .nav-item-inner .sub-icon {
    padding: 14px 0 14px 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    transition: transform 0.3s;
  }
  .global .mobile-menu .nav .nav-item.has-sub.active > .nav-item-inner .sub-icon {
    transform: rotate(180deg);
  }
  .global .mobile-menu .nav .nav-item.has-sub.active > .sub {
    max-height: 800px;
    opacity: 1;
    visibility: visible;
    padding: 5px 0 10px;
  }
  .global .mobile-menu .nav .nav-item.has-sub .sub {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
  }
  .global .mobile-menu .nav .nav-item.has-sub .sub .sub-item .sub-item-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 20px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .global .mobile-menu .nav .nav-item.has-sub .sub .sub-item .sub-item-inner i {
    font-size: 10px;
    transition: transform 0.3s;
  }
  .global .mobile-menu .nav .nav-item.has-sub .sub .sub-item.active > .sub-item-inner i {
    transform: rotate(180deg);
  }
  .global .mobile-menu .nav .nav-item.has-sub .sub .sub-item.active > .sub-sub {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding: 5px 0;
  }
  .global .mobile-menu .nav .nav-item.has-sub .sub .sub-item .sub-sub {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
  }
  .global .mobile-menu .nav .nav-item.has-sub .sub .sub-item .sub-sub .sub-link {
    display: block;
    padding: 8px 0 8px 35px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
  }
  .global .mobile-menu .nav .nav-item.has-sub .sub .sub-item .sub-sub .sub-link:hover {
    color: #fff;
  }
  .global .mobile-menu .menu-footer {
    padding: 20px 30px;
  }
  .global .mobile-menu .menu-footer .btn-contact {
    display: block;
    text-align: center;
    padding: 12px;
    background: var(--select-color, #c00);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
  }
  .global .menu-open {
    overflow: hidden;
  }
  .global {
    /* ===== Footer Accordion (Mobile) ===== */
  }
  .global .footer .footer-inner {
    flex-wrap: wrap;
    padding: 0 12px;
  }
  .global .footer .footer-inner .list-box {
    width: 100% !important;
    padding-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .global .footer .footer-inner .list-box a {
    line-height: 28px;
  }
  .global .footer .footer-inner .list-box .title {
    position: relative;
    margin-bottom: 0;
    padding: 15px 0;
    cursor: pointer;
    font-size: 16px;
    pointer-events: auto;
  }
  .global .footer .footer-inner .list-box .title::after {
    content: "\e72f";
    font-family: "iconfont" !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }
  .global .footer .footer-inner .list-box ul {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
  }
  .global .footer .footer-inner .list-box.collapse .title::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .global .footer .footer-inner .list-box.collapse ul {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding: 5px 0 15px;
  }
  .global .footer .footer-inner .list-box.footer-form {
    border-bottom: none;
  }
  .global .footer .footer-inner .list-box.footer-form .title::after {
    content: "\e72f";
    font-family: "iconfont" !important;
  }
  .global .footer .footer-inner .list-box.footer-form form {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
  }
  .global .footer .footer-inner .list-box.footer-form.collapse form {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding: 10px 0 15px;
  }
  .global .inner-header .more-btn {
    transform: none;
    margin-bottom: 12px;
  }
  .global .edit-inner table td {
    padding: 0 3%;
  }
  .global .swiper-prev,
  .global .swiper-next {
    width: 48px;
    height: 48px;
  }
  .global .swiper-prev {
    left: 50% !important;
    top: auto !important;
    bottom: 0 !important;
    transform: translateX(calc(-100% - 3px)) translateY(calc(100% + 12px)) !important;
  }
  .global .swiper-next {
    left: 50% !important;
    top: auto !important;
    bottom: 0 !important;
    transform: translateX(3px) translateY(calc(100% + 12px)) !important;
  }
  .global .projects-2 {
    padding-bottom: 75px;
  }
  .global .blog .blog-list .item-more a {
    top: 5%;
  }
  .index--page .banner .banner-inner .swiper-prev,
  .index--page .banner .banner-inner .swiper-next {
    display: none;
  }
  .index--page .hot-product {
    padding-bottom: 75px;
  }
  .index--page #banner-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: calc(12px * var(--gp-scale));
    height: 14px;
  }
  .index--page #banner-dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    aspect-ratio: 1/1;
    border-radius: 10px;
    opacity: 0.6;
    background: #fff;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  }
  .index--page #banner-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    border-radius: 14px;
    border: 2px solid #fff;
    background: var(--select-color);
    opacity: 1;
  }
  .index--page .about .about-left {
    width: 45%;
  }
  .index--page .factory .stats {
    justify-content: flex-start;
  }
  .index--page .factory .stats .item {
    width: 33.33%;
  }
  .index--page .equipment .equipment-text {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 控制显示行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .index--page .capabilities .capabilities-list {
    gap: 12px 0;
  }
  .index--page .capabilities .capabilities-list .capabilities-item {
    width: 33.33%;
  }
  .index--page .projects-section {
    padding-bottom: 75px;
  }
  .index--page .industry {
    padding-bottom: 75px;
  }
  .index--page .industry .industry-swiper .swiper-slide {
    max-height: 220px;
  }
  .index--page .blog .blog-list .blog-item {
    gap: 12px;
  }
  .index--page .blog .blog-list .item-text {
    max-width: 60%;
  }
  .index--page .blog .blog-list .item-text .blog-desc {
    width: 100%;
  }
  /* ===== Mobile Header ===== */
  .header-page .header-nav,
  .header-page .header-right {
    display: none;
  }
  .header-page .header-mobile-btn {
    display: flex;
  }
  .header-page .header-mobile-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .header-page .header-mobile-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .header-page .header-mobile-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  .products--page .products-content {
    gap: 12px;
  }
  .products--page .products-content .sidebar {
    width: 100%;
  }
  .products--page .products-content .sidebar .sidebar-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
  }
  .products--page .products-content .sidebar .sidebar-header::after {
    content: "\e608";
    font-family: "iconfont" !important;
    font-size: 16px;
    color: var(--white);
    transition: transform 0.3s ease;
  }
  .products--page .products-content .sidebar.active .sidebar-header::after {
    content: "\e600";
  }
  .products--page .products-content .sidebar .category-list {
    display: none;
  }
  .products--page .products-content .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products--page .blog .blog-list .blog-item {
    gap: 12px;
  }
  .products--page .blog .blog-list .item-text {
    max-width: 60%;
  }
  .products--page .blog .blog-list .item-text .blog-desc {
    width: 100%;
  }
  .about--page .corporate-section .corporate-left,
  .about--page .corporate-section .corporate-right {
    width: 100%;
  }
  .about--page .corporate-section .corporate-left {
    text-align: center;
  }
  .about--page .corporate-section .corporate-left .img-box {
    display: inline-block;
  }
  .about--page .corporate-section .corporate-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .about--page .equipment-section .equipment-text {
    padding: 0;
  }
  .about--page .equipment-section .equipment-swiper {
    overflow: hidden;
  }
  .about--page .main-equipmen-section .item .text-box {
    opacity: 1;
  }
  .about--page .projects-section {
    padding-bottom: 75px;
  }
  .product-detail--page .product-display .product-display-inner {
    flex-wrap: wrap;
  }
  .product-detail--page .product-display .product-display-inner .product-info {
    flex: none;
    width: 100%;
    padding-left: 0;
  }
  .product-detail--page .capabilities .capabilities-inner .capabilities-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .product-detail--page .capabilities .capabilities-inner .capabilities-list .capabilities-item {
    width: auto;
  }
  .projects--page .projects-section .list_box {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 12px;
  }
  .blog-detail--page .blog-display .page-btn_box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
  }
  .blog-detail--page .blog-display .page-btn_box .page-prev,
  .blog-detail--page .blog-display .page-btn_box .page-next {
    flex: auto;
    width: 100%;
  }
  .blog-detail--page .blog-display .page-btn_box .page-prev {
    justify-content: end;
    width: 100%;
    flex-direction: row-reverse;
    text-align: right;
  }
  .blog-detail--page .blog-display .page-btn_box .page-next {
    justify-content: flex-end;
    text-align: right;
    width: 100%;
  }
  .contact--page .contact-section .contact-header .desc {
    padding-left: 0;
    padding-right: 0;
  }
  .industries--page .projects-section {
    padding-bottom: 75px;
  }
  .industry-detail--page .projects-section {
    padding-bottom: 75px;
  }
  .certification-page .projects-section {
    padding-bottom: 75px;
  }
}
@media (max-width: 768px) {
  .safe-range,
  .equipment-swiper {
    max-width: calc(100% - 40px);
    margin: 0 auto;
  }
  .global .swiper-prev {
    left: 0;
    width: 42px;
    height: 42px;
    transform: translateY(-50%) translateX(-50%);
  }
  .global .swiper-next {
    right: 0;
    width: 42px;
    height: 42px;
    transform: translateY(-50%) translateX(50%);
  }
  .inner-header {
    display: block;
  }
  .inner-header .header-text {
    margin-bottom: 12px;
  }
  .index--page .projects-section,
  .index--page .hot-product,
  .index--page .industry {
    padding-bottom: 75px;
  }
  .index--page .projects-section .swiper-prev,
  .index--page .projects-section .swiper-next,
  .index--page .hot-product .swiper-prev,
  .index--page .hot-product .swiper-next,
  .index--page .industry .swiper-prev,
  .index--page .industry .swiper-next {
    width: 42px;
    height: 42px;
  }
  .index--page .swiper-prev {
    left: 0;
    transform: translateY(-50%) translateX(-50%);
  }
  .index--page .swiper-next {
    right: 0;
    transform: translateY(-50%) translateX(50%);
  }
  .index--page .hot-product .inner-header {
    display: block;
  }
  .index--page .hot-product .inner-header .header-text {
    margin-bottom: 12px;
  }
  .index--page .hot-product .inner-header .header-btn {
    margin-top: 0;
    margin-bottom: 12px;
    transform: none;
  }
  .index--page .about .about-inner {
    display: block;
  }
  .index--page .about .about-inner .about-left .desc {
    margin-bottom: 12px;
  }
  .index--page .about .about-inner .about-left .edit-inner {
    margin-bottom: 12px;
  }
  .index--page .about .about-inner .about-left,
  .index--page .about .about-inner .about-right {
    width: 100%;
  }
  .index--page .about .about-inner .about-right {
    clip-path: none;
    -webkit-clip-path: none;
  }
  .index--page .about .about-inner .about-right img {
    object-fit: cover;
    transform: scale(1.08) translateX(-4%);
  }
  .index--page .about .about-inner .about-right:hover img {
    transform: scale(1.18) translateX(-4%);
  }
  .index--page .about .pri-btn {
    margin-bottom: 12px;
  }
  .index--page .factory .stats .item {
    width: 50%;
  }
  .index--page .vr {
    min-height: 180px;
  }
  .index--page .vr .vr-inner {
    width: 100%;
    min-height: 180px;
  }
  .index--page .vr .vr-inner img,
  .index--page .vr .vr-inner iframe {
    min-height: 180px;
    width: 100%;
    height: 100%;
  }
  .index--page .equipment .inner-header .more-btn {
    transform: none;
  }
  .index--page .equipment .equipment-list {
    max-height: 100%;
    flex-wrap: wrap;
  }
  .index--page .equipment .equipment-list .left,
  .index--page .equipment .equipment-list .center,
  .index--page .equipment .equipment-list .right {
    width: 100%;
    max-height: 280px;
  }
  .index--page .equipment .equipment-list .left {
    max-height: 580px;
  }
  .index--page .equipment .equipment-text {
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 控制显示行数 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .index--page .certification .certification-swiper {
    max-width: calc(100% - 40px);
  }
  .index--page .projects .inner-header .header-text {
    margin-bottom: 12px;
  }
  .index--page .projects .inner-header .more-btn {
    transform: none;
    margin-bottom: 12px;
    text-align: right;
  }
  .products--page .products-content {
    gap: 18px;
    flex-direction: column;
  }
  .products--page .products-content .sidebar {
    width: 100%;
  }
  .products--page .products-content .pagination-section {
    padding: 0;
  }
  .products--page .products-content .pagination-section .pagination-inner {
    flex-direction: column;
  }
  .product-detail--page .capabilities .capabilities-inner .capabilities-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .product-detail--page .capabilities .capabilities-inner .capabilities-list .capabilities-item {
    width: auto;
  }
  .certification-page .patent-certificate .cert-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-detail--page .project-display .inner .inner-top {
    flex-wrap: wrap;
    gap: 12px;
  }
  .project-detail--page .project-display .inner .inner-top .main-image,
  .project-detail--page .project-display .inner .inner-top .info {
    width: 100%;
  }
  .project-detail--page .project-display .inner .inner-top .info {
    padding: 0;
  }
  .project-detail--page .project-display .inner .inner-bottom .bottom-img-box {
    flex-direction: column;
  }
  .about--page .quality-control-section .quality-control-left {
    width: 100%;
  }
  .about--page .about-section .about-left {
    width: 100%;
  }
  .about--page .about-section .factory-inner .stats {
    flex-wrap: wrap;
    justify-content: start;
    gap: 6px;
  }
  .about--page .about-section .factory-inner .item {
    width: calc(50% - 6px);
  }
  .about--page .about-section .factory-inner:nth-of-type(:last-child) {
    text-align: left;
  }
  .about--page .corporate-section .corporate-left .img-box {
    width: max(14px, calc(560px * var(--fz-scale)));
    height: max(14px, calc(560px * var(--fz-scale)));
  }
  .industries--page .industries-section .list_box {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-detail--page .offer-section .offer-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 750px) {
  .index--page .banner .banner-inner {
    padding-top: 80%;
  }
}
@media (max-width: 660px) {
  .products--page .blog .blog-list .item-text,
  .index--page .blog .blog-list .item-text {
    max-width: 50%;
  }
}
@media (max-width: 650px) {
  .blog--page .blog-section .more-list_box .more-list .more-list_item {
    flex-direction: column;
  }
}
@media (max-width: 538px) {
  .certification-page .patent-certificate .cert-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .global .blog .blog-list {
    background-repeat: repeat;
  }
  .global .blog .blog-list .blog-item {
    flex-wrap: wrap;
  }
  .global .blog .blog-list .item-text {
    max-width: 100%;
    width: 100%;
  }
  .global .blog .blog-list .item-img {
    max-height: 320px;
    width: 80%;
  }
  .global .blog .blog-list .item-more a {
    top: 5%;
    right: 1%;
  }
}
@media (max-width: 480px) {
  .global :root {
    --fz-scale: 0.5;
    --lh-scale: 0.6;
    --img-scale: 0.5;
    --p-scale: 0.5;
    --gp-scale: 0.5;
    --m-scale: 0.5;
  }
  .global .blog .blog-list .blog-item {
    flex-wrap: wrap;
  }
  .inner-header .header-btn {
    flex-direction: column;
    gap: 6px;
  }
  .index--page .factory .stats {
    gap: 6px;
  }
  .index--page .factory .stats .item {
    width: 100%;
  }
  .index--page .about .about-left {
    padding-right: 0;
  }
  .index--page .equipment .equipment-list .left,
  .index--page .equipment .equipment-list .center,
  .index--page .equipment .equipment-list .right {
    max-height: 220px;
  }
  .index--page .equipment .equipment-list .left {
    max-height: 450px;
  }
  .product-detail--page .product-display .product-display-inner {
    justify-content: center;
  }
  .product-detail--page .product-display .product-display-inner .main-image {
    width: 175px;
  }
  .product-detail--page .product-display .product-display-inner .swiper-box {
    height: 180px;
  }
  .product-detail--page .product-display .product-display-inner .product-info .info-inner .product-btn {
    flex-direction: column;
  }
  .product-detail--page .capabilities .capabilities-inner .capabilities-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .product-detail--page .capabilities .capabilities-inner .capabilities-list .capabilities-item {
    width: auto;
  }
  .industry-detail--page .industries .list_box {
    grid-template-columns: repeat(1, 1fr);
  }
  .blog-detail--page .blog-display .blog-inner .inner-img-box {
    flex-direction: column;
  }
  .contact--page .contact-section .contact-info .info-list {
    grid-template-columns: repeat(1, 1fr);
    gap: calc(max(14px, calc(39.32px * var(--fz-scale))) + 12px);
  }
  .contact--page .contact-section .contact-form .contact-form-inner .form-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .about--page .corporate-section .corporate-left .img-box {
    width: max(14px, calc(480px * var(--fz-scale)));
    height: max(14px, calc(480px * var(--fz-scale)));
  }
  .about--page .about-section .about-left {
    width: 100%;
  }
  .about--page .about-section .divider {
    margin-top: max(14px, calc(48px * var(--fz-scale)));
    margin-bottom: max(14px, calc(48px * var(--fz-scale)));
  }
  .about--page .about-section .factory-inner .stats {
    flex-wrap: wrap;
    justify-content: start;
    gap: 6px;
  }
  .about--page .about-section .factory-inner .item {
    width: 100%;
  }
  .about--page .about-section .factory-inner:nth-of-type(:last-child) {
    text-align: left;
  }
  .industries--page .industries-section .list_box {
    grid-template-columns: repeat(1, 1fr);
  }
  .industry-detail--page .points-section .text-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .industry-detail--page .offer-section .offer-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .products--page .products-content {
    gap: 18px;
    flex-direction: column;
  }
  .products--page .products-content .sidebar {
    width: 100%;
  }
  .products--page .products-content .product-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
  .products--page .pagination-section {
    padding-left: 0;
  }
  .products--page .pagination-section .pagination-inner {
    flex-direction: column;
  }
  .projects--page .projects-section .list_box {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

/*# sourceMappingURL=style.css.map */
