@charset "UTF-8";
/* 华汉互联 https://www.huahanlink.com/ */
* {
  margin: 0;
  padding: 0;
  -moz-outline: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::after,
*::before {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  font-size: 16px !important;
  overflow-x: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.texthidden {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* 动画 */
.dh {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
/* 动画延迟 */
/* 图片放大 */
/* 旋转 */
.xzx {
  transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.xzy {
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: all 0.45s ease;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
/* 侧边条 */
/* 媒体查询 缩写 */
/* 布局 */
.w1920 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.w1800 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
}
.w1720 {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
}
.w1680 {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}
.w1640 {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
}
.w1600 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.w1560 {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
}
.w1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.w1400 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.w1360 {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
.w1350 {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}
.w1280 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.w1240 {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.w1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.w1150 {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:1840px) {
  .w1720 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1800px) {
  .w1680 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1760px) {
  .w1640 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1720px) {
  .w1600 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1680px) {
  .w1560 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1560px) {
  .w1440 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1520px) {
  .w1400 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1470px) {
  .w1350 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1400px) {
  .w1280 {
    padding: 0 60px;
  }
}
@media (max-width:1360px) {
  .w1240 {
    padding: 0 60px;
  }
}
@media (max-width:1320px) {
  .w1200 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1270px) {
  .w1150 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1024px) {
  .w1800,
  .w1720,
  .w1680,
  .w1640,
  .w1560,
  .w1440,
  .w1400,
  .w1350,
  .w1280,
  .w1240,
  .w1200,
  .w1150 {
    padding: 0 30px;
  }
}
@media (max-width:990px) {
  .w1800,
  .w1720,
  .w1680,
  .w1640,
  .w1600,
  .w1560,
  .w1440,
  .w1400,
  .w1350,
  .w1280,
  .w1240,
  .w1200,
  .w1150 {
    padding: 0 20px;
  }
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
/* 常用 CSS3 动画 */
/* 360 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes run2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes tran_run {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tran_run2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
/* 大 => 小 */
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* 透明度  1 => 0 */
@keyframes bgfd {
  0% {
    width: 0%;
    height: 0%;
    opacity: 1;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
/* 默认 空标签 */
.cle {
  clear: both;
  width: 0;
  height: 0;
  display: block;
  overflow: hidden;
  font-size: 0px;
}
/* 图片 垂直居中 */
.imgmid {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 100%;
  width: 1px;
  margin-left: -1px;
  vertical-align: middle;
  font-size: 0px;
}
.block_a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  overflow: hidden;
}
.none {
  display: none;
}
/* 移动端不兼容 暂不推荐使用 */
.ratio {
  -webkit-aspect-ratio: 1 / 1;
  aspect-ratio: 1 / 1;
}
.m1px {
  margin-bottom: -1px;
}
.center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.s-ani,
.e-ani[block],
.e-ani[details] .ani-one {
  -webkit-transform: translate(0, 60px);
  -ms-transform: translate(0, 60px);
  transform: translate(0, 60px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1) 0s, opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
}
.s-ani.is-view,
.e-ani[block].is-view,
.e-ani[details].is-view .ani-one {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
:root {
  /* 导航高度 */
  --header-height: 70px;
  /* 动画 */
  --ani: 0.5s ease;
  /* 颜色 */
  --dark-green: #004242;
  --dark-green-40: rgba(0, 66, 66, 0.4);
  --dark-green-60: rgba(0, 66, 66, 0.6);
  --light-green: #0B9191;
  --light-blue: #2D78E0;
  --color-red: #FF2A2A;
  --button--bg: #DDE6E6;
  --neutral-color: #F0F1F1;
  --white-color: #ffffff;
  --bg-light-green: #F2F6F6;
  --bg-green: #F5F9F9;
  /* 栅格 */
  --grid-column: 32;
  /* 字号 1280px ~ 1800px */
  /* 40px ~ 60px */
  --font60: clamp(2.5rem, calc(-0.577rem + 3.85vw), 3.75rem);
  /* 36px ~ 50px */
  --font50: clamp(2.25rem, calc(0.096rem + 2.69vw), 3.125rem);
  /* 32px ~ 48px */
  --font48: clamp(2rem, calc(-0.462rem + 3.08vw), 3rem);
  /* 31px ~ 46px */
  --font46: clamp(1.938rem, calc(-0.37rem + 2.88vw), 2.875rem);
  /* 29px ~ 44px */
  --font44: clamp(1.813rem, calc(-0.495rem + 2.88vw), 2.75rem);
  /* 28px ~ 42px */
  --font42: clamp(1.75rem, calc(-0.404rem + 2.69vw), 2.625rem);
  /* 27px ~ 40px */
  --font40: clamp(1.688rem, calc(-0.313rem + 2.5vw), 2.5rem);
  /* 25px ~ 38px */
  --font38: clamp(1.563rem, calc(-0.438rem + 2.5vw), 2.375rem);
  /* 24px ~ 36px */
  --font36: clamp(1.5rem, calc(-0.346rem + 2.31vw), 2.25rem);
  /* 23px ~ 34px */
  --font34: clamp(1.438rem, calc(-0.255rem + 2.12vw), 2.125rem);
  /* 21px ~ 32px */
  --font32: clamp(1.313rem, calc(-0.38rem + 2.12vw), 2rem);
  /* 20px ~ 30px */
  --font30: clamp(1.25rem, calc(-0.288rem + 1.92vw), 1.875rem);
  /* 19px ~ 28px */
  --font28: clamp(1.188rem, calc(-0.197rem + 1.73vw), 1.75rem);
  /* 18px ~ 26px */
  --font26: clamp(1.125rem, calc(-0.106rem + 1.54vw), 1.625rem);
  /* 17px ~ 24px */
  --font24: clamp(1.063rem, calc(-0.014rem + 1.35vw), 1.5rem);
  /* 16px ~ 22px */
  --font22: clamp(1rem, calc(0.077rem + 1.15vw), 1.375rem);
  /* 15px ~ 20px */
  --font20: clamp(0.938rem, calc(0.168rem + 0.96vw), 1.25rem);
  /* 14px ~ 18px */
  --font18: clamp(0.875rem, calc(0.26rem + 0.77vw), 1.125rem);
  /* 14px ~ 17px */
  --font17: clamp(0.875rem, calc(0.413rem + 0.58vw), 1.063rem);
  /* 13px ~ 16px */
  --font16: clamp(0.813rem, calc(0.351rem + 0.58vw), 1rem);
  /* 12px ~ 14px */
  --font14: clamp(0.75rem, calc(0.442rem + 0.38vw), 0.875rem);
  /* 间距 */
  --spacing-190: clamp(8rem, calc(-1.538rem + 11.92vw), 11.875rem);
  --spacing-180: clamp(7.5rem, calc(-1.731rem + 11.54vw), 11.25rem);
  --spacing-170: clamp(6.875rem, calc(-2.356rem + 11.54vw), 10.625rem);
  --spacing-160: clamp(6.625rem, calc(-1.683rem + 10.38vw), 10rem);
  --spacing-150: clamp(6.25rem, calc(-1.442rem + 9.62vw), 9.375rem);
  --spacing-140: clamp(5.625rem, calc(-0.625rem + 7.81vw), 8.75rem);
  --spacing-120: clamp(5rem, calc(-1.154rem + 7.69vw), 7.5rem);
  --spacing-100: clamp(4.125rem, calc(-1.106rem + 6.54vw), 6.25rem);
  --spacing-80: clamp(2.5rem, calc(-3.654rem + 7.69vw), 5rem);
  --spacing-70: clamp(2.25rem, calc(-2.981rem + 6.54vw), 4.375rem);
  --spacing-60: clamp(1.875rem, calc(-2.74rem + 5.77vw), 3.75rem);
  --spacing-50: clamp(1.625rem, calc(-2.067rem + 4.62vw), 3.125rem);
  --spacing-40: clamp(1.25rem, calc(-1.827rem + 3.85vw), 2.5rem);
  --spacing-30: clamp(1.25rem, calc(-0.288rem + 1.92vw), 1.875rem);
  --spacing-20: clamp(0.875rem, calc(-0.048rem + 1.15vw), 1.25rem);
  /* 圆角 */
  --border-radius20: clamp(0.625rem, calc(-0.089rem + 1.12vw), 1.25rem);
  --border-radius18: clamp(0.625rem, calc(0.054rem + 0.89vw), 1.125rem);
  --border-radius16: clamp(0.5rem, calc(-0.071rem + 0.89vw), 1rem);
  --border-radius14: clamp(0.313rem, calc(-0.33rem + 1vw), 0.875rem);
  --border-radius12: clamp(0.313rem, calc(-0.188rem + 0.78vw), 0.75rem);
  --border-radius10: clamp(0.313rem, calc(-0.045rem + 0.56vw), 0.625rem);
  /* 数值 */
  /* 70px ~ 310px */
  --num_310: clamp(4.375rem, calc(-32.548rem + 46.15vw), 19.375rem);
  /* 70px ~ 300px */
  --num_300: clamp(4.375rem, calc(-31.010rem + 44.23vw), 18.75rem);
  /* 70px ~ 230px */
  --num_230: clamp(4.375rem, calc(-20.240rem + 30.77vw), 14.375rem);
  /* 70px ~ 220px */
  --num_220: clamp(4.375rem, calc(-18.702rem + 28.85vw), 13.75rem);
  /* 70px ~ 210px */
  --num_210: clamp(4.375rem, calc(-17.163rem + 26.92vw), 13.125rem);
  /* 70px ~ 200px */
  --num_200: clamp(4.375rem, calc(-15.625rem + 25.00vw), 12.5rem);
  /* 70px ~ 190px */
  --num_190: clamp(4.375rem, calc(-14.087rem + 23.08vw), 11.875rem);
  /* 70px ~ 180px */
  --num_180: clamp(4.375rem, calc(-12.548rem + 21.15vw), 11.25rem);
  /* 70px ~ 170px */
  --num_170: clamp(4.375rem, calc(-11.010rem + 19.23vw), 10.625rem);
  /* 70px ~ 160px */
  --num_160: clamp(4.375rem, calc(-9.4710rem + 17.31vw), 10rem);
  /* 70px ~ 150px */
  --num_150: clamp(4.375rem, calc(-7.9330rem + 15.38vw), 9.375rem);
  /* 70px ~ 140px */
  --num_140: clamp(4.375rem, calc(-6.3940rem + 13.46vw), 8.75rem);
  /* 65px ~ 130px */
  --num_130: clamp(4.063rem, calc(-5.9380rem + 12.50vw), 8.125rem);
  /* 60px ~ 120px */
  --num_120: clamp(3.75rem, calc(-5.4810rem + 11.54vw), 7.5rem);
  /* 55px ~ 110px */
  --num_110: clamp(3.438rem, calc(-5.0240rem + 10.58vw), 6.875rem);
  /* 50px ~ 105px */
  --num_105: clamp(3.125rem, calc(-5.3370rem + 10.58vw), 6.563rem);
  /* 50px ~ 100px */
  --num_100: clamp(3.125rem, calc(-4.5670rem + 9.620vw), 6.25rem);
  /* 45px ~ 95px */
  --num_95: clamp(2.813rem, calc(-4.880rem + 9.62vw), 5.938rem);
  /* 45px ~ 90px */
  --num_90: clamp(2.813rem, calc(-4.111rem + 8.65vw), 5.625rem);
  /* 40px ~ 85px */
  --num_85: clamp(2.5rem, calc(-4.423rem + 8.65vw), 5.313rem);
  /* 40px ~ 80px */
  --num_80: clamp(2.5rem, calc(-3.654rem + 7.69vw), 5rem);
  /* 35px ~ 75px */
  --num_75: clamp(2.188rem, calc(-3.966rem + 7.69vw), 4.688rem);
  /* 35px ~ 70px */
  --num_70: clamp(2.188rem, calc(-3.197rem + 6.73vw), 4.375rem);
  /* 30px ~ 65px */
  --num_65: clamp(1.875rem, calc(-3.510rem + 6.73vw), 4.063rem);
  /* 30px ~ 60px */
  --num_60: clamp(1.875rem, calc(-2.740rem + 5.77vw), 3.75rem);
  /* 25px ~ 55px */
  --num_55: clamp(1.563rem, calc(-3.053rem + 5.77vw), 3.438rem);
  /* 25px ~ 50px */
  --num_50: clamp(1.563rem, calc(-2.284rem + 4.81vw), 3.125rem);
  /* 20px ~ 45px */
  --num_45: clamp(1.25rem, calc(-2.596rem + 4.81vw), 2.813rem);
  /* 20px ~ 40px */
  --num_40: clamp(1.25rem, calc(-1.827rem + 3.85vw), 2.5rem);
  /* 15px ~ 35px */
  --num_35: clamp(0.938rem, calc(-2.139rem + 3.85vw), 2.188rem);
  /* 15px ~ 30px */
  --num_30: clamp(0.938rem, calc(-1.370rem + 2.88vw), 1.875rem);
  /* 10px ~ 25px */
  --num_25: clamp(0.625rem, calc(-1.683rem + 2.88vw), 1.563rem);
  /* 10px ~ 20px */
  --num_20: clamp(0.625rem, calc(-0.913rem + 1.92vw), 1.25rem);
}
@media (max-width:1024px) {
  :root {
    --spacing-190: 95px;
    --spacing-180: 90px;
    --spacing-170: 85px;
    --spacing-160: 80px;
    --spacing-150: 75px;
    --spacing-140: 70px;
    --spacing-120: 60px;
    --spacing-100: 50px;
  }
}
@media (max-width:990px) {
  :root {
    --header-height: 60px;
  }
}
@media (max-width:768px) {
  :root {
    --font60: 30px;
    --font50: 26px;
    --font48: 26px;
    --font46: 24px;
    --font44: 24px;
    --font42: 22px;
    --font40: 22px;
    --font38: 21px;
    --font36: 20px;
    --font34: 20px;
    --font32: 20px;
    --font30: 18px;
    --font28: 18px;
    --font26: 16px;
    --font24: 16px;
    --font22: 15px;
    --spacing-190: 60px;
    --spacing-180: 60px;
    --spacing-170: 60px;
    --spacing-160: 60px;
    --spacing-150: 60px;
    --spacing-140: 60px;
  }
}
.font60 {
  font-size: var(--font60);
}
.font60 * {
  font-size: var(--font60);
}
.font50 {
  font-size: var(--font50);
}
.font50 * {
  font-size: var(--font50);
}
.font36 {
  font-size: var(--font36);
}
.font36 * {
  font-size: var(--font36);
}
.font30 {
  font-size: var(--font30);
}
.font30 * {
  font-size: var(--font30);
}
.font24 {
  font-size: var(--font24);
}
.font24 * {
  font-size: var(--font24);
}
.font22 {
  font-size: var(--font22);
}
.font22 * {
  font-size: var(--font22);
}
.font20 {
  font-size: var(--font20);
}
.font20 * {
  font-size: var(--font20);
}
.font18 {
  font-size: var(--font18);
}
.font18 * {
  font-size: var(--font18);
}
.font16 {
  font-size: var(--font16);
}
.font16 * {
  font-size: var(--font16);
}
.font14 {
  font-size: var(--font14);
}
.font14 * {
  font-size: var(--font14);
}
/* 字体大小 */
/* 间距 */
/* 盒子大小 */
/* 点扩散 */
.halo_box {
  width: 100px;
  height: 100px;
  position: relative;
  --color: #FFF;
}
.halo_box::before,
.halo_box::after,
.halo_box .halo::before,
.halo_box .halo::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  box-shadow: 0 0 60px var(--color) inset;
}
.halo_box::before,
.halo_box::after,
.halo_box .halo::before,
.halo_box .halo::after,
.halo_box .halo {
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.halo_box::before {
  animation: bgfd 6s ease infinite;
}
.halo_box::after {
  animation: bgfd 6s ease infinite 1.5s;
}
.halo_box .halo {
  width: 100%;
  height: 100%;
  position: relative;
}
.halo_box .halo::before {
  animation: bgfd 6s ease infinite 3s;
}
.halo_box .halo::after {
  animation: bgfd 6s ease infinite 4.5s;
  filter: invert();
}
@font-face {
  font-family: 'BARLOW';
  src: url('../fonts/BARLOW-LIGHT.TTF');
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Light.ttf');
  font-weight: 300;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Regular.ttf');
  font-weight: normal;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-ExtraBold.ttf');
  font-weight: 700;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-SemiBold.ttf');
  font-weight: 800;
}
*,
html,
body {
  font-family: 'Manrope';
  color: var(--dark-green);
}
.layui-btn {
  height: 100%;
  border-radius: 0;
  background: var(--active-color);
}
/* Placeholder style */
/* 视频弹窗 */
.videomark {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  display: none;
}
.videobox {
  position: fixed;
  width: 1400px;
  max-width: calc(100% - 100px);
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
}
.videobox video {
  width: 100%;
  object-fit: fill;
}
.videobox .close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  right: -20px;
  top: -20px;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0;
  --c: #1A1A1A;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.videobox .close::before,
.videobox .close::after {
  content: '';
  width: 50%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--c);
  border-radius: 5px;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.videobox .close::before {
  width: 2px;
}
.videobox .close::after {
  height: 2px;
}
.videobox .close:hover {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  background: var(--active-color);
  --c: #FFF;
}
.videobox .video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.videobox .video video,
.videobox .video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  transition: all 0.45s ease;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  object-fit: fill;
}
@media (max-width:1440px) {
  .videobox {
    max-width: 70%;
  }
}
@media (max-width:768px) {
  .videobox {
    width: 100%;
    max-width: 100%;
  }
  .videobox .close {
    right: 0;
    top: -40px;
  }
}
.paging_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.paging_box .layui-laypage {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  --d: 40px;
  --stroke: 1.2px;
}
.paging_box .layui-laypage a,
.paging_box .layui-laypage span {
  width: var(--d);
  height: var(--d);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  border: 0;
  background: transparent;
  font-size: var(--font14);
  color: #727888;
  overflow: hidden;
}
.paging_box .layui-laypage a .swiper_but,
.paging_box .layui-laypage span .swiper_but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
}
.paging_box .layui-laypage a:hover,
.paging_box .layui-laypage span:hover {
  color: var(--active-color);
}
.paging_box .layui-laypage .layui-laypage-curr .layui-laypage-em {
  background: var(--active-color);
}
.paging_box .layui-laypage .layui-laypage-prev svg,
.paging_box .layui-laypage .layui-laypage-next svg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.paging_box .layui-laypage .layui-laypage-prev svg circle,
.paging_box .layui-laypage .layui-laypage-next svg circle {
  cx: calc(var(--d) / 2);
  cy: calc(var(--d) / 2);
  r: calc(var(--d) / 2 - var(--stroke));
  stroke-width: var(--stroke);
  stroke: rgba(0, 0, 0, 0.07);
  fill: none;
}
.paging_box .layui-laypage .layui-laypage-prev .circle_front,
.paging_box .layui-laypage .layui-laypage-next .circle_front {
  z-index: 5;
  transform: rotate(-90deg);
}
.paging_box .layui-laypage .layui-laypage-prev .circle_front circle,
.paging_box .layui-laypage .layui-laypage-next .circle_front circle {
  stroke: var(--active-color);
  stroke-dasharray: 0 calc(var(--d) * 3.14);
  transition: stroke-dasharray 0.7s cubic-bezier(0.47, 0.16, 0.24, 1);
}
.paging_box .layui-laypage .layui-laypage-prev .iconfont_arrow,
.paging_box .layui-laypage .layui-laypage-next .iconfont_arrow {
  max-width: 40px;
  max-height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.paging_box .layui-laypage .layui-laypage-prev .iconfont_arrow use,
.paging_box .layui-laypage .layui-laypage-next .iconfont_arrow use {
  fill: var(--active-color);
}
.paging_box .layui-laypage .layui-laypage-prev.layui-disabled,
.paging_box .layui-laypage .layui-laypage-next.layui-disabled {
  pointer-events: none;
}
.paging_box .layui-laypage .layui-laypage-prev:hover .circle_front circle,
.paging_box .layui-laypage .layui-laypage-next:hover .circle_front circle {
  stroke-dasharray: calc(var(--d) * 3.14) calc(var(--d) * 3.14);
}
.paging_box .layui-laypage .layui-laypage-prev {
  margin-right: 30px;
}
.paging_box .layui-laypage .layui-laypage-next {
  margin-left: 30px;
}
@media (max-width:990px) {
  .paging_box .layui-laypage {
    --d: 30px;
  }
  .paging_box .layui-laypage .layui-laypage-prev {
    margin-right: 16px;
  }
  .paging_box .layui-laypage .layui-laypage-next {
    margin-left: 16px;
  }
}
/* Grid 盒子 */
.grid_box {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(var(--grid-column), 1fr);
}
.grid_main {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  grid-column: 4 / -4;
}
/* 灰色背景 */
.gray-background {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  padding: 0 var(--grid-gap);
  pointer-events: none;
}
.gray-background::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--border-radius20);
  background: #F6F6F7;
}
/* 下划线 */
.idx_line {
  width: 100%;
  height: 1px;
  background: #000000;
  opacity: 0.07;
}
/* 动效文字 */
.ani-text {
  opacity: 0;
}
.ani-text.is-show {
  opacity: 1;
}
.ani-text .c-text {
  width: auto;
  height: auto;
  position: relative;
  display: inline-flex;
  transform: translate3d(0, 10px, 0);
}
.ani-text .c-text span {
  display: inline-flex;
  transform: perspective(1000px) translate3d(0, 100%, 0) rotateX(-90deg);
  opacity: 0;
}
.ani-text.ani-init .c-text {
  transition-delay: 0s !important;
}
.ani-text.ani-init .c-text span {
  transition-delay: 0s !important;
}
.ani-text.is-view .c-text {
  transform: translateZ(0);
  transition: transform 1s cubic-bezier(0.47, 0.16, 0.24, 1);
}
.ani-text.is-view .c-text span {
  opacity: 1;
  transform: perspective(1000px) translateZ(0);
  transition: opacity 0.8s cubic-bezier(0.47, 0.16, 0.24, 1), transform 0.8s cubic-bezier(0.47, 0.16, 0.24, 1);
}
@media (max-width:1366px) {
  .grid_main {
    width: 100%;
    grid-column: 2 / -2;
  }
}
@media (max-width:990px) {
  .grid_box {
    padding: 0 20px;
    display: block;
  }
}
/* --------------------------- */
/* --------------------------- */
/* 动效文字 */
.ani-text-opacity {
  display: initial;
  background: rgba(255, 255, 255, 0.3) -webkit-linear-gradient(to right, #fff, #fff) no-repeat;
  background: rgba(255, 255, 255, 0.3) linear-gradient(to right, #fff, #fff) no-repeat;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 0 100%;
  -webkit-transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
  transition: background-size cubic-bezier(0.1, 0.5, 0.5, 1) 0.5s;
}
@media (max-width:1200px) {
  .ani-text-opacity {
    background: transparent;
    -webkit-text-fill-color: inherit;
    -webkit-background-clip: initial;
  }
}
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 0;
}
::-webkit-scrollbar-thumb {
  background-color: var(--light-green);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 0;
}
/* 最大 内容盒子 */
main {
  width: 100%;
  height: auto;
  overflow: hidden;
}
/* --------------------------- */
/* --------------------------- */
.subnavMask {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 19;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.subnavMask.active {
  opacity: 1;
  visibility: visible;
}
/* ------------------------- */
/* 按钮 */
.idx_more {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
.idx_more a,
.idx_more .more {
  width: auto;
  height: clamp(2.5rem, calc(0.962rem + 1.92vw), 3.125rem);
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 20px;
  border-radius: 50px;
  background: var(--light-green);
  pointer-events: initial;
  transition: background var(--ani);
}
.idx_more a .word,
.idx_more .more .word {
  font-weight: 700;
  font-size: var(--font14);
  color: #FFFFFF;
  white-space: nowrap;
}
.idx_more a .icon,
.idx_more .more .icon {
  width: 13px;
  height: auto;
  font-size: 0;
  filter: brightness(0) invert(1);
}
.idx_more a:hover,
.idx_more .more:hover {
  background: var(--dark-green);
}
.idx_more a.active,
.idx_more .more.active {
  background: #FFFFFF;
}
.idx_more a.active .word,
.idx_more .more.active .word {
  color: var(--light-green);
}
.idx_more a.active .icon,
.idx_more .more.active .icon {
  filter: none;
}
.idx_more a.active:hover,
.idx_more .more.active:hover {
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width:768px) {
  .idx_more {
    gap: 15px;
  }
  .idx_more a,
  .idx_more .more {
    height: 36px;
    padding: 0 14px;
    gap: 12px;
  }
  .idx_more a .icon,
  .idx_more .more .icon {
    width: 10px;
  }
}
.idx_text_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.idx_text_more a,
.idx_text_more .more {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
.idx_text_more a .word,
.idx_text_more .more .word {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: var(--font14);
  color: var(--light-green);
  white-space: nowrap;
}
.idx_text_more a .word::after,
.idx_text_more .more .word::after {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--light-green);
  transition: all var(--ani);
}
.idx_text_more a .icon,
.idx_text_more .more .icon {
  width: 13px;
  height: auto;
  font-size: 0;
}
.idx_text_more a:hover .word::after,
.idx_text_more .more:hover .word::after {
  width: 100%;
  left: 0;
}
@media (max-width:768px) {
  .idx_text_more a .icon,
  .idx_text_more .more .icon {
    width: 10px;
  }
}
/* --------------------------- */
/* --------------------------- */
/* 头部 */
header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  /* PC */
  /* Mobile version header */
}
header .header_box {
  width: 100%;
  height: var(--header-height);
  position: relative;
  z-index: 1;
}
header .header_box .grid_box,
header .header_box .grid_main {
  height: 100%;
}
header .header_box .header_back {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  transform: translateX(-50%);
  border-radius: 20px;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  background: #FFFFFF;
}
header .header_box .activewidth {
  width: 100vw !important;
  border-radius: 0px !important;
}
header .header_box .header_main {
  width: 100%;
  height: 100%;
  position: relative;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
}
header .header_box .header_main .nav {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
header .header_box .header_main .nav ul {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 30px;
}
header .header_box .header_main .nav ul li {
  position: relative;
  width: 100%;
  height: 100%;
}
header .header_box .header_main .nav ul li .headline {
  width: 100%;
  height: 100%;
}
header .header_box .header_main .nav ul li .headline a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-content: center;
  font-weight: 500;
  color: var(--dark-green);
  white-space: nowrap;
  transition: color var(--ani);
}
header .header_box .header_main .nav ul li:hover .headline a,
header .header_box .header_main .nav ul li .headline a.active {
  color: var(--light-green);
}
header .header_box .header_main .nav ul li .downloadpanel {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 0;
  top: 70px;
  display: none;
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  margin-top: 10px;
  padding-left: clamp(calc(32 / 2 * 1px), calc(32 / 1920 * 100 * 1vw), 32px);
  padding-right: clamp(calc(32 / 2 * 1px), calc(32 / 1920 * 100 * 1vw), 32px);
  padding-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding-bottom: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  border-radius: 16px;
  background-color: var(--light-green);
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel p {
  text-align: center;
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel p a {
  color: rgba(255, 255, 255, 0.5);
  position: relative;
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel p a::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  transition: width var(--ani);
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel p a:hover::after {
  width: 100%;
  left: 0;
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel a {
  color: #fff;
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel .item .title {
  position: relative;
  display: inline-block;
  width: 100%;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: var(--num_65);
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel .item .title::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  transition: width var(--ani);
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel .item .title .route {
  color: var(--white-color);
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel .item .title .right-icon {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0;
  display: flex;
  align-items: center;
  filter: brightness(0) invert(1);
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel .item .title:hover::after {
  width: 100%;
  left: 0;
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel .item .title:hover .right-icon {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 1;
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel .item ul {
  display: block;
  height: auto;
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel .item ul li {
  position: relative;
  width: 100%;
  height: 100%;
  line-height: 1;
  margin: 20px 0px;
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel .item ul li:hover a {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 1;
}
header .header_box .header_main .nav ul li .downloadpanel .navpanel .item ul li a {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0.3;
}
header .header_box .header_main .nav ul li .innovative-manufacture .navpanel {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
  width: max-content !important;
  gap: 30px !important;
}
@media (max-width:990px) {
  header .header_box .header_main .nav ul li {
    display: none;
  }
}
header .header_box .header_main .nav ul li:hover .downloadpanel {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: inline-block;
  transition: all 0.4s ease-in-out;
}
header .header_box .header_main .logo {
  width: auto;
  max-width: 120px;
  height: 100%;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .header_box .header_main .column {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 30px;
}
header .header_box .header_main .column .link {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .header_box .header_main .column .link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  align-content: center;
  font-weight: 500;
  font-size: 16px;
  color: var(--dark-green);
  white-space: nowrap;
  transition: color var(--ani);
}
header .header_box .header_main .column .link a:hover {
  color: var(--light-green);
}
header .header_box .header_main .column .lang {
  width: auto;
  height: 100%;
  position: relative;
}
header .header_box .header_main .column .lang .headline {
  height: 100%;
}
header .header_box .header_main .column .lang .headline a {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 5px;
  align-content: center;
}
header .header_box .header_main .column .lang .headline a .icon {
  width: 18px;
  height: 18px;
  font-size: 0;
}
header .header_box .header_main .column .lang .headline a .word {
  width: auto;
  height: auto;
  font-weight: 500;
  font-size: 16px;
  color: var(--dark-green);
}
header .header_box .header_main .column .lang .downloadpanel {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  position: absolute;
  width: max-content;
  left: -29px;
  top: 70px;
  transition: 0.4s;
  display: none;
}
header .header_box .header_main .column .lang .downloadpanel .navpanel {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  margin-top: 10px;
  padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding-right: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding-bottom: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  border-radius: 16px;
  background-color: var(--light-green);
}
header .header_box .header_main .column .lang .downloadpanel .navpanel p {
  text-align: center;
  padding: 2px 0px;
}
header .header_box .header_main .column .lang .downloadpanel .navpanel p a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .header_box .header_main .column .lang .downloadpanel .navpanel p a img {
  width: 22px;
  height: max-content;
}
header .header_box .header_main .column .lang .downloadpanel .navpanel p a span {
  color: rgba(255, 255, 255, 0.5);
}
header .header_box .header_main .column .lang .downloadpanel .navpanel p:hover a {
  color: var(--white-color);
  border-bottom: solid 2px var(--white-color);
}
@media (max-width:990px) {
  header .header_box .header_main .column .lang {
    display: none;
  }
}
header .header_box .header_main .column .lang:hover .downloadpanel {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: inline-block;
  transition: 0.4s;
}
header .header_box .header_main .column .head_search {
  width: 48px;
  height: 48px;
  background-color: var(--light-green);
  border-radius: 50%;
  color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
header .header_box .header_main .column .head_search img {
  cursor: pointer;
}
header .header_box .header_main .column .head_search .bg_zhezhao {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0;
  visibility: hidden;
}
header .header_box .header_main .column .head_search .search_box {
  position: absolute;
  width: 110vw;
  height: auto;
  top: 100%;
  left: -12%;
  background: var(--white-color);
  padding: var(--num_45);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
  border-top: solid 1px rgba(0, 66, 66, 0.1);
}
header .header_box .header_main .column .head_search .search_box .input {
  height: 56px;
  min-width: 200px;
  width: 36.765%;
  background: var(--bg-light-green);
  border-radius: 100px;
  padding: 5px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-left: var(--num_40);
  z-index: 5;
}
header .header_box .header_main .column .head_search .search_box .input input {
  width: 100%;
  height: auto;
  border: none;
  font-size: var(--font18);
  --color: #004242;
  opacity: 0.3;
  background: var(--bg-light-green);
}
header .header_box .header_main .column .head_search .search_box .input input::-webkit-input-placeholder,
header .header_box .header_main .column .head_search .search_box .input input textarea::-webkit-input-placeholder {
  color: var(--color);
  opacity: 1;
}
header .header_box .header_main .column .head_search .search_box .input input:-moz-placeholder,
header .header_box .header_main .column .head_search .search_box .input input textarea:-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
header .header_box .header_main .column .head_search .search_box .input input::-moz-placeholder,
header .header_box .header_main .column .head_search .search_box .input input textarea::-moz-placeholder {
  color: var(--color);
  opacity: 1;
}
header .header_box .header_main .column .head_search .search_box .input input:-ms-input-placeholder,
header .header_box .header_main .column .head_search .search_box .input input textarea:-ms-input-placeholder {
  color: var(--color);
  opacity: 1;
}
header .header_box .header_main .column .head_search .search_box .input button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-green);
  border: none;
  flex-shrink: 0;
  cursor: pointer;
}
header .header_box .header_main .column .head_search .search_box .input button img {
  filter: brightness(0) invert(1);
}
header .header_box .header_main .column .head_search .search_box.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
header .header_box .header_main .column .head_search .bg_zhezhao.active {
  opacity: 0.3;
  visibility: visible;
}
header .header_box .header_main .column .head_search:hover {
  background-color: var(--dark-green);
}
header .header_box::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #000;
  opacity: 0;
}
header .m_header_box {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: none;
}
header .m_header_box .header_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  position: relative;
  background-color: var(--white-color);
}
header .m_header_box .header_title .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: var(--header-height);
  color: #282828;
}
header .m_header_box .header_title .logo span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
}
header .m_header_box .header_title .logo img {
  max-height: 22px;
}
header .m_header_box .header_title .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
header .m_header_box .header_title .menu_btn {
  width: 30px;
  height: 30px;
  position: relative;
  overflow: hidden;
}
header .m_header_box .header_title .menu_btn::after,
header .m_header_box .header_title .menu_btn::before,
header .m_header_box .header_title .menu_btn i {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: 70%;
  height: 2px;
  display: block;
  background: var(--light-green);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -35%;
  transform-origin: center;
}
header .m_header_box .header_title .menu_btn::before {
  content: '';
  margin-top: -8px;
}
header .m_header_box .header_title .menu_btn::after {
  content: '';
  margin-top: 6px;
}
header .m_header_box .header_title .menu_btn.active i {
  opacity: 0;
}
header .m_header_box .header_title .menu_btn.active::before {
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 5px;
  background: var(--light-green);
}
header .m_header_box .header_title .menu_btn.active::after {
  margin-top: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 5px;
  background: var(--light-green);
}
header .m_header_box .header_title .head_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: auto;
  height: 30px;
  margin-right: 20px;
  cursor: pointer;
  overflow: hidden;
}
header .m_header_box .header_title .head_btn .icon {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  max-width: 14px;
  height: 14px;
  font-size: 0;
  margin-right: 5px;
  filter: invert(1);
}
header .m_header_box .header_title .head_btn .link {
  line-height: 1;
  font-size: 12px;
  color: var(--color-black);
  margin-top: 3px;
}
header .m_header_box .header_title .head_btn .link span {
  opacity: 0.6;
}
header .m_header_box .header_title .head_btn .link a {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  color: var(--color-black);
  opacity: 0.6;
}
header .m_header_box .header_title .head_btn .link a:hover {
  opacity: 1;
}
header .m_header_box .header_title .head_btn:hover .icon {
  filter: invert(1);
}
header .m_header_box .header_title .head_btn:hover .link {
  color: var(--color-black);
}
header .m_header_box .header_title .head_btn:hover .link a,
header .m_header_box .header_title .head_btn:hover .link span {
  color: var(--color-black);
}
header .m_header_box .header_body {
  width: 100%;
  height: calc(100vh - 60px);
  background: var(--white-color);
  display: none;
  overflow: hidden;
}
header .m_header_box .header_body .menu_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0 0 20px;
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav {
  width: 100%;
  height: auto;
  padding: 20px;
  overflow: hidden;
  overflow-y: auto;
}
header .m_header_box .header_body .menu_nav ul {
  padding: 0;
  margin: 0;
}
header .m_header_box .header_body .menu_nav ul li {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav ul li .one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav ul li .one a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 15px 0;
  display: block;
  font-size: 14px;
  color: var(--color-gray-444);
  line-height: 1;
  flex: 1;
  position: relative;
}
header .m_header_box .header_body .menu_nav ul li .one a .subtitle {
  font-size: 14px;
  margin-right: 10px;
}
header .m_header_box .header_body .menu_nav ul li .one a .title {
  font-size: 14px;
}
header .m_header_box .header_body .menu_nav ul li .one .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0;
  color: var(--color-gray-444);
}
header .m_header_box .header_body .menu_nav ul li .one .icon i {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  font-size: 11px;
}
header .m_header_box .header_body .menu_nav ul li .one.active a {
  color: var(--light-green);
}
header .m_header_box .header_body .menu_nav ul li .one.active .icon {
  color: var(--light-green);
}
header .m_header_box .header_body .menu_nav ul li .one.active.is_active .icon i {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
header .m_header_box .header_body .menu_nav ul li .active .title {
  color: var(--light-green);
}
header .m_header_box .header_body .menu_nav ul li ul {
  border-top: 1px solid var(--light-green);
  padding: 10px 0;
  display: none;
}
header .m_header_box .header_body .menu_nav ul li ul li {
  border: 0;
}
header .m_header_box .header_body .menu_nav ul li ul li a {
  display: block;
  font-size: 13px;
  padding: 6px 0 6px 20px;
  color: var(--color-gray-444);
  position: relative;
}
header .m_header_box .header_body .menu_nav ul li ul li a .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -8px;
  color: var(--color-gray-444);
}
header .m_header_box .header_body .menu_nav ul li ul li a .icon i {
  font-size: 8px;
}
header .m_header_box .header_body .menu_nav ul li ul li a.active {
  color: var(--light-green);
}
header .m_header_box .header_body .menu_nav ul li ul li a.active .icon {
  color: var(--light-green);
}
header .m_header_box .header_body .menu_nav ul li ul li ul {
  border: 0;
  display: none;
}
header .m_header_box .header_body .menu_nav ul li ul li ul li a {
  padding: 10px 0 10px 35px;
  font-size: 12px;
  color: var(--color-gray-999);
}
header .m_header_box .header_body .menu_nav ul li ul li ul li a:before {
  content: '';
  width: 5px;
  height: 1px;
  color: var(--color-gray-999);
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -1.5px;
  z-index: 1;
}
header .m_header_box .header_body .menu_nav ul li ul li ul li a.active:before {
  background: var(--light-green);
}
header .m_header_box .header_body .menu_nav ul li ul li ul.active {
  display: block;
}
header .m_header_box .header_body .menu_form {
  width: 100%;
  height: auto;
  padding: 0 20px;
  overflow: hidden;
}
header .m_header_box .header_body .menu_form .center {
  width: 100%;
  height: 50px;
  overflow: hidden;
}
header .m_header_box .header_body .menu_form .center form {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .m_header_box .header_body .menu_form .center form input {
  flex: 1;
  height: 100%;
  padding: 0 15px;
  font-size: 14px;
  background-color: var(--bg-light-green);
  border: 0;
}
header .m_header_box .header_body .menu_form .center form button {
  width: 70px;
  border: 0;
  height: 100%;
  padding: 0;
  background: var(--light-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .m_header_box .header_body .menu_lang {
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 0 20px;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .m_header_box .header_body .menu_lang .one {
  width: auto;
  height: 36px;
  margin-right: 10px;
  overflow: hidden;
}
header .m_header_box .header_body .menu_lang .one a {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--bg-light-green);
  border-radius: 50px;
  font-size: 12px;
  color: var(--color-gray-444);
}
header .m_header_box .header_body .menu_lang .one a.active {
  background: var(--light-green);
  color: var(--white-color);
}
header .m_header_box .header_body .search input {
  height: var(--num_65);
  border: solid 1px var(--light-green);
  border-radius: 5px;
  text-indent: 5px;
}
header .m_header_box .header_body .language {
  margin-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
}
header .m_header_box .header_body .language select {
  height: var(--num_65);
  border: solid 1px var(--light-green);
  color: var(--light-green);
  border-radius: 4px;
  font-size: var(--font16);
}
header .m_header_box .header_body .language select option {
  color: var(--light-green);
}
header .m_header_box .header_body .language select:active,
header .m_header_box .header_body .language select:visited,
header .m_header_box .header_body .language select:focus {
  background-color: none;
}
@media (max-width:1024px) {
  header .m_header_box {
    display: block;
  }
}
@media (max-width:1280px) {
  header .header_box {
    background: #FFFFFF;
  }
  header .header_box .header_back {
    display: none;
  }
  header .header_box .header_main {
    padding: 0;
  }
  header .header_box .header_main .nav ul {
    gap: 20px;
  }
  header .header_box .header_main .nav ul li .headline a {
    font-size: 14px;
  }
  header .header_box .header_main .logo {
    max-width: 100px;
  }
  header .header_box .header_main .column {
    gap: 20px;
  }
  header .header_box .header_main .column .link a {
    font-size: 14px;
  }
  header .header_box .header_main .column .lang a .icon {
    width: 16px;
    height: 16px;
  }
  header .header_box .header_main .column .lang a .word {
    font-size: 14px;
  }
}
@media (max-width:990px) {
  header .header_box {
    display: none;
  }
  header .menuMT {
    margin-top: 60px;
  }
}
/* 导航高度 占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
}
/* --------------------------- */
/* --------------------------- */
/* 底部 */
footer {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-top: solid 1px #E5ECEC;
}
footer .footer_box {
  width: 100%;
  height: auto;
  padding-top: clamp(3.75rem, calc(0.673rem + 3.85vw), 5rem);
}
footer .footer_box .headline {
  width: 100%;
  height: auto;
  font-weight: 700;
  font-size: var(--font18);
  color: var(--dark-green);
}
footer .footer_box .headline a {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: var(--font17);
  color: var(--text-color);
  transition: color var(--ani);
}
footer .footer_box .headline a::after {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--dark-green);
  transition: width var(--ani);
}
footer .footer_box .headline a:hover::after {
  width: 100%;
  left: 0;
}
footer .footer_box .foot_head {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
footer .footer_box .foot_head .nav {
  width: 64%;
  height: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 5px 50px;
}
footer .footer_box .foot_head .nav .item {
  width: auto;
  height: auto;
}
footer .footer_box .foot_head .nav .item .menu {
  width: 100%;
  height: auto;
  margin-top: 10px;
}
footer .footer_box .foot_head .nav .item .menu .one {
  width: 100%;
  height: auto;
  font-size: 0;
}
footer .footer_box .foot_head .nav .item .menu .one a {
  position: relative;
  z-index: 1;
  font-size: var(--font14);
  color: var(--dark-green);
}
footer .footer_box .foot_head .nav .item .menu .one a::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--dark-green);
  transition: width var(--ani);
}
footer .footer_box .foot_head .nav .item .menu .one a:hover::after {
  width: 100%;
  left: 0;
}
footer .footer_box .foot_head .nav .item .menu .one + .one {
  margin-top: 5px;
}
footer .footer_box .foot_head .contact_box {
  width: 20%;
  height: auto;
  text-align: right;
}
footer .footer_box .foot_head .contact_box .content {
  width: 100%;
  height: auto;
}
footer .footer_box .foot_head .contact_box .content .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font16);
  color: var(--dark-green);
}
footer .footer_box .foot_head .contact_box .share_box {
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 10px;
}
footer .footer_box .foot_head .contact_box .share_box .item {
  width: auto;
  height: auto;
  position: relative;
}
footer .footer_box .foot_head .contact_box .share_box .item .ewm {
  width: 100px;
  height: auto;
  padding: 5px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 4;
  font-size: 0;
  margin-left: -50px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
footer .footer_box .foot_head .contact_box .share_box .item .ewm img {
  width: 100%;
}
footer .footer_box .foot_head .contact_box .share_box .item .ewm::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  border-radius: 5px;
}
footer .footer_box .foot_head .contact_box .share_box .item .ewm::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  bottom: -6px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
}
footer .footer_box .foot_head .contact_box .share_box .item .icon {
  width: 1em;
  height: 1em;
  font-size: 30px;
  position: relative;
  z-index: 5;
  opacity: 0.4;
  --icon-color: var(--dark-green);
  transition: all var(--ani);
}
footer .footer_box .foot_head .contact_box .share_box .item .icon .img {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  padding: 1px;
  transform: translate(-1px, -1px);
  position: relative;
  z-index: 5;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  mix-blend-mode: screen;
}
footer .footer_box .foot_head .contact_box .share_box .item .icon .img img {
  width: 60%;
  height: 60%;
  filter: brightness(0);
}
footer .footer_box .foot_head .contact_box .share_box .item .icon::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: var(--icon-color);
  transition: all var(--ani);
}
footer .footer_box .foot_head .contact_box .share_box .item:hover .ewm {
  opacity: 1;
  margin-bottom: 15px;
  visibility: initial;
}
footer .footer_box .foot_head .contact_box .share_box .item:hover .icon {
  opacity: 1;
  --icon-color: var(--light-green);
}
footer .footer_box .foot_copy {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #E7E9EA;
  overflow: hidden;
}
footer .footer_box .foot_copy .copy {
  width: auto;
  height: auto;
  font-size: 12px;
  color: var(--dark-green-60);
}
footer .footer_box .foot_copy .copy a {
  font-family: 'NexaLight', 'SourceHanSansCN';
  color: var(--dark-green-60);
  transition: color var(--ani);
}
footer .footer_box .foot_copy .copy a:hover {
  color: var(--active-color);
}
footer .footer_box .foot_copy .links {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px 30px;
}
footer .footer_box .foot_copy .links a {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  font-family: 'NexaLight', 'SourceHanSansCN';
  font-size: var(--font14);
  color: var(--dark-green-60);
  transition: color var(--ani);
}
footer .footer_box .foot_copy .links a:not(:last-child)::after {
  content: '';
  width: 2px;
  height: 2px;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateX(14px);
  border-radius: 50%;
  background: var(--dark-green-60);
  opacity: 0.15;
  pointer-events: none;
}
footer .footer_box .foot_copy .links a:hover {
  color: var(--active-color);
}
@media (max-width:990px) {
  footer .footer_box .foot_head .nav {
    grid-template-columns: repeat(3, auto);
    gap: 30px;
  }
  footer .footer_box .foot_head .contact_box {
    width: 25%;
  }
}
@media (max-width:768px) {
  footer .footer_box .foot_head {
    display: block;
  }
  footer .footer_box .foot_head .nav {
    width: 100%;
  }
  footer .footer_box .foot_head .contact_box {
    width: 100%;
    margin-top: 40px;
    text-align: left;
  }
  footer .footer_box .foot_head .contact_box .share_box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  footer .footer_box .foot_copy {
    display: block;
  }
  footer .footer_box .foot_copy .copy {
    width: 100%;
  }
  footer .footer_box .foot_copy .links {
    width: 100%;
    margin-top: 5px;
  }
}
@media (max-width:480px) {
  footer .footer_box .foot_head .nav {
    grid-template-columns: repeat(2, auto);
    gap: 10px;
  }
  footer .footer_box .foot_head .nav .item {
    width: 100%;
  }
}
/* --------------------------- */
/* --------------------------- */
/* ----- 客服挂件 ----- */
.pendant_box {
  width: clamp(2.75rem, calc(1.519rem + 1.54vw), 3.25rem);
  height: auto;
  position: fixed;
  right: 20px;
  bottom: 30vh;
  z-index: 19;
  pointer-events: none;
}
.pendant_box .pendant_menu {
  width: 100%;
  height: auto;
  background: #FFF;
  border-radius: 50px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
  pointer-events: initial;
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.08);
}
.pendant_box .pendant_menu .item {
  width: 100%;
  height: auto;
  padding: 5px;
  position: relative;
  z-index: 1;
}
.pendant_box .pendant_menu .item:not(:last-child) .one a svg {
  width: 60%;
  height: 60%;
}
.pendant_box .pendant_menu .item:last-child .one a {
  background: var(--active-color);
}
.pendant_box .pendant_menu .item:last-child .one a svg use {
  fill: #FFFFFF;
}
.pendant_box .pendant_menu .item .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.pendant_box .pendant_menu .item .one::after {
  content: '';
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  display: block;
}
.pendant_box .pendant_menu .item .one a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: background 0.3s ease;
  border-radius: 50%;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.pendant_box .pendant_menu .item .one a svg {
  width: 100%;
  height: 100%;
}
.pendant_box .pendant_menu .item .one a svg use {
  fill: #3C475C;
  transition: fill 0.3s ease;
}
.pendant_box .pendant_menu .item .text_box {
  width: auto;
  height: auto;
  position: absolute;
  right: 100%;
  top: 0;
  margin-right: 15px;
  padding: 5px 10px 5px 0;
  opacity: 0;
  pointer-events: none;
  visibility: visible;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.pendant_box .pendant_menu .item .text_box a {
  width: 100%;
  height: auto;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 5px 20px;
  border-radius: 50px;
  background: #FFF;
  font-size: 16px;
  white-space: nowrap;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.pendant_box .pendant_menu .item .qrcode_box {
  width: auto;
  height: auto;
  position: absolute;
  right: 100%;
  top: 0;
  z-index: 10;
  margin-right: 15px;
  transform: translateX(-10px);
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  visibility: visible;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.pendant_box .pendant_menu .item .qrcode_box .content {
  width: clamp(8.375rem, calc(2.221rem + 7.69vw), 10.875rem);
  height: auto;
  border-radius: var(--border-radius10) var(--border-radius10) 0 0;
  padding: 20px clamp(1rem, calc(-0.231rem + 1.54vw), 1.5rem);
  background: var(--active-color);
  text-align: center;
}
.pendant_box .pendant_menu .item .qrcode_box .content .title {
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: var(--font14);
  color: #FFFFFF;
}
.pendant_box .pendant_menu .item .qrcode_box .content .subtitle {
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: var(--font18);
  color: #FFFFFF;
}
.pendant_box .pendant_menu .item .qrcode_box .info {
  width: clamp(8.375rem, calc(2.221rem + 7.69vw), 10.875rem);
  height: auto;
  padding: clamp(1rem, calc(-0.231rem + 1.54vw), 1.5rem) clamp(1rem, calc(-0.231rem + 1.54vw), 1.5rem) 10px;
  border-radius: 0 0 var(--border-radius10) var(--border-radius10);
  background: #FFF;
}
.pendant_box .pendant_menu .item .qrcode_box .info .img {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 0;
  border-radius: var(--border-radius10);
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.pendant_box .pendant_menu .item .qrcode_box .info .word {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 5px;
  font-weight: 300;
  font-size: var(--font14);
  color: var(--text-color);
}
.pendant_box .pendant_menu .item:hover .one a {
  background: var(--active-color);
}
.pendant_box .pendant_menu .item:hover .one a svg use {
  fill: #FFFFFF;
}
.pendant_box .pendant_menu .item:hover .one + * {
  margin-right: 0;
  opacity: 1;
  pointer-events: initial;
}
@media (max-width:990px) {
  .pendant_box {
    display: none;
  }
}
/* --------------------------- */
/* ----- 分页pagination--active颜色 ----- */
.swiper-pagination-bullet-active {
  background: var(--light-green);
}
/* --------------------------- */
/* Index Banner */
.l-nav {
  width: 100%;
  overflow: scroll;
}
.l-nav ::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 0;
}
.l-nav ::-webkit-scrollbar-thumb {
  background-color: var(--light-green);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 0;
}
/* --------------------------- */
/* Index Banner */
.idx_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #000;
  overflow: hidden;
}
.idx_banner .banner_box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.idx_banner .banner_box .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_banner .banner_box .swiper-slide .grid_box,
.idx_banner .banner_box .swiper-slide .grid_main {
  height: 100%;
}
.idx_banner .banner_box .swiper-slide .content {
  width: 100%;
  height: 100%;
  padding: var(--spacing-120) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}
.idx_banner .banner_box .swiper-slide .content .classify,
.idx_banner .banner_box .swiper-slide .content .title {
  width: 60%;
  height: auto;
  color: #FFF;
  pointer-events: initial;
}
.idx_banner .banner_box .swiper-slide .content .classify {
  font-size: var(--font20);
  color: #FFFFFF;
}
.idx_banner .banner_box .swiper-slide .content .title {
  margin-top: 10px;
  font-weight: 700;
  font-size: var(--font50);
  color: #FFFFFF;
  line-height: 1.12;
}
.idx_banner .banner_box .swiper-slide .content .idx_more {
  margin: var(--spacing-40) 0 0;
}
.idx_banner .banner_box .swiper-slide .images {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.idx_banner .banner_box .swiper-slide .images .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.idx_banner .banner_box .swiper-slide .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s linear 2s;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.idx_banner .banner_box .swiper-slide.active,
.idx_banner .banner_box .swiper-slide.swiper-slide-duplicate-active {
  z-index: 2;
  pointer-events: initial;
}
.idx_banner .banner_box .swiper-slide.active .content .subtitle .word,
.idx_banner .banner_box .swiper-slide.swiper-slide-duplicate-active .content .subtitle .word,
.idx_banner .banner_box .swiper-slide.active .content .title .word,
.idx_banner .banner_box .swiper-slide.swiper-slide-duplicate-active .content .title .word,
.idx_banner .banner_box .swiper-slide.active .content .details .word,
.idx_banner .banner_box .swiper-slide.swiper-slide-duplicate-active .content .details .word {
  opacity: 1;
  transform: translateY(0);
}
.idx_banner .banner_box .swiper-slide.active .content .title .word,
.idx_banner .banner_box .swiper-slide.swiper-slide-duplicate-active .content .title .word {
  transition-delay: 0.15s;
}
.idx_banner .banner_box .swiper-slide.active .content .details .word,
.idx_banner .banner_box .swiper-slide.swiper-slide-duplicate-active .content .details .word {
  transition-delay: 0.3s;
}
.idx_banner .banner_box .swiper-slide.active .images img,
.idx_banner .banner_box .swiper-slide.swiper-slide-duplicate-active .images img {
  transition: 6s linear;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.idx_banner .pager_box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: var(--spacing-60);
  left: 0;
  z-index: 10;
  pointer-events: none;
}
.idx_banner .pager_box .pager {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 10px;
}
.idx_banner .pager_box .pager span {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #FFFFFF;
  opacity: 1;
  transition: width var(--ani);
}
.idx_banner .pager_box .pager span.active {
  width: 24px;
}
.idx_banner::after {
  content: '';
  width: 100%;
  height: 0;
  display: block;
  padding-bottom: max(48.958%, 500px);
}
@media (max-width:990px) {
  .idx_banner .banner_box .swiper-slide .content .classify,
  .idx_banner .banner_box .swiper-slide .content .title {
    width: 100%;
  }
  .idx_banner::after {
    padding-bottom: 100vh;
  }
}
@media (max-width:640px) {
  .idx_banner {
    height: calc(100vh/2);
  }
  .idx_banner .banner_box .swiper-slide .content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
/* --------------------------- */
/* 产品 Banner */
.pro-banner .pro-ban {
  position: relative;
  width: 100%;
}
.pro-banner .pro-ban .bannerbox {
  width: 100%;
}
.pro-banner .pro-ban .bannerbox .bancontent {
  width: 100%;
  align-content: center;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.pro-banner .pro-ban .bannerbox .bancontent .grid_box .content {
  width: 100%;
  height: 100%;
  padding: var(--spacing-120) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.pro-banner .pro-ban .bannerbox .bancontent .grid_box .content .classify,
.pro-banner .pro-ban .bannerbox .bancontent .grid_box .content .title {
  width: 60%;
  height: auto;
  pointer-events: initial;
}
.pro-banner .pro-ban .bannerbox .bancontent .grid_box .content .classify {
  font-size: var(--font20);
  color: var(--dark-green);
}
.pro-banner .pro-ban .bannerbox .bancontent .grid_box .content .title {
  white-space: pre-line;
  margin-top: 10px;
  font-weight: 700;
  color: var(--dark-green);
  font-size: var(--font50);
  line-height: 1.12;
}
.pro-banner .pro-ban .bannerbox .bancontent .grid_box .content .active {
  color: var(--white-color);
}
.pro-banner .pro-ban .bannerbox .bancontent .grid_box .content .idx_more {
  margin: var(--spacing-40) 0 0;
}
.pro-banner .pro-ban .bannerbox img {
  width: 100%;
}
.pro-banner .pro-ban .bannerbox .pc-banner {
  display: block;
}
.pro-banner .pro-ban .bannerbox .mobile-banner {
  display: none;
}
@media (max-width:768px) {
  .pro-banner .pro-ban .bannerbox .pc-banner {
    display: none;
  }
  .pro-banner .pro-ban .bannerbox .mobile-banner {
    display: inline-block;
    /*min-height: 400px;*/
    height: 400px;
    
    object-fit: cover;
  }
  .newsbanner .pro-ban .bannerbox .pc-banner{
      display: none !important;
  }
}
@media (max-width:1200px) {
  .pro-banner .pro-ban .bannerbox .bancontent .grid_box .content .classify,
  .pro-banner .pro-ban .bannerbox .bancontent .grid_box .content .title {
    width: 100%;
  }
}
/* --------------------------- */
/* 产品 导航切换-- */
.pro-menu-nav .pro-inner-block {
  border-bottom: solid 1px rgba(0, 66, 66, 0.1);
}
.pro-menu-nav .pro-inner-block .innerturn {
  width: 100%;
}
.pro-menu-nav .pro-inner-block .innerturn .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav li {
  transition: all var(--ani);
  position: relative;
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav li a {
  transition: all var(--ani);
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav li a::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--light-green);
  transition: width var(--ani);
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav li:hover a::after {
  width: 100%;
  left: 0;
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav li:hover a span {
  opacity: 1;
  color: var(--light-green);
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav .active a {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  color: var(--light-green);
  border-bottom: solid 1px var(--light-green);
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav .active a span {
  opacity: 1;
}
.pro-menu-nav .pro-inner-block .innerturn .content .nav ul {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.pro-menu-nav .pro-inner-block .innerturn .content .nav ul li {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  margin-right: 24px;
}
.pro-menu-nav .pro-inner-block .innerturn .content .nav ul li a {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: block;
  padding-top: clamp(calc(28 / 2 * 1px), calc(28 / 1920 * 100 * 1vw), 28px);
  padding-bottom: clamp(calc(28 / 2 * 1px), calc(28 / 1920 * 100 * 1vw), 28px);
  font-size: var(--font20);
  font-weight: 700;
}
.pro-menu-nav .pro-inner-block .innerturn .content .nav ul li a span {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0.4;
  color: var(--dark-green);
  white-space: nowrap;
}
.pro-menu-nav .pro-inner-block .innerturn .content .nav ul li a .padd {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 15px;
}
.pro-menu-nav .pro-inner-block .innerturn .content .nav ul .active a span {
  color: var(--light-green);
}
@media (max-width:1200px) {
  .pro-menu-nav .pro-inner-block .innerturn .content .nav ul li:nth-child(2) a .padd {
    display: none;
  }
}
@media (max-width:990px) {
  .pro-menu-nav .r-nav {
    display: none;
  }
}
/* --------------------------- */
/* 产品 导航切换-- */
.pro-menu-nav .pro-inner-block {
  border-bottom: solid 1px rgba(0, 66, 66, 0.1);
}
.pro-menu-nav .pro-inner-block .innerturn {
  width: 100%;
}
.pro-menu-nav .pro-inner-block .innerturn .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav li {
  transition: all var(--ani);
  position: relative;
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav li a {
  transition: all var(--ani);
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav li a::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--light-green);
  transition: width var(--ani);
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav li:hover a::after {
  width: 100%;
  left: 0;
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav li:hover a span {
  opacity: 1;
  color: var(--light-green);
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav .active a {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  color: var(--light-green);
  border-bottom: solid 1px var(--light-green);
}
.pro-menu-nav .pro-inner-block .innerturn .content .l-nav .active a span {
  opacity: 1;
}
.pro-menu-nav .pro-inner-block .innerturn .content .nav ul {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.pro-menu-nav .pro-inner-block .innerturn .content .nav ul li {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  margin-right: 24px;
}
.pro-menu-nav .pro-inner-block .innerturn .content .nav ul li a {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: block;
  padding-top: clamp(calc(28 / 2 * 1px), calc(28 / 1920 * 100 * 1vw), 28px);
  padding-bottom: clamp(calc(28 / 2 * 1px), calc(28 / 1920 * 100 * 1vw), 28px);
  font-size: var(--font20);
  font-weight: 700;
}
.pro-menu-nav .pro-inner-block .innerturn .content .nav ul li a span {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0.4;
  color: var(--dark-green);
  white-space: nowrap;
}
.pro-menu-nav .pro-inner-block .innerturn .content .nav ul li a .padd {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 15px;
}
.pro-menu-nav .pro-inner-block .innerturn .content .nav ul .active a span {
  color: var(--light-green);
}
@media (max-width:1200px) {
  .pro-menu-nav .pro-inner-block .innerturn .content .nav ul li:nth-child(2) a .padd {
    display: none;
  }
}
@media (max-width:990px) {
  .pro-menu-nav .r-nav {
    display: none;
  }
}
/* --------------------------- */
/* 头部搜索结果页-- */
.search-result-btn {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  border-top: solid 1px rgba(0, 66, 66, 0.1);
}
.product-result {
  margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
}
.product-result .girdlist {
  grid-template-columns: repeat(4, 1fr);
}
.search-result-content .itemli {
  display: none;
}
.search-result-content .itemli:nth-child(1) {
  display: block;
}
.girdlist-nodata {
  padding-top: clamp(calc(110 / 2 * 1px), calc(110 / 1920 * 100 * 1vw), 110px);
  padding-bottom: clamp(calc(130 / 2 * 1px), calc(130 / 1920 * 100 * 1vw), 130px);
  text-align: center;
}
.girdlist-nodata .title {
  margin-top: clamp(calc(35 / 2 * 1px), calc(35 / 1920 * 100 * 1vw), 35px);
}
.girdlist-nodata .idx_more {
  margin-top: clamp(calc(31 / 2 * 1px), calc(31 / 1920 * 100 * 1vw), 31px);
}
.girdlist-nodata .idx_more a {
  margin: auto;
}
.girdlist-nodata .idx_more a.active,
.girdlist-nodata .idx_more .more.active {
  background-color: var(--dark-green);
}
.girdlist-nodata .idx_more a.active .word,
.girdlist-nodata .idx_more .more.active .word {
  color: var(--white-color);
}
/* --------------------------- */
/* 产品 hand 手部护理-- */
.pro-hand-protect .list-container {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  gap: 15px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.pro-hand-protect .list-container .list-item {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  position: relative;
  cursor: pointer;
  padding-top: clamp(calc(32 / 2 * 1px), calc(32 / 1920 * 100 * 1vw), 32px);
  padding-bottom: clamp(calc(32 / 2 * 1px), calc(32 / 1920 * 100 * 1vw), 32px);
  text-align: center;
  margin-top: clamp(calc(80 / 2 * 1px), calc(80 / 1920 * 100 * 1vw), 80px);
  background-color: #f5f8f8;
  border: solid 2px #f5f8f8;
  border-radius: 14px;
}
.pro-hand-protect .list-container .list-item .content {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.pro-hand-protect .list-container .list-item .text {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  margin-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  color: var(--dark-green);
  opacity: 0.6;
  font-weight: 700;
  font-size: var(--font16);
}
.pro-hand-protect .list-container .list-item .imagebox {
  margin: auto;
  width: var(--num_60);
  height: var(--num_60);
}
.pro-hand-protect .list-container .list-item .imagebox img {
  position: relative;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0.4;
}
.pro-hand-protect .list-container .list-item .intro {
  display: none;
}
.pro-hand-protect .list-container .active,
.pro-hand-protect .list-container .list-item:hover {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border: solid 2px var(--light-green);
}
.pro-hand-protect .list-container .active .text,
.pro-hand-protect .list-container .list-item:hover .text {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  color: var(--light-green);
  opacity: 1;
}
.pro-hand-protect .list-container .active img,
.pro-hand-protect .list-container .list-item:hover img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 1;
}
.pro-hand-protect .list-content {
  margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
}
@media (max-width:990px) {
  .pro-hand-protect .list-container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width:480px) {
  .pro-hand-protect .list-container {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* --------------------------- */
/* 产品筛选-- */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.pagination .layui-laypage a {
  margin-left: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  margin-right: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
}
.pagination .layui-laypage a,
.pagination .layui-laypage span {
  font-weight: 700;
  width: var(--num_50);
  height: var(--num_50);
  text-align: center;
  line-height: var(--num_50);
  padding: 0px;
  border: solid 1px var(--dark-green);
  border-radius: 25px;
  color: var(--dark-green);
}
.pagination .layui-laypage a .swiper_but,
.pagination .layui-laypage span .swiper_but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
}
.pagination .layui-laypage .layui-laypage-curr .layui-laypage-em {
  background-color: var(--dark-green);
  border-radius: 25px;
}
.filter-right {
  grid-column: span 4;
}
.itembox {
  position: relative;
}
.itembox .ib-top {
  position: relative;
  background-color: #F5FAFA;
  border-radius: var(--border-radius16);
}
.itembox .ib-top .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.itembox .ib-top .ab img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: auto;
  height: auto;
  max-width: 56.4%;
}
.itembox .ib-bottom {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  cursor: pointer;
  position: relative;
  font-size: var(--font14);
  padding-bottom: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
  margin-top: clamp(calc(12 / 2 * 1px), calc(12 / 1920 * 100 * 1vw), 12px);
  border-radius: var(--border-radius10);
}
.itembox .ib-bottom .l_content {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  margin-top: clamp(calc(8 / 2 * 1px), calc(8 / 1920 * 100 * 1vw), 8px);
  margin-left: clamp(calc(26 / 2 * 1px), calc(26 / 1920 * 100 * 1vw), 26px);
  width: 80%;
  color: var(--dark-green);
}
.itembox .ib-bottom .l_content .title {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 700;
}
.itembox .ib-bottom .l_content .content {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 500;
  line-height: 1.28;
}
.itembox .ib-bottom::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 100%;
  background: #0B9191;
  opacity: 0.2;
}
.itembox .r_content {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 20%;
}
.itembox .r_content img {
  filter: brightness(0) invert(1);
}
.itembox:hover .ib-top {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: #E1F5F5;
}
.itembox:hover .ib-top .ab img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.itembox:hover .ib-bottom {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: var(--light-green);
}
.itembox:hover .ib-bottom .l_content .title,
.itembox:hover .ib-bottom .l_content .content {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  color: #fff;
}
.itembox:hover .ib-bottom::before {
  opacity: 0;
}
.girdlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.girdlist .item {
  padding-top: clamp(calc(24 / 2 * 1px), calc(24 / 1920 * 100 * 1vw), 24px);
  padding-bottom: clamp(calc(56 / 2 * 1px), calc(56 / 1920 * 100 * 1vw), 56px);
  overflow: hidden;
}
.girdlist .item .active .ib-top {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: #E1F5F5;
}
.girdlist .item .active .ib-bottom {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: var(--light-green);
  border: solid 2px var(--light-green);
}
.girdlist .item .active .ib-bottom .l_content .title,
.girdlist .item .active .ib-bottom .l_content .content {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  color: #fff;
}
.girdlist .item .active .ib-bottom::before {
  opacity: 0;
}
@media (max-width:990px) {
  .girdlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .girdlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pro-table {
  margin-top: clamp(calc(88 / 2 * 1px), calc(88 / 1920 * 100 * 1vw), 88px);
}
.pro-table .pro-inner-content {
  width: 100%;
}
.pro-table .pro-inner-content .gird5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.pro-table .pro-inner-content .line {
  min-height: var(--num_60);
  line-height: var(--num_60);
  border-top: solid 1px rgba(0, 66, 66, 0.1);
  border-bottom: solid 1px rgba(0, 66, 66, 0.1);
}
.pro-table .pro-inner-content .mr120 {
  padding-left: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
  
}
.pro-table .pro-inner-content .filtercontent {
  display: grid;
  grid-template-columns: 1fr 4fr;
}
.pro-table .pro-inner-content .filtercontent .filter {
  margin-right: clamp(calc(15 / 2 * 1px), calc(15 / 1920 * 100 * 1vw), 15px);
}
.pro-table .pro-inner-content .filtercontent .filter .filter-left {
  height: var(--num_60);
  line-height: var(--num_60);
}
.pro-table .pro-inner-content .filtercontent .filter .filter-left .fl-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.pro-table .pro-inner-content .filtercontent .filter .filter-left .fl-title .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.pro-table .pro-inner-content .filtercontent .filter .filter-left .fl-title .text {
  font-size: var(--font16);
  font-weight: 700;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li ul li {
  padding-left: 0px;
  border-bottom: solid 1px rgba(0, 66, 66, 0.1);
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li ul li::before {
  display: none;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-size: var(--font16);
  padding-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding-bottom: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  font-weight: 700;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .option .choose-acount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
  transition: transform 0.3s ease-in-out;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .option .choose-acount .acount {
  width: 18px;
  height: 18px;
  line-height: 18px;
  color: var(--white-color);
  text-align: center;
  background: var(--dark-green);
  border-radius: 50%;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .option .icon {
  transform: rotate(180deg);
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .option .rotated {
  transform: rotate(0deg);
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .content {
  padding-bottom: clamp(calc(24 / 2 * 1px), calc(24 / 1920 * 100 * 1vw), 24px);
  font-size: var(--font16);
  display: none;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .content .checkitems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
  border-bottom: none;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .content .checkitems .status {
  position: relative;
  cursor: pointer;
  width: 12px;
  height: 12px;
  min-width: 12px;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .content .checkitems .status img {
  position: absolute;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .content .checkitems .status .active {
  display: none;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .content .checkitems .status:hover .active {
  display: block;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .content .checkitems .title {
  opacity: 0.6;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item .content .on .active {
  display: block !important;
}
.pro-table .pro-inner-content .filtercontent .filter .public-slot-li .filterlist .item:hover .icon img {
  transform: rotate(0deg);
}
.pro-table .pro-inner-content .filtercontent .result .filter-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: var(--font14);
  color: var(--dark-green);
}
.pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .result-data {
  font-weight: 700;
  overflow: hidden;
  width: 73.5%;
}
.pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .result-data ul {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0px;
}
.pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .result-data ul .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 30px;
  padding-left: clamp(calc(8 / 2 * 1px), calc(8 / 1920 * 100 * 1vw), 8px);
  padding-right: clamp(calc(8 / 2 * 1px), calc(8 / 1920 * 100 * 1vw), 8px);
  font-size: 13px;
  align-content: center;
  background: #EFF2F2;
  border-radius: 3px;
  gap: 5px;
}
.pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .result-data ul .item a .word {
  color: var(--dark-green);
}
.pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .result-data ul .item a .icon i {
  font-size: 12px;
}
.pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .search {
  position: absolute;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 26.5%;
  height: 100%;
  align-items: center;
  border-bottom: solid 1px var(--dark-green);
}
.pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .search .searchicon {
  position: absolute;
  right: 0px;
}
.pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .search .inputbox input {
  border: none;
  height: 100%;
  width: var(--num_300);
  min-width: 160px;
}
.pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .search .inputbox input::placeholder {
  opacity: 0.4;
}
.pro-table .pro-inner-content .filtercontent .result .girdlist-nodata {
  padding-top: clamp(calc(110 / 2 * 1px), calc(110 / 1920 * 100 * 1vw), 110px);
  padding-bottom: clamp(calc(130 / 2 * 1px), calc(130 / 1920 * 100 * 1vw), 130px);
  text-align: center;
}
.pro-table .pro-inner-content .filtercontent .result .girdlist-nodata .title {
  margin-top: clamp(calc(35 / 2 * 1px), calc(35 / 1920 * 100 * 1vw), 35px);
}
.pro-table .pro-inner-content .filtercontent .result .girdlist-nodata .idx_more {
  margin-top: clamp(calc(31 / 2 * 1px), calc(31 / 1920 * 100 * 1vw), 31px);
}
.pro-table .pro-inner-content .filtercontent .result .girdlist-nodata .idx_more a {
  margin: auto;
}
.pro-table .pro-inner-content .filtercontent .result .girdlist-nodata .idx_more a.active,
.pro-table .pro-inner-content .filtercontent .result .girdlist-nodata .idx_more .more.active {
  background-color: var(--dark-green);
}
.pro-table .pro-inner-content .filtercontent .result .girdlist-nodata .idx_more a.active .word,
.pro-table .pro-inner-content .filtercontent .result .girdlist-nodata .idx_more .more.active .word {
  color: var(--white-color);
}
.pro-table .pro-inner-content .filtercontent .result .pagination {
  margin-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
@media (max-width:768px) {
  .pro-table .pro-inner-content .filtercontent {
    display: inline-block;
    width: 100%;
  }
  .pro-table .pro-inner-content .mr120 {
    padding-left: 0px;
  }
  .pro-table .pro-inner-content .girdlist {
    gap: 10px;
  }
  .pro-table .pro-inner-content .girdlist .item {
    padding-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
    padding-bottom: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  }
  .pro-table .pro-inner-content .itembox .ib-bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .search {
    width: 40%;
  }
}
@media (max-width:640px) {
  .pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .result-data .swiper-wrapper {
    display: none;
  }
  .pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .search {
    /*width: 100%;*/
    display: none;
  }
  .pro-table .pro-inner-content .line{
      border-top: none;
  }
  .pro-table .pro-inner-content .filtercontent .filter .filter-left{
      border-top: solid 1px rgba(0, 66, 66, 0.1);
  }
  .pro-table .pro-inner-content .filtercontent .result .filter-right .fr-title .result-data ul .item a .word{
      line-height: 1;
  }
}
/* --------------------------- */
/* 产品详情--banner */
.pubilc_title_pagination_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.pubilc_title_pagination_box .title,
.pubilc_title_pagination_box .pagination {
  flex: 1;
  line-height: 1;
}
.pubilc_title_pagination_box .title {
  font-size: var(--font36);
  font-weight: 700;
}
.pubilc_title_pagination_box .pagination {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.pubilc_title_pagination_box .pagination .buttonbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  gap: 16px;
}
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-prev,
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-next {
  background-image: none;
  position: relative;
  top: 0;
  width: auto;
  height: auto;
  margin: 0;
  left: 0;
  right: 0;
}
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-prev,
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-next {
  --wh: clamp(1.875rem, calc(-1.202rem + 3.85vw), 3.125rem);
}
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-prev .boxsize,
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-next .boxsize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  width: var(--wh);
  height: var(--wh);
  border-radius: 30px;
  border: solid 1px var(--dark-green);
}
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-prev .boxsize:hover,
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-next .boxsize:hover {
  background-color: var(--dark-green);
}
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-prev .boxsize:hover img,
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-next .boxsize:hover img {
  filter: brightness(0) invert(1);
}
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-next.swiper-button-disabled,
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  filter: brightness(1);
}
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-next.swiper-button-disabled .boxsize,
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-prev.swiper-button-disabled .boxsize {
  background-color: inherit;
  border: solid 1px var(--dark-green);
}
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-next.swiper-button-disabled .boxsize img,
.pubilc_title_pagination_box .pagination .buttonbox .swiper-button-prev.swiper-button-disabled .boxsize img {
  filter: brightness(1);
}
.pro_detail_banner {
  position: relative;
  width: 100%;
  background-color: #EDF2F2;
}
.pro_detail_banner .banner_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.pro_detail_banner .banner_box .pro_innerbox {
  padding-top: clamp(calc(170 / 2 * 1px), calc(170 / 1920 * 100 * 1vw), 170px);
  padding-bottom: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
}


.pro_detail_banner .banner_box .pro_innerbox .icon img{
    transform: rotate(180deg);
}

.pro_detail_banner .returnbtn{
    margin-bottom: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
}

.pro_detail_banner .banner_box .pro_innerbox .swiper-button-prev, .pro_detail_banner .banner_box .pro_innerbox .swiper-button-next{
    background-image: none;
    --wh: clamp(1.875rem, calc(-1.202rem + 3.85vw), 3.125rem);
    width: var(--wh);
    height: var(--wh);
    border-radius: 30px;
    border: solid 1px var(--dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
}


.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  min-height: 450px;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 52%;
  border-radius: 20px;
  position: relative;
  padding-left: 120px;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .product-d-slide {
  position: relative;
  width: 94%;
  align-content: center;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .product-d-slide .swiper-wrapper {
  overflow: hidden;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .product-d-slide .innerbox {
  max-width: 393px;
  max-height: 265px;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .product-d-slide .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
  align-content: center;
  background-color: #fff;
  border-radius: var(--border-radius14);
  width: clamp(calc(310 / 16 * 1rem), calc((310 / 16 * 1rem) + ((620 - 310) * ((100vw - 1024 / 16 * 1rem) / (1920 - 1024)))), calc(620 / 16 * 1rem));
  height: clamp(calc(310 / 16 * 1rem), calc((310 / 16 * 1rem) + ((620 - 310) * ((100vw - 1024 / 16 * 1rem) / (1920 - 1024)))), calc(620 / 16 * 1rem));
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .product-d-slide .img .pb {
  padding-bottom: 75%;
  padding-bottom: 69%;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .product-d-slide .img .ab {
  align-content: center;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .product-d-slide .swiper-pagination {
  z-index: 10;
  bottom: 25px;
  opacity: 0;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .product-d-slide .swiper-pagination span {
  display: inline-block;
  height: 4px;
  width: 4px;
  margin: 0 5px !important;
  border-radius: 50%;
  opacity: 1;
  transition-duration: 0.5s;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .product-d-slide .swiper-pagination span.swiper-pagination-bullet {
  background-color: var(--light-green);
  opacity: 0.2;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .product-d-slide .swiper-pagination span.swiper-pagination-bullet-active {
  width: 12px;
  border-radius: 2px;
  opacity: 1;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  max-width: 100px;
  height: 450px;
  padding-top: 10px;
  z-index: 6;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .hd {
  height: 440px;
  overflow: hidden;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .hd li {
  height: 110px;
  cursor: pointer;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .hd li .img {
  width: 100px;
  height: 100px;
  padding: var(--num_20);
  border: 1px solid rgba(0, 66, 66, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .hd li .img .ab {
  align-content: center;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .hd li.on .img {
  border-color: var(--light-green);
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .hd li:hover .img {
  border-color: var(--light-green);
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .slide-btn {
  width: 52px;
  height: 52px;
  background: no-repeat center #f5f6fa;
  background-size: 13px 20px;
  border-radius: 50%;
  margin: auto;
  left: 0;
  right: 0;
  top: auto;
  transition: all 0.4s;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .slide-btn::before {
  content: '';
  width: 100%;
  height: 100%;
  background: no-repeat center;
  background-size: 13px 20px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .slide-btn.swiper-button-prev {
  top: 0;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .slide-btn.swiper-button-prev::before {
  background-image: url(../images/left_turn.png);
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .slide-btn.swiper-button-next {
  bottom: 0;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .slide-btn.swiper-button-next::before {
  background-image: url(../images/right_turn.png);
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .slide-btn:hover {
  background-color: var(--active-color);
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box .slide-btn:hover::before {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri {
  width: 50%;
  align-content: center;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri .right-content {
  padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  max-width: 620px;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri .right-content .title {
  font-size: var(--font50);
  color: var(--light-green);
  font-weight: 700;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri .right-content .sec-title {
  font-size: var(--font50);
  font-weight: 700;
  line-height: 1;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri .right-content .thir-title {
  margin-top: clamp(calc(19 / 2 * 1px), calc(19 / 1920 * 100 * 1vw), 19px);
  font-weight: 700;
  font-size: var(--font20);
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri .right-content .four-title {
  margin-top: clamp(calc(39 / 2 * 1px), calc(39 / 1920 * 100 * 1vw), 39px);
  font-size: var(--font16);
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri .right-content .connect-button {
  margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri .right-content .connect-button .idx_more {
  width: auto;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri .right-content .connect-button .down_link {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  gap: 10px;
}
.pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri .right-content .connect-button .down_link .word {
  color: var(--light-green);
  font-weight: 700;
  border-bottom: solid 2px var(--light-green);
}
@media (max-width:1200px) {
  .pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 {
    padding: 0;
  }
  .pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le {
    padding-left: 0;
  }
  .pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .product-d-slide .swiper-pagination {
    opacity: 1;
  }
  .pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le .hd-box {
    display: none;
  }
  .pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri {
    width: 45%;
  }
  .pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri .right-content {
    padding-left: clamp(calc(0 / 2 * 1px), calc(0 / 1920 * 100 * 1vw), 0px);
  }
  .pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri .right-content .sec-title {
    line-height: var(--num_30);
  }
}
@media (max-width:768px) {
  .pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box {
    display: block;
  }
  .pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-le {
    width: 100%;
  }
  .pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri {
    width: 100%;
    margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
  .pro_detail_banner .banner_box .pro_innerbox .wrap-ri-box1 .ri-box .ri-box-ri .right-content .sec-title{
      line-height: 1;
  }
}
.pro_key_features {
  padding-top: clamp(calc(134 / 2 * 1px), calc(134 / 1920 * 100 * 1vw), 134px);
  padding-bottom: clamp(calc(134 / 2 * 1px), calc(134 / 1920 * 100 * 1vw), 134px);
  width: 100%;
}
.pro_key_features .keyfeature-list {
  margin-top: clamp(calc(78 / 2 * 1px), calc(78 / 1920 * 100 * 1vw), 78px);
}
.pro_key_features .keyfeature-list .keyfeature-box {
  overflow: hidden;
}
.pro_key_features .keyfeature-list .keyfeature-box .kf_menu .item {
  position: relative;
}
.pro_key_features .keyfeature-list .keyfeature-box .kf_menu .item .marleft {
  margin-left: 20px;
}
.pro_key_features .keyfeature-list .keyfeature-box .kf_menu .item .number {
  font-size: var(--font20);
  font-weight: 700;
  line-height: 22px;
}
.pro_key_features .keyfeature-list .keyfeature-box .kf_menu .item .title {
  font-size: var(--font16);
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: clamp(calc(49 / 2 * 1px), calc(49 / 1920 * 100 * 1vw), 49px);
  line-height: 20px;
}
.pro_key_features .keyfeature-list .keyfeature-box .kf_menu::before {
  content: "";
  position: absolute;
  display: block;
  top: 0px;
  width: 1px;
  height: 35px;
  background: var(--light-green);
}
.pro_key_features .keyfeature-list .keyfeature-box .kf_menu::after {
  content: "";
  position: absolute;
  display: block;
  top: 0px;
  width: 1px;
  height: 142px;
  background: var(--light-green);
  opacity: 0.1;
}
.pro_application {
  position: relative;
  width: 100%;
  background: #004242 url(../images/application.png) no-repeat center;
}
.pro_application .apply_content {
  width: 100%;
  height: auto;
  margin-top: clamp(calc(108 / 2 * 1px), calc(108 / 1920 * 100 * 1vw), 108px);
  margin-bottom: clamp(calc(110 / 2 * 1px), calc(110 / 1920 * 100 * 1vw), 110px);
}
.pro_application .apply_content .title {
  color: #fff;
}
.pro_application .apply_content .application-list {
  margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
}
.pro_application .apply_content .application-list .application-box .swiper-slide {
  height: auto;
}
.pro_application .apply_content .application-list .application-box .apply_menu {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 16px ;
  gap: 20px;
}
.pro_application .apply_content .application-list .application-box .apply_menu .item {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.pro_application .apply_content .application-list .application-box .apply_menu .item .item-image {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-radius: 10px;
  max-width: var(--num_130);
  max-height: var(--num_190);
  overflow: hidden;
}
.pro_application .apply_content .application-list .application-box .apply_menu .item .item-image .innerbox {
  overflow: hidden;
}
.pro_application .apply_content .application-list .application-box .apply_menu .item .item-image .innerbox img {
  width: 100%;
  height: 100%;
  transition: transform var(--ani);
}
.pro_application .apply_content .application-list .application-box .apply_menu .item .item-content {
  flex: 1;
}
.pro_application .apply_content .application-list .application-box .apply_menu .item .item-content .num {
  position: absolute;
  top: 14px;
  right: 24px;
  font-size: var(--font20);
  color: rgba(0, 66, 66, 0.2);
}
.pro_application .apply_content .application-list .application-box .apply_menu .item .item-content .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  position: absolute;
  bottom: 10px;
  margin-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  font-size: var(--font18);
  line-height: 22px;
  font-weight: 700;
  color: var(--dark-green);
}
.pro_application .apply_content .application-list .application-box .apply_menu .item:hover .item-image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.pro_application .apply_content .application-list .application-box .apply_menu .item:hover .num {
  color: var(--light-green);
}
@media (max-width:1200px) {
  .pro_application {
    background: var(--dark-green);
    padding-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
    padding-bottom: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
}
.pro_standcertify_bgcolor {
  background-color: #EDF2F2;
}
.pro_standcertify {
  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
.stand-box .standlist {
  margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.stand-box .standlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  cursor: pointer;
  border-radius: var(--border-radius16);
  transition: all var(--ani);
  background-color: #fff;
}
.stand-box .standlist .item .item-img {
  margin-right: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding: clamp(calc(18 / 2 * 1px), calc(18 / 1920 * 100 * 1vw), 18px);
  border-radius: var(--border-radius10);
  width: var(--num_80);
  min-width: var(--num_80);
  height: var(--num_80);
  align-content: center;
  background-color: #EDF2F2;
}
.stand-box .standlist .item:hover {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: var(--light-green);
}
.stand-box .standlist .item:hover .title {
  color: #fff;
}
.stand-box .standlist .item:hover .item-img {
  background-color: #fff;
}
@media (max-width:990px) {
  .stand-box .standlist {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width:768px) {
  .stand-box .standlist {
    grid-template-columns: repeat(2, 1fr);
  }
  .stand-box .standlist .item {
    display: inline-block;
    text-align: center;
    padding-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
    padding-bottom: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  }
  .stand-box .standlist .item .item-img {
    margin: auto;
  }
}
.pro_specification {
  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
.pro_specification .tabletitle {
  width: 100%;
  font-size: var(--font16);
  font-weight: 700;
}
.pro_specification .tablebox .tablelist {
  margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  font-size: var(--font16);
}
.pro_specification .tablebox .tablelist .column_num {
  flex: 1;
}
.pro_specification .tablebox .tablelist .table {
  display: flex;
  /* 使用Flex布局 */
  flex-direction: column;
  /* 列方向排列 */
}
.pro_specification .tablebox .tablelist .leftrow .row {
  display: flex;
}
.pro_specification .tablebox .tablelist .leftrow .row .cell {
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.pro_specification .tablebox .tablelist .leftrow .row .cell:nth-child(1) {
  font-weight: 700;
}
.pro_specification .tablebox .tablelist .leftrow .row .cell:nth-child(2) {
  flex: 1 18%;
}
.pro_specification .tablebox .tablelist .row {
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  display: flex;
  /* 每行也是Flex布局 */
  border-bottom: 1px solid rgba(0, 66, 66, 0.1);
  /* 表格的行边框 */
  height: var(--num_60);
  line-height: var(--num_60);
}
.pro_specification .tablebox .tablelist .row:nth-child(1) {
  background-color: #F5FAFA;
  border-top: solid 1px var(--dark-green);
  border-bottom: solid 1px var(--dark-green);
  font-weight: 700;
}
.pro_specification .tablebox .tablelist .rowcontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 66, 66, 0.1);
}
.pro_specification .tablebox .tablelist .rowcontent .item {
  flex: 1;
}
.pro_specification .tablebox .tablelist .rowcontent .item .title {
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
}
.pro_specification .tablebox .tablelist .rowcontent .item ul li {
  text-align: center;
  height: var(--num_60);
  line-height: var(--num_60);
  border-bottom: 1px solid rgba(0, 66, 66, 0.1);
  border-left: 1px solid rgba(0, 66, 66, 0.1);
  border-right: 1px solid rgba(0, 66, 66, 0.1);
}
.pro_specification .tablebox .tablelist .rowcontent .item ul :last-child {
  border-bottom: none;
}
.pro_specification .tablebox .tablelist .rowcontent .item:nth-child(1) {
  font-weight: 700;
}
.pro_specification .tablebox .tablelist .rowcontent .item:nth-child(3) .title {
  width: var(--num_130);
}
.pro_specification .tablebox .tablelist .cell {
  flex: 1;
  margin: -1px;
  /* 单元格之间的间距 */
}
.pro_specification .tablebox .tablelist .diffflex .cell:nth-child(2) {
  flex: 1 1 20%;
  /* 单元格平均分配空间 */
}
.pro_specification .tablebox .tablelist .right-table tr td {
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  height: var(--num_60);
  line-height: var(--num_60);
}
@media (max-width:990px) {
  .pro_specification .tablebox .tablelist {
    display: block;
  }
  .pro_specification .tablebox .tablelist .column_num {
    margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  }
}
.pro_recommendations {
  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
.pro_recommendations .recommen-box .production_list .production-box {
  margin-top: clamp(calc(58 / 2 * 1px), calc(58 / 1920 * 100 * 1vw), 58px);
  overflow: hidden;
}
.pro_recommendations .recommen-box .production_list .production-box .active .ib-top {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: #E1F5F5;
}
.pro_recommendations .recommen-box .production_list .production-box .active .ib-bottom {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: var(--light-green);
}
.pro_recommendations .recommen-box .production_list .production-box .active .ib-bottom .l_content .title,
.pro_recommendations .recommen-box .production_list .production-box .active .ib-bottom .l_content .content {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  color: #fff;
}
.pro_recommendations .recommen-box .production_list .production-box .active .ib-bottom::before {
  opacity: 0.1;
}
.pro_recommendations .swiper-pagination {
  display: none;
}
@media (max-width:480px) {
  .pro_recommendations .swiper-pagination {
    display: inline-block;
    position: relative;
    margin-top: 30px;
  }
  .pro_recommendations .pubilc_title_pagination_box .pagination {
    display: none;
  }
}
/* ------------------------- */
/* 标题 */
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .title {
  font-weight: 500;
  font-size: var(--font50);
  color: var(--text-color);
  line-height: 1.2;
}
/* ------------------------- */
/* What Winner Guilin Offer */
.idx_good {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_good .good_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0 var(--spacing-160);
}
.idx_good .good_box .good_head {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.idx_good .good_box .good_head .title {
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: var(--font50);
  color: vaR(--dark-green);
  line-height: 1.12;
  white-space: break-spaces;
}
.idx_good .good_box .good_head .title span {
  font-weight: 700;
}
.idx_good .good_box .good_head .details {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: var(--dark-green);
  line-height: 1.44;
  transition-delay: 0.1s;
}
.idx_good .good_box .good_menu {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-70);
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-20);
}
.idx_good .good_box .good_menu .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_good .good_box .good_menu .item .images {
    position: relative;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius16);
  overflow: hidden;
}
.idx_good .good_box .good_menu .item .images:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 74%;
    bottom: 0;
    z-index: 6;
    /*background: linear-gradient(to top, rgb(22 186 170 / 20%) 0%, rgb(22 186 170 / 0%) 100%);*/
    background: linear-gradient(to top, #004242 0%, rgb(22 186 170 / 0%) 100%);
    opacity: 0;
}
.idx_good .good_box .good_menu .item:hover .images:after{
    opacity: 1;
}

.idx_good .good_box .good_menu .item .images .pb {
  padding-bottom: 83.11688312%;
}
.idx_good .good_box .good_menu .item .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_good .good_box .good_menu .item .content {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 7;
  padding: var(--pad-y) var(--spacing-40);
  --pad-y: 50px;
  transform: translateY(100%) translateY(calc(-1 * var(--pad-y)));
  transition: transform var(--ani);
}
.idx_good .good_box .good_menu .item .content .title {
  width: 100%;
  height: auto;
  transform: translateY(-100%) translateY(-30px);
  font-weight: 700;
  font-size: var(--font24);
  color: var(--dark-green);
  line-height: 1.12;
  transition: color var(--ani), transform var(--ani);
}
.idx_good .good_box .good_menu .item .content .details,
.idx_good .good_box .good_menu .item .content .idx_more {
  opacity: 0;
  transition: opacity var(--ani);
}
.idx_good .good_box .good_menu .item .content .details {
  width: 100%;
  height: auto;
  max-height: 3em;
  margin-top: 10px;
  font-weight: 500;
  font-size: var(--font16);
  /*color: var(--dark-green-60);*/
  color: rgb(80 255 255 / 60%);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  position: relative;
  z-index: 100;
}
.idx_good .good_box .good_menu .item .content .idx_more {
  margin-top: 20px;
}
.idx_good .good_box .good_menu .item:hover .images .ab {
  width: 105%;
  height: 105%;
}
.idx_good .good_box .good_menu .item:hover .content {
  transform: translateZ(0);
}
.idx_good .good_box .good_menu .item:hover .content .title {
  transform: translateZ(0);
  /*color: var(--light-green);*/
  color: #2bbebe;
}
.idx_good .good_box .good_menu .item:hover .content .details,
.idx_good .good_box .good_menu .item:hover .content .idx_more {
  opacity: 1;
}
.idx_good .good_box .good_menu .item:first-child {
  grid-area: 1 / 1 / 3 / 2;
}
.idx_good .good_box .good_menu .item:nth-child(2) {
  grid-area: 1 / 2 / 2 / -1;
}
.idx_good .good_box .good_menu .item:nth-child(2) .images .pb {
  padding-bottom: 51.94805195%;
}
.idx_good .good_box .good_menu .item:nth-child(3) {
  grid-area: 2 / 2 / 3 / -1;
}
.idx_good .good_box .good_menu .item:nth-child(3) .images .pb {
  padding-bottom: 28.57142857%;
}
@media (max-width:1280px) {
  .idx_good .good_box .good_menu .item .content {
    --pad-y: 30px;
  }
}
@media (max-width:990px) {
  .idx_good .good_box .good_menu {
    display: block;
  }
  .idx_good .good_box .good_menu .item .content {
    transform: translateZ(0);
  }
  .idx_good .good_box .good_menu .item .content .title {
    transform: translateZ(0);
  }
  .idx_good .good_box .good_menu .item .content .details,
  .idx_good .good_box .good_menu .item .content .idx_more {
    opacity: 1;
  }
  .idx_good .good_box .good_menu .item + .item {
    margin-top: 15px;
  }
}
@media (max-width:768px) {
  .idx_good .good_box .good_head {
    display: block;
  }
  .idx_good .good_box .good_head .details {
    margin-top: 20px;
  }
}
@media (max-width:480px) {
  .idx_good .good_box .good_menu .item:nth-child(3) .images {
    position: absolute;
  }
  .idx_good .good_box .good_menu .item:nth-child(3) .images .pb {
    padding-bottom: 30%;
  }
  .idx_good .good_box .good_menu .item:nth-child(3) .content {
    position: relative;
  }
}

@media (max-width:390px) {
  .idx_good .good_box .good_menu .item:nth-child(3) .images .pb {
    padding-bottom: 40%;
  }
}

/* ------------------------- */
/* Innovative Manufacture */
.idx_rd {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_rd .rd_box {
  width: 100%;
  height: auto;
  min-height: min(900px, 90vh);
  max-height: 90vh;
  padding: var(--spacing-100) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_rd .rd_box .rd_head {
  width: 100%;
  height: auto;
}
.idx_rd .rd_box .rd_head .classify {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  color: #FFFFFF;
}
.idx_rd .rd_box .rd_head .title {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-weight: 300;
  font-size: var(--font50);
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.12;
  white-space: break-spaces;
}
.idx_rd .rd_box .rd_head .title * {
  font-weight: 700;
  color: #FFFFFF;
}
.idx_rd .rd_box .rd_menu {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.idx_rd .rd_box .rd_menu .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_rd .rd_box .rd_menu .item::after {
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #FFFFFF;
}
.idx_rd .rd_box .rd_menu .item .info {
  width: 100%;
  height: auto;
}
.idx_rd .rd_box .rd_menu .item .info .title {
  width: 100%;
  height: auto;
}
.idx_rd .rd_box .rd_menu .item .info .title .number {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #FFFFFF;
}
.idx_rd .rd_box .rd_menu .item .info .title .word {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-weight: 700;
  font-size: var(--font24);
  color: #FFFFFF;
  line-height: 1.12;
}
.idx_rd .rd_box .rd_menu .item .info .details {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font16);
  color: #FFFFFF;
  line-height: 1.375;
  opacity: 0.6;
}
.idx_rd .rd_box .rd_menu .item .icon {
  width: 100%;
  height: 44px;
  margin-top: 30px;
  font-size: 0;
}
.idx_rd .rd_box .rd_menu .item:nth-child(2) {
  transition-delay: 0.1s;
}
.idx_rd .rd_box .rd_menu .item:nth-child(3) {
  transition-delay: 0.2s;
}
.idx_rd .parallax-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.idx_rd .parallax-img .img {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.idx_rd .parallax-img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .idx_rd .parallax-img .img {
    height: 100%;
  }
}
@media (max-width:768px) {
  .idx_rd .rd_box {
    min-height: initial;
    max-height: initial;
    display: block;
  }
  .idx_rd .rd_box .rd_menu {
    margin-top: 15vh;
    display: block;
    /* .item:first-child { padding-top: 0; }
					&::after { display: none; }
				} */
  }
  .idx_rd .rd_box .rd_menu .item {
    padding: 30px 0;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    -o-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 20px;
    justify-content: flex-end;
  }
  .idx_rd .rd_box .rd_menu .item::after {
    width: 100%;
    height: 1px;
    opacity: 0.2;
  }
  .idx_rd .rd_box .rd_menu .item .info {
    flex: 1;
  }
  .idx_rd .rd_box .rd_menu .item .info .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
    gap: 1ch;
  }
  .idx_rd .rd_box .rd_menu .item .info .title .number {
    width: 2ch;
  }
  .idx_rd .rd_box .rd_menu .item .info .title .word {
    flex: 1;
    margin: 0;
  }
  .idx_rd .rd_box .rd_menu .item .icon {
    width: 30px;
    height: 30px;
    margin: 0;
  }
  .idx_rd .rd_box .rd_menu .item:last-child {
    padding-bottom: 0;
  }
  .idx_rd .parallax-img::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    background: #000000;
    opacity: 0.2;
  }
}
/* ------------------------- */
/* About US */
.idx_about {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #F2F2F2 url('../images/about_bg_icon.png') no-repeat left center;
  overflow: hidden;
}
.idx_about .about_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-190) 0 var(--spacing-160);
}
.idx_about .about_box .about_main {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.idx_about .about_box .about_main .content {
  width: 90%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_about .about_box .about_main .content .headline {
  width: 100%;
  height: auto;
}
.idx_about .about_box .about_main .content .headline .classify {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  color: var(--light-green);
}
.idx_about .about_box .about_main .content .headline .title {
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: var(--font50);
  color: var(--dark-green);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.idx_about .about_box .about_main .content .headline .title * {
  font-weight: 700;
}
.idx_about .about_box .about_main .content .info {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-40);
}
.idx_about .about_box .about_main .content .info .details {
  width: 100%;
  height: auto;
  max-height: calc(4em * 1.5);
  font-size: var(--font18);
  color: var(--dark-green);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.idx_about .about_box .about_main .content .info .idx_more {
  margin-top: 30px;
}
.idx_about .about_box .about_main .video_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius16);
  transition-delay: 0.2s;
  overflow: hidden;
}
.idx_about .about_box .about_main .video_box .play {
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  padding: 10px 32px;
  border-radius: 50px;
  background: var(--light-blue);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.idx_about .about_box .about_main .video_box .play .icon {
  width: auto;
}
.idx_about .about_box .about_main .video_box .play .word {
  font-weight: 700;
  font-size: var(--font16);
  color: #FFFFFF;
}
.idx_about .about_box .about_main .video_box .pb {
  padding-bottom: 83.11688312%;
}
.idx_about .about_box .about_main .video_box img,
.idx_about .about_box .about_main .video_box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_about::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background: url('../images/about_bg.png') no-repeat top right / 100% auto;
}
@media (max-width:640px) {
  .idx_about .about_box .about_main {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about_menu {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-170);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about_menu .item {
  width: 100%;
  height: auto;
  padding: 20px 0 0;
  position: relative;
  z-index: 1;
  border-top: 2px solid var(--light-green);
  overflow: hidden;
}
.about_menu .item .number {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.about_menu .item .number .beat {
  width: auto;
  height: auto;
  font-family: 'BARLOW';
  font-size: var(--font50);
  color: var(--light-green);
  letter-spacing: -0.06em;
  line-height: 1;
}
.about_menu .item .number .info {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.about_menu .item .number .info .add,
.about_menu .item .number .info .unit {
  width: auto;
  height: 100%;
  font-family: 'BARLOW';
  font-size: var(--font20);
  color: var(--light-green);
  line-height: 1;
}
.about_menu .item .title {
  width: 100%;
  height: auto;
  margin: 10px 0 0;
  font-size: var(--font16);
  color: var(--dark-green);
}
.about_menu .item:nth-child(2) {
  transition-delay: 0.1s;
}
.about_menu .item:nth-child(3) {
  transition-delay: 0.2s;
}
.about_menu .item:nth-child(4) {
  transition-delay: 0.3s;
}
@media (max-width:990px) {
  .about_main {
    display: block;
  }
  .about_main .content {
    width: 100%;
  }
  .about_main .video_box {
    margin-top: 40px;
  }
  .about_menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .about_menu .item {
    border: 0;
  }
}
@media (max-width:480px) {
  .about_menu {
    margin-top: 20px;
    gap: 5px;
  }
  .about_menu .item {
    padding: 20px 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.4);
  }
  .about_menu .item:nth-child(2) ~ .item {
    grid-column: 1 / -1;
  }
}
/* ------------------------- */
/* News About  Winner Guilin */
.idx_news {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_news .news_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-150) 0;
}
.idx_news .news_box .news_head {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_news .news_box .news_head .title {
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: var(--font50);
  color: var(--dark-green);
  line-height: 1.12;
  letter-spacing: -0.02em;
  white-space: break-spaces;
}
.idx_news .news_box .news_head .title * {
  font-weight: 700;
}
.idx_news .news_box .news_head .idx_more {
  width: auto;
}
.idx_news .news_box .news_main {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
}
.idx_news .news_box .news_main a {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.idx_news .news_box .news_main a .images {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius16);
  overflow: hidden;
}
.idx_news .news_box .news_main a .images .pb {
  padding-bottom: 51.94805195%;
}
.idx_news .news_box .news_main a .images .ab {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all var(--ani);
}
.idx_news .news_box .news_main a .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_news .news_box .news_main a .content {
  width: 100%;
  height: auto;
  padding: 0 var(--spacing-60);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_news .news_box .news_main a .content .info {
  width: 100%;
  height: auto;
}
.idx_news .news_box .news_main a .content .info .column {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
.idx_news .news_box .news_main a .content .info .column .classify,
.idx_news .news_box .news_main a .content .info .column .time {
  width: auto;
  height: 34px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #F0F1F1;
  font-weight: 700;
  font-size: 12px;
  color: var(--dark-green);
}
.idx_news .news_box .news_main a .content .info .column .classify {
  border: 0;
  background: #F0F1F1;
  color: var(--light-green);
  transition: all var(--ani);
}
.idx_news .news_box .news_main a .content .info .title {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-20);
  font-weight: 700;
  font-size: var(--font36);
  line-height: 1.12;
  letter-spacing: -0.02em;
  transition: all var(--ani);
}
.idx_news .news_box .news_main a .content .info .details {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-20);
  font-size: var(--font18);
  color: var(--dark-green);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.idx_news .news_box .news_main a .content .idx_text_more {
  margin-top: 20px;
}
.idx_news .news_box .news_main a:hover .images .ab {
  width: 105%;
  height: 105%;
}
.idx_news .news_box .news_main a:hover .content .column .classify {
  background: var(--light-green);
  color: #FFFFFF;
}
.idx_news .news_box .news_main a:hover .content .title {
  color: var(--light-green);
}
.idx_news .news_box .news_menu {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.idx_news .news_box .news_menu .item {
  width: 100%;
  height: auto;
}
.idx_news .news_box .news_menu .item .column {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #F0F1F1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  transition: border var(--ani);
}
.idx_news .news_box .news_menu .item .column .classify,
.idx_news .news_box .news_menu .item .column .time {
  width: auto;
  height: 34px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #F0F1F1;
  font-weight: 700;
  font-size: 12px;
  color: var(--dark-green);
  letter-spacing: -0.02em;
  transition: all var(--ani);
}
.idx_news .news_box .news_menu .item .column .classify {
  border: 0;
  background: #F0F1F1;
  color: var(--light-green);
}
.idx_news .news_box .news_menu .item .title {
  width: 100%;
  height: calc(2em * 1.42);
  font-weight: 700;
  font-size: var(--font18);
  color: var(--dark-green);
  line-height: 1.42;
  transition: color var(--ani);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.idx_news .news_box .news_menu .item .details {
  width: 100%;
  height: auto;
  max-height: calc(2em * 1.42);
  margin-top: 1em;
  font-size: var(--font14);
  color: var(--dark-green-60);
  line-height: 1.42;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.idx_news .news_box .news_menu .item:nth-child(2) {
  transition-delay: 0.1s;
}
.idx_news .news_box .news_menu .item:nth-child(3) {
  transition-delay: 0.2s;
}
.idx_news .news_box .news_menu .item:nth-child(4) {
  transition-delay: 0.3s;
}
.idx_news .news_box .news_menu .item:hover .column {
  border-color: var(--light-green);
}
.idx_news .news_box .news_menu .item:hover .column .classify {
  background: var(--light-green);
  color: #FFFFFF;
}
.idx_news .news_box .news_menu .item:hover .title {
  color: var(--light-green);
}
@media (max-width:1560px) {
  .idx_news .news_box .news_main a .content {
    padding-right: 0;
  }
}
@media (max-width:1200px) {
  .idx_news .news_box .news_main a .content .details {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media (max-width:990px) {
  .idx_news .news_box .news_main a {
    display: block;
  }
  .idx_news .news_box .news_main a .content {
    margin-top: 20px;
    padding: 0;
  }
  .idx_news .news_box .news_main a .content .column .classify,
  .idx_news .news_box .news_main a .content .column .time {
    height: 28px;
    padding: 0 12px;
    font-size: 10px;
  }
  .idx_news .news_box .news_menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .idx_news .news_box .news_menu .item {
    padding: 20px 0 0;
    border-top: 1px solid #F0F1F1;
  }
  .idx_news .news_box .news_menu .item .column {
    padding: 0;
    border: 0;
  }
  .idx_news .news_box .news_menu .item .column .classify,
  .idx_news .news_box .news_menu .item .column .time {
    height: 28px;
    padding: 0 12px;
    font-size: 10px;
  }
  .idx_news .news_box .news_menu .item .title {
    height: auto;
    max-height: calc(2em * 1.42);
  }
}
/* ------------------------- */
/* If You Want to Become a Winner Latex Distributor, Please Contact us Immediately */
.idx_join {
  width: 100%;
  height: auto;
  background: var(--light-green);
  overflow: hidden;
}
.idx_join .content {
  width: 100%;
  height: auto;
  padding: var(--spacing-80) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_join .content .title {
  width: 60%;
  height: auto;
  font-weight: 700;
  font-size: var(--font36);
  color: #FFFFFF;
  line-height: 1.12;
}
.idx_join .content .idx_more {
  width: auto;
}
@media (max-width:768px) {
  .idx_join .content {
    display: block;
  }
  .idx_join .content .title {
    width: 100%;
  }
  .idx_join .content .idx_more {
    margin-top: 20px;
  }
}
/* ------------------------- */
/* 3.1 --Technological innovation */
.tech-brand-reputation {
  margin-bottom: clamp(calc(140 / 2 * 1px), calc(140 / 1920 * 100 * 1vw), 140px);
  position: relative;
  width: 100%;
}
.tech-brand-reputation .band-image {
  position: relative;
  text-align: center;
  width: 64.35897%;
  margin: auto;
}
.tech-brand-reputation .band-image .bg-mb {
  display: none;
}
.tech-brand-reputation .band-image .title {
  position: absolute;
  width: 34%;
  top: 37%;
  text-align: center;
  left: 33%;
  line-height: 1;
  margin: auto;
  margin-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  font-size: var(--font40);
  font-weight: 700;
  color: var(--white-color);
}
.tech-brand-reputation .main-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tech-brand-reputation .grid_box {
  width: 100%;
  height: 100%;
}
.tech-brand-reputation .grid_box .grid_main {
  width: 100%;
  height: 100%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box .item:nth-child(1) {
  top: 34%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box .item:nth-child(2) {
  top: 57%;
  padding-left: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  padding-right: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
}
.tech-brand-reputation .grid_box .grid_main .brand-box .item:nth-child(3) {
  top: 77%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box .item:nth-child(3) .brand {
  margin: auto;
  max-width: 48.85%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box .item:nth-child(1),
.tech-brand-reputation .grid_box .grid_main .brand-box .item:nth-child(2) {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.tech-brand-reputation .grid_box .grid_main .brand-box .item {
  position: absolute;
  width: 100%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box .item .brand {
  font-weight: 700;
  line-height: 1.3;
  align-content: center;
  max-width: 31.38%;
  text-align: center;
  background-color: var(--white-color);
  font-size: var(--font16);
  padding-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding-bottom: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding-left: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  padding-right: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  border-radius: 40px;
  color: var(--dark-green);
  box-shadow: 0px 0px 45px 0px rgba(7, 80, 80, 0.1);
}
.tech-brand-reputation .grid_box .grid_main .brand-box-point .item:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  top: 36.6%;
  padding-left: 3.1%;
  padding-right: 3%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box-point .item:nth-child(1) .brand:nth-child(1) {
  flex: 1;
  padding-left: 32%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box-point .item:nth-child(1) .brand:nth-child(2) {
  flex: 1;
  padding-left: 1.6%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box-point .item:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  top: 59%;
  padding-left: 15%;
  padding-right: 15%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box-point .item:nth-child(2) .brand:nth-child(1) {
  flex: 1;
  padding-left: 32.7%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box-point .item:nth-child(2) .brand:nth-child(2) {
  flex: 1;
  padding-right: 1.2%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box-point .item:nth-child(3) {
  top: 68.2%;
  text-align: center;
}
.tech-brand-reputation .grid_box .grid_main .brand-box-point .item:nth-child(3) .brand {
  padding-right: 0.5%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box-point .item {
  position: absolute;
  width: 100%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box-point .item .brand {
  font-weight: 700;
  line-height: 1.3;
  align-content: center;
}
.tech-brand-reputation .grid_box .grid_main .brand-box-point .item .brand span {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #0B9191;
  border-radius: 50%;
}
.tech-brand-reputation .grid_box .grid_main .brand-box-point .item .brand span::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: rgba(11, 145, 145, 0.25);
  border-radius: 50%;
  left: -4px;
  top: -4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-animation: icon-video 2s ease-out;
  animation: icon-video 2s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@media (max-width:768px) {
  .tech-brand-reputation .main-box {
    position: relative;
  }
  .tech-brand-reputation .band-image {
    width: 100%;
  }
  .tech-brand-reputation .grid_box .grid_main .brand-box .item {
    position: relative;
  }
  .tech-brand-reputation .grid_box .grid_main .brand-box .item .brand {
    width: 100%;
    max-width: initial;
    margin-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
    border-radius: 10px;
    text-align: left;
  }
  .tech-brand-reputation .grid_box .grid_main .brand-box .item:nth-child(1),
  .tech-brand-reputation .grid_box .grid_main .brand-box .item:nth-child(2) {
    display: inline-block;
    width: 100%;
  }
  .tech-brand-reputation .grid_box .grid_main .brand-box .item:nth-child(2) {
    padding: 0px;
  }
  .tech-brand-reputation .grid_box .grid_main .brand-box .item:nth-child(3) .brand {
    max-width: 100%;
    margin-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  }
  .tech-brand-reputation .band-image .title {
    line-height: 1;
    font-size: var(--font36);
  }
  .tech-brand-reputation .main-box .brand-box-point {
    display: none;
  }
  .tech-brand-reputation .band-image .bg-pc {
    display: none;
  }
  .tech-brand-reputation .band-image .bg-mb {
    display: inline-block;
  }
}
@media (max-width:480px) {
  .tech-brand-reputation .band-image .title {
    line-height: 1;
    font-size: var(--font30);
  }
}
.tech-investment {
  position: relative;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.tech-investment .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.tech-investment .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tech-investment .investment-content {
  padding-top: clamp(calc(135 / 2 * 1px), calc(135 / 1920 * 100 * 1vw), 135px);
  padding-bottom: clamp(calc(143 / 2 * 1px), calc(143 / 1920 * 100 * 1vw), 143px);
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  align-content: center;
}
.tech-investment .investment-content .grid_box {
  height: 100%;
}
.tech-investment .investment-content .main-box {
  position: relative;
  width: 100%;
  height: 100%;
  align-items: center;
}
.tech-investment .investment-content .main-box .title {
  color: var(--white-color);
  font-size: var(--font50);
  line-height: 1;
}
.tech-investment .investment-content .main-box .title span {
  font-weight: 700;
  color: var(--white-color);
}
.tech-investment .investment-content .main-box .content {
  font-weight: 500;
  font-size: var(--font16);
  margin-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  color: var(--white-color);
}
.tech-investment .investment-content .main-box .idx_more {
  cursor: pointer;
}
.tech-investment .investment-content .main-box .idx_more .more {
  margin: auto;
  margin-top: clamp(calc(33 / 2 * 1px), calc(33 / 1920 * 100 * 1vw), 33px);
  gap: 6px;
}
.tech-investment .investment-content .main-box .idx_more .more .icon {
  width: 20px;
}
.tech-investment .investment-content .main-box .idx_more .more .icon {
  width: 20px;
}
.tech-investment .investment-content .main-box .water-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  gap: 20px;
  margin-top: clamp(calc(109 / 2 * 1px), calc(109 / 1920 * 100 * 1vw), 109px);
  justify-content: center;
}
.tech-investment .investment-content .main-box .water-content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-image: url("../images/circle_bg.png");
  background-repeat: no-repeat;
  width: 281px;
  height: 281px;
  text-align: center;
  align-content: center;
}
.tech-investment .investment-content .main-box .water-content .item .innerbox {
  /*max-width: 146px;*/
  max-width: 160px;
  margin: auto;
  text-align: left;
}
.tech-investment .investment-content .main-box .water-content .item .innerbox .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: end;
  position: relative;
  font-size: var(--font50);
  color: var(--white-color);
}
.tech-investment .investment-content .main-box .water-content .item .innerbox .num .data {
  font-family: 'BARLOW';
  line-height: 1;
  color: var(--white-color);
}
.tech-investment .investment-content .main-box .water-content .item .innerbox .num .dw {
  margin-left: clamp(calc(9 / 2 * 1px), calc(9 / 1920 * 100 * 1vw), 9px);
  margin-top: clamp(calc(12 / 2 * 1px), calc(12 / 1920 * 100 * 1vw), 12px);
  font-size: var(--font20);
  color: var(--white-color);
}
.tech-investment .investment-content .main-box .water-content .item .innerbox .num .circle {
  position: relative;
  width: 100%;
  min-height: 30px;
}
.tech-investment .investment-content .main-box .water-content .item .innerbox .num .circle .fh {
  position: absolute;
  font-size: var(--font20);
  color: var(--white-color);
  top: -20px;
  left: 9px;
}
.tech-investment .investment-content .main-box .water-content .item .innerbox .num .circle .dw {
  position: absolute;
  top: -15px;
  width: 100%;
  height: 100%;
}
.tech-investment .investment-content .main-box .water-content .item .innerbox .title {
  margin-top: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  font-size: var(--font16);
  min-height: 30px;
}
.tech-investment .investment-content .main-box .water-content .item:nth-child(1) {
  left: 24%;
}
.tech-investment .investment-content .main-box .water-content .item:nth-child(2) {
  left: 41%;
}
.tech-investment .investment-content .main-box .water-content .item:nth-child(3) {
  left: 58%;
}
@media (max-width:1560px) {
  .tech-investment .investment-content .main-box .water-content {
    margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  }
  .tech-investment .investment-content .main-box .water-content .item {
    width: 250px;
    height: 250px;
    background-size: contain;
  }
}

@media (max-width:1480px) {
 .tech-investment .investment-content .main-box .water-content .item .innerbox .num .circle .fh{
     top: -14px;
 }
 .tech-investment .investment-content .main-box .water-content .item .innerbox .num .circle .dw{
     top: -9px;
 }
}



@media (max-width:1280px) {
  .tech-investment .investment-content .main-box .water-content .item {
    width: 200px;
    height: 200px;
  }
  .tech-investment .investment-content .main-box .water-content .item .innerbox .num .circle .fh{
     top: -6px;
 }
 .tech-investment .investment-content .main-box .water-content .item .innerbox .num .circle .dw{
     top: -3px;
 }
}
@media (max-width:1200px) {
  .tech-investment .investment-content .main-box .water-content .item {
    width: 180px;
    height: 180px;
  }
}

@media (max-width:768px) {
   .tech-investment .investment-content .main-box .water-content .item .innerbox .num .circle .fh{
     top: 0px;
    }
    .tech-investment .investment-content .main-box .water-content .item .innerbox .num .circle .dw{
         top: 3px;
    }
}

@media (max-width:640px) {
  .tech-investment .investment-content .main-box .water-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: baseline;
    
  }
  .tech-investment .investment-content .main-box .water-content .item {
    width: 100%;
    height: auto;
    text-align: left;
    background-image: none;
  }
  .tech-investment .investment-content .main-box .water-content .item .innerbox {
    margin: inherit;
  }
}
@media (max-width:480px) {
}
@media (max-width:360px) {
}
.public-manufacturer-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding-bottom: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
}
.public-manufacturer-text .tech-public-title {
  flex: 1;
  font-size: var(--font50);
  line-height: 1.3;
}
.public-manufacturer-text .tech-public-title span {
  font-weight: 700;
}
.public-manufacturer-text .content {
  flex: 1;
  font-size: var(--font16);
}
.public-slot-li ul {
  position: relative;
}
.public-slot-li ul li {
  margin-top: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
}
.public-slot-li ul li::before {
  position: absolute;
  margin-top: 9px;
  content: "";
  width: 4px;
  left: 0;
  height: 4px;
  background: var(--light-green);
}
.tecg-manufacturer {
  padding-top: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
  padding-bottom: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
  background-color: var(--bg-light-green);
}
.tecg-manufacturer .public-manufacturer-text {
  border-bottom: solid 1px #004242;
}
.tecg-manufacturer .public-manufacturer-text .content ul li {
  font-weight: 500;
}
.tecg-manufacturer .stand-box .standlist {
  margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
}
.tecg-manufacturer .stand-box .standlist .item .item-img {
  padding: 0px;
  text-align: center;
}
.tecg-manufacturer .stand-box .standlist .item .item-img img {
  margin: auto;
}
@media (max-width:990px) {
  .tecg-manufacturer .stand-box .standlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:768px) {
  .tecg-manufacturer .public-manufacturer-text {
    display: inline-block;
  }
}
/* ------------------------- */
/* 3.1查看专利证书--弹窗 */
.certificate-alertwindow {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: none;
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  align-content: center;
  background-color: rgba(0, 0, 0, 0.8);
}
.certificate-alertwindow .model {
  position: relative;
  padding-top: clamp(calc(57 / 2 * 1px), calc(57 / 1920 * 100 * 1vw), 57px);
  padding-bottom: clamp(calc(39 / 2 * 1px), calc(39 / 1920 * 100 * 1vw), 39px);
  padding-left: clamp(calc(104 / 2 * 1px), calc(104 / 1920 * 100 * 1vw), 104px);
  padding-right: clamp(calc(104 / 2 * 1px), calc(104 / 1920 * 100 * 1vw), 104px);
  border-radius: 16px;
  background-color: var(--white-color);
  max-width: 1200px;
  margin: auto;
}
.certificate-alertwindow .model .title {
  text-align: center;
  font-size: var(--font30);
  font-weight: 700;
}
.certificate-alertwindow .model .closewindow {
  position: absolute;
  font-weight: 500;
  cursor: pointer;
  top: 40px;
  right: 40px;
  font-size: 20px;
}
.certificate-alertwindow .model .tablelist {
  margin-top: clamp(calc(42 / 2 * 1px), calc(42 / 1920 * 100 * 1vw), 42px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  height: 500px;
  overflow: scroll;
  font-size: var(--font16);
}
.certificate-alertwindow .model .tablelist .column_num {
  flex: 1;
}
.certificate-alertwindow .model .tablelist .table {
  display: flex;
  /* 使用Flex布局 */
  flex-direction: column;
  /* 列方向排列 */
}
.certificate-alertwindow .model .tablelist .leftrow .row {
  display: flex;
}
.certificate-alertwindow .model .tablelist .leftrow .row .cell {
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.certificate-alertwindow .model .tablelist .leftrow .row .cell:nth-child(1) {
  font-weight: 700;
}
.certificate-alertwindow .model .tablelist .leftrow .row .cell:nth-child(2) {
  flex: 1 20%;
}
.certificate-alertwindow .model .tablelist .row {
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  display: flex;
  /* 每行也是Flex布局 */
  border-bottom: 1px solid rgba(0, 66, 66, 0.1);
  /* 表格的行边框 */
  height: var(--num_60);
  line-height: var(--num_60);
  padding-top: clamp(calc(1 / 2 * 1px), calc(1 / 1920 * 100 * 1vw), 1px);
  padding-bottom: clamp(calc(1 / 2 * 1px), calc(1 / 1920 * 100 * 1vw), 1px);
}
.certificate-alertwindow .model .tablelist .row:nth-child(1) {
  background-color: #F5FAFA;
  border-top: solid 1px var(--dark-green);
  border-bottom: solid 1px var(--dark-green);
  font-weight: 700;
}
.certificate-alertwindow .model .tablelist .rowcontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid rgba(0, 66, 66, 0.1);
}
.certificate-alertwindow .model .tablelist .rowcontent .item {
  flex: 1;
}
.certificate-alertwindow .model .tablelist .rowcontent .item .title {
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
}
.certificate-alertwindow .model .tablelist .rowcontent .item ul li {
  text-align: center;
  height: var(--num_60);
  line-height: var(--num_60);
  border-bottom: 1px solid rgba(0, 66, 66, 0.1);
  border-left: 1px solid rgba(0, 66, 66, 0.1);
  border-right: 1px solid rgba(0, 66, 66, 0.1);
}
.certificate-alertwindow .model .tablelist .rowcontent .item ul :last-child {
  border-bottom: none;
}
.certificate-alertwindow .model .tablelist .rowcontent .item:nth-child(1) {
  font-weight: 700;
}
.certificate-alertwindow .model .tablelist .rowcontent .item:nth-child(3) .title {
  width: var(--num_130);
}
.certificate-alertwindow .model .tablelist .cell {
  flex: 1;
  margin: -1px;
  /* 单元格之间的间距 */
}
.certificate-alertwindow .model .tablelist .diffflex .cell:nth-child(2) {
  flex: 1 1 20%;
  /* 单元格平均分配空间 */
}
.certificate-alertwindow .model .tablelist .right-table tr td {
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  height: var(--num_60);
  line-height: var(--num_60);
}
@media (max-width:990px) {
    .certificate-alertwindow .model{
        width: 90%;
    }
  .certificate-alertwindow .model .tablelist {
    display: block;
  }
  .certificate-alertwindow .model .tablelist .column_num {
    margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  }
}
@media (max-width:1200px) {
  .certificate-alertwindow .model {
    padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
    padding-right: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  }
  .certificate-alertwindow .model .closewindow {
    width: 18px;
    height: 18px;
  }
}
/* ------------------------- */
/* 2.1手部护理--弹窗 */
.materials-alertwindow {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: none;
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  align-content: center;
  background-color: rgba(0, 0, 0, 0.8);
}
.materials-alertwindow .model {
  position: relative;
  padding-top: clamp(calc(57 / 2 * 1px), calc(57 / 1920 * 100 * 1vw), 57px);
  padding-bottom: clamp(calc(39 / 2 * 1px), calc(39 / 1920 * 100 * 1vw), 39px);
  padding-left: clamp(calc(104 / 2 * 1px), calc(104 / 1920 * 100 * 1vw), 104px);
  padding-right: clamp(calc(104 / 2 * 1px), calc(104 / 1920 * 100 * 1vw), 104px);
  border-radius: 16px;
  background-color: var(--white-color);
  max-width: 958px;
  margin: auto;
  width: 80%;
}
.materials-alertwindow .model .title {
  text-align: center;
  font-size: var(--font30);
  font-weight: 700;
}
.materials-alertwindow .model .closewindow {
  position: absolute;
  font-weight: 500;
  cursor: pointer;
  top: 40px;
  right: 40px;
  font-size: 20px;
}
.materials-alertwindow .model .form-content {
  flex: 1;
}
.materials-alertwindow .model .form-content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: var(--num_30);
  margin-bottom: clamp(calc(28 / 2 * 1px), calc(28 / 1920 * 100 * 1vw), 28px);
}
.materials-alertwindow .model .form-content .item .item-one {
  width: 100%;
}
.materials-alertwindow .model .form-content .item .item-one .name {
  font-size: var(--font16);
  font-weight: 500;
}
.materials-alertwindow .model .form-content .item .item-one .name span {
  color: var(--color-red);
}
.materials-alertwindow .model .form-content .item .item-one input {
  height: var(--num_50);
  border-radius: 25px;
  width: 100%;
  text-indent: 20px;
  border: solid 1px rgba(0, 66, 66, 0.2);
  background-color: inherit;
}
.materials-alertwindow .model .form-content .item .item-one .message-content {
  border: solid 1px rgba(0, 66, 66, 0.2);
  text-indent: 20px;
  border-radius: var(--border-radius16);
  height: 123px;
  margin-top: clamp(calc(6 / 2 * 1px), calc(6 / 1920 * 100 * 1vw), 6px);
  background-color: inherit;
  width: 100%;
}
.materials-alertwindow .model .form-content .item .submit-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: auto;
}
.materials-alertwindow .model .form-content .item .submit-content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 7px;
}
.materials-alertwindow .model .form-content .item .submit-content .info .choose-btn {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--light-green);
}
.materials-alertwindow .model .form-content .item .submit-content .info .choose-btn img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--light-green);
}
.materials-alertwindow .model .form-content .item .submit-content .info .choose-btn .active {
  display: block;
}
.materials-alertwindow .model .form-content .item .submit-content .info .agree a {
  font-weight: 400;
  text-decoration: underline;
}
.materials-alertwindow .model .form-content .item .submit-content .submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding-right: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  cursor: pointer;
  height: var(--num_50);
  background: var(--light-green);
  border-radius: 25px;
  color: var(--white-color);
}
.materials-alertwindow .model .form-content .button-group {
  margin-bottom: clamp(calc(28 / 2 * 1px), calc(28 / 1920 * 100 * 1vw), 28px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--button--bg);
  height: var(--num_50);
  border-radius: 25px;
}
.materials-alertwindow .model .form-content .button-group .item-one {
  cursor: pointer;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.materials-alertwindow .model .form-content .button-group .item-one .name {
  align-content: center;
  width: 100%;
  height: 100%;
  color: var(--light-green);
}
.materials-alertwindow .model .form-content .button-group .item-one .active {
  border-radius: 25px;
  background-color: var(--light-green);
  color: var(--white-color);
}
@media (max-width:768px) {
  .materials-alertwindow .model {
    padding-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
    padding-bottom: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
    padding-left: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
    padding-right: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  }
  .materials-alertwindow .model .form-content .item .submit-content {
    display: inline-block;
  }
  .materials-alertwindow .model .form-content .item .submit-content .info {
    justify-content: flex-start;
  }
  .materials-alertwindow .model .form-content .item .submit-content .submit-btn {
    margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
}
@media (max-width:480px) {
  .materials-alertwindow .model .form-content .item {
    display: inline-block;
    width: 100%;
  }
}
/* ------------------------- */
/* 2.1联系我们无数据时--弹窗 */
.contactux-alertwindow {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: none;
  position: fixed;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  align-content: center;
  background-color: rgba(0, 0, 0, 0.8);
}
.contactux-alertwindow .model {
  position: relative;
  padding-top: clamp(calc(57 / 2 * 1px), calc(57 / 1920 * 100 * 1vw), 57px);
  padding-bottom: clamp(calc(39 / 2 * 1px), calc(39 / 1920 * 100 * 1vw), 39px);
  padding-left: clamp(calc(104 / 2 * 1px), calc(104 / 1920 * 100 * 1vw), 104px);
  padding-right: clamp(calc(104 / 2 * 1px), calc(104 / 1920 * 100 * 1vw), 104px);
  border-radius: 16px;
  background-color: var(--white-color);
  max-width: 958px;
  margin: auto;
  width: 80%;
}
.contactux-alertwindow .model .title {
  text-align: center;
  font-size: var(--font30);
  font-weight: 700;
}
.contactux-alertwindow .model .closewindow {
  position: absolute;
  font-weight: 500;
  cursor: pointer;
  top: 40px;
  right: 40px;
  font-size: 20px;
  z-index: 10;
}
.contactux-alertwindow .model .form-content {
  flex: 1;
}
.contactux-alertwindow .model .form-content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: var(--num_30);
  margin-bottom: clamp(calc(28 / 2 * 1px), calc(28 / 1920 * 100 * 1vw), 28px);
}
.contactux-alertwindow .model .form-content .item .item-one {
  width: 100%;
}
.contactux-alertwindow .model .form-content .item .item-one .name {
  font-size: var(--font16);
  font-weight: 500;
}
.contactux-alertwindow .model .form-content .item .item-one .name span {
  color: var(--color-red);
}
.contactux-alertwindow .model .form-content .item .item-one input {
  height: var(--num_50);
  border-radius: 25px;
  width: 100%;
  text-indent: 20px;
  border: solid 1px rgba(0, 66, 66, 0.2);
  background-color: inherit;
}
.contactux-alertwindow .model .form-content .item .item-one .message-content {
  border: solid 1px rgba(0, 66, 66, 0.2);
  text-indent: 20px;
  border-radius: var(--border-radius16);
  height: 123px;
  margin-top: clamp(calc(6 / 2 * 1px), calc(6 / 1920 * 100 * 1vw), 6px);
  background-color: inherit;
  width: 100%;
}
.contactux-alertwindow .model .form-content .item .submit-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: auto;
}
.contactux-alertwindow .model .form-content .item .submit-content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 7px;
}
.contactux-alertwindow .model .form-content .item .submit-content .info .choose-btn {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--light-green);
}
.contactux-alertwindow .model .form-content .item .submit-content .info .choose-btn img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--light-green);
}
.contactux-alertwindow .model .form-content .item .submit-content .info .choose-btn .active {
  display: block;
}
.contactux-alertwindow .model .form-content .item .submit-content .info .agree a {
  font-weight: 400;
  text-decoration: underline;
}
.contactux-alertwindow .model .form-content .item .submit-content .submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding-right: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  cursor: pointer;
  height: var(--num_50);
  background: var(--light-green);
  border-radius: 25px;
  color: var(--white-color);
}
.contactux-alertwindow .model .form-content .button-group {
  margin-bottom: clamp(calc(28 / 2 * 1px), calc(28 / 1920 * 100 * 1vw), 28px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--button--bg);
  height: var(--num_50);
  border-radius: 25px;
}
.contactux-alertwindow .model .form-content .button-group .item-one {
  cursor: pointer;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.contactux-alertwindow .model .form-content .button-group .item-one .name {
  align-content: center;
  width: 100%;
  height: 100%;
  color: var(--light-green);
}
.contactux-alertwindow .model .form-content .button-group .item-one .active {
  border-radius: 25px;
  background-color: var(--light-green);
  color: var(--white-color);
}
@media (max-width:768px) {
  .contactux-alertwindow .model {
    padding-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
    padding-bottom: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
    padding-left: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
    padding-right: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  }
  .contactux-alertwindow .model .form-content .item .submit-content {
    display: inline-block;
  }
  .contactux-alertwindow .model .form-content .item .submit-content .info {
    justify-content: flex-start;
  }
  .contactux-alertwindow .model .form-content .item .submit-content .submit-btn {
    margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
}
@media (max-width:480px) {
  .contactux-alertwindow .model .form-content .item {
    display: inline-block;
    width: 100%;
  }
}
/* ------------------------- */
/* 3.2 --Production innovation */
.product_process {
  margin-top: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
}
.product_process .process_main {
  margin-top: clamp(calc(27 / 2 * 1px), calc(27 / 1920 * 100 * 1vw), 27px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}
.product_process .process_main .picture-list {
  width: 100%;
  display: block;
  margin: auto;
}
.product_process .process_main .process-swiper-box {
  cursor: pointer;
  width: 44.23%;
  overflow: hidden;
  border-radius: var(--border-radius16);
}
.product_process .process_main .process-swiper-box .pb {
  padding-bottom: 86.566%;
}
.product_process .process_main .process-swiper-box .pb img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_process .process_main .process-swiper-box .pb:hover img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.product_process .process_main .process-hand-box {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-left: 44.23%;
  background-color: var(--bg-green);
}
.product_process .process_main .process-hand-box .process-tab {
  padding-left: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  padding-right: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
}
.product_process .process_main .process-hand-box .process-tab .item {
  padding-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  padding-bottom: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  cursor: pointer;
  border-bottom: solid 1px #DEE6E6;
}
.product_process .process_main .process-hand-box .process-tab .item .option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  --wh50: clamp(2.188rem, calc(-0.12rem + 2.88vw), 3.125rem);
}
.product_process .process_main .process-hand-box .process-tab .item .option .title {
  font-weight: 700;
  font-size: var(--font22);
  line-height: 1.2;
  white-space: pre-line;
}
.product_process .process_main .process-hand-box .process-tab .item .option img {
  display: none;
}
.product_process .process_main .process-hand-box .process-tab .item .option .icon {
  width: var(--wh50);
  height: var(--wh50);
  min-width: 30px;
  min-height: 30px;
  text-align: center;
  align-content: center;
  border-radius: 25px;
  border: solid 1px var(--dark-green);
  transform: rotate(90deg);
  transition: 0.5s;
}
.product_process .process_main .process-hand-box .process-tab .item .option .icon i {
  font-size: 14px;
}
.product_process .process_main .process-hand-box .process-tab .item .option .rotated {
  transform: rotate(180deg);
}
.product_process .process_main .process-hand-box .process-tab .item .public-slot-li {
  display: none;
}
.product_process .process_main .process-hand-box .process-tab .item .public-slot-li .content {
  margin-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
}
.product_process .process_main .process-hand-box .process-tab .item .public-slot-li .content .sec-item {
  font-size: var(--font16);
}
.product_process .process_main .process-hand-box .process-tab .item:last-child {
  border-bottom: none;
}
.product_process .process_main .process-hand-box .process-tab .active .option .title {
  color: var(--light-green);
}
.product_process .process_main .process-hand-box .process-tab .active .option .icon {
  border: solid 1px var(--light-green);
  transform: rotate(-90deg);
}
.product_process .process_main .process-hand-box .process-tab .active .option .icon i {
  color: var(--light-green);
}
.product_process .process_main .process-hand-box .process-tab .active .public-slot-li {
  display: inline-block;
}
@media (max-width:990px) {
  .product_process .process_main .process-hand-box .process-tab .item .option .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}
@media (max-width:768px) {
}
@media (max-width:640px) {
  .product_process .process_main {
    display: inline-block;
    width: 100%;
  }
  .product_process .process_main .process-hand-box {
    position: relative;
    padding-left: 0px;
  }
  .product_process .process_main .process-hand-box .process-tab {
    padding: 0px;
  }
  .product_process .process_main .process-swiper-box {
    width: 100%;
  }
}
@media (max-width:480px) {
  .product_process {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
}
@media (max-width:360px) {
  .product_process {
    margin-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  }
  .product_process .process_main .process-hand-box {
    padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
    padding-right: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  }
}
.product_history_process {
  margin-top: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
}
.product_history_process .wrap-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: var(--bg-green);
}
.product_history_process .wrap-box .wrap-left {
  width: 44.23%;
  position: relative;
}
.product_history_process .wrap-box .wrap-left .about-history-swiper {
  height: 592px;
  overflow: visible;
  z-index: 9;
}
.product_history_process .wrap-box .wrap-left .item-box {
  display: block;
  height: 100%;
  position: relative;
}
.product_history_process .wrap-box .wrap-left .item-box .public-img {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.product_history_process .wrap-box .wrap-left .item-box .public-img img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_history_process .wrap-box .wrap-left .item-box .text-box {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product_history_process .wrap-box .wrap-left .item-box .text-box .title {
  position: relative;
  color: #666666;
  padding-left: 27px;
}
.product_history_process .wrap-box .wrap-left .swiper-pagination {
  display: inline-flex;
  width: 100%;
  margin-bottom: 18px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.product_history_process .wrap-box .wrap-left .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 50%;
  opacity: 0.3;
}
.product_history_process .wrap-box .wrap-left .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 18px;
  height: 18px;
  background: url("../images/pagination-point.png") no-repeat;
}
.product_history_process .wrap-box .wrap-right {
  width: 55.77%;
  padding-left: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  padding-right: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  border-radius: 0px 16px 16px 0px;
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li {
  padding-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  padding-bottom: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  cursor: pointer;
  border-bottom: solid 1px #DEE6E6;
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li .public-img {
  max-width: 555px;
  border-radius: 50%;
  display: none;
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-weight: 700;
  font-size: var(--font22);
  line-height: 1.2;
  white-space: pre-line;
  --wh50: clamp(2.188rem, calc(-0.12rem + 2.88vw), 3.125rem);
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li .top .title {
  font-weight: 700;
  font-size: var(--font22);
  line-height: 1.2;
  white-space: pre-line;
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li .top .icon {
  position: relative;
  width: var(--wh50);
  height: var(--wh50);
  min-width: var(--wh50);
  min-height: var(--wh50);
  text-align: center;
  align-content: center;
  border-radius: 25px;
  border: solid 1px var(--dark-green);
  transform: rotate(90deg);
  transition: 0.5s;
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li .top .icon i {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-content: center;
  font-size: 14px;
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li .top .icon i::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li .top .rotated {
  transform: rotate(180deg);
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li .bom {
  display: none;
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li .bom .public-slot-li .content {
  position: relative;
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li .bom .public-slot-li .content .sec-item {
  border: none;
  padding: 0px;
  padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding-top: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li .bom .public-slot-li .content .sec-item::before {
  position: absolute;
  margin-top: 9px;
  content: "";
  width: 4px;
  left: 0;
  height: 4px;
  background: var(--light-green);
}
.product_history_process .wrap-box .wrap-right .tab-ul ul li:last-child {
  border-bottom: none;
}
.product_history_process .wrap-box .wrap-right .tab-ul ul .active .top .title {
  color: var(--light-green);
}
.product_history_process .wrap-box .wrap-right .tab-ul ul .active .top .icon {
  border: solid 1px var(--light-green);
  transform: rotate(-90deg);
}
.product_history_process .wrap-box .wrap-right .tab-ul ul .active .top .icon i {
  color: var(--light-green);
}
.product_history_process .wrap-box .wrap-right .tab-ul ul .active .public-slot-li {
  display: inline-block;
}
@media (max-width:990px) {
  .product_history_process .wrap-box .wrap-left .about-history-swiper {
    overflow: hidden;
    height: initial;
  }
  .product_history_process .wrap-box {
    display: block;
    background-color: initial;
  }
  .product_history_process .wrap-box .wrap-left {
    margin: auto;
  }
  .product_history_process .wrap-box .wrap-right {
    width: 100%;
    background-color: var(--bg-green);
  }
}
@media (max-width:768px) {
  .product_history_process .wrap-box .wrap-right .tab-ul ul li .top .icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
  }
  .product_history_process .wrap-box .wrap-right .tab-ul ul li .top .icon i {
    font-size: 10px;
  }
}
@media (max-width:640px) {
  .product_history_process .wrap-box .wrap-left {
    width: 100%;
  }
  .product_history_process .wrap-box .wrap-left .swiper-wrapper{
      width: 100%;
  }
  .product_history_process .wrap-box .wrap-left .swiper-wrapper .swiper-slide{
      width: 100% !important;
  }
  
}
@media (max-width:480px) {
  .product_history_process {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
}
@media (max-width:360px) {
  .product_history_process .wrap-box .wrap-right {
    padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
    padding-right: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
}
.product_materials {
  margin-top: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
}
.product_materials .mainimage {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  border-radius: 16px;
}
.product_materials .mainimage img {
  width: 100%;
}
.product_materials .mainimage .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  font-size: var(--font42);
  height: 100%;
  align-content: center;
  top: 0;
  color: var(--white-color);
  font-weight: bold;
}
@media (max-width:640px) {
  .product_materials .public-manufacturer-text {
    display: inline-block;
    width: 100%;
  }
}
@media (max-width:480px) {
  .product_materials {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
}
.product_equipment {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  background-color: var(--bg-green);
  padding-top: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
  padding-bottom: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
}
.product_equipment .equipment-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: var(--num_50);
}
.product_equipment .equipment-box .content {
  width: 80%;
}
.product_equipment .equipment-box .content ul li {
  font-weight: 500;
}
.product_equipment .equipment-box .content .public-manufacturer-text {
  display: inline-block;
}
.product_equipment .equipment-box .content .public-manufacturer-text .content {
  margin-top: clamp(calc(96 / 2 * 1px), calc(96 / 1920 * 100 * 1vw), 96px);
}
.product_equipment .equipment-box .content .about_menu {
  margin-top: clamp(calc(115 / 2 * 1px), calc(115 / 1920 * 100 * 1vw), 115px);
}
.product_equipment .equipment-box .content .about_menu .item {
  border-top: none;
}
.product_equipment .equipment-box .content .about_menu .item .title {
  max-width: 160px;
}
.product_equipment .equipment-box .image {
  position: relative;
  width: 60.466%;
}
.product_equipment .equipment-box .image .bigsize-img {
  overflow: hidden;
  border-radius: var(--border-radius16);
  transition-delay: 0.1s;
}
.product_equipment .equipment-box .image .bigsize-img img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.product_equipment .equipment-box .image .bigsize-img:hover img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.product_equipment .equipment-box .image .smallsize-img {
  position: absolute;
  left: -24%;
  bottom: 23.6%;
  overflow: hidden;
  border-radius: var(--border-radius16);
  transition-delay: 0.2s;
}
.product_equipment .equipment-box .image .smallsize-img img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.product_equipment .equipment-box .image .smallsize-img:hover img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width:990px) {
  .product_equipment .equipment-box .content .about_menu {
    margin-top: 0px;
    gap: 0px;
  }
  .product_equipment .equipment-box .content .about_menu .item {
    padding: 0px;
  }
  .product_equipment .equipment-box .image .smallsize-img {
    margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
    position: initial;
  }
}
@media (max-width:640px) {
  .product_equipment .equipment-box {
    display: inline-block;
    width: 100%;
  }
  .product_equipment .equipment-box .content {
    width: 100%;
  }
  .product_equipment .equipment-box .image {
    margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
  }
  .product_equipment .equipment-box .image .bigsize-img,
  .product_equipment .equipment-box .image .smallsize-img {
    width: 48%;
    margin-top: 0px;
    max-height: 200px;
  }
  .product_equipment .equipment-box .image .bigsize-img img,
  .product_equipment .equipment-box .image .smallsize-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width:480px) {
  .product_equipment {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
    padding-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
  .product_equipment .equipment-box .content .public-manufacturer-text .content {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
}
@media (max-width:360px) {
  .product_equipment .equipment-box .content .public-manufacturer-text .content {
    margin-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  }
}
.product_equipment_slider {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
.product_equipment_slider .public-manufacturer-text {
  padding-bottom: 0px;
}
.product_equipment_slider .ind-news-wrap {
  padding-top: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  padding-bottom: clamp(calc(110 / 2 * 1px), calc(110 / 1920 * 100 * 1vw), 110px);
  background-color: var(--background_color);
}
.product_equipment_slider .ind-news-wrap .company-box {
  margin-top: clamp(calc(42 / 2 * 1px), calc(42 / 1920 * 100 * 1vw), 42px);
  border-radius: var(--border-radius10);
  background-color: #fff;
}
.product_equipment_slider .ind-news-wrap .company-box .pb {
  padding-bottom: 71.32%;
}
.product_equipment_slider .ind-news-wrap .company-box .pb .ab {
  overflow: hidden;
  border-radius: var(--border-radius16);
}
.product_equipment_slider .ind-news-wrap .company-box .pb .ab img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product_equipment_slider .ind-news-wrap .company-box .title {
  font-size: var(--font18);
  text-align: center;
  margin-top: clamp(calc(24 / 2 * 1px), calc(24 / 1920 * 100 * 1vw), 24px);
  line-height: 1;
}
.product_equipment_slider .ind-news-wrap .company-box:hover .pb .ab img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  border: solid 1px var(--active_color);
}
@media (max-width:480px) {
  .product_equipment_slider {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
}
/* ------------------------- */
/* 3.3 --Quality control innovation */
.detection-equipment {
  padding-top: clamp(calc(160 / 2 * 1px), calc(160 / 1920 * 100 * 1vw), 160px);
  padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  position: relative;
}
.detection-equipment .main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.detection-equipment .main-box .content {
  z-index: 3;
  width: 34%;
  position: relative;
}
.detection-equipment .main-box .content .public-manufacturer-text {
  margin-top: clamp(calc(55 / 2 * 1px), calc(55 / 1920 * 100 * 1vw), 55px);
}
.detection-equipment .main-box .content .slide-box {
  margin-top: clamp(calc(110 / 2 * 1px), calc(110 / 1920 * 100 * 1vw), 110px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: var(--num_40);
  --wh: clamp(6.25rem, calc(-1.442rem + 9.62vw), 9.375rem);
}
.detection-equipment .main-box .content .slide-box .slide-circle {
  position: relative;
  width: var(--wh);
  height: var(--wh);
  border-radius: 50%;
  background: var(--light-green);
  align-content: center;
}
.detection-equipment .main-box .content .slide-box .slide-circle .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 100%;
  font-weight: 700;
  font-size: var(--font20);
  color: var(--white-color);
  text-align: center;
}
.detection-equipment .main-box .content .slide-box .slide-circle .ind-swiperbtn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.detection-equipment .main-box .content .slide-box .slide-circle .ind-swiperbtn .swiper-button-prev,
.detection-equipment .main-box .content .slide-box .slide-circle .ind-swiperbtn .swiper-container-rtl .swiper-button-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: inherit;
  align-content: center;
}
.detection-equipment .main-box .content .slide-box .slide-circle .ind-swiperbtn .swiper-button-next,
.detection-equipment .main-box .content .slide-box .slide-circle .ind-swiperbtn .swiper-container-rtl .swiper-button-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: inherit;
  align-content: center;
}
.detection-equipment .main-box .content .slide-box .slide-circle .ind-swiperbtn .swiper-button-prev,
.detection-equipment .main-box .content .slide-box .slide-circle .ind-swiperbtn .swiper-container-rtl .swiper-button-next {
  left: 0;
}
.detection-equipment .main-box .content .slide-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-weight: 700;
  font-size: var(--font40);
}
.detection-equipment .main-box .content .slide-num span,
.detection-equipment .main-box .content .slide-num .line {
  color: var(--light-green);
}
.detection-equipment .main-box .content .slide-num .all,
.detection-equipment .main-box .content .slide-num .line {
  opacity: 0.3;
}
.detection-equipment .main-box .equipbanner {
  overflow: visible;
  width: 28%;
  height: 100%;
  z-index: 1;
}
.detection-equipment .main-box .equipbanner::after {
  position: absolute;
  right: 97%;
  top: -10%;
  content: "";
  width: 100%;
  min-width: 2200px;
  height: 120%;
  overflow: hidden;
  background-color: #fff;
  z-index: 1;
}
.detection-equipment .main-box .equipbanner .swiper-slide {
  width: 83.2%;
}
.detection-equipment .main-box .equipbanner .swiper-slide-active {
  width: 100%;
  margin-top: -11%;
}
.detection-equipment .main-box .equipbanner .swiper-slide-active .img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-radius: 16px;
}
.detection-equipment .main-box .equipbanner .swiper-slide-active .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.detection-equipment .main-box .equipbanner .swiper-pagination {
  margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  position: relative;
  display: none;
}
@media (max-width:1680px) {
  .detection-equipment .slide-circle .swiper-button-next,
  .detection-equipment .slide-circle .swiper-container-rtl .swiper-button-prev {
    right: 0px;
  }
}
@media (max-width:1560px) {
  .detection-equipment .main-box .content .slide-box .slide-circle {
    min-width: var(--num_150);
    min-height: var(--num_150);
  }
}
@media (max-width:1200px) {
  .detection-equipment .main-box {
    display: inline-block;
    width: 100%;
  }
  .detection-equipment .main-box .content {
    width: 100%;
  }
  .detection-equipment .main-box .content .slide-box {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
  .detection-equipment .main-box .equipbanner {
    margin-top: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
  }
}
@media (max-width:640px) {
  .detection-equipment .main-box .content .slide-box {
    display: none;
  }
  .detection-equipment .main-box .equipbanner {
    width: 100%;
  }
  .detection-equipment .main-box .equipbanner::after {
    background-color: inherit;
  }
  .detection-equipment .main-box .equipbanner .swiper-pagination {
    display: inline-block;
  }
  .detection-equipment .main-box .equipbanner .swiper-slide-active {
    margin-top: 0;
  }
}
@media (max-width:480px) {
  .detection-equipment {
    padding-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
    padding-bottom: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  }
}
@media (max-width:360px) {
  .detection-equipment .main-box {
    margin-top: 0px;
  }
  .detection-equipment .main-box .content .public-manufacturer-text,
  .detection-equipment .main-box .content .slide-box {
    margin-top: 0px;
  }
}
/*.production-process-water {*/
/*  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);*/
/*  padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);*/
/*  background-color: var(--bg-light-green);*/
/*}*/
/*.production-process-water .tech-public-title {*/
/*  text-align: center;*/
/*}*/
/*.production-process-water .main-box {*/
/*  position: relative;*/
/*  margin-top: clamp(calc(54 / 2 * 1px), calc(54 / 1920 * 100 * 1vw), 54px);*/
/*}*/
/*.production-process-water .main-box .card-content {*/
/*  position: relative;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row {*/
/*  display: -webkit-box;*/
/*  display: -ms-flexbox;*/
/*  display: -webkit-flex;*/
/*  display: flex;*/
/*  -webkit-box-pack: center;*/
/*  -ms-flex-pack: center;*/
/*  -webkit-justify-content: center;*/
/*  justify-content: center;*/
/*  position: relative;*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row .item {*/
/*  position: relative;*/
/*  margin-bottom: 4.4%;*/
/*  text-align: center;*/
/*  flex: 0 0 25%;*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row .item .title {*/
/*  font-weight: 700;*/
/*  font-size: var(--font18);*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row .item .number {*/
/*  margin-top: 18%;*/
/*  position: relative;*/
/*  font-weight: 700;*/
/*  font-size: var(--font18);*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row .item .number .num {*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  top: 10px;*/
/*  color: var(--white-color);*/
/*  --number: clamp(0.125rem, calc(-0.183rem + 0.38vw), 0.25rem);*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row .item .number .num::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 30%;*/
/*  left: 0;*/
/*  z-index: -1;*/
/*  width: 100%;*/
/*  height: var(--number);*/
/*  background-color: #DDE2E2;*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row .item .number .num::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 22px;*/
/*  height: 22px;*/
/*  right: 0;*/
/*  top: -3%;*/
/*  background: url("../images/arrow-right.png") no-repeat;*/
/*  background-size: cover;*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row .item .picture {*/
/*  margin-top: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row:nth-child(odd) {*/
/*  position: relative;*/
/*  flex-direction: row;*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row:nth-child(odd)::before {*/
/*  background: url("../images/flex-line.png") no-repeat;*/
/*  background-size: cover;*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row:nth-child(odd) .item:last-child .number .num::after {*/
/*  background: url("../images/arrow-right-last.png") no-repeat;*/
/*  right: -7px;*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row:nth-child(even) {*/
/*  flex-direction: row-reverse;*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row:nth-child(even)::before {*/
/*  background: url("../images/flex-line.png") no-repeat;*/
/*  background-size: cover;*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row:nth-child(even) .item .number .num::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  width: 22px;*/
/*  height: 22px;*/
/*  left: 0;*/
/*  top: -3%;*/
/*  background: url(../images/arrow-right.png) no-repeat;*/
/*  background-size: cover;*/
/*  transform: rotate(180deg);*/
/*}*/
/*.production-process-water .main-box .card-content .card-list .row:nth-child(even) .item:last-child .number .num::after {*/
/*  background: url("../images/arrow-right-last.png") no-repeat;*/
/*  left: -7px;*/
/*  transform: rotate(180deg);*/
/*}*/
/*@media (max-width:1680px) {*/
/*  .production-process-water .main-box .card-content .card-list .item {*/
/*    margin-bottom: 1.5%;*/
/*  }*/
/*}*/
/*@media (max-width:990px) {*/
/*  .production-process-water .main-box .card-content .card-list .row .item .picture {*/
/*    padding-left: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);*/
/*    padding-right: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);*/
/*  }*/
/*}*/
/*@media (max-width:768px) {*/
/*  .production-process-water .main-box .card-content .card-list .row .item .picture {*/
/*    padding-left: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);*/
/*    padding-right: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);*/
/*  }*/
/*  .production-process-water .main-box .card-content .card-list .row .item .number {*/
/*    margin-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);*/
/*  }*/
/*  .production-process-water .row:nth-child(even) {*/
/*    flex-direction: row;*/
/*  }*/
/*  .production-process-water .main-box .card-content .card-list .row {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*  }*/
/*  .production-process-water .main-box .card-content .card-list .row:nth-child(even) .item .number .num::after,*/
/*  .production-process-water .main-box .card-content .card-list .row .item .number .num::after {*/
/*    display: none;*/
/*  }*/
/*  .production-process-water .main-box .card-content .card-list .row .item:nth-child(odd) .number::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 18%;*/
/*    right: 0;*/
/*    z-index: 5;*/
/*    width: 22px;*/
/*    height: 22px;*/
/*    background: url("../images/arrow-right.png") no-repeat;*/
/*  }*/
/*}*/
/*@media (max-width:480px) {*/
/*  .production-process-water {*/
/*    padding-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);*/
/*    padding-bottom: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);*/
/*  }*/
/*}*/
/*@media (max-width:360px) {*/
/*  .production-process-water {*/
/*    margin-top: 0px;*/
/*  }*/
/*  .production-process-water .main-box {*/
/*    margin-top: 0px;*/
/*  }*/
/*}*/

.production-process-water {
  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  background-color: var(--bg-light-green);
}
.production-process-water .tech-public-title {
  text-align: center;
}
.production-process-water .main-box {
  position: relative;
  margin-top: clamp(calc(54 / 2 * 1px), calc(54 / 1920 * 100 * 1vw), 54px);
}
.production-process-water .main-box .card-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.production-process-water .main-box .card-content .card-list .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
}
.production-process-water .main-box .card-content .card-list .row .item {
  position: relative;
  margin-bottom: 4.4%;
  text-align: center;
  flex: 0 0 25%;
}
.production-process-water .main-box .card-content .card-list .row .item .title {
  font-weight: 700;
  font-size: var(--font18);
}
.production-process-water .main-box .card-content .card-list .row .item .number {
  margin-top: 10%;
  position: relative;
  font-weight: 700;
  font-size: var(--font18);
}
.production-process-water .main-box .card-content .card-list .row .item .number .num {
  position: absolute;
  width: 100%;
  top: 10px;
  color: var(--white-color);
  --number: clamp(0.125rem, calc(-0.183rem + 0.38vw), 0.25rem);
}
.production-process-water .main-box .card-content .card-list .row .item .number .num::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: var(--number);
  background-color: #DDE2E2;
}
.production-process-water .main-box .card-content .card-list .row .item .number .num::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  right: 0;
  top: -3%;
  background: url("../images/arrow-right.png") no-repeat;
  background-size: cover;
}
.production-process-water .main-box .card-content .card-list .row .item .picture {
  margin-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);height: 200px;
  
}
.production-process-water .main-box .card-content .card-list .row .item .picture img{
    transition: .5s ease-in-out;
    border-radius: 16px;
    width: 80%;
    height: 200px;
    object-fit: cover;
}

.production-process-water .main-box .card-content .card-list .row .item .picture:hover img{
    transform: scale(1.1);
    transition: .5s ease-in-out;
}

.production-process-water .main-box .card-content .card-list .row:nth-child(odd) {
  position: relative;
  flex-direction: row;
}
.production-process-water .main-box .card-content .card-list .row:nth-child(odd)::before {
  background: url("../images/flex-line.png") no-repeat;
  background-size: cover;
}
.production-process-water .main-box .card-content .card-list .row:nth-child(odd) .item:last-child .number .num::after {
  background: url("../images/arrow-right-last.png") no-repeat;
  right: -7px;
}
.production-process-water .main-box .card-content .card-list .row:nth-child(even) {
  flex-direction: row-reverse;
}
.production-process-water .main-box .card-content .card-list .row:nth-child(even)::before {
  background: url("../images/flex-line.png") no-repeat;
  background-size: cover;
}
.production-process-water .main-box .card-content .card-list .row:nth-child(even) .item .number .num::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 0;
  top: -3%;
  background: url(../images/arrow-right.png) no-repeat;
  background-size: cover;
  transform: rotate(180deg);
}
.production-process-water .main-box .card-content .card-list .row:nth-child(even) .item:last-child .number .num::after {
  background: url("../images/arrow-right-last.png") no-repeat;
  left: -7px;
  transform: rotate(180deg);
}
@media (max-width:1680px) {
  .production-process-water .main-box .card-content .card-list .item {
    margin-bottom: 1.5%;
  }
  .production-process-water .main-box .card-content .card-list .row .item .picture{
	height: 180px;
    }
}

@media (max-width:1580px) {
 
  .production-process-water .main-box .card-content .card-list .row .item .picture{
	height: 160px;
    }
}
@media (max-width:1440px) {
 
  .production-process-water .main-box .card-content .card-list .row .item .picture{
	height: 140px;
    }
    
}


@media (max-width:990px) {
  .production-process-water .main-box .card-content .card-list .row .item .picture {
    padding-left: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
    padding-right: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
    	height: 120px;
  }
  
}
@media (max-width:768px) {
  .production-process-water .main-box .card-content .card-list .row .item .picture {
    padding-left: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
    padding-right: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
    
  }
  .production-process-water .main-box .card-content .card-list .row .item .number {
    margin-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  }
  .production-process-water .row:nth-child(even) {
    flex-direction: row;
  }
  .production-process-water .main-box .card-content .card-list .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .production-process-water .main-box .card-content .card-list .row:nth-child(even) .item .number .num::after,
  .production-process-water .main-box .card-content .card-list .row .item .number .num::after {
    display: none;
  }
  .production-process-water .main-box .card-content .card-list .row .item:nth-child(odd) .number::after {
    content: '';
    position: absolute;
    top: 18%;
    right: 0;
    z-index: 5;
    width: 22px;
    height: 22px;
    background: url("../images/arrow-right.png") no-repeat;
  }
}
@media (max-width:480px) {
  .production-process-water {
    padding-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
    padding-bottom: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
}
@media (max-width:360px) {
  .production-process-water {
    margin-top: 0px;
  }
  .production-process-water .main-box {
    margin-top: 0px;
  }
  .production-process-water .main-box .card-content .card-list .row .item .picture{
      height: 100px;
  }
  
}
.production-process {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
.production-process .button-group {
  position: relative;
  z-index: 1;
}
.production-process .swiper-main .first-processswiper .flexcontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: clamp(calc(80 / 2 * 1px), calc(80 / 1920 * 100 * 1vw), 80px);
  background-color: var(--white-color);
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-wrap {
  position: relative;
  overflow: hidden;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-layout .scroll-image {
  width: 51.74%;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-layout .scroll-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 24.5%;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 27px;
  font-weight: 800;
  position: relative;
  font-size: var(--font18);
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .num {
  position: relative;
  width: 44px;
  min-width: 44px;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .num ul {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .num ul li {
  margin-bottom: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  text-align: center;
  color: #8D9F9F;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .num ul li:first-child {
  margin-top: 10px;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .num ul li:last-child {
  margin-bottom: 10px;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .num .percentall {
  border-radius: 22px;
  background-color: #F0FBFB;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .num .percent {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 4px;
  height: 10%;
  background: linear-gradient(0deg, #0B9191 0%, #83CBCB 100%);
  border-radius: 18px;
  width: 36px;
  z-index: 2;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
  /* 动画过渡效果 */
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .num .percent li {
  color: #fff;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .title ul li {
  margin-bottom: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  color: #8D9F9F;
  white-space: nowrap;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .title ul li:first-child {
  margin-top: 10px;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .title ul li:last-child {
  margin-bottom: 10px;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .title ul li:focus {
  color: #8D9F9F;
}
.production-process .swiper-main .first-processswiper .flexcontent .scroll-box .scroll-bar .title ul .activecolor {
  color: #0B9191;
}
.production-process .swiper-main .first-processswiper .flexcontent .rightcontent {
  overflow: hidden;
  width: 75.5%;
}
.production-process .swiper-main .first-processswiper .flexcontent .rightcontent .scroll-content {
  width: 48.27%;
  padding-left: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  padding-right: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  padding-top: clamp(calc(70 / 2 * 1px), calc(70 / 1920 * 100 * 1vw), 70px);
  padding-bottom: clamp(calc(70 / 2 * 1px), calc(70 / 1920 * 100 * 1vw), 70px);
  border-radius: 0px 14px 14px 0px;
  background-color: var(--bg-light-green);
  --font100: clamp(3.125rem, calc(-4.567rem + 9.62vw), 6.25rem);
}
.production-process .swiper-main .first-processswiper .flexcontent .rightcontent .scroll-content .num {
  font-size: var(--font100);
  font-weight: 700;
  line-height: 1;
  background: -webkit-linear-gradient(-88deg, var(--dark-green), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.production-process .swiper-main .first-processswiper .flexcontent .rightcontent .scroll-content .title {
  margin-top: clamp(calc(66 / 2 * 1px), calc(66 / 1920 * 100 * 1vw), 66px);
  font-size: var(--font30);
  font-weight: 700;
}
.production-process .swiper-main .first-processswiper .flexcontent .rightcontent .scroll-content .info {
  margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  font-size: var(--font16);
}
.production-process .swiper-main .pubilcpagination_btn {
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 0;
}
.production-process .swiper-main .pubilcpagination_btn .pagination {
  display: flex;
  justify-content: flex-end;
}
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  left: 67%;
  bottom: 10%;
  margin-top: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
  gap: 16px;
}
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-prev,
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-next {
  background-image: none;
  position: relative;
  top: 0;
  width: auto;
  height: auto;
  margin: 0;
  left: 0;
  right: 0;
}
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-prev,
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-next {
  --wh: clamp(1.875rem, calc(-1.202rem + 3.85vw), 3.125rem);
}
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-prev .boxsize,
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-next .boxsize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  width: var(--wh);
  height: var(--wh);
  border-radius: 30px;
  border: solid 1px var(--dark-green);
}
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-prev .boxsize img,
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-next .boxsize img {
  transform: rotate(-90deg);
}
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-prev .boxsize:hover,
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-next .boxsize:hover {
  background-color: var(--dark-green);
}
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-prev .boxsize:hover img,
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-next .boxsize:hover img {
  filter: brightness(0) invert(1);
}
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-next.swiper-button-disabled,
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  filter: brightness(1);
}
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-next.swiper-button-disabled .boxsize,
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-prev.swiper-button-disabled .boxsize {
  background-color: inherit;
  border: solid 1px var(--dark-green);
}
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-next.swiper-button-disabled .boxsize img,
.production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox .swiper-button-prev.swiper-button-disabled .boxsize img {
  filter: brightness(1);
  transform: rotate(-90deg);
}
.production-process .tech-public-title {
  text-align: center;
}
.production-process .button-group {
  width: 75%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--button--bg);
  height: var(--num_70);
  border-radius: 35px;
}
.production-process .button-group .item {
  overflow: hidden;
  border-radius: 35px;
  cursor: pointer;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.production-process .button-group .item .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  padding-right: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  font-size: var(--font18);
  white-space: nowrap;
  align-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: var(--light-green);
}
.production-process .button-group .active {
  border-radius: 35px;
  background-color: var(--light-green) !important;
  color: var(--white-color);
}
.production-process .button-group .active .name {
  color: var(--white-color);
}
.production-process .first-processswiper {
  overflow: hidden;
}
@media (max-width:990px) {
  .production-process .swiper-main .first-processswiper .flexcontent .scroll-box {
    display: none;
  }
  .production-process .swiper-main .first-processswiper .flexcontent .rightcontent {
    width: 100%;
  }
  .production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox {
    left: 55.5%;
  }
}
@media (max-width:768px) {
  .production-process .swiper-main .first-processswiper .flexcontent .scroll-layout .scroll-image {
    width: 45%;
  }
  .production-process .swiper-main .first-processswiper .flexcontent .scroll-layout .rightcontent {
    width: 65%;
    padding: var(--num_40);
  }
  .production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox {
    left: 49.5%;
    bottom: 4%;
  }
  .production-process .swiper-main .first-processswiper .flexcontent .scroll-content .scroll-content .title {
    margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
  .production-process .swiper-main .first-processswiper .flexcontent .scroll-content .scroll-content .info {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .production-process .swiper-main .first-processswiper .flexcontent .rightcontent .scroll-content {
    padding-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
    padding-bottom: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
  .production-process .swiper-main .first-processswiper .flexcontent .rightcontent .scroll-content .title {
    margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
  .production-process .swiper-main .first-processswiper .flexcontent .rightcontent .scroll-content .info {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
@media (max-width:640px) {
  .production-process .swiper-main .first-processswiper .flexcontent .scroll-layout .scroll-image {
    width: 100%;
  }
  .production-process .swiper-main .first-processswiper .flexcontent .rightcontent .scroll-content {
    width: 100%;
  }
  .production-process .swiper-main .first-processswiper .flexcontent .scroll-layout {
    display: inline-block;
    width: 100%;
  }
  .production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox {
    left: 80%;
    top: 40%;
    margin-right: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
  .production-process .button-group {
    display: inline;
    width: 100%;
  }
  
  .production-process .button-group .item {
    margin-bottom: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
    background-color: var(--button--bg);
    line-height: 1;
    padding: 9.5px;
  }
  .production-process .swiper-main .pubilcpagination_btn {
    display: none;
  }
}
@media (max-width:480px) {
  .production-process .swiper-main .pubilcpagination_btn .pagination .buttonbox {
    left: 70%;
    top: 30%;
  }
}
.certified-wrap {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-bottom: 50px;
}
.certified-wrap .certified-card .item {
  text-align: center;
}
.certified-wrap .certified-card .item .book {
  border-radius: 16px;
  background-color: #F2F5F5;
  padding: 25px;
  height: 400px;
   display: flex;
    align-items: center;
    justify-content: center;
}
.certified-wrap .certified-card .item .book img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.certified-wrap .certified-card .item .title {
  margin-top: clamp(calc(23 / 2 * 1px), calc(23 / 1920 * 100 * 1vw), 23px);
  white-space: pre-line;
  font-size: var(--font18);
  font-weight: 500;
}
.certified-wrap .certified-card .item:hover img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.certified-wrap .certified-card .item:nth-child(2) {
  transition-delay: 0.1s;
}
.certified-wrap .certified-card .item:nth-child(3) {
  transition-delay: 0.2s;
}
.certified-wrap .certified-card .swiper-pagination {
  margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  position: relative;
  display: none;
}
@media (max-width:640px) {
  .certified-wrap .certified-card .swiper-pagination {
    display: inline-block;
  }
}
@media (max-width:480px) {
  .certified-wrap {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
}
.quality-control {
  margin: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px) 0;
}
.quality-control .filter-content .result-title {
  margin-top: clamp(calc(39 / 2 * 1px), calc(39 / 1920 * 100 * 1vw), 39px);
  padding-top: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  padding-bottom: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-weight: 700;
  border-bottom: solid 1px var(--dark-green);
}
.quality-control .filter-content .result-title .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  text-align: center;
  width: 156px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  border: solid 1px rgba(0, 66, 66, 0.2);
}
.quality-control .filter-content .cardlist {
  width: 100%;
  height: auto;
  margin-top: clamp(calc(41 / 2 * 1px), calc(41 / 1920 * 100 * 1vw), 41px);
  /*display: grid;*/
  /*grid-template-columns: repeat(4, 1fr);*/
  /*gap: 20px;*/
}
.quality-control .filter-content .cardlist .quality-box {
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--border-radius10);
  background-color: #fff;
}
.quality-control .filter-content .cardlist .quality-box .pb {
  padding-bottom: 70%;
}
.quality-control .filter-content .cardlist .quality-box .pb .ab {
  overflow: hidden;
  border-radius: 16px;
}
.quality-control .filter-content .cardlist .quality-box .pb .ab img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  object-fit: cover;
}
.quality-control .filter-content .cardlist .quality-box .title {
  margin-top: clamp(calc(16 / 2 * 1px), calc(16 / 1920 * 100 * 1vw), 16px);
  font-size: var(--font18);
  text-align: center;
}
.quality-control .filter-content .cardlist .quality-box:hover .pb img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.quality-control .filter-content .cardlist:hover .company-box {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border: solid 1px var(--active_color);
}
.quality-control .filter-content .cardlist .swiper-pagination {
  margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  position: relative;
  display: none;
}
.quality-control .filter-content .pagination {
  margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  margin-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
@media (max-width:990px) {
  .quality-control .public-manufacturer-text {
    display: inline-block;
  }
  .quality-control .filter-content .cardlist {
    /*grid-template-columns: repeat(3, 1fr);*/
  }
}
@media (max-width:640px) {
  .quality-control .filter-content .cardlist .swiper-pagination {
    display: inline-block;
  }
  .quality-control .filter-content .pagination {
    display: none;
  }
  .quality-control .filter-content .cardlist {
    /*grid-template-columns: repeat(2, 1fr);*/
  }
}
@media (max-width:480px) {
  .quality-control {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
  .quality-control .filter-content .cardlist .quality-box .pb {
    padding-bottom: 65%;
  }
}
/* ------------------------- */
/* 1-1--关于我们 */
.aboutus-container {
  margin-top: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
}
.aboutus-container .idx_about {
  background-color: #fff;
  background: inherit;
}
.aboutus-container .idx_about .grid_box {
  background-color: #fff;
}
.aboutus-container .idx_about .about_box {
  padding-top: clamp(calc(0 / 2 * 1px), calc(0 / 1920 * 100 * 1vw), 0px);
  padding-bottom: clamp(calc(90 / 2 * 1px), calc(90 / 1920 * 100 * 1vw), 90px);
}
.aboutus-container .idx_about .about_box .about_main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.aboutus-container .idx_about .about_box .about_main .video_box {
  width: 41%;
  overflow: hidden;
}
.aboutus-container .idx_about .about_box .about_main .video_box img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.aboutus-container .idx_about .about_box .about_main .video_box:hover img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.aboutus-container .idx_about .about_box .about_main .content {
  width: 59%;
  padding-left: clamp(calc(110 / 2 * 1px), calc(110 / 1920 * 100 * 1vw), 110px);
}
.aboutus-container .idx_about .about_box .about_main .content .headline {
  position: relative;
}
.aboutus-container .idx_about .about_box .about_main .content .headline .classify {
  font-size: var(--font30);
  font-weight: 500;
}
.aboutus-container .idx_about .about_box .about_main .content .headline .classify::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  left: -42px;
  top: 25px;
  background: #0B9191;
}
.aboutus-container .idx_about .about_box .about_main .content .headline .title {
  margin-top: clamp(calc(67 / 2 * 1px), calc(67 / 1920 * 100 * 1vw), 67px);
  font-size: var(--font30);
  font-weight: 700;
}
.aboutus-container .idx_about .about_box .about_main .content .info {
  margin-top: 0px;
  font-size: var(--font16);
}
.aboutus-container .idx_about .about_box .about_main .content .about_menu {
  margin-top: clamp(calc(112 / 2 * 1px), calc(112 / 1920 * 100 * 1vw), 112px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 54px;
  column-gap: 110px;
}
.aboutus-container .idx_about .about_box .about_main .content .about_menu .item {
  border-top: solid 2px rgba(11, 145, 145, 0.2);
  position: relative;
}
.aboutus-container .idx_about .about_box .about_main .content .about_menu .item::before {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  top: 0;
  background: var(--light-green);
  transition: width var(--ani);
}
.aboutus-container .idx_about .about_box .about_main .content .about_menu .item:hover {
  border-top: solid 2px var(--white-color);
}
.aboutus-container .idx_about .about_box .about_main .content .about_menu .item:hover::before {
  width: 100%;
  left: 0;
}
@media (max-width:1280px) {
  .aboutus-container .idx_about .about_box .about_main .content .about_menu {
    row-gap: var(--num_50);
    column-gap: var(--num_50);
    margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  }
}
@media (max-width:640px) {
  .aboutus-container .idx_about .about_box .about_main {
    display: inline-block;
  }
  .aboutus-container .idx_about .about_box .about_main .video_box {
    width: 100%;
    margin: auto;
  }
  .aboutus-container .idx_about .about_box .about_main .content {
    padding-left: 0;
    width: 100%;
    margin-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  }
  .aboutus-container .idx_about .about_box .about_main .content .headline .classify::before {
    display: none;
  }
  .aboutus-container .idx_about .about_box .about_main .content .about_menu {
    row-gap: 0;
    column-gap: 0;
  }
}
.aboutus-banner .title,
.aboutus-banner .classify {
  color: var(--white-color);
}
.about-us-title {
  margin-bottom: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
  line-height: 1;
  font-size: var(--font50);
  color: var(--dark-green);
  font-weight: 700;
}
.about-us-title span {
  font-weight: 300;
}
.aboutus-brand-conce {
  position: relative;
  margin-top: 16%;
  width: 100%;
  height: 100%;
}
.aboutus-brand-conce .main-box {
  position: absolute;
  width: 100%;
  height: 100%;
  margin-top: -15%;
}
.aboutus-brand-conce .main-box .grid_box {
  width: 100%;
  height: 100%;
}
.aboutus-brand-conce .main-box .grid_box .grid_main {
  width: 100%;
  height: 100%;
}
.aboutus-brand-conce .main-box .innerbox {
  position: relative;
  width: 100%;
  height: 100%;
}
.aboutus-brand-conce .main-box .innerbox .brand-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 20px;
  height: auto;
}
.aboutus-brand-conce .main-box .innerbox .brand-content .picture {
  position: relative;
  width: 41%;
  height: 100%;
}
.aboutus-brand-conce .main-box .innerbox .brand-content .picture .pb {
  padding-bottom: 91.154%;
}
.aboutus-brand-conce .main-box .innerbox .brand-content .detail {
  padding-left: clamp(calc(110 / 2 * 1px), calc(110 / 1920 * 100 * 1vw), 110px);
  width: 59%;
  height: auto;
}
.aboutus-brand-conce .main-box .innerbox .brand-content .detail .item .title {
  font-size: var(--font30);
  font-weight: 700;
}
.aboutus-brand-conce .main-box .innerbox .brand-content .detail .item .sec-title {
  margin-top: clamp(calc(15 / 2 * 1px), calc(15 / 1920 * 100 * 1vw), 15px);
  font-size: var(--font16);
}
.aboutus-brand-conce .main-box .innerbox .brand-content .detail .item:nth-child(2) {
  margin-top: clamp(calc(167 / 2 * 1px), calc(167 / 1920 * 100 * 1vw), 167px);
}
@media (max-width:1280px) {
  .aboutus-brand-conce .main-box {
    display: inline-block;
    position: relative;
  }
  .aboutus-brand-conce .company-image {
    position: absolute;
    width: 100%;
    height: 100%;
  }
}
@media (max-width:768px) {
  .aboutus-brand-conce .main-box {
    position: relative;
  }
  .aboutus-brand-conce .main-box .innerbox {
    margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  }
  .aboutus-brand-conce .main-box .innerbox .brand-content {
    display: inline-block;
    width: 100%;
  }
  .aboutus-brand-conce .main-box .innerbox .brand-content .detail {
    padding-left: 0px;
    width: 100%;
    margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  }
  .aboutus-brand-conce .main-box .innerbox .brand-content .detail .item:nth-child(2) {
    margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
  .aboutus-brand-conce .main-box .innerbox .brand-content .picture {
    width: 60%;
    margin: auto;
  }
}
@media (max-width:480px) {
  .aboutus-brand-conce .main-box .innerbox .brand-content .picture {
    width: 100%;
  }
}
.aboutus-company-culture {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  position: relative;
}
.aboutus-company-culture .main-box {
  position: absolute;
  width: 100%;
  top: 40%;
  left: 0;
}
.aboutus-company-culture .main-box .imagelist {
  margin-top: clamp(calc(37 / 2 * 1px), calc(37 / 1920 * 100 * 1vw), 37px);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.aboutus-company-culture .main-box .imagelist .item {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.aboutus-company-culture .main-box .imagelist .item .imagebg {
  position: absolute;
  width: 100%;
  height: 100%;
}
.aboutus-company-culture .main-box .imagelist .item .imagebg .pb {
  padding-bottom: 96.9%;
}
.aboutus-company-culture .main-box .imagelist .item .imagebg .pb .ab {
  background-color: #fff;
  border-radius: var(--border-radius16);
}
.aboutus-company-culture .main-box .imagelist .item .imagebg .pb .ab::before {
  content: "";
  display: block;
  width: 600px;
  height: 600px;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid transparent;
  background-image: linear-gradient(135deg, #8ECAFF 0%, rgba(255, 255, 255, 0) 30%, #0090FF 100%);
  transform: translate(-50%, -50%) rotate(0);
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.aboutus-company-culture .main-box .imagelist .item .imagebg .pb .ab img {
  object-fit: cover;
  height: 100%;
}
@keyframes bo_line {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.aboutus-company-culture .main-box .imagelist .item .imagecontent {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-right: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-top: clamp(calc(57 / 2 * 1px), calc(57 / 1920 * 100 * 1vw), 57px);
  padding-bottom: clamp(calc(57 / 2 * 1px), calc(57 / 1920 * 100 * 1vw), 57px);
}
.aboutus-company-culture .main-box .imagelist .item:nth-child(2) {
  transition-delay: 0.1s;
}
.aboutus-company-culture .main-box .imagelist .item:nth-child(3) {
  transition-delay: 0.2s;
}
.aboutus-company-culture .main-box .imagelist .item:nth-child(4) {
  transition-delay: 0.3s;
}
.aboutus-company-culture .main-box ul {
  display: flex;
}
.aboutus-company-culture .main-box ul li {
  width: 350px;
  text-align: center;
  overflow: hidden;
  padding: 2px;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 85, 171, 0.1);
}
.aboutus-company-culture .main-box ul li::before {
  content: "";
  display: block;
  width: 600px;
  height: 600px;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid transparent;
  background-image: linear-gradient(135deg, #0b91914f 0%, rgba(255, 255, 255, 0) 30%, #0b9191d6 100%);
  transform: translate(-50%, -50%) rotate(0);
  background-origin: border-box;
  background-clip: content-box, border-box;
  animation: bo_line 5s infinite linear;
}
.aboutus-company-culture .main-box ul li .wrap {
  position: relative;
  background: #fff;
  z-index: 2;
  min-height: 360px;
  padding-top: 75px;
  border-radius: 16px;
  text-align: left;
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-right: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-top: clamp(calc(57 / 2 * 1px), calc(57 / 1920 * 100 * 1vw), 57px);
  padding-bottom: clamp(calc(57 / 2 * 1px), calc(57 / 1920 * 100 * 1vw), 57px);
}
.aboutus-company-culture .main-box ul li .wrap .title {
  margin-top: clamp(calc(48 / 2 * 1px), calc(48 / 1920 * 100 * 1vw), 48px);
  line-height: 1.1;
  font-weight: 700;
  font-size: var(--font24);
  color: var(--light-green);
}
.aboutus-company-culture .main-box ul li .wrap .info {
  margin-top: clamp(calc(18 / 2 * 1px), calc(18 / 1920 * 100 * 1vw), 18px);
  font-size: var(--font16);
}
@media (max-width:1560px) {
  .aboutus-company-culture .main-box .imagelist .item .imagecontent {
    padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
    padding-right: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
    padding-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
    padding-bottom: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
  .aboutus-company-culture .main-box .imagelist .item .imagecontent .image {
    width: var(--num_55);
    height: var(--num_55);
  }
  .aboutus-company-culture .main-box ul li .wrap {
    min-height: 330px;
  }
}
@media (max-width:1400px) {
  .aboutus-company-culture .main-box ul li .wrap {
    min-height: 280px;
  }
}
@media (max-width:1280px) {
  .aboutus-company-culture .company-image {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .aboutus-company-culture .company-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .aboutus-company-culture .main-box {
    display: inline-block;
    position: relative;
  }
  .aboutus-company-culture .main-box .grid_main {
    padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
    padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  }
}
@media (max-width:768px) {
  .aboutus-company-culture .main-box .innerbox .brand-content .detail .item:nth-child(2) {
    margin-top: clamp(calc(80 / 2 * 1px), calc(80 / 1920 * 100 * 1vw), 80px);
  }
  .aboutus-company-culture .main-box ul li .wrap {
    min-height: inherit;
  }
  .aboutus-company-culture .main-box .imagelist .item {
    margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
}
@media (max-width:640px) {
  .aboutus-company-culture .main-box {
    top: 20%;
    position: relative;
  }
  .aboutus-company-culture .main-box .imagelist {
    display: inline-block;
    width: 100%;
  }
  .aboutus-company-culture .main-box .imagelist .item {
    border-radius: 16px;
  }
  .aboutus-company-culture .main-box .imagelist .item .imagecontent {
    margin-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
    position: relative;
    background-color: var(--bg-light-green);
    border-radius: 16px;
  }
  .aboutus-company-culture .main-box .imagelist .item .imagebg .pb .ab img {
    display: none;
  }
  .aboutus-company-culture .main-box .grid_main {
    padding-top: clamp(calc(80 / 2 * 1px), calc(80 / 1920 * 100 * 1vw), 80px);
    padding-bottom: clamp(calc(80 / 2 * 1px), calc(80 / 1920 * 100 * 1vw), 80px);
  }
}

@media (max-width:480px) {
    .aboutus-company-culture .main-box ul li .wrap img{
        width: 45px;
        height: 45px;
    }
}
@media (max-width:360px) {
    .aboutus-company-culture .main-box ul li .wrap img{
        width: 35px;
        height: 35px;
    }
}
.aboutus-friend-clients {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  position: relative;
}
.aboutus-friend-clients .main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.aboutus-friend-clients .main-box .CEO {
  position: relative;
  padding-left: clamp(calc(22 / 2 * 1px), calc(22 / 1920 * 100 * 1vw), 22px);
  margin-top: clamp(calc(105 / 2 * 1px), calc(105 / 1920 * 100 * 1vw), 105px);
  font-weight: 500;
  font-size: var(--font24);
}
.aboutus-friend-clients .main-box .CEO::before {
  position: absolute;
  content: "";
  left: 0px;
  width: 4px;
  height: 100%;
  background: #0B9191;
  color: var(--light-green);
}
.aboutus-friend-clients .main-box .CEO p {
  color: var(--light-green);
  line-height: 1.3;
}
.aboutus-friend-clients .main-box .CEO-mb {
  display: none;
}
.aboutus-friend-clients .main-box .content {
  width: 58%;
  background: url("../images/douhao.png") no-repeat top right;
}
.aboutus-friend-clients .main-box .content .info {
  margin-top: clamp(calc(44 / 2 * 1px), calc(44 / 1920 * 100 * 1vw), 44px);
}
.aboutus-friend-clients .main-box .content .info .item {
  margin-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
}
.aboutus-friend-clients .main-box .people {
  width: 42%;
  padding-left: clamp(calc(124 / 2 * 1px), calc(124 / 1920 * 100 * 1vw), 124px);
}
.aboutus-friend-clients .main-box .people .image {
  overflow: hidden;
  border-radius: var(--border-radius16);
}
.aboutus-friend-clients .main-box .people .image img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.aboutus-friend-clients .main-box .people .image:hover img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width:768px) {
  .aboutus-friend-clients .main-box {
    display: inline-block;
    width: 100%;
  }
  .aboutus-friend-clients .main-box .content {
    width: 100%;
  }
  .aboutus-friend-clients .main-box .people {
    padding-left: 0px;
    margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  }
}
@media (max-width:640px) {
  .aboutus-friend-clients .main-box .content .info .item {
    font-size: var(--font14);
  }
  .aboutus-friend-clients .main-box .people {
    width: 100%;
  }
  .aboutus-friend-clients .main-box .CEO {
    display: none;
  }
  .aboutus-friend-clients .main-box .CEO-mb {
    display: inline-block;
  }
}
.aboutus-development-history {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  background: url("../images/aboutus-development-history.png") no-repeat;
}
.aboutus-development-history .main-box .content .card-list {
  position: relative;
  margin-top: clamp(calc(102 / 2 * 1px), calc(102 / 1920 * 100 * 1vw), 102px);
}
.aboutus-development-history .main-box .content .card-list ul li .item {
  position: relative;
  cursor: pointer;
}
.aboutus-development-history .main-box .content .card-list ul li .item .card-day {
  font-size: var(--font36);
  font-weight: 700;
  text-align: center;
  transition: 0.5s ease;
}
.aboutus-development-history .main-box .content .card-list ul li .item .circle {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  transition: 1s ease;
}
.aboutus-development-history .main-box .content .card-list ul li .item .circle .normal {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.aboutus-development-history .main-box .content .card-list ul li .item .circle .active {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: none;
}
.aboutus-development-history .main-box .content .card-list ul li .item .card-content {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  margin-top: -23px;
  padding-bottom: clamp(calc(65 / 2 * 1px), calc(65 / 1920 * 100 * 1vw), 65px);
  transition: 1s ease;
}
.aboutus-development-history .main-box .content .card-list ul li .item .card-content .content{
        padding-top: 30px;
}


.aboutus-development-history .main-box .content .card-list ul li .item .card-content .circle {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  position: absolute;
  top: 160px;
}
.aboutus-development-history .main-box .content .card-list ul li .item .card-content .content .title {
  padding-left: clamp(calc(42 / 2 * 1px), calc(42 / 1920 * 100 * 1vw), 42px);
  padding-right: clamp(calc(42 / 2 * 1px), calc(42 / 1920 * 100 * 1vw), 42px);
  /*padding-top: clamp(calc(97 / 2 * 1px), calc(97 / 1920 * 100 * 1vw), 97px);*/
  /*padding-bottom: clamp(calc(97 / 2 * 1px), calc(97 / 1920 * 100 * 1vw), 97px);*/
      min-height: 200px;
    overflow: scroll;
    margin-top: 50px;
    text-align: center;
}
.aboutus-development-history .main-box .content .card-list ul li .item .card-content .content .image {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  text-align: center;
  opacity: 0;
      width: 100%;
    height: 170px;
}


.aboutus-development-history .main-box .content .card-list ul li .item .card-content .content .image img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.aboutus-development-history .main-box .content .card-list ul li:hover .item .card-day {
  color: var(--light-green);
  transition: 0.5s ease;
}
.aboutus-development-history .main-box .content .card-list ul li:hover .item .circle {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  transition: 1s ease;
}
.aboutus-development-history .main-box .content .card-list ul li:hover .item .circle .normal {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: none;
}
.aboutus-development-history .main-box .content .card-list ul li:hover .item .circle .active {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: inline-block;
}
.aboutus-development-history .main-box .content .card-list ul li:hover .item .card-content {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: rgba(78, 176, 176, 0.1);
  transition: 1s ease;
}
.aboutus-development-history .main-box .content .card-list ul li:hover .item .card-content .image {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 1;

}

.aboutus-development-history .main-box .content .card-list ul li:nth-child(1) .item .circle {
  position: relative;
}
.aboutus-development-history .main-box .content .card-list ul li:nth-child(1) .item .circle::before {
  content: '';
  width: 390px;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  background: url("../images/development-white.png");
  background-size: contain;
}
.aboutus-development-history .main-box .content .card-list ul li:last-child .item .circle {
  position: relative;
}
.aboutus-development-history .main-box .content .card-list ul li:last-child .item .circle::before {
  content: '';
  width: 390px;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  background: url("../images/development-white.png");
  background-size: contain;
}
@media (max-width:1200px) {
  .aboutus-development-history .main-box .content .card-list ul li .item .card-content .content {
    overflow: hidden;
  }
  .aboutus-development-history .main-box .content .card-list ul li .item .card-content .content .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }
}
@media (max-width:640px) {
  .aboutus-development-history .pagination .buttonbox {
    display: none;
  }
}
@media (max-width:480px) {
     .aboutus-development-history .main-box .content .card-list ul li .item .card-content{
        background-color: rgba(78, 176, 176, 0.1);
    }
 .aboutus-development-history .main-box .content .card-list ul li .item .card-content .content .image{
     opacity: 1;
 }
}



.aboutus-innovation-process {
  position: relative;
}
.aboutus-innovation-process .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.aboutus-innovation-process .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutus-innovation-process .main-box {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.aboutus-innovation-process .main-box .grid_box,
.aboutus-innovation-process .main-box .grid_main {
  height: 100%;
}
.aboutus-innovation-process .main-box .content {
  padding-top: clamp(calc(130 / 2 * 1px), calc(130 / 1920 * 100 * 1vw), 130px);
  position: relative;
  height: 100%;
  width: 100%;
}
.aboutus-innovation-process .main-box .content .tech-public-title,
.aboutus-innovation-process .main-box .content .tech-public-title span {
  color: var(--white-color);
}
.aboutus-innovation-process .main-box .content .fir-title {
  margin-top: clamp(calc(65 / 2 * 1px), calc(65 / 1920 * 100 * 1vw), 65px);
  font-weight: 700;
  font-size: var(--font30);
  color: var(--white-color);
}
.aboutus-innovation-process .main-box .content .sec-title {
  white-space: pre-line;
  font-size: var(--font18);
  color: var(--white-color);
}
.aboutus-innovation-process .main-box .content .card-content {
  margin-top: clamp(calc(154 / 2 * 1px), calc(154 / 1920 * 100 * 1vw), 154px);
  padding-top: clamp(calc(154 / 2 * 1px), calc(154 / 1920 * 100 * 1vw), 154px);
  position: relative;
  width: 100%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--num_30);
}
.aboutus-innovation-process .main-box .content .card-content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  cursor: pointer;
}
.aboutus-innovation-process .main-box .content .card-content .item .item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-right: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  padding-bottom: clamp(calc(27 / 2 * 1px), calc(27 / 1920 * 100 * 1vw), 27px);
  border-radius: 16px 16px 0px 0px;
  background-color: rgba(11, 145, 145, 0.8);
}
.aboutus-innovation-process .main-box .content .card-content .item .info {
  width: 80%;
}
.aboutus-innovation-process .main-box .content .card-content .item .info p {
  font-weight: 700;
  color: var(--white-color);
  font-size: var(--font26);
  white-space: nowrap;
}
.aboutus-innovation-process .main-box .content .card-content .item .info .detail {
  align-items: end;
  margin-top: clamp(calc(12 / 2 * 1px), calc(12 / 1920 * 100 * 1vw), 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.aboutus-innovation-process .main-box .content .card-content .item .info .detail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 9px;
  padding-top: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
  padding-bottom: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
  transition: 0.3s;
}
.aboutus-innovation-process .main-box .content .card-content .item .info .detail a .title {
  font-size: var(--font14);
  font-weight: 700;
  border-bottom: solid 2px var(--white-color);
  color: var(--white-color);
}
.aboutus-innovation-process .main-box .content .card-content .item .info .detail a .icon {
  filter: brightness(0) invert(1);
  width: 14px;
  height: 15px;
}
.aboutus-innovation-process .main-box .content .card-content .item .picture {
  text-align: right;
  --wh: clamp(2.188rem, calc(-1.351rem + 4.42vw), 3.625rem);
}
.aboutus-innovation-process .main-box .content .card-content .item .picture img {
  width: var(--wh);
  height: var(--wh);
}
.aboutus-innovation-process .main-box .content .card-content .item:hover .item-box {
  background-color: var(--light-green);
}
.aboutus-innovation-process .main-box .content .card-content .item:hover .info .detail a {
  transition: all 0.3s;
  margin-top: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
  margin-bottom: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
  background-color: var(--white-color);
  border-radius: 25px;
  padding-left: clamp(calc(24 / 2 * 1px), calc(24 / 1920 * 100 * 1vw), 24px);
  padding-right: clamp(calc(24 / 2 * 1px), calc(24 / 1920 * 100 * 1vw), 24px);
}
.aboutus-innovation-process .main-box .content .card-content .item:hover .info .detail .title {
  border-bottom: 0px;
  color: var(--light-green);
}
.aboutus-innovation-process .main-box .content .card-content .item:hover .info .detail .icon {
  filter: inherit;
}
.aboutus-innovation-process .main-box .content .card-content .item:hover .picture {
  opacity: 0;
  transition: all 0.3s;
}
.aboutus-innovation-process .main-box .content .card-content .item:nth-child(2) {
  transition-delay: 0.1s;
}
.aboutus-innovation-process .main-box .content .card-content .item:nth-child(3) {
  transition-delay: 0.2s;
}
@media (max-width:1200px) {
  .aboutus-innovation-process .main-box .content {
    padding-top: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
  }
  .aboutus-innovation-process .main-box .content .fir-title {
    margin-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  }
}
@media (max-width:990px) {
  .aboutus-innovation-process .main-box .content .fir-title {
    margin-top: clamp(calc(5 / 2 * 1px), calc(5 / 1920 * 100 * 1vw), 5px);
  }
  .aboutus-innovation-process .main-box .content .sec-title {
    white-space: normal;
  }
  .aboutus-innovation-process .main-box .content .card-content .item .info p {
    line-height: 1.1;
  }
  .aboutus-innovation-process .main-box .content .card-content .item .item-box {
    display: inline-block;
    width: 100%;
  }
  .aboutus-innovation-process .main-box .content .card-content .item .picture {
    text-align: left;
  }
}
@media (max-width:768px) {
  .aboutus-innovation-process .main-box .content .card-content .item .picture {
    display: none;
  }
  .aboutus-innovation-process .main-box .content .card-content .item .info p {
    white-space: inherit;
  }
}
@media (max-width:640px) {
  .aboutus-innovation-process .main-box .content .card-content {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
    padding-top: 50px;
  }
  .aboutus-innovation-process .main-box .content .card-content .item .item-box {
    position: relative;
    border-radius: 16px;
  }
  .aboutus-innovation-process .main-box .content .card-content .item .item-box:hover .item-box {
    background-color: var(--light-green);
  }
  .aboutus-innovation-process .main-box .content .card-content .item .item-box:hover .info .detail a {
    transition: all 0.3s;
    margin-top: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
    margin-bottom: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
    background-color: var(--white-color);
    border-radius: 25px;
    padding-left: clamp(calc(24 / 2 * 1px), calc(24 / 1920 * 100 * 1vw), 24px);
    padding-right: clamp(calc(24 / 2 * 1px), calc(24 / 1920 * 100 * 1vw), 24px);
  }
  .aboutus-innovation-process .main-box .content .card-content .item .item-box:hover .info .detail .title {
    border-bottom: 0px;
    color: var(--light-green);
  }
  .aboutus-innovation-process .main-box .content .card-content .item .item-box:hover .info .detail .icon {
    filter: inherit;
  }
  .aboutus-innovation-process .main-box .content .card-content .item .item-box:hover .picture {
    opacity: 0;
    transition: all 0.3s;
  }
  .aboutus-innovation-process .main-box .content .card-content .item .item-box:last-child {
    border-radius: 16px 16px 0px 0px;
  }
}
@media (max-width:360px) {
  .aboutus-innovation-process .main-box .content {
    padding-top: 30px;
    align-content: center;
  }
  .aboutus-innovation-process .main-box .content .sec-title {
    line-height: 1.2;
  }
  .aboutus-innovation-process .main-box .content .card-content{
      padding-top: 30px;
  }
}
.corporate-honor {
  padding-top: clamp(calc(134 / 2 * 1px), calc(134 / 1920 * 100 * 1vw), 134px);
  padding-bottom: clamp(calc(134 / 2 * 1px), calc(134 / 1920 * 100 * 1vw), 134px);
  width: 100%;
}
.corporate-honor .corporate-card .item {
  text-align: center;
}
.corporate-honor .corporate-card .item .book {
  border-radius: 16px;
  background-color: #F2F5F5;
  padding: 25px;
  overflow: hidden;
  cursor: pointer;
  height: 400px;
}
.corporate-honor .corporate-card .item .book img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.corporate-honor .corporate-card .item .title {
  margin-top: clamp(calc(23 / 2 * 1px), calc(23 / 1920 * 100 * 1vw), 23px);
  white-space: pre-line;
  font-size: var(--font18);
  font-weight: 500;
  line-height: 1.4;
}
.corporate-honor .corporate-card .item:hover .book img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.corporate-honor .corporate-card .swiper-pagination {
  margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  display: none;
  position: relative;
}
@media (max-width:640px) {
  .corporate-honor .corporate-card .swiper-pagination {
    display: inline-block;
    position: relative;
    margin-top: 30px;
  }
  .corporate-honor .pubilc_title_pagination_box .pagination {
    display: none;
  }
}
@media (max-width:480px) {
  .corporate-honor .pubilc_title_pagination_box .pagination {
    display: none;
  }
}
/* 首页视频--弹窗 */
.bullet_box {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.bullet_box .bullet_main {
  width: 96%;
  max-width: 1200px;
  height: auto;
  position: relative;
  z-index: 1;
  -webkit-transform: translateY(-10vh);
  transform: translateY(-10vh);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.bullet_box .bullet_main .close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  background-color: var(--light-green);
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 0;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.bullet_box .bullet_main .close i {
  font-size: 14px;
  color: #FFF;
}
.bullet_box .bullet_main .close:hover {
  -webkit-transform: translate(50%, -50%) rotate(90deg);
  transform: translate(50%, -50%) rotate(90deg);
}
.bullet_box .bullet_main .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #282828;
  overflow: hidden;
}
.bullet_box .bullet_main .content .pb {
  padding-bottom: 56.25%;
}
.bullet_box .bullet_main .content img,
.bullet_box .bullet_main .content video,
.bullet_box .bullet_main .content iframe {
  width: 100%;
  height: 100%;
}
.bullet_box .bullet_main .content iframe {
  object-fit: fill;
}
@media (max-width:990px) {
  .bullet_box .bullet_main .close {
    -webkit-transform: none;
    transform: none;
    top: -50px;
  }
}
.bullet_box.active {
  pointer-events: initial;
  opacity: 1;
  visibility: visible;
}
.bullet_box.active .bullet_main {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
/* ------------------------- */
/* 侧边栏--通讯方式 */
.navbar-communication .kefu-box {
  position: fixed;
  top: 50%;
  right: 60px;
  z-index: 10;
}
.navbar-communication .kefu-box .item {
  margin-top: clamp(calc(6 / 2 * 1px), calc(6 / 1920 * 100 * 1vw), 6px);
  margin-bottom: clamp(calc(6 / 2 * 1px), calc(6 / 1920 * 100 * 1vw), 6px);
  border-radius: 5px;
  background-color: var(--bg-light-green);
  position: relative;
  cursor: pointer;
}
.navbar-communication .kefu-box .item .item-box {
  overflow: hidden;
  width: var(--num_60);
  height: var(--num_60);
  border: solid 1px #e9ebeb;
  border-radius: 5px;
}
.navbar-communication .kefu-box .item .info {
  margin-right: 60px;
  width: auto;
  height: 100%;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.navbar-communication .kefu-box .item .info a {
  min-width: 100px;
  height: 100px;
  display: inline-block;
  margin-top: -20px;
  align-content: center;
}
.navbar-communication .kefu-box .item .info a span {
  padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding-right: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  height: 60px;
  line-height: 60px;
  background: var(--light-green);
  display: inline-block;
  border-radius: 5px;
  color: var(--white-color);
}
.navbar-communication .kefu-box .item .info img {
  width: var(--num_100);
  height: var(--num_100);
  border: solid 2px var(--light-green);
  border-radius: 5px;
}
.navbar-communication .kefu-box .item .public-scrollTop {
  position: sticky;
}
.navbar-communication .kefu-box .item:hover .item-box .img {
  opacity: 0;
}
.navbar-communication .kefu-box .item:hover .info {
  opacity: 1;
  visibility: visible;
}
@media (max-width:1200px) {
  .navbar-communication {
    display: none;
  }
}
/* ------------------------- */
/* 公用--回到顶部 */
.public-scrollTop-box .public-scrollTop {
  position: fixed;
  bottom: 20%;
  right: 60px;
  z-index: 10;
}
.public-scrollTop-box .public-scrollTop .public-box {
  width: var(--num_60);
  height: var(--num_60);
  border-radius: 5px;
  z-index: 20;
  background-color: var(--white-color);
}
.public-scrollTop-box .public-scrollTop .public-box .public-active {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  display: flex;
 align-items: center;
  justify-content:center;
  background-color: #0B9191;
}
.public-scrollTop-box .public-scrollTop .public-box .public-active img {
  transform: rotate(90deg);
}
.public-scrollTop-box:hover .public-scrollTop .public-box .public-active {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: var(--dark-green);
}
/* ------------------------- */
/* 1-3--新闻 */
@keyframes h_schedule {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    width: -moz-calc(97%);
    width: -webkit-calc(97%);
    width: calc(100% - 3px);
  }
}
@-webkit-keyframes h_schedule {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    width: -moz-calc(97%);
    width: -webkit-calc(97%);
    width: calc(100% - 3px);
  }
}
@-webkit-keyframes icon-video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.4, 1.4);
    transform: scale(1.4, 1.4);
    opacity: 0;
  }
}
@keyframes icon-video {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.4, 1.4);
    transform: scale(1.4, 1.4);
    opacity: 0;
  }
}
@keyframes moveDown {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(15%);
  }
}
.newsbanner .pro-ban .bannerbox .pc-banner {
  min-height: 400px;
  width: 100%;
  object-fit: cover;
}
.newsbanner .swiper-pagination-clickable .swiper-pagination-bullet {
  color: var(--white-color);
}
.newsbanner .swiper-pagination-bullet {
  width: 80px;
  height: 5px;
  border: 1px solid #FFFFFF;
  border-radius: 0px;
  background-color: inherit;
}
.newsbanner .swiper-pagination-bullet-active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: h_schedule 4s 1 linear forwards;
}
.newsbanner .pagination {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.newsbanner .pagination .main-box {
  width: 100%;
  height: 100%;
  position: relative;
  bottom: 0;
  text-align: left;
}
.newsbanner .pagination .main-box .swiper-pagination {
  position: absolute;
  bottom: 30px;
}
.newsbanner .pagination .main-box .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  opacity: 1;
  text-align: right;
  margin-right: 10px;
}
.newsbanner .pagination .main-box .swiper-pagination .swiper-pagination-bullet span {
  position: absolute;
  top: -26px;
  right: -2px;
  color: var(--white-color);
}
@media (max-width:768px) {
  .newsbanner .bannerbox .pc-banner {
    display: inline-block !important;
  }
}
.button-group-public {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #EDF2F2;
  height: var(--num_70);
  border-radius: 35px;
}
.button-group-public .item {
  cursor: pointer;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.button-group-public .item .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 35px;
  background-color: #EDF2F2;
  align-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: var(--light-green);
}
.button-group-public .item .active {
  border-radius: 35px;
  background-color: var(--light-green);
  color: var(--white-color);
}
@media (max-width:640px) {
  .button-group-public {
    display: inline;
    width: 100%;
    background-color: inherit;
  }
  .news-newsroom .button-group-public .item .name{
      line-height: 1;
      padding: 9.5px;
  }
  .button-group-public .item {
    margin-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  }
}
.news-newsroom {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
.news-newsroom .main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
}
.news-newsroom .main-box .image {
  width: 50%;
  overflow: hidden;
  border-radius: 16px;
}
.news-newsroom .main-box .image img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-newsroom .main-box .image:hover img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news-newsroom .main-box .content {
  width: 50%;
  padding-left: clamp(calc(80 / 2 * 1px), calc(80 / 1920 * 100 * 1vw), 80px);
  padding-right: clamp(calc(80 / 2 * 1px), calc(80 / 1920 * 100 * 1vw), 80px);
}
.news-newsroom .main-box .content .month {
  font-size: 12px;
  font-weight: 700;
  width: 114px;
  height: 34px;
  line-height: 34px;
  border-radius: 17px;
  text-align: center;
  border: solid 1px rgba(0, 66, 66, 0.2);
}
.news-newsroom .main-box .content .title {
  margin-top: clamp(calc(25 / 2 * 1px), calc(25 / 1920 * 100 * 1vw), 25px);
  line-height: 1.2;
  font-size: var(--font36);
  font-weight: 700;
}
.news-newsroom .main-box .content .info {
  margin-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  font-size: var(--font18);
}
.news-newsroom .main-box .content .detail {
  margin-top: clamp(calc(80 / 2 * 1px), calc(80 / 1920 * 100 * 1vw), 80px);
  font-size: var(--font16);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 9px;
  color: var(--light-green);
}
.news-newsroom .main-box .content .detail .name {
  border-bottom: solid 1px var(--light-green);
  color: var(--light-green);
}
.news-newsroom .main-box .content .detail .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-newsroom .main-box .content .detail:hover .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: 5px;
}
@media (max-width:990px) {
  .news-newsroom .main-box {
    display: inline-block;
  }
  .news-newsroom .main-box .image {
    width: 100%;
  }
  .news-newsroom .main-box .content {
    width: 100%;
    padding: 0px;
    margin-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  }
  .news-newsroom .button-group-public .item {
    overflow: hidden;
  }
  .news-newsroom .button-group-public .item .name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
    padding-right: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  }
}
.news-actions {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
.news-actions .button-group {
  margin: auto;
  margin-top: clamp(calc(34 / 2 * 1px), calc(34 / 1920 * 100 * 1vw), 34px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--button--bg);
  height: var(--num_70);
  border-radius: 35px;
}
.news-actions .button-group .item {
  cursor: pointer;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.news-actions .button-group .item .name {
  align-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: var(--light-green);
}
.news-actions .button-group .item .active {
  border-radius: 35px;
  background-color: var(--light-green);
  color: var(--white-color);
}
.news-actions .filter-content {
  width: auto;
  height: 100%;
}
.news-actions .filter-content .result-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  height: 60px;
  line-height: 60px;
  font-weight: 700;
  border-top: solid 1px rgba(0, 66, 66, 0.1);
  border-bottom: solid 1px rgba(0, 66, 66, 0.1);
}
.news-actions .filter-content .result-title .filterinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  gap: var(--num_80);
}
.news-actions .filter-content .result-title .filterinfo .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  text-align: center;
  width: 156px;
  border-bottom: solid 1px var(--dark-green);
}
.news-actions .filter-content .result-title .filterinfo .time img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  transform: rotate(180deg);
}
.news-actions .filter-content .result-title .filterinfo .time .timedown {
  position: absolute;
  width: 100%;
  top: 62px;
  z-index: 2;
  display: none;
}
.news-actions .filter-content .result-title .filterinfo .time .timedown ul {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  margin-top: 10px;
  background-color: var(--white-color);
  border-radius: 10px;
  padding-top: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
  padding-bottom: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
  border: 1px solid #CCD9D9;
}
.news-actions .filter-content .result-title .filterinfo .time .timedown ul li {
  line-height: 30px;
  font-weight: 500;
}
.news-actions .filter-content .result-title .filterinfo .time .timedown ul li span {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
}
.news-actions .filter-content .result-title .filterinfo .time .timedown ul li .active {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-bottom: solid 2px var(--dark-green);
}
.news-actions .filter-content .result-title .filterinfo .time .timedown ul li:hover span {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-bottom: solid 2px var(--dark-green);
}
.news-actions .filter-content .result-title .filterinfo .time:hover .timedown {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: inline-block;
}
.news-actions .filter-content .result-title .filterinfo .search {
  position: relative;
  height: 59px;
  border-bottom: solid 1px var(--dark-green);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: var(--num_300);
}
.news-actions .filter-content .result-title .filterinfo .search .searchicon {
  position: absolute;
  right: 0px;
}
.news-actions .filter-content .result-title .filterinfo .search .inputbox {
  height: 100%;
}
.news-actions .filter-content .result-title .filterinfo .search .inputbox input {
  border: none;
  width: var(--num_300);
  min-width: 160px;
  height: 100%;
  background-color: inherit;
}
.news-actions .filter-content .result-title .filterinfo .search .inputbox input::placeholder {
  color: var(--dark-green);
  opacity: 0.4;
}
.news-actions .filter-content .result-title:hover .time img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  transform: rotate(0deg);
  transition-duration: 0.5s;
}
.news-actions .filter-content .cardlist {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  margin-top: clamp(calc(41 / 2 * 1px), calc(41 / 1920 * 100 * 1vw), 41px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.news-actions .filter-content .cardlist .cardgroup {
  width: 100%;
  height: auto;
}
.news-actions .filter-content .cardlist .cardgroup .item {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  margin-bottom: clamp(calc(38 / 2 * 1px), calc(38 / 1920 * 100 * 1vw), 38px);
  padding-bottom: clamp(calc(25 / 2 * 1px), calc(25 / 1920 * 100 * 1vw), 25px);
  cursor: pointer;
  border-bottom: solid 2px rgba(0, 66, 66, 0.2);
}
.news-actions .filter-content .cardlist .cardgroup .item .image {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-radius: 16px;
  overflow: hidden;
}
.news-actions .filter-content .cardlist .cardgroup .item .image img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: 100%;
}
.news-actions .filter-content .cardlist .cardgroup .item .content .title {
  margin-top: clamp(calc(26 / 2 * 1px), calc(26 / 1920 * 100 * 1vw), 26px);
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 12px;
  color: #B6BDBD;
}
.news-actions .filter-content .cardlist .cardgroup .item .content .sec-title {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 700;
  line-height: 1.3;
  margin-top: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  color: var(--dark-green) margin-top: clamp(calc(16 / 2 * 1px), calc(16 / 1920 * 100 * 1vw), 16px);;
  font-size: var(--font18);
}
.news-actions .filter-content .cardlist .cardgroup .item .content .third-title {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: clamp(calc(12 / 2 * 1px), calc(12 / 1920 * 100 * 1vw), 12px);
  font-size: var(--font14);
  opacity: 0.6;
}
.news-actions .filter-content .cardlist .cardgroup .item:hover {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-bottom: solid 2px var(--light-green);
}
.news-actions .filter-content .cardlist .cardgroup .item:hover .image {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.news-actions .filter-content .cardlist .cardgroup .item:hover .image img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.news-actions .filter-content .cardlist .cardgroup .item:hover .sec-title {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  color: var(--light-green);
}
.news-actions .filter-content .cardlist .swiper-pagination {
  display: none;
  position: relative;
}
.news-actions .filter-content .pagination {
  margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
}
.news-actions .public-scrollTop-box .public-scrollTop {
  bottom: 0;
  right: -7%;
}
@media (max-width:1560px) {
  .news-actions .filter-content .result-title .filterinfo {
    gap: var(--num_50);
  }
  .news-actions .filter-content .result-title .filterinfo .search {
    min-width: 200px;
  }
}
@media (max-width:1400px) {
  .news-actions .public-scrollTop-box .public-scrollTop {
    right: 0;
  }
}
@media (max-width:990px) {
  .news-actions .public-manufacturer-text {
    display: inline-block;
  }
  .news-actions .filter-content .cardlist {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width:640px) {
  .news-actions .filter-content .result-title .filterinfo .time {
    display: none;
  }
  .news-actions .filter-content .cardlist .swiper-pagination {
    display: inline-block;
  }
  .news-actions .filter-content .pagination {
    display: none;
  }
  .news-actions .filter-content .cardlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .news-actions .filter-content .result-title .filterinfo .search {
    display: none;
  }
   .news-actions .filter-content .cardlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ------------------------- */
/* 1-3-1--新闻详情 */
.newsroom {
  margin-top: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
}
.newsroom .main-box .nav .title {
  font-weight: 700;
  font-size: var(--font36);
  line-height: 1;
}
.newsroom .main-box .nav .navinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: clamp(calc(19 / 2 * 1px), calc(19 / 1920 * 100 * 1vw), 19px);
  padding-bottom: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
  border-bottom: solid 2px var(--dark-green);
}
.newsroom .main-box .nav .navinfo .nav-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.newsroom .main-box .nav .navinfo .nav-left span {
  font-size: 12px;
  font-weight: 700;
  padding: 0px 12px;
  height: 34px;
  line-height: 34px;
  border-radius: 17px;
  text-align: center;
}
.newsroom .main-box .nav .navinfo .nav-left .news {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  background-color: #F0F1F1;
}
.newsroom .main-box .nav .navinfo .nav-left .news:hover {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: var(--light-green);
  color: var(--white-color);
}
.newsroom .main-box .nav .navinfo .nav-left .month {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  border: solid 1px rgba(0, 66, 66, 0.2);
}
.newsroom .main-box .nav .navinfo .nav-left .month:hover {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border: solid 1px var(--light-green);
  color: var(--light-green);
}
.newsroom .main-box .nav .navinfo .nav-left .eye {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-left: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  align-content: center;
  gap: 5px;
}
.newsroom .main-box .nav .navinfo .nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.newsroom .main-box .nav .navinfo .nav-right .icon {
    position: relative;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  align-content: center;
  background-color: #F0F1F1;
  text-align: center;
}
.newsroom .main-box .nav .navinfo .nav-right .icon .s-icon {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0.4;
}
.newsroom .main-box .nav .navinfo .nav-right .icon:hover .s-icon {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 1;
}
.newsroom .main-box .nav .navinfo .nav-right .icon:hover {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: var(--light-green);
}
.newsroom .main-box .nav .navinfo .nav-right .icon:hover .s-icon {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  filter: brightness(0) invert(1);
}
.newsroom .main-box .nav .navinfo .nav-right .icon .wechat-qrcode{
    position: absolute;
    width: 60px;
    height: 60px;
    top: -65px;
    display: none;
    left: -4px;
}
.newsroom .main-box .nav .navinfo .nav-right .icon:hover .wechat-qrcode{
    display: inline-block;
}

.newsroom .main-box .content {
  margin-top: clamp(calc(42 / 2 * 1px), calc(42 / 1920 * 100 * 1vw), 42px);
}
.newsroom .main-box .content .image {
  margin-top: clamp(calc(62 / 2 * 1px), calc(62 / 1920 * 100 * 1vw), 62px);
  margin-bottom: clamp(calc(79 / 2 * 1px), calc(79 / 1920 * 100 * 1vw), 79px);
  text-align: center;
}
.newsroom .main-box .content .info {
  font-size: var(--font14);
}
.newsroom .main-box .scrollpage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: clamp(calc(70 / 2 * 1px), calc(70 / 1920 * 100 * 1vw), 70px);
  gap: 10px;
}
.newsroom .main-box .scrollpage a {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
  background-color: #F0F1F1;
  height: 50px;
  text-align: center;
  align-content: center;
}
.newsroom .main-box .scrollpage a:hover {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: var(--light-green);
  color: var(--white-color);
}
.newsroom .main-box .scrollpage a:hover img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  filter: brightness(0) invert(1);
}
.newsroom .main-box .scrollpage .pre,
.newsroom .main-box .scrollpage .next {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-radius: 25px;
  flex: 1;
  color: var(--light-green);
}
.newsroom .main-box .scrollpage .pre img,
.newsroom .main-box .scrollpage .next img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  padding-left: clamp(calc(8 / 2 * 1px), calc(8 / 1920 * 100 * 1vw), 8px);
  padding-right: clamp(calc(8 / 2 * 1px), calc(8 / 1920 * 100 * 1vw), 8px);
}
.newsroom .main-box .scrollpage .return {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-radius: 50%;
  width: 50px;
  min-width: 50px;
}
@media (max-width:1280px) {
  .newsroom .main-box .nav .navinfo .nav-right .icon {
    width: 45px ;
    height: 45px ;
  }
  .newsroom .main-box .scrollpage div {
    height: 45px;
  }
  .newsroom .main-box .scrollpage .return {
    width: 45px;
    min-width: 45px;
    height: 45px;
  }
  .newsroom .main-box .scrollpage a{
      height: 45px;
  }
}
@media (max-width:990px) {
  .newsroom .main-box .nav .navinfo .nav-right .icon {
    width: 40px ;
    height: 40px ;
  }
  .newsroom .main-box .scrollpage div {
    height: 40px;
  }
  .newsroom .main-box .scrollpage .return {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }
  .newsroom .main-box .scrollpage a{
      height: 40px;
  }
}
@media (max-width:640px) {
  .newsroom .main-box .nav .navinfo {
    display: inline-block;
    width: 100%;
  }
  .newsroom .main-box .nav .navinfo .nav-right {
    margin-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  }
}
@media (max-width:480px) {
  .newsroom .main-box .nav .navinfo .nav-left {
    display: inline-block;
    width: 100%;
  }
}
.newsdetail-actions {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
.newsdetail-actions .button-group {
  margin: auto;
  margin-top: clamp(calc(34 / 2 * 1px), calc(34 / 1920 * 100 * 1vw), 34px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--button--bg);
  height: var(--num_70);
  border-radius: 35px;
}
.newsdetail-actions .button-group .item {
  cursor: pointer;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.newsdetail-actions .button-group .item .name {
  align-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: var(--light-green);
}
.newsdetail-actions .button-group .item .active {
  border-radius: 35px;
  background-color: var(--light-green);
  color: var(--white-color);
}
.newsdetail-actions .filter-content {
  width: auto;
  height: 100%;
}
.newsdetail-actions .filter-content .result-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  height: 60px;
  line-height: 60px;
  font-weight: 700;
  border-top: solid 1px rgba(0, 66, 66, 0.1);
  border-bottom: solid 1px rgba(0, 66, 66, 0.1);
}
.newsdetail-actions .filter-content .result-title .filterinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: var(--num_80);
}
.newsdetail-actions .filter-content .result-title .filterinfo .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  position: relative;
  text-align: center;
  width: 156px;
  border-bottom: solid 1px var(--dark-green);
}
.newsdetail-actions .filter-content .result-title .filterinfo .time img {
  transform: rotate(180deg);
}
.newsdetail-actions .filter-content .result-title .filterinfo .time .timedown {
  position: absolute;
  width: 100%;
  top: 62px;
  z-index: 2;
  opacity: 0;
  background-color: var(--white-color);
  border-radius: 10px;
  padding-top: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
  padding-bottom: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
}
.newsdetail-actions .filter-content .result-title .filterinfo .time .timedown ul {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.newsdetail-actions .filter-content .result-title .filterinfo .time .timedown ul li {
  line-height: 30px;
  font-weight: 500;
}
.newsdetail-actions .filter-content .result-title .filterinfo .time .timedown ul li span {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
}
.newsdetail-actions .filter-content .result-title .filterinfo .time .timedown ul li .active {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-bottom: solid 2px var(--dark-green);
}
.newsdetail-actions .filter-content .result-title .filterinfo .time .timedown ul li:hover span {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-bottom: solid 2px var(--dark-green);
}
.newsdetail-actions .filter-content .result-title .filterinfo .time:hover .timedown {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 1;
}
.newsdetail-actions .filter-content .result-title .filterinfo .search {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: var(--num_300);
  height: 100%;
}
.newsdetail-actions .filter-content .result-title .filterinfo .search .searchicon {
  position: absolute;
  right: 0px;
}
.newsdetail-actions .filter-content .result-title .filterinfo .search .inputbox {
  border-bottom: solid 1px var(--dark-green);
  height: 100%;
}
.newsdetail-actions .filter-content .result-title .filterinfo .search .inputbox input {
  border: none;
  width: var(--num_300);
  min-width: 160px;
  height: 100%;
}
.newsdetail-actions .filter-content .result-title .filterinfo .search .inputbox input::placeholder {
  opacity: 0.4;
}
.newsdetail-actions .filter-content .cardlist {
  width: 100%;
  height: auto;
  margin-top: clamp(calc(23 / 2 * 1px), calc(23 / 1920 * 100 * 1vw), 23px);
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper {
  width: 100%;
  height: auto;
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper .cardgroup {
  width: 100%;
  height: auto;
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper .cardgroup .item {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  margin-bottom: clamp(calc(38 / 2 * 1px), calc(38 / 1920 * 100 * 1vw), 38px);
  padding-bottom: clamp(calc(25 / 2 * 1px), calc(25 / 1920 * 100 * 1vw), 25px);
  cursor: pointer;
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper .cardgroup .item .image {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-radius: 16px;
  overflow: hidden;
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper .cardgroup .item .image img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper .cardgroup .item .content {
  font-weight: 700;
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper .cardgroup .item .content .title {
  margin-top: clamp(calc(26 / 2 * 1px), calc(26 / 1920 * 100 * 1vw), 26px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 12px;
  color: #B6BDBD;
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper .cardgroup .item .content .sec-title {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--dark-green) margin-top: clamp(calc(16 / 2 * 1px), calc(16 / 1920 * 100 * 1vw), 16px);;
  font-size: var(--font18);
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper .cardgroup .item .content .third-title {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: clamp(calc(12 / 2 * 1px), calc(12 / 1920 * 100 * 1vw), 12px);
  font-size: var(--font14);
  opacity: 0.6;
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper .cardgroup .item:hover {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper .cardgroup .item:hover .image {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper .cardgroup .item:hover .image img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.newsdetail-actions .filter-content .cardlist .swiper-wrapper .cardgroup .item:hover .sec-title {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  color: var(--light-green);
}
.newsdetail-actions .filter-content .cardlist .swiper-pagination {
  display: none;
  position: relative;
}
.newsdetail-actions .filter-content .pagination {
  margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
}
.newsdetail-actions .public-scrollTop-box .public-scrollTop {
  bottom: 0;
  right: -7%;
}
@media (max-width:990px) {
  .newsdetail-actions .public-manufacturer-text {
    display: inline-block;
  }
}
@media (max-width:640px) {
  .newsdetail-actions .filter-content .cardlist .swiper-pagination {
    display: inline-block;
  }
  .newsdetail-actions .public-scrollTop-box .public-scrollTop{
      display: none;
  }
}
/* ------------------------- */
/* 4-1--合作--我们的优势 */
.our-strengths {
  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  background-color: var(--bg-light-green);
}
.our-strengths .title {
  font-size: var(--font50);
  text-align: center;
  font-weight: 700;
}
.our-strengths .sec-title {
  margin-top: clamp(calc(25 / 2 * 1px), calc(25 / 1920 * 100 * 1vw), 25px);
  margin: auto;
  font-size: var(--font18);
  text-align: center;
  white-space: pre;
}
.our-strengths .cardlist .imagelist {
  margin-top: clamp(calc(55 / 2 * 1px), calc(55 / 1920 * 100 * 1vw), 55px);
  display: grid;
  gap: var(--num_150);
  grid-template-columns: repeat(3, 1fr);
}
.our-strengths .cardlist .imagelist .item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background-color: #ffffff;
}
.our-strengths .cardlist .imagelist .item .info {
  padding-left: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  padding-right: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  padding-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  padding-bottom: clamp(calc(70 / 2 * 1px), calc(70 / 1920 * 100 * 1vw), 70px);
  line-height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.our-strengths .cardlist .imagelist .item .info .image {
  width: var(--num_60);
  height: var(--num_60);
}
.our-strengths .cardlist .imagelist .item .info .title {
  margin-top: clamp(calc(44 / 2 * 1px), calc(44 / 1920 * 100 * 1vw), 44px);
  margin-bottom: clamp(calc(13 / 2 * 1px), calc(13 / 1920 * 100 * 1vw), 13px);
  text-align: left;
  font-weight: 700;
  font-size: var(--font24);
  color: var(--light-green);
}
.our-strengths .cardlist .imagelist .item .info .public-slot-li ul {
  overflow: hidden;
}
.our-strengths .cardlist .imagelist .item .info .public-slot-li ul li {
  line-height: 24px;
}
.our-strengths .cardlist .imagelist .item:nth-child(1) {
  transition-delay: 0.1s;
}
.our-strengths .cardlist .imagelist .item:nth-child(2) {
  transition-delay: 0.2s;
}
.our-strengths .cardlist .imagelist .item:nth-child(3) {
  transition-delay: 0.3s;
}
@media (max-width:1680px) {
  .our-strengths .cardlist .imagelist {
    gap: var(--num_80);
  }
  .our-strengths .cardlist .imagelist .item .info {
    padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
    padding-right: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
    padding-top: clamp(calc(48 / 2 * 1px), calc(48 / 1920 * 100 * 1vw), 48px);
    padding-bottom: clamp(calc(48 / 2 * 1px), calc(48 / 1920 * 100 * 1vw), 48px);
  }
  .our-strengths .cardlist .imagelist .item .info .title {
    margin-top: clamp(calc(35 / 2 * 1px), calc(35 / 1920 * 100 * 1vw), 35px);
  }
  .our-strengths .cardlist .imagelist .item .info .public-slot-li ul li {
    line-height: 20px;
  }
}
@media (max-width:1200px) {
  .our-strengths .cardlist .imagelist {
    gap: var(--num_50);
  }
  .our-strengths .cardlist .imagelist {
    grid-template-columns: repeat(2, 1fr);
  }
  .our-strengths .cardlist .imagelist .item {
    background-color: inherit;
  }
  .our-strengths .cardlist .imagelist .item .bgpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width:480px) {
  .our-strengths .cardlist .imagelist {
    grid-template-columns: repeat(1, 1fr);
  }
  .our-strengths .cardlist .imagelist .item .bgpic {
    display: none;
  }
  .our-strengths .cardlist .imagelist .item .info {
    position: relative;
    border-radius: 16px;
    border: solid 1px var(--light-green);
  }
}
@media (max-width:360px) {
  .our-strengths {
    padding-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
    padding-bottom: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  }
}
.product-export {
  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
.product-export .main-box {
  text-align: center;
}
.product-export .main-box .form-title {
  line-height: 1;
}
.product-export .main-box .button-group {
  max-width: 1040px;
  margin: auto;
  margin-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--button--bg);
  height: var(--num_70);
  border-radius: 35px;
}
.product-export .main-box .button-group .item-one {
  cursor: pointer;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.product-export .main-box .button-group .item-one .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  padding-right: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  align-content: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
  color: var(--light-green);
}
.product-export .main-box .button-group .active {
  border-radius: 35px;
  background-color: var(--light-green);
  color: var(--white-color);
}
.product-export .main-box .button-group .active .name {
  color: var(--white-color);
}
.product-export .main-box .countrytab {
  /*overflow: hidden;*/
}
.product-export .main-box .country {
  padding-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  position: relative;
  display: none;
}
.product-export .main-box .swiper-slide-active .country{
    display: block;
}
.product-export .main-box .country .info {
  max-width: 340px;
  text-align: left;
}
.product-export .main-box .country .info .content {
  margin-top: clamp(calc(187 / 2 * 1px), calc(187 / 1920 * 100 * 1vw), 187px);
}
.product-export .main-box .country .network {
  max-width: 400px;
  margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
}
.product-export .main-box .country .network .grouplist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
}
.product-export .main-box .country .network .grouplist .item {
  max-width: 180px;
  width: 100%;
  height: auto;
  padding: 50px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.product-export .main-box .country .network .grouplist .item .number {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.product-export .main-box .country .network .grouplist .item .number .beat {
  width: auto;
  height: auto;
  font-family: 'BARLOW';
  font-size: var(--font50);
  color: var(--light-green);
  letter-spacing: -0.06em;
  line-height: 1;
}
.product-export .main-box .country .network .grouplist .item .number .info {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.product-export .main-box .country .network .grouplist .item .number .info .add,
.product-export .main-box .country .network .grouplist .item .number .info .unit {
  width: auto;
  height: 100%;
  font-family: 'BARLOW';
  font-size: var(--font20);
  color: var(--light-green);
  line-height: 1;
}
.product-export .main-box .country .network .grouplist .item .title {
  width: 100%;
  height: auto;
  margin: 10px 0 0;
  font-size: var(--font16);
  color: var(--dark-green);
}
.product-export .main-box .country .network .grouplist .item:nth-child(1) {
  transition-delay: 0.1s;
}
.product-export .main-box .country .network .grouplist .item:nth-child(2) {
  transition-delay: 0.2s;
}
.product-export .main-box .country .network .grouplist .item:nth-child(3) {
  transition-delay: 0.3s;
}
.product-export .main-box .country .map {
  position: absolute;
  top: 62px;
  margin-left: 12% ;
}
.product-export .main-box .country .map .mapcontent {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
}
.product-export .main-box .country .map .mapcontent .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  width: 300px;
}
.product-export .main-box .country .map .mapcontent .item .innerbox {
  position: relative;
  cursor: pointer;
}
.product-export .main-box .country .map .mapcontent .item .innerbox .ball .sm {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #0B9191;
  border-radius: 50%;
  left: 12px;
  top: 12px;
}
.product-export .main-box .country .map .mapcontent .item .innerbox .ball .big {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #0B9191;
  border-radius: 50%;
  opacity: 0.3;
  left: 0px;
}
.product-export .main-box .country .map .mapcontent .item .innerbox .ball .big::before,
.product-export .main-box .country .map .mapcontent .item .innerbox .ball .big::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 1px solid var(--dark-green);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-animation: icon-video 3s ease-out;
  animation: icon-video 3s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.product-export .main-box .country .map .mapcontent .item .innerbox .ball .big::after {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.product-export .main-box .country .map .mapcontent .item .innerbox .ball .oversize {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  position: absolute;
  width: 78px;
  height: 78px;
  background: #0B9191;
  border-radius: 50%;
  left: -24px;
  top: -24px;
  opacity: 0;
}
.product-export .main-box .country .map .mapcontent .item .innerbox .area {
  margin-left: clamp(calc(38 / 2 * 1px), calc(38 / 1920 * 100 * 1vw), 38px);
  padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  padding-right: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  background-color: var(--white-color);
  color: var(--light-green);
  font-size: var(--font14);
  font-weight: 700;
  height: 30px;
  line-height: 30px;
  box-shadow: 0px 0px 29px 0px rgba(11, 145, 145, 0.25);
  border-radius: 15px;
}
.product-export .main-box .country .map .mapcontent .item .innerbox .content {
  display: none;
  position: relative;
}
.product-export .main-box .country .map .mapcontent .item .innerbox .content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  position: absolute;
  width: 276px ;
  column-gap: 20px;
  padding-left: clamp(calc(16 / 2 * 1px), calc(16 / 1920 * 100 * 1vw), 16px);
  padding-right: clamp(calc(16 / 2 * 1px), calc(16 / 1920 * 100 * 1vw), 16px);
  padding-top: clamp(calc(23 / 2 * 1px), calc(23 / 1920 * 100 * 1vw), 23px);
  padding-bottom: clamp(calc(23 / 2 * 1px), calc(23 / 1920 * 100 * 1vw), 23px);
  margin-top: clamp(calc(16 / 2 * 1px), calc(16 / 1920 * 100 * 1vw), 16px);
  left: 0;
  background: #FFFFFF;
  border: 1px solid #0B9191;
  border-radius: 16px;
}
.product-export .main-box .country .map .mapcontent .item .innerbox .content ul li {
  position: relative;
  padding-left: 10px;
  text-transform: uppercase;
  color: var(--light-green);
}
.product-export .main-box .country .map .mapcontent .item .innerbox .content ul li::before {
  position: absolute;
  margin-top: 9px;
  content: "";
  width: 4px;
  left: 0;
  height: 4px;
  background: var(--light-green);
}
.product-export .main-box .country .map .mapcontent .item:hover .ball .oversize {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  opacity: 0.2;
}
.product-export .main-box .country .map .mapcontent .item:hover .area {
  background-color: var(--light-green);
  color: var(--white-color);
}
.product-export .main-box .country .map .mapcontent .item:hover .content {
  display: inline-block;
}
.product-export .main-box .country .map .mapcontent .item:nth-child(1) {
  margin-top: 14%;
  margin-left: 15.7%;
  transition-delay: 0.1s;
}
.product-export .main-box .country .map .mapcontent .item:nth-child(2) {
  margin-top: 14.5%;
  margin-left: 50%;
  transition-delay: 0.2s;
}
.product-export .main-box .country .map .mapcontent .item:nth-child(3) {
  margin-top: 13%;
  margin-left: 75.2%;
  transition-delay: 0.3s;
}
.product-export .main-box .country .map .mapcontent .item:nth-child(4) {
  margin-top: 35%;
  margin-left: 30%;
  transition-delay: 0.4s;
}
.product-export .main-box .country .map .mapcontent .item:nth-child(5) {
  margin-top: 31%;
  margin-left: 53%;
  transition-delay: 0.5s;
}
.product-export .main-box .country .map .mapcontent .item:nth-child(6) {
  margin-top: 37.5%;
  margin-left: 85%;
  transition-delay: 0.6s;
}
.product-export .main-box .country .map .mapcontent .dingwei {
  margin-top: 21.4%;
  margin-left: 74.8%;
  transition-delay: 0.7s;
  --width: clamp(5.5rem, calc( -0.654rem + 7.69vw), 8rem);
  --height: clamp(3.75rem, calc( -0.558rem + 5.38vw) 5.5rem);
}
.product-export .main-box .country .map .mapcontent .dingwei .dwbox .image {
  animation: moveDown 1s infinite alternate;
}
.product-export .main-box .country .map .mapcontent .dingwei .dwbox .button {
  position: relative;
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-right: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-top: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  padding-bottom: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  margin-top: 23px;
  line-height: 1;
  font-size: var(--font24);
  border-radius: 22px;
  background-color: var(--light-green);
  color: var(--white-color);
  font-weight: 700;
}
.product-export .main-box .country .map .mapcontent .dingwei .dwbox .button::before {
  position: absolute;
  content: '';
  top: -25px;
  left: 0;
  width: 1px;
  height: 32px;
  background: #0B9191;
  margin-left: calc(50% - 0.5px);
}
.product-export .main-box .country .map-mobile {
  position: absolute;
  top: 62px;
  left: 0;
  width: 100%;
  display: none;
}
@media (max-width:768px) {
  .product-export .main-box .country .info .content {
    padding-top: clamp(calc(500 / 2 * 1px), calc(500 / 1920 * 100 * 1vw), 500px);
  }
  .product-export .main-box .country .map {
    margin-left: 0px;
  }
  .product-export .main-box .country .network .grouplist .item {
    padding: var(--num_25);
  }
  .product-export .main-box .button-group .item-one .name {
    padding-left: clamp(calc(15 / 2 * 1px), calc(15 / 1920 * 100 * 1vw), 15px);
    padding-right: clamp(calc(15 / 2 * 1px), calc(15 / 1920 * 100 * 1vw), 15px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .product-export .main-box .country .map {
    display: none;
  }
  .product-export .main-box .country .map-mobile {
    display: inline-block;
  }
}
@media (max-width:640px) {
  .product-export .main-box .country .map .mapcontent .item .ball .sm {
    width: 3px;
    height: 3px;
    left: 6px;
    top: 6px;
  }
  .product-export .main-box .country .map .mapcontent .item .ball .big {
    width: 15px;
    height: 15px;
  }
  .product-export .main-box .country .map .mapcontent .item .ball .oversize {
    width: 39px;
    height: 39px;
    left: -12px;
    top: -12px;
  }
  .product-export .main-box .button-group {
    display: inline;
    width: 100%;
  }
  .product-export .main-box .button-group .item-one .name{
      line-height: 1;
        padding: 9.5px 0;
  }
  
  .product-export .main-box .button-group .item-one {
    margin-bottom: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  }
}
@media (max-width:480px) {
  .product-export .main-box .country .info .content {
    padding-top: clamp(calc(360 / 2 * 1px), calc(360 / 1920 * 100 * 1vw), 360px);
  }
}
@media (max-width:360px) {
  .product-export {
    padding-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
    padding-bottom: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
  }
  .product-export .main-box .country .info .content {
    padding-top: clamp(calc(250 / 2 * 1px), calc(250 / 1920 * 100 * 1vw), 250px);
  }
}
.cooperative-clients {
  position: relative;
}
.cooperative-clients .bancontent {
  width: 100%;
  align-content: center;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.cooperative-clients .bancontent .grid_box .content {
  width: 100%;
  height: 100%;
  padding: var(--spacing-120) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.cooperative-clients .bancontent .grid_box .content .classify,
.cooperative-clients .bancontent .grid_box .content .title {
  width: 60%;
  height: auto;
  pointer-events: initial;
}
.cooperative-clients .bancontent .grid_box .content .classify {
  margin-bottom: clamp(calc(25 / 2 * 1px), calc(25 / 1920 * 100 * 1vw), 25px);
  font-weight: 700;
  font-size: var(--font30);
  color: var(--dark-green);
}
.cooperative-clients .bancontent .grid_box .content .title {
  padding-left: clamp(calc(39 / 2 * 1px), calc(39 / 1920 * 100 * 1vw), 39px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  font-size: clamp(2.5rem, calc(-3.654rem + 7.69vw), 5rem);
}
.cooperative-clients .bancontent .grid_box .content .title p {
  color: var(--white-color);
  line-height: 1.26;
  white-space: nowrap;
}
.cooperative-clients .bancontent .grid_box .content .title p:nth-child(2) {
  padding-left: clamp(calc(83 / 2 * 1px), calc(83 / 1920 * 100 * 1vw), 83px);
  margin-top: -10px;
}
.cooperative-clients .bancontent .grid_box .content .active {
  color: var(--white-color);
}
.cooperative-clients .bancontent .grid_box .content .idx_more {
  margin: var(--spacing-40) 0 0;
}
@media (max-width:640px) {
  .cooperative-clients .bancontent .grid_box .content {
    padding: 0px;
    align-content: center;
  }
  .cooperative-clients .bancontent .grid_box .content .title,
  .cooperative-clients .bancontent .grid_box .content .classify,
  .cooperative-clients .cooperative-clients .bancontent .grid_box .content .title {
    width: 100%;
  }
  .cooperative-clients .bancontent .grid_box .content .title p {
    font-size: 36px;
  }
}
.message-form {
  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  background-color: var(--bg-light-green);
}
.message-form .main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.message-form .main-box .form-title {
  width: 52%;
}
.message-form .main-box .form-title .info .title {
  font-weight: 700;
  font-size: var(--font26);
  color: var(--light-green);
  line-height: 1;
  margin-top: 8px;
}
.message-form .main-box .form-content {
  width: 48%;
}
.message-form .main-box .form-content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: var(--num_30);
  margin-bottom: clamp(calc(28 / 2 * 1px), calc(28 / 1920 * 100 * 1vw), 28px);
}
.message-form .main-box .form-content .item .item-one {
  width: 100%;
}
.message-form .main-box .form-content .item .item-one .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  font-size: var(--font16);
  font-weight: 500;
}
.message-form .main-box .form-content .item .item-one .name span {
  color: var(--color-red);
  margin-left: -1px;
}
.message-form .main-box .form-content .item .item-one input {
  height: var(--num_50);
  min-height: 35px;
  border-radius: 25px;
  width: 100%;
  text-indent: 20px;
  border: solid 1px rgba(0, 66, 66, 0.2);
  background-color: inherit;
}
.message-form .main-box .form-content .item .item-one .message-content {
  border: solid 1px rgba(0, 66, 66, 0.2);
  text-indent: 20px;
  border-radius: var(--border-radius16);
  height: 123px;
  margin-top: clamp(calc(6 / 2 * 1px), calc(6 / 1920 * 100 * 1vw), 6px);
  background-color: inherit;
  width: 100%;
}
.message-form .main-box .form-content .item .submit-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: auto;
}
.message-form .main-box .form-content .item .submit-content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 7px;
}
.message-form .main-box .form-content .item .submit-content .info .choose-btn {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--light-green);
}
.message-form .main-box .form-content .item .submit-content .info .choose-btn img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--light-green);
}
.message-form .main-box .form-content .item .submit-content .info .choose-btn .active {
  display: block;
}
.message-form .main-box .form-content .item .submit-content .info .agree a {
  font-weight: 500;
  text-decoration: underline;
  color: var(--dark-green);
}
.message-form .main-box .form-content .item .submit-content .submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-right: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-top: clamp(calc(12 / 2 * 1px), calc(12 / 1920 * 100 * 1vw), 12px);
  padding-bottom: clamp(calc(12 / 2 * 1px), calc(12 / 1920 * 100 * 1vw), 12px);
  font-weight: 500;
  background: var(--light-green);
  border-radius: 25px;
  color: var(--white-color);
}
.message-form .main-box .form-content .item:last-child {
  margin-top: -10px;
}
.message-form .main-box .form-content .button-group-title {
  margin-bottom: clamp(calc(6 / 2 * 1px), calc(6 / 1920 * 100 * 1vw), 6px);
}
.message-form .main-box .form-content .button-group-title span {
  color: var(--color-red);
  margin-left: -1px;
}
.message-form .main-box .form-content .button-group {
  margin-bottom: clamp(calc(28 / 2 * 1px), calc(28 / 1920 * 100 * 1vw), 28px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--button--bg);
  height: var(--num_50);
  min-height: 35px;
  border-radius: 25px;
}
.message-form .main-box .form-content .button-group .item-one {
  cursor: pointer;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.message-form .main-box .form-content .button-group .item-one .name {
  align-content: center;
  font-weight: 500;
  width: 100%;
  height: 100%;
  color: var(--light-green);
  background-color: var(--button--bg);
  border-radius: 25px;
}
.message-form .main-box .form-content .button-group .item-one .active {
  border-radius: 25px;
  background-color: var(--light-green);
  color: var(--white-color);
}
@media (max-width:990px) {
  .message-form .main-box .form-content .item .submit-content {
    display: inline-block;
    width: 100%;
  }
  .message-form .main-box .form-content .item .submit-content .info {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .message-form .main-box .form-content .item .submit-content .submit-btn {
    width: fit-content;
    margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
}
@media (max-width:768px) {
  .message-form .main-box {
    display: inline-block;
    width: 100%;
  }
  .message-form .main-box .form-title {
    width: 100%;
  }
  .message-form .main-box .form-content {
    margin-top: clamp(calc(40 / 2 * 1px), calc(40 / 1920 * 100 * 1vw), 40px);
    width: 100%;
  }
}
@media (max-width:640px) {
  .message-form .main-box .form-content .button-group {
    display: inline;
    width: 100%;
  }
  .message-form .main-box .form-content .button-group .item-one .name{
      line-height: 1;
      padding: 9.5px 0;
  }
  
  .message-form .main-box .form-content .button-group .item-one {
    margin-bottom: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
  .message-form .main-box .form-content .item .item-one .textarea {
    margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
}
@media (max-width:480px) {
  .message-form .main-box .form-content .item .submit-content .info .agree {
    font-size: var(--font16);
  }
}
/* ------------------------- */
/* 5-1--ESG */
.esg-ustainable-development {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  position: relative;
}
.esg-ustainable-development .mainimage {
  border-radius: 16px;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.esg-ustainable-development .mainimage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.esg-ustainable-development .public-manufacturer-text {
  margin-top: clamp(calc(132 / 2 * 1px), calc(132 / 1920 * 100 * 1vw), 132px);
  margin-bottom: clamp(calc(132 / 2 * 1px), calc(132 / 1920 * 100 * 1vw), 132px);
  padding-right: clamp(calc(110 / 2 * 1px), calc(110 / 1920 * 100 * 1vw), 110px);
  padding-bottom: 0px;
  float: right;
  position: relative;
  align-content: center;
  width: 52%;
  display: inline-block;
}
.esg-ustainable-development .public-manufacturer-text .tech-public-title {
  line-height: 1.2;
}
.esg-ustainable-development .content {
  margin-top: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
}
.esg-ustainable-development .public-slot-li ul li::before {
  background-color: var(--dark-green);
}
@media (max-width:990px) {
  .esg-ustainable-development .grid_box {
    display: flex !important;
  }
  .esg-ustainable-development .public-manufacturer-text {
    width: 60%;
  }
}
@media (max-width:768px) {
  .esg-ustainable-development .public-manufacturer-text {
    width: 80%;
    padding-left: clamp(calc(110 / 2 * 1px), calc(110 / 1920 * 100 * 1vw), 110px);
  }
}
@media (max-width:640px) {
  .esg-ustainable-development .public-manufacturer-text {
    width: 100%;
  }
}
@media (max-width:480px) {
  .esg-ustainable-development .public-manufacturer-text {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
    margin-bottom: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
    padding-left: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
    padding-right: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
}
.esg-development-report {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  background-color: var(--bg-green);
}
.esg-development-report .main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
}
.esg-development-report .main-box .item {
  flex: 1;
}
.esg-development-report .main-box .item .title {
  font-size: var(--font50);
  line-height: 50px;
}
.esg-development-report .main-box .item .title .bold {
  font-weight: 700;
  white-space: pre-line;
}
.esg-development-report .main-box .item .content ul li {
  font-weight: 500;
}
.esg-development-report .main-box .item .operate {
  position: absolute;
  bottom: 0;
  margin-top: clamp(calc(320 / 2 * 1px), calc(320 / 1920 * 100 * 1vw), 320px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
.esg-development-report .main-box .item .operate .btn {
  padding-left: clamp(calc(34 / 2 * 1px), calc(34 / 1920 * 100 * 1vw), 34px);
  padding-right: clamp(calc(34 / 2 * 1px), calc(34 / 1920 * 100 * 1vw), 34px);
  padding-top: clamp(calc(17 / 2 * 1px), calc(17 / 1920 * 100 * 1vw), 17px);
  padding-bottom: clamp(calc(17 / 2 * 1px), calc(17 / 1920 * 100 * 1vw), 17px);
  line-height: 1;
  border-radius: 25px;
}
.esg-development-report .main-box .item .operate .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-weight: 500;
  gap: 8px;
  align-items: center;
  width: 100%;
  height: 100%;
}
.esg-development-report .main-box .item .operate .read {
  background-color: var(--dark-green);
}
.esg-development-report .main-box .item .operate .read .text {
  color: var(--white-color);
}
.esg-development-report .main-box .item .operate .download {
  border: 1px solid rgba(0, 66, 66, 0.2);
}
.esg-development-report .main-box .item .image {
  margin-top: clamp(calc(43 / 2 * 1px), calc(43 / 1920 * 100 * 1vw), 43px);
}
@media (max-width:990px) {
  .esg-development-report .main-box {
    display: inline-block;
  }
  .esg-development-report .main-box .item .operate {
    margin-top: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
    margin-bottom: clamp(calc(100 / 2 * 1px), calc(100 / 1920 * 100 * 1vw), 100px);
  }
}
@media (max-width:768px) {
  .esg-development-report {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
    padding-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
    padding-bottom: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
  .esg-development-report .main-box .item .title .bold {
    white-space: nowrap;
    line-height: 1.2;
  }
  .esg-development-report .main-box .item .operate {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
    margin-bottom: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
}
@media (max-width:360px) {
  .esg-development-report .main-box .item .title .bold {
    white-space: normal;
  }
}
.our-actions {
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
.our-actions .button-group {
  margin: auto;
  margin-top: clamp(calc(34 / 2 * 1px), calc(34 / 1920 * 100 * 1vw), 34px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: var(--button--bg);
  height: var(--num_70);
  border-radius: 35px;
}
.our-actions .button-group .item {
  cursor: pointer;
  flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.our-actions .button-group .item .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--button--bg);
  border-radius: 35px;
  font-weight: 700;
  color: var(--light-green);
}
.our-actions .button-group .item .active {
  border-radius: 35px;
  background-color: var(--light-green);
  color: var(--white-color);
}
.our-actions .filter-content .result-title {
  margin-top: clamp(calc(39 / 2 * 1px), calc(39 / 1920 * 100 * 1vw), 39px);
  padding-top: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  padding-bottom: clamp(calc(10 / 2 * 1px), calc(10 / 1920 * 100 * 1vw), 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-weight: 700;
  border-bottom: solid 1px var(--dark-green);
}
.our-actions .filter-content .result-title .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  position: relative;
  text-align: center;
  width: clamp(6.25rem, calc(-2.365rem + 10.77vw), 9.75rem);
  height: clamp(2.375rem, calc( 0.529rem + 2.31vw), 3.125rem);
  border-radius: 25px;
  border: solid 1px rgba(0, 66, 66, 0.2);
}
.our-actions .filter-content .result-title .time .title {
  color: var(--dark-green);
}
.our-actions .filter-content .result-title .time img {
  transition-duration: 0.5s;
}
.our-actions .filter-content .result-title .time .timedown {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  position: absolute;
  width: 100%;
  top: 50px;
  z-index: 2;
  display: none;
  background-color: var(--white-color);
  border-radius: 10px;
  padding-top: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
  padding-bottom: clamp(calc(14 / 2 * 1px), calc(14 / 1920 * 100 * 1vw), 14px);
}
.our-actions .filter-content .result-title .time .timedown ul {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.our-actions .filter-content .result-title .time .timedown ul li {
  line-height: 30px;
  font-weight: 500;
}
.our-actions .filter-content .result-title .time .timedown ul li span {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
}
.our-actions .filter-content .result-title .time .timedown ul li .active {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-bottom: solid 2px var(--dark-green);
}
.our-actions .filter-content .result-title .time .timedown ul li:hover span {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  border-bottom: solid 2px var(--dark-green);
}
.our-actions .filter-content .result-title .time:hover img {
  transform: rotate(180deg);
}
.our-actions .filter-content .result-title .time:hover .timedown {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  display: inline-block;
}
.our-actions .filter-content .cardlist {
  width: 100%;
  height: auto;
  margin-top: clamp(calc(41 / 2 * 1px), calc(41 / 1920 * 100 * 1vw), 41px);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.our-actions .filter-content .cardlist .cardgroup {
  width: 100%;
  height: auto;
}
.our-actions .filter-content .cardlist .cardgroup .item {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  position: relative;
  margin-bottom: clamp(calc(38 / 2 * 1px), calc(38 / 1920 * 100 * 1vw), 38px);
  padding-bottom: clamp(calc(25 / 2 * 1px), calc(25 / 1920 * 100 * 1vw), 25px);
  cursor: pointer;
  border-bottom: solid 1px rgba(0, 66, 66, 0.2);
}
.our-actions .filter-content .cardlist .cardgroup .item .image {
  overflow: hidden;
  border-radius: 16px;
}
.our-actions .filter-content .cardlist .cardgroup .item .image img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.our-actions .filter-content .cardlist .cardgroup .item .content {
  font-weight: 700;
}
.our-actions .filter-content .cardlist .cardgroup .item .content .title {
  margin-top: clamp(calc(26 / 2 * 1px), calc(26 / 1920 * 100 * 1vw), 26px);
  font-size: 12px;
  color: #B6BDBD;
}
.our-actions .filter-content .cardlist .cardgroup .item .content .sec-title {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  color: var(--dark-green) margin-top: clamp(calc(16 / 2 * 1px), calc(16 / 1920 * 100 * 1vw), 16px);;
  font-size: var(--font18);
}
.our-actions .filter-content .cardlist .cardgroup .item::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--light-green);
  transition: width var(--ani);
}
.our-actions .filter-content .cardlist .cardgroup .item:hover {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.our-actions .filter-content .cardlist .cardgroup .item:hover::after {
  width: 100%;
  left: 0;
}
.our-actions .filter-content .cardlist .cardgroup .item:hover .sec-title {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  color: var(--light-green);
}
.our-actions .filter-content .cardlist .cardgroup .item:hover .image img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.our-actions .filter-content .cardlist .swiper-pagination {
  display: none;
  position: relative;
}
.our-actions .filter-content .pagination {
  margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
}
@media (max-width:1200px) {
  .our-actions .button-group .item {
    overflow: hidden;
  }
  .our-actions .button-group .item .name {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
    padding-right: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  }
}
@media (max-width:990px) {
  .our-actions .public-manufacturer-text {
    display: inline-block;
  }
  .our-actions .button-group {
    display: inline;
    width: 100%;
  }
  .our-actions .button-group .item {
    margin-bottom: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
  .our-actions .filter-content .cardlist {
    grid-template-columns: repeat(3, 1fr);
  }
  .our-actions .button-group .item .name{
      line-height: 1;
      padding: 9.5px;
  }
}
@media (max-width:768px) {
  .our-actions {
    margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
}
@media (max-width:640px) {
  .our-actions .filter-content .cardlist .swiper-pagination {
    display: inline-block;
  }
  .our-actions .filter-content .pagination {
    display: none;
  }
  .our-actions .filter-content .cardlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:360px) {
  
  .our-actions .filter-content .cardlist {
    grid-template-columns: repeat(1, 1fr);
  }
}

.supply-chain-management {
  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  margin-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  background-color: var(--bg-light-green);
}
.supply-chain-management .supply-box .standlist {
  margin-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.supply-chain-management .supply-box .standlist .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-right: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-top: clamp(calc(38 / 2 * 1px), calc(38 / 1920 * 100 * 1vw), 38px);
  padding-bottom: clamp(calc(38 / 2 * 1px), calc(38 / 1920 * 100 * 1vw), 38px);
  cursor: pointer;
  border-radius: var(--border-radius16);
  transition: all var(--ani);
  background-color: #fff;
}
.supply-chain-management .supply-box .standlist .item .title {
  white-space: pre-line;
}
.supply-chain-management .supply-box .standlist .item .title::before {
  position: absolute;
  top: 20%;
  margin-left: -34px;
  content: "";
  width: 1px;
  height: 66.2%;
  background: #C7D2D2;
}
.supply-chain-management .supply-box .standlist .item .item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-right: clamp(calc(64 / 2 * 1px), calc(64 / 1920 * 100 * 1vw), 64px);
  padding: clamp(calc(18 / 2 * 1px), calc(18 / 1920 * 100 * 1vw), 18px);
  border-radius: 50%;
  width: var(--num_80);
  min-width: var(--num_80);
  height: var(--num_80);
  align-content: center;
  background-color: rgba(11, 145, 145, 0.1);
}
.supply-chain-management .supply-box .standlist .item:hover {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  background-color: var(--light-green);
}
.supply-chain-management .supply-box .standlist .item:hover .title {
  color: #fff;
}
.supply-chain-management .supply-box .standlist .item:hover .item-img {
  background-color: #fff;
}
@media (max-width:1200px) {
  .supply-chain-management .supply-box .standlist .item .title::before {
    background-color: var(--white-color);
  }
}
@media (max-width:990px) {
  .supply-chain-management .supply-box .standlist {
    grid-template-columns: repeat(2, 1fr);
  }
  .supply-chain-management .supply-box .standlist .item .item-img {
    margin-right: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  }
  .supply-chain-management .supply-box .standlist .item .title::before {
    background-color: var(--white-color);
    display: none;
  }
}
@media (max-width:768px) {
  .supply-chain-management .supply-box .standlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width:640px) {
  .supply-chain-management .public-manufacturer-text {
    display: inline-block;
    width: 100%;
  }
}
/* ------------------------- */
/* 6-1--Contact Us */
.contact-us {
  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
}
.contact-us .main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.contact-us .main-box .form-title {
  width: 40%;
}
.contact-us .main-box .form-title .contact-list {
  max-width: 390px;
}
.contact-us .main-box .form-title .contact-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-top: clamp(calc(16 / 2 * 1px), calc(16 / 1920 * 100 * 1vw), 16px);
  padding-bottom: clamp(calc(16 / 2 * 1px), calc(16 / 1920 * 100 * 1vw), 16px);
  border-bottom: solid 1px rgba(0, 66, 66, 0.2);
}
.contact-us .main-box .form-title .contact-list .item .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  align-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--light-green);
  border-radius: 50%;
}
.contact-us .main-box .form-title .contact-list .item .text {
  margin-left: clamp(calc(15 / 2 * 1px), calc(15 / 1920 * 100 * 1vw), 15px);
  font-weight: 500;
}
.contact-us .main-box .form-content {
  width: 60%;
}
.contact-us .main-box .form-content .title {
  white-space: pre-line;
  line-height: 0.7;
  font-weight: 500;
  margin-bottom: clamp(calc(37 / 2 * 1px), calc(37 / 1920 * 100 * 1vw), 37px);
  padding-bottom: clamp(calc(16 / 2 * 1px), calc(16 / 1920 * 100 * 1vw), 16px);
  border-bottom: solid 1px var(--dark-green);
}
.contact-us .main-box .form-content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: var(--num_30);
  margin-bottom: clamp(calc(28 / 2 * 1px), calc(28 / 1920 * 100 * 1vw), 28px);
}
.contact-us .main-box .form-content .item .item-one {
  width: 100%;
}
.contact-us .main-box .form-content .item .item-one .name {
  font-size: var(--font16);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: clamp(calc(6 / 2 * 1px), calc(6 / 1920 * 100 * 1vw), 6px);
}
.contact-us .main-box .form-content .item .item-one .name span {
  color: var(--color-red);
}
.contact-us .main-box .form-content .item .item-one input {
  height: var(--num_50);
  min-height: 35px;
  border-radius: 25px;
  width: 100%;
  text-indent: 20px;
  border: solid 1px rgba(0, 66, 66, 0.2);
  background-color: inherit;
}
.contact-us .main-box .form-content .item .item-one .message-content {
  border: solid 1px rgba(0, 66, 66, 0.2);
  text-indent: 20px;
  border-radius: var(--border-radius16);
  height: 123px;
  margin-top: clamp(calc(6 / 2 * 1px), calc(6 / 1920 * 100 * 1vw), 6px);
  background-color: inherit;
  width: 100%;
}
.contact-us .main-box .form-content .item .submit-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  width: 100%;
  height: auto;
}
.contact-us .main-box .form-content .item .submit-content .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 7px;
}
.contact-us .main-box .form-content .item .submit-content .info .choose-btn {
  position: relative;
  min-width: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--light-green);
}
.contact-us .main-box .form-content .item .submit-content .info .choose-btn img {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  position: absolute;
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--light-green);
}
.contact-us .main-box .form-content .item .submit-content .info .choose-btn .active {
  display: block;
}
.contact-us .main-box .form-content .item .submit-content .info .agree a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--dark-green);
}
.contact-us .main-box .form-content .item .submit-content .submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-right: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  padding-top: clamp(calc(12 / 2 * 1px), calc(12 / 1920 * 100 * 1vw), 12px);
  padding-bottom: clamp(calc(12 / 2 * 1px), calc(12 / 1920 * 100 * 1vw), 12px);
  background: var(--light-green);
  border-radius: 25px;
  color: var(--white-color);
}
.contact-us .main-box .form-content .item:last-child {
  margin-top: -10px;
}
@media (max-width:1680px) {
  .contact-us .main-box .form-content .item .submit-content .info .agree {
    display: grid;
  }
}
@media (max-width:1200px) {
  .contact-us .main-box {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    gap: var(--num_30);
  }
  .contact-us .main-box .form-content {
    margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
  }
  .contact-us .main-box .form-content .title {
    white-space: inherit;
    line-height: 1.2;
  }
  .contact-us .main-box .form-content .item .submit-content {
    gap: var(--num_20);
    display: inline-block;
    width: 100%;
  }
  .contact-us .main-box .form-content .item .submit-content .info {
    gap: var(--num_20);
    justify-content: flex-start;
  }
  .contact-us .main-box .form-content .item .submit-content .submit-btn {
    margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
    width: fit-content;
  }
}
@media (max-width:990px) {
  .contact-us {
    padding-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
    padding-bottom: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  }
  .contact-us .main-box {
    display: inline-block;
    width: 100%;
  }
  .contact-us .main-box .form-title {
    width: 60%;
  }
  .contact-us .main-box .form-content {
    margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
    width: 80%;
  }
  .contact-us .main-box .form-content .title {
    padding-bottom: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  }
}
@media (max-width:768px) {
  .contact-us .main-box .form-title {
    width: 100%;
  }
  .contact-us .main-box .form-title .contact-list {
    max-width: initial;
  }
  .contact-us .main-box .form-content {
    width: 100%;
  }
  .contact-us .main-box .form-content .item {
    display: inline-block;
    width: 100%;
  }
  .contact-us .main-box .form-content .item .item-one {
    margin-top: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  }
  .contact-us .main-box .form-title .contact-list .item .logo{
      width: 35px;
        height: 35px;
        min-width: 35px;
  }
}
@media (max-width:480px) {
  .contact-us .main-box .form-content .item .submit-content .info .agree {
    font-size: var(--font16);
  }
   .contact-us .main-box .form-title .contact-list .item .logo{
      width: 30px;
        height: 30px;
        min-width: 30px;
  }
}
.after-sale {
  position: relative;
  width: 100%;
}
.after-sale .image-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.after-sale .image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.after-sale .after-sale-service {
  padding-top: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  padding-bottom: clamp(calc(120 / 2 * 1px), calc(120 / 1920 * 100 * 1vw), 120px);
  align-content: center;
  position: relative;
}
.after-sale .after-sale-service .main-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
.after-sale .after-sale-service .main-box .contact-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  margin-bottom: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
}
.after-sale .after-sale-service .main-box .contact-style .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-left: clamp(calc(8 / 2 * 1px), calc(8 / 1920 * 100 * 1vw), 8px);
  margin-right: clamp(calc(8 / 2 * 1px), calc(8 / 1920 * 100 * 1vw), 8px);
  background-color: var(--light-green);
  border-radius: 42px;
  padding:0 10px;
}
.after-sale .after-sale-service .main-box .contact-style .item .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 8px;
  background-color: rgba(255, 255, 255, 0.15);
  text-align: center;
  align-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
}
.after-sale .after-sale-service .main-box .contact-style .item .logo img {
  width: fit-content;
}
.after-sale .after-sale-service .main-box .contact-style .item .number {
  margin-left: clamp(calc(12 / 2 * 1px), calc(12 / 1920 * 100 * 1vw), 12px);
  margin-right: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  align-content: center;
  font-weight: 700;
  font-size: var(--font22);
  color: var(--white-color);
 
      line-height: 1.2;
    padding: 3px 0;
}
.after-sale .after-sale-service .main-box .contact-style .item:nth-child(2) {
  background-color: #98BBBB;
}
.after-sale .after-sale-service .main-box .public-slot-li ul li {
  font-weight: 500;
}
.after-sale .after-sale-service .main-box .image {
  width: 31.4%;
}
.after-sale .after-sale-service .main-box .image img {
  border-radius: 16px;
}
.after-sale .after-sale-service .main-box .after-sale-content {
  width: 68.6%;
  padding-left: clamp(calc(140 / 2 * 1px), calc(140 / 1920 * 100 * 1vw), 140px);
}
@media (max-width:1560px) {
  .after-sale .after-sale-service .main-box .contact-style .item .logo {
    width: var(--num_65);
    height: var(--num_65);
  }
}
@media (max-width:768px) {
  .after-sale .after-sale-service .main-box {
    display: inline-block;
    width: 100%;
  }
  .after-sale .after-sale-service .main-box .image {
    width: 100%;
  }
  .after-sale .after-sale-service .main-box .after-sale-content {
    margin-top: clamp(calc(50 / 2 * 1px), calc(50 / 1920 * 100 * 1vw), 50px);
    width: 100%;
    padding-left: 0px;
  }
  .after-sale .after-sale-service .main-box .contact-style .item .logo{
        width: 35px;
        height: 35px;
  }
}
@media (max-width:480px) {
  .after-sale .after-sale-service .main-box .contact-style {
    display: inline-block;
    width: 100%;
  }
  .after-sale .after-sale-service .main-box .contact-style .item {
    margin-bottom: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
    width: 100%;
  }
  .after-sale .after-sale-service .main-box .contact-style .item .logo{
        width: 26px;
        height: 26px;
  }
}
@media (max-width:360px) {
  .after-sale .after-sale-service .main-box .contact-style {
    display: inline-block;
    width: 100%;
  }
  .after-sale .after-sale-service .main-box .contact-style .item {
    margin-bottom: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
    width: 100%;
  }
  .after-sale .after-sale-service .main-box .contact-style .item .logo{
        width: 20px;
        height: 20px;
  }
}
