@charset "utf-8";
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "HONOR Sans CN", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
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,
video {
  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;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  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.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* input 字体颜色*/
/* 360 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes dash2 {
  from {
    stroke-dashoffset: 2750;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes run_sc {
  0% {
    transform: rotate(0deg) scale(0.8);
  }
  100% {
    transform: rotate(360deg) scale(1.2);
  }
}
/* 旋转 */
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.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 {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media (max-width:990px) {
  .w1800,
  .w1720,
  .w1680,
  .w1640,
  .w1600,
  .w1560,
  .w1440,
  .w1400,
  .w1350,
  .w1280,
  .w1240,
  .w1200,
  .w1150 {
    max-width: 100%;
    padding: 0 20px;
  }
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
  .w1440 {
    max-width: 100%;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
:root {
  --active_color: #00b870;
  --text_color: #282828;
  --back_color: #f5f5f5;
  /* 字体大小 */
  --font12: 12px;
  --font14: 14px;
  --font15: clamp(13px, 0.15rem, 15px);
  --font16: clamp(14px, 0.16rem, 16px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: 0.36rem;
  --font38: 0.38rem;
  --font40: 0.4rem;
  --font42: 0.42rem;
  --font44: 0.44rem;
  --font46: 0.46rem;
  --font48: 0.48rem;
  --font50: 0.5rem;
  --font52: 0.52rem;
  --font54: 0.54rem;
  --font56: 0.56rem;
  --font58: 0.58rem;
  --font60: 0.6rem;
  --font66: 0.66rem;
  --font70: 0.7rem;
  --font72: 0.72rem;
  --font80: 0.8rem;
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  /* 圆角 */
  --border-radius20: 0.2rem;
  --border-radius18: 0.18rem;
  --border-radius16: 0.16rem;
  --border-radius14: 0.14rem;
  --border-radius12: 0.12rem;
  --border-radius10: 0.1rem;
  --border-radius8: 0.08rem;
}
.font12 {
  font-size: 12px;
}
.font14 {
  font-size: 14px;
}
.font16 {
  font-size: 16px;
  font-size: clamp(14px, 0.16rem, 16px);
}
.font17 {
  font-size: 17px;
  font-size: clamp(14px, 0.17rem, 17px);
}
.font18 {
  font-size: 18px;
  font-size: clamp(14px, 0.18rem, 18px);
}
.font20 {
  font-size: 20px;
  font-size: clamp(15px, 0.2rem, 20px);
}
.font22 {
  font-size: 22px;
  font-size: clamp(16px, 0.22rem, 22px);
}
.font24 {
  font-size: 24px;
  font-size: clamp(18px, 0.24rem, 24px);
}
.font26 {
  font-size: 26px;
  font-size: clamp(18px, 0.26rem, 26px);
}
.font28 {
  font-size: 28px;
  font-size: clamp(18px, 0.28rem, 28px);
}
.font30 {
  font-size: 30px;
  font-size: clamp(20px, 0.3rem, 30px);
}
.font32 {
  font-size: 32px;
  font-size: clamp(20px, 0.32rem, 32px);
}
.font34 {
  font-size: 34px;
  font-size: clamp(22px, 0.34rem, 34px);
}
.font36 {
  font-size: 0.36rem;
}
.font38 {
  font-size: 0.38rem;
}
.font40 {
  font-size: 0.4rem;
}
.font42 {
  font-size: 0.42rem;
}
.font44 {
  font-size: 0.44rem;
}
.font46 {
  font-size: 0.46rem;
}
.font48 {
  font-size: 0.48rem;
}
.font50 {
  font-size: 0.5rem;
}
.font52 {
  font-size: 0.52rem;
}
.font54 {
  font-size: 0.54rem;
}
.font56 {
  font-size: 0.56rem;
}
.font58 {
  font-size: 0.58rem;
}
.font60 {
  font-size: 0.6rem;
}
.font62 {
  font-size: 0.62rem;
}
.font66 {
  font-size: 0.66rem;
}
.font70 {
  font-size: 0.7rem;
}
.font72 {
  font-size: 0.72rem;
}
.font80 {
  font-size: 0.8rem;
}
.font100 {
  font-size: 1rem;
}
.font120 {
  font-size: 1.2rem;
}
.font160 {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  :root {
    /* 字体大小 */
    --font12: 0.24rem;
    --font14: 0.26rem;
    --font16: 0.26rem;
    --font18: 0.28rem;
    --font20: 0.28rem;
    --font22: 0.32rem;
    --font24: 0.32rem;
    --font26: 0.32rem;
    --font28: 0.34rem;
    --font30: 0.36rem;
    --font32: 0.36rem;
    --font34: 0.36rem;
    --font36: 0.38rem;
    --font38: 0.38rem;
    --font40: 0.38rem;
    --font42: 0.38rem;
    --font44: 0.38rem;
    --font46: 0.38rem;
    --font48: 0.42rem;
    --font50: 0.42remm;
    --font52: 0.42remm;
    --font54: 0.42remm;
    --font56: 0.42rem;
    --font58: 0.42rem;
    --font60: 0.5rem;
    --font66: 0.5rem;
    --font70: 0.5rem;
    --font72: 0.5rem;
    --font80: 0.5rem;
    --font100: 0.8rem;
    --font120: 0.8rem;
    --font160: 1rem;
  }
  .font36,
  .font38,
  .font40,
  .font42,
  .font44,
  .font46 {
    font-size: 0.38rem;
  }
  .font48,
  .font50,
  .font52,
  .font54,
  .font56,
  .font58 {
    font-size: 0.42rem;
  }
  .font60,
  .font62,
  .font66,
  .font70,
  .font72,
  .font80 {
    font-size: 0.5rem;
  }
  .font30,
  .font32,
  .font34 {
    font-size: 0.36rem;
  }
  .font22,
  .font24,
  .font26 {
    font-size: 0.32rem;
  }
  .font18,
  .font20 {
    font-size: 0.28rem;
  }
  .font14,
  .font16 {
    font-size: 0.26rem;
  }
  .font12 {
    font-size: 0.24rem;
  }
  .font28 {
    font-size: 0.34rem;
  }
  .font100 {
    font-size: 0.8rem;
  }
  .font120 {
    font-size: 0.8rem;
  }
  .font160 {
    font-size: 1rem;
  }
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "GILROY";
  src: url("../fonts/GILROY-LIGHT.OTF");
  font-weight: 200;
}
@font-face {
  font-family: "GILROY";
  src: url("../fonts/GILROY-REGULAR.OTF");
  font-weight: normal;
}
@font-face {
  font-family: "GILROY";
  src: url("../fonts/GILROY-MEDIUM.OTF");
  font-weight: 500;
}
@font-face {
  font-family: "GILROY";
  src: url("../fonts/GILROY-SEMIBOLD.OTF");
  font-weight: 600;
}
@font-face {
  font-family: "GILROY";
  src: url("../fonts/GILROY-BOLD.OTF");
  font-weight: 700;
}
@font-face {
  font-family: "ORBITRON";
  src: url("../fonts/ORBITRON-VARIABLEFONT_WGHT\(2\).TTF");
}
/* -------------------------------------------------------------------  pc头部 */
header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box {
  width: 100%;
  height: auto;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--bg_color);
  position: relative;
  z-index: 2;
  --color1: #FFFFFF;
  --bg_color: none;
  --fiter: unset;
}
header .header_box .center_box {
  width: 100%;
  height: 100%;
  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;
  /* 导航 */
}
header .header_box .center_box .column_left {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 1.06rem;
}
header .header_box .center_box .column_left .zk_icon {
  width: 25px;
  height: 100%;
  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;
  gap: 5px;
}
header .header_box .center_box .column_left .zk_icon i {
  width: 100%;
  height: 2px;
  background: var(--color1);
  display: block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_left .logo_box {
  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 .center_box .column_left .logo_box .logo {
  width: 1.5rem;
  min-width: 100px;
}
header .header_box .center_box .column_left .logo_box .logo img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_right {
  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 .center_box .column_right .search_box {
  cursor: pointer;
  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;
  flex-shrink: 0;
}
header .header_box .center_box .column_right .search_box .icon {
  width: 100%;
  height: auto;
  cursor: pointer;
}
header .header_box .center_box .column_right .search_box .icon img {
  filter: var(--fiter);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0.2rem;
  min-width: 15px;
}
header .header_box .center_box .column_right .search_box .icon i {
  color: var(--color1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font20);
}
header .header_box .center_box .column_right .search_box .search {
  position: absolute;
  right: 20px;
  padding-right: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateX(20px);
}
header .header_box .center_box .column_right .search_box .search input {
  width: 240px;
  font-size: var(--font14);
  border-radius: 100px;
  overflow: hidden;
  height: 40px;
  padding: 10px 20px;
  border: 0;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
header .header_box .center_box .column_right .search_box:hover .search {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
header .header_box .center_box .column_right .language_box {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-shrink: 0;
}
header .header_box .center_box .column_right .language_box .icon {
  width: 100%;
  height: auto;
  cursor: pointer;
}
header .header_box .center_box .column_right .language_box .icon img {
  filter: var(--fiter);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0.2rem;
  min-width: 15px;
}
header .header_box .center_box .column_right .language_box .icon i {
  color: var(--color1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font22);
  font-weight: 200;
}
header .header_box .center_box .column_right .language_box .language_flag {
  width: max-content;
  height: auto;
  position: absolute;
  top: 100%;
  background: #FFFFFF;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.1rem;
  padding: 10px;
  border-radius: var(--border-radius10);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_right .language_box .language_flag a {
  width: 100%;
  height: auto;
  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 .center_box .column_right .language_box .language_flag a img {
  width: 0.3rem;
  min-width: 25px;
  height: auto;
  object-fit: cover;
}
header .header_box .center_box .column_right .language_box .language_flag a span {
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_right .language_box .language_flag a:hover span {
  color: var(--active_color);
}
header .header_box .center_box .column_right .language_box:hover .language_flag {
  opacity: 1;
  visibility: visible;
}
header .header_box .center_box .item_box {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.5rem;
}
header .header_box .center_box .item_box .item {
  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;
}
header .header_box .center_box .item_box .item .one {
  color: var(--color1);
  width: max-content;
  font-size: 17px;
  font-size: clamp(14px, 0.17rem, 17px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 200;
  position: relative;
  z-index: 1;
  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 .center_box .item_box .item .one::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
header .header_box .center_box .item_box .item .one i {
  color: var(--color1);
}
header .header_box .center_box .item_box .item .one:hover,
header .header_box .center_box .item_box .item .one.active {
  color: var(--active_color);
  font-weight: 600;
}
header .header_box .center_box .item_box .item .one.active::after {
  opacity: 1;
}
header .header_box .center_box .item_box .item .navigation {
  width: 100vw;
  height: auto;
  background: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50vw);
  border-top: 1px solid #ececec;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  margin-top: 20px;
  /* 关于我们 */
  /* 产品导航 */
  /* 解决方案 */
}
header .header_box .center_box .item_box .item .navigation::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50vw);
  z-index: -1;
  width: 100vw;
  height: 100%;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .item_box .item .navigation .bg_0000 {
  position: absolute;
  z-index: -2;
  background: #000000;
  opacity: 0.5;
  width: 100%;
  height: 100vh;
}
header .header_box .center_box .item_box .item .navigation .w1500 {
  width: 78.125%;
  margin: auto;
}
header .header_box .center_box .item_box .item .navigation .w1200_w {
  width: 62.5%;
  margin: auto;
}
header .header_box .center_box .item_box .item .navigation .about_nav {
  width: 100%;
  height: auto;
  padding: 0.53rem 0;
}
header .header_box .center_box .item_box .item .navigation .about_nav .nav_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;
  gap: 1.1rem;
}
header .header_box .center_box .item_box .item .navigation .about_nav .nav_box .tow {
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .header_box .center_box .item_box .item .navigation .about_nav .nav_box .tow .word {
  margin-top: 0.26rem;
  font-size: var(--font18);
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .item_box .item .navigation .about_nav .nav_box .tow:hover .word,
header .header_box .center_box .item_box .item .navigation .about_nav .nav_box .tow.active .word {
  color: #222222;
}
header .header_box .center_box .item_box .item .navigation .product_nav {
  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;
}
header .header_box .center_box .item_box .item .navigation .product_nav .list {
  width: 34.83%;
  padding: 9px 0;
  position: relative;
  z-index: 1;
  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-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  gap: 0.5rem;
  padding-top: 0.7rem;
}
header .header_box .center_box .item_box .item .navigation .product_nav .list::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100%;
  background: #f6f6f6;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .item_box .item .navigation .product_nav .list .tow {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 9px 0.2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
  max-width: 337px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .item_box .item .navigation .product_nav .list .tow::after {
  content: '';
  position: absolute;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--active_color);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .item_box .item .navigation .product_nav .list .tow .word {
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .item_box .item .navigation .product_nav .list .tow:hover,
header .header_box .center_box .item_box .item .navigation .product_nav .list .tow.active {
  background: #FFFFFF;
}
header .header_box .center_box .item_box .item .navigation .product_nav .list .tow:hover::after,
header .header_box .center_box .item_box .item .navigation .product_nav .list .tow.active::after {
  opacity: 1;
}
header .header_box .center_box .item_box .item .navigation .product_nav .list .tow:hover .word,
header .header_box .center_box .item_box .item .navigation .product_nav .list .tow.active .word {
  color: var(--active_color);
  font-weight: 600;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box {
  width: 65.17%;
  height: auto;
  background: #FFFFFF;
  position: relative;
  z-index: 1;
  padding-top: 0.7rem;
  padding-bottom: 1.3rem;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  width: 100vw;
  height: 100%;
  background: #FFFFFF;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box {
  width: 100%;
  height: auto;
  display: none;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box.active {
  display: block !important;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box .title {
  font-weight: 600;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box .subtBox {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  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;
  padding: 0 0.4rem;
  padding-top: 0.2rem;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box .subtBox span {
  font-weight: 500;
  font-size: var(--font20);
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box .subtBox a {
  width: 1.2rem;
  height: 0.4rem;
  min-width: 80px;
  min-height: 35px;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  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: 0.2rem;
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box .subtBox a:hover {
  border: 1px solid var(--active_color);
  color: var(--active_color);
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box .tow {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-height: 70vh;
  overflow: auto;
  gap: 0.8rem 0;
  border-bottom: 1px solid #f6f6f6;
  padding-bottom: 0.4rem;
  margin-top: 0.2rem;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box .tow .thre {
  width: 100%;
  height: auto;
  display: block;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box .tow .thre .images .pb {
  padding-bottom: 78.8%;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box .tow .thre .word {
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 10px;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box .tow .thre:hover .word,
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box .tow .thre.active .word {
  color: var(--active_color);
  text-decoration: underline;
  font-weight: 600;
}
header .header_box .center_box .item_box .item .navigation .case_nav {
  width: 100%;
  height: auto;
  padding-top: 0.7rem;
  padding-bottom: 0.6rem;
}
header .header_box .center_box .item_box .item .navigation .case_nav .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
header .header_box .center_box .item_box .item .navigation .case_nav .swiper_box ul li {
  width: 100%;
  height: auto;
}
header .header_box .center_box .item_box .item .navigation .case_nav .swiper_box ul li .conterInfo {
  width: 100%;
  height: auto;
}
header .header_box .center_box .item_box .item .navigation .case_nav .swiper_box ul li .conterInfo .images {
  width: 100%;
  height: auto;
}
header .header_box .center_box .item_box .item .navigation .case_nav .swiper_box ul li .conterInfo .images .pb {
  padding-bottom: 61%;
}
header .header_box .center_box .item_box .item .navigation .case_nav .swiper_box ul li .conterInfo .word {
  font-size: 17px;
  text-align: center;
  margin-top: 0.2rem;
  font-weight: 600;
}
header .header_box .center_box .item_box .item .navigation .case_nav .idxPageShow {
  margin-top: 0.5rem;
}
header .header_box .center_box .item_box .item .navigation.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 0;
}
@media (max-width:990px) {
  header .header_box {
    display: none !important;
  }
}
header.active::after,
header:hover::after {
  height: 100%;
}
header.active .header_box,
header:hover .header_box {
  --color1: #000000;
  --fiter: brightness(0) invert(0);
}
header.active .header_box .center_box .column_left .logo_box .logo img,
header:hover .header_box .center_box .column_left .logo_box .logo img {
  filter: unset !important;
}
header.text_back .header_box {
  --color1: #000000;
  --fiter: brightness(0) invert(0);
}
header.text_back .header_box .center_box .column_left .logo_box .logo img {
  filter: unset !important;
}
header.all_back::after {
  height: 100%;
}
header.all_back .header_box {
  --color1: #000000;
  --fiter: brightness(0) invert(0);
}
header.all_back .header_box .center_box .column_left .logo_box .logo img {
  filter: unset !important;
}
header.logo_white .header_box .center_box .column_left .logo_box .logo img {
  filter: brightness(0) invert(1);
}
header.in_b::before {
  content: '';
  position: absolute;
  top: 0;
  z-index: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #00000000 10%, #0000008a 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.lu_back::after {
  height: 100%;
}
header.lu_back .header_box {
  --color1: #000000;
  --fiter: brightness(0) invert(0);
}
header.lu_back .header_box .center_box .column_left .logo_box .logo img {
  filter: unset !important;
}
/* -------------------------------------------------------------------  pc底部 */
footer {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #1d1e20;
  padding-top: 1.2rem;
  overflow: hidden;
}
footer * {
  color: #FFFFFF;
}
footer .center_box {
  width: 100%;
  height: auto;
}
footer .center_box .footer_box {
  width: 100%;
  height: auto;
}
footer .center_box .footer_box .footer_top {
  width: 100%;
  height: auto;
}
footer .center_box .footer_box .footer_top .logo {
  width: 1.9rem;
  height: auto;
  min-width: 120px;
}
footer .center_box .footer_box .footer_top .content {
  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;
  margin-top: 0.66rem;
}
footer .center_box .footer_box .footer_top .content .list_box {
  width: 35.71%;
}
footer .center_box .footer_box .footer_top .content .list_box .one {
  font-size: var(--font28);
  width: fit-content;
  display: block;
  font-weight: 500;
  line-height: 1.714;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .center_box .footer_box .footer_top .content .list_box .one:hover {
  color: var(--active_color);
  text-decoration: underline;
}
footer .center_box .footer_box .footer_top .content .right_box {
  width: 69.16%;
  height: auto;
}
footer .center_box .footer_box .footer_top .content .right_box .item_box {
  width: 100%;
  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 .center_box .footer_box .footer_top .content .right_box .item_box .item {
  width: auto;
  height: auto;
}
footer .center_box .footer_box .footer_top .content .right_box .item_box .item .title {
  font-weight: 500;
}
footer .center_box .footer_box .footer_top .content .right_box .item_box .item .list {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
footer .center_box .footer_box .footer_top .content .right_box .item_box .item .list .one {
  display: block;
  font-size: var(--font16);
  color: #666769;
  line-height: 1.625;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .center_box .footer_box .footer_top .content .right_box .item_box .item .list .one:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
footer .center_box .footer_box .footer_top .content .right_box .share {
  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;
  margin-top: 1.4rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #4b4c50;
}
footer .center_box .footer_box .footer_top .content .right_box .share .list {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.7rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
footer .center_box .footer_box .footer_top .content .right_box .share .more {
  width: auto;
  height: auto;
}
footer .center_box .footer_box .footer_top .content .right_box .share .more 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: 0.69rem;
  height: 0.39rem;
  min-width: 50px;
  min-height: 30px;
  border: 2px solid #4b4c50;
  border-radius: 100px;
}
footer .center_box .footer_box .footer_top .content .right_box .share .more a i {
  transform: rotate(180deg) translateX(-2px);
  font-size: var(--font20);
}
footer .center_box .footer_box .footer_center {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.4rem;
  padding-bottom: 0.68rem;
}
footer .center_box .footer_box .footer_center .left_box {
  width: 35.71%;
}
footer .center_box .footer_box .footer_center .right_box {
  width: 69.16%;
}
footer .center_box .footer_box .footer_center .right_box .item {
  color: #666769;
}
footer .center_box .footer_box .footer_center .right_box .item a {
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: underline;
}
footer .center_box .footer_box .footer_bottom {
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.1rem;
  padding: 0.45rem 0;
  background: #191a1c;
  position: relative;
  z-index: 1;
}
footer .center_box .footer_box .footer_bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50vw);
  width: 100vw;
  height: 100%;
  background: #191a1c;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
}
footer .center_box .footer_box .footer_bottom * {
  font-size: var(--font16);
  color: #666769;
}
footer .center_box .footer_box .footer_bottom a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .center_box .footer_box .footer_bottom a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
footer .center_box .footer_box .footer_bottom .copy {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0 0.4rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
@media (max-width:990px) {
  footer .center_box .footer_box {
    width: 100%;
    height: auto;
  }
  footer .center_box .footer_box .footer_top .content .list_box {
    display: none;
  }
  footer .center_box .footer_box .footer_top .content .right_box {
    width: 100% !important;
    height: auto;
  }
  footer .center_box .footer_box .footer_top .content .right_box .item_box {
    display: none;
  }
  footer .center_box .footer_box .footer_top .content .right_box .share {
    margin-top: 0px;
    padding-bottom: 10px;
  }
  footer .center_box .footer_box .footer_top .content .right_box .share .list {
    gap: 8px !important;
  }
  footer .center_box .footer_box .footer_top .content .right_box .share .list a {
    transform: scale(0.6);
  }
  footer .center_box .footer_box .footer_center {
    padding-bottom: 0;
  }
  footer .center_box .footer_box .footer_center .left_box {
    display: none;
  }
  footer .center_box .footer_box .footer_center .right_box {
    width: 100%;
  }
}
/* --------------------------------------  */
.box_info {
  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;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
/* -------------------------------------------------------------------*/
.anchor {
  width: 100%;
  height: 0;
  transform: translateY(calc((var(--header-height) + 0px) * -1));
}
@media (max-width:990px) {
  .anchor {
    transform: translateY(-60px);
  }
}
/* */
main {
  width: 100%;
  height: auto;
  --header-height: 100px;
  font-family: "GILROY";
}
main.active {
  --header-height: 70px;
}
@media (max-width:1440px) {
  main {
    --header-height: 70px;
  }
  main.active {
    --header-height: 60px;
  }
}
@media (max-width:990px) {
  main {
    --header-height: 50px !important;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  main::-webkit-scrollbar {
    display: none;
  }
  main * {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  main *::-webkit-scrollbar {
    display: none;
  }
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
}
/* --------------------------------------------------------------- 文字描边 */
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 图片100% */
.img_w100 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.img_w100 img {
  width: 100%;
  height: auto;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    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;
    gap: 3px;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 7px;
    height: 7px;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color) !important;
    opacity: 1 !important;
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow {
  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;
  gap: 0 10px;
}
.idxPageShow span {
  width: 9px;
  height: 9px;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
}
.idxProgressbar {
  width: 100%;
  height: 4px;
  margin-top: 1.2rem;
  position: relative;
  z-index: 1;
  background: #eaeaea;
}
.idxProgressbar span {
  background: var(--active_color) !important;
}
.idx_more {
  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;
}
.idx_more .more {
  width: fit-content;
  height: auto;
  min-width: 100px;
  min-height: 35px;
  padding: 0.16rem 0.44rem;
  padding-right: 0.35rem;
  position: relative;
  z-index: 1;
  font-size: var(--font18);
  color: var(--active_color);
  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: 0.16rem;
  line-height: 1;
  border-radius: 100px;
  font-weight: 700;
}
.idx_more .more::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--active_color);
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
}
.idx_more .more i {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .more:hover::after {
  opacity: 1;
}
.idx_more .more:hover i {
  transform: translateX(5px);
}
.idx_more.bg_ac .more {
  background: var(--active_color);
  color: #FFFFFF;
}
.idx_more.bg_ac .more::after {
  opacity: 1 !important;
  display: none;
}
.idx_more.bg_ac .more:hover i {
  transform: translateX(5px);
}
.case_more {
  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;
  margin-top: 1.3rem;
}
.case_more .more {
  width: 1.5rem;
  height: 0.5rem;
  min-width: 120px;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.15rem;
  border: 1px solid #e0e0e0;
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  font-weight: 600;
  font-size: var(--font18);
}
.case_more .more i {
  font-size: 12px;
}
.case_more .more:hover {
  color: var(--active_color);
}
.search_for {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  background: #FFFFFF;
  z-index: 101;
  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: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search_for .search_in {
  width: auto;
  height: auto;
  border: 1px solid #e5e5e5;
  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: 100px;
  overflow: hidden;
  padding: 0 0.2rem;
}
.search_for .search_in .input {
  width: fit-content;
  height: auto;
}
.search_for .search_in .input input {
  width: 520px;
  height: 0.4rem;
  min-height: 38px;
  border: 0;
}
.search_for .search_in .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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search_for .search_in .icon:hover {
  color: var(--active_color);
}
.search_for .close_box {
  width: fit-content;
  height: auto;
  flex-shrink: 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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search_for .close_box i {
  font-size: var(--font20);
}
.search_for .close_box:hover {
  color: var(--active_color);
}
.search_for.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
.language_select {
  width: 100%;
  height: auto;
  position: fixed;
  top: var(--header-height);
  background: #f6f6f6;
  z-index: 101;
  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: 0.2rem;
  padding: 0.4rem 0;
  padding-bottom: 1rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateY(20%);
}
.language_select .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.language_select .center_box .item_box {
  width: 100%;
  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;
  gap: 0.5rem;
}
.language_select .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.language_select .center_box .item_box .item .title {
  width: 100%;
  height: auto;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid #e5e5e5;
  font-size: 12px;
}
.language_select .center_box .item_box .item .list {
  margin-top: 0.3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.3rem 0.2rem;
}
.language_select .center_box .item_box .item .list .one {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  font-size: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  color: var(--text_color);
}
.language_select .center_box .item_box .item .list .one img {
  width: 20px;
  border-radius: 50%;
  overflow: hidden;
}
.language_select .center_box .item_box .item .list .one span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.language_select .center_box .item_box .item .list .one:hover,
.language_select .center_box .item_box .item .list .one.active {
  color: var(--active_color);
}
.language_select .center_box .item_box .item .list .one:hover span,
.language_select .center_box .item_box .item .list .one.active span {
  text-decoration: underline;
}
.language_select .center_box .close_box {
  position: absolute;
  top: 0;
  right: 0px;
  width: 40px;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font18);
  transform: translateY(-80%);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.language_select .center_box .close_box i {
  font-size: var(--font20);
}
.language_select .center_box .close_box:hover {
  color: var(--active_color);
}
.language_select.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
.admission {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  --height: 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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.admission .content {
  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-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;
  background: #FFFFFF;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.admission .content .svg_box {
  width: 100%;
  height: auto;
  max-width: 70px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.admission .content .svg_box .befor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--height);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.admission .content .svg_box .befor svg {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  object-fit: cover;
  max-height: unset;
}
.admission .content .svg_box.active {
  max-width: 100%;
}
.admission .content .loading {
  text-align: center;
  font-size: var(--font18);
  font-weight: 500;
  margin-top: 0.25rem;
}
.admission .content .number {
  color: var(--active_color);
  font-weight: 500;
  font-size: var(--font18);
  margin-top: 0.11rem;
}
.admission.option {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .f1 {
  color: var(--active_color);
  font-weight: 700;
}
.idx_title .t1 {
  font-weight: 700;
  line-height: 1.25;
}
.idx_title .t2 {
  line-height: 1.666;
  margin-top: 0.3rem;
}
.ins_more {
  width: 100%;
  height: auto;
}
.ins_more .more {
  min-width: 248px;
}
.ins_more_img {
  width: auto;
  height: auto;
}
.ins_more_img .more {
  width: fit-content;
  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: 0.1rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font16);
  opacity: 0.5;
}
.ins_more_img .more:hover {
  color: var(--active_color);
}
.caseMore {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.27rem;
  margin-top: 0.96rem;
}
.caseMore .more {
  width: 1.66rem;
  height: 0.5rem;
  min-width: 120px;
  min-height: 40px;
  border-radius: 100px;
  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: #eeeeee;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #222222;
  font-weight: 600;
  gap: 0.13rem;
  padding: 0.1rem 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.caseMore .more img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.caseMore .more:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
.caseMore .more:hover img {
  filter: brightness(0) invert(1);
}
.esg_more {
  width: 100%;
  height: auto;
  margin-top: 1.6rem;
}
.esg_more .more {
  min-width: 2.47rem;
  height: 0.5rem;
  min-height: 40px;
  padding: 0.1rem 0.3rem;
  background: var(--active_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 100px;
  color: #FFFFFF;
  width: fit-content;
}
.esg_more .more img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .esg_more {
    margin-top: 0.6rem;
  }
}
.ins_404Con1 {
  width: 100vw;
  height: 100vh;
  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-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;
  z-index: 1;
}
.ins_404Con1 .center_box {
  width: fit-content;
  height: auto;
  padding: 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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.ins_404Con1 .center_box .btn_box {
  width: auto;
  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;
  gap: 0.3rem;
}
.ins_404Con1 .center_box .btn_box a {
  width: 1.25rem;
  height: 0.41rem;
  border: 1px solid var(--active_color);
  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;
  min-width: 100px;
  min-height: 38px;
  color: #FFFFFF;
  background: var(--active_color);
  border-radius: 100px;
  font-weight: 500;
}
.ins_404Con1 .center_box .btn_box a:last-child {
  background: #FFFFFF;
  border: 1px solid #d3d3d3;
  color: #222222;
}
#kefu {
  position: relative;
  z-index: 100;
}
.privacy {
  width: 100vw;
  height: 100vh;
  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;
  position: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}
.privacy .content {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.8rem 0;
}
.privacy .content .center_box {
  width: 100%;
  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;
  gap: 0.3rem;
}
.privacy .content .center_box .word_box {
  width: 100%;
}
.privacy .content .center_box .word_box .t1 {
  font-weight: 500;
  color: var(--active_color);
}
.privacy .content .center_box .word_box .t2 {
  margin-top: 0.2rem;
}
.privacy .content .center_box .word_box .t2 a {
  text-decoration: underline;
  color: var(--active_color);
  cursor: pointer;
}
.privacy .content .center_box .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  cursor: pointer;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.privacy .content .center_box .btn_box .more {
  background: #efefef;
  min-width: 102px;
  padding: 0 20px;
  height: 43px;
  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: var(--font14);
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.privacy .content .center_box .btn_box .more:hover {
  background: var(--active_color);
  color: #FFFFFF;
}
.privacy.active {
  opacity: 0;
  visibility: hidden;
}
.interrogate {
  width: 100vw;
  height: 100vh;
  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: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.interrogate .content {
  width: 100%;
  max-width: 615px;
  height: auto;
  background: #FFFFFF;
  padding: 0.9rem 0.5rem;
  padding-bottom: 0.65rem;
  border-radius: 0.15rem;
  max-height: 90vh;
  position: relative;
  z-index: 1;
}
.interrogate .content .icon {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--active_color);
  border-radius: 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;
  top: 0.3rem;
  right: 0.3rem;
  color: var(--active_color);
  cursor: pointer;
}
.interrogate .content .icon i {
  font-weight: 600;
}
.interrogate .content .images {
  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;
}
.interrogate .content .word {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 0.6rem;
}
.interrogate .content .word .t1 {
  font-weight: 500;
}
.interrogate .content .word .t2 {
  margin-top: 0.15rem;
}
.interrogate.active {
  opacity: 1;
  visibility: visible;
}
.message_pup {
  width: 100vw;
  height: 100vh;
  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: fixed;
  z-index: 110;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.message_pup .content {
  width: 100%;
  max-width: 1096px;
  height: auto;
  background: #FFFFFF;
  padding: 0.7rem 0.9rem;
  padding-bottom: 0.65rem;
  border-radius: 0.15rem;
  max-height: 90vh;
  position: relative;
  z-index: 1;
  overflow: auto;
}
.message_pup .content .icon {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--active_color);
  border-radius: 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;
  top: 0.3rem;
  right: 0.3rem;
  color: var(--active_color);
  cursor: pointer;
}
.message_pup .content .icon i {
  font-weight: 600;
}
.message_pup .content .word {
  width: 100%;
  height: auto;
  text-align: center;
}
.message_pup .content .word .t1 {
  font-weight: 500;
  color: var(--active_color);
}
.message_pup .content .word .t2 {
  margin-top: 0.1rem;
}
.message_pup .content .con_info {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.message_pup .content .con_info .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem 0.55rem;
}
.message_pup .content .con_info .item_box .item {
  width: 100%;
  height: auto;
}
.message_pup .content .con_info .item_box .item input,
.message_pup .content .con_info .item_box .item textarea {
  font-size: var(--font14);
}
.message_pup .content .con_info .item_box .item input {
  width: 100%;
  height: 0.57rem;
  min-height: 50px;
  border-radius: 100px;
  border: 1px solid #e5e5e5;
  padding: 0 0.3rem;
}
.message_pup .content .con_info .item_box .item textarea {
  width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
  padding: 0.3rem;
  border-radius: 0.28rem;
  height: 1.78rem;
}
.message_pup .content .con_info .item_box .grid_4 {
  grid-column: span 2;
}
.message_pup .content .con_info .term {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  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: 0.15rem;
  cursor: pointer;
  --color: #999999;
}
.message_pup .content .con_info .term i {
  width: 18px;
  height: 18px;
  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: 2px solid var(--color);
  border-radius: 6px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.message_pup .content .con_info .term i::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.message_pup .content .con_info .term input {
  display: none;
}
.message_pup .content .con_info .term span {
  color: #999999;
  font-size: var(--font16);
}
.message_pup .content .con_info .term a {
  color: var(--active_color);
}
.message_pup .content .con_info .term.active {
  --color: var(--active_color);
}
.message_pup .content .con_info .button {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.message_pup .content .con_info .button button {
  width: 4.25rem;
  height: 0.57rem;
  min-height: 40px;
  border-radius: 100px;
  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: var(--active_color);
  color: #FFFFFF;
  border: 0;
  font-size: var(--font16);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.message_pup .content .con_info .button button:hover {
  opacity: 0.8;
}
.message_pup.active {
  opacity: 1;
  visibility: visible;
}
.ins_nav {
  width: 100%;
  height: auto;
  background: #f4f4f4;
}
.ins_nav .center_box {
  width: 100%;
  height: 0.6rem;
  min-height: 0.5rem;
  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: 15px;
}
.ins_nav .center_box a {
  line-height: 1;
  font-size: var(--font16);
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_nav .center_box a:hover {
  color: var(--active_color);
}
.ins_nav .center_box .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;
}
.ins_nav .center_box .icon i {
  color: #999999;
}
.ins_nav.ac_fafafa {
  background: #fafafa;
}
@media (max-width:990px) {
  .ins_nav {
    display: none !important;
  }
}
.pagerBox {
  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;
  margin-top: 1.2rem;
}
.pagerBox .layui-laypage {
  margin: 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;
  gap: 0.3rem;
}
.pagerBox .layui-laypage a,
.pagerBox .layui-laypage span {
  height: auto;
  font-size: var(--font14);
  color: #484848;
  padding: 0 10px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
}
.pagerBox .layui-laypage a:hover,
.pagerBox .layui-laypage span:hover {
  color: var(--active_color);
}
.pagerBox .layui-laypage a i,
.pagerBox .layui-laypage span i {
  font-size: 12px;
}
.pagerBox .swiper_but {
  z-index: 2;
  cursor: pointer;
  flex-shrink: 0;
  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: 0.4rem;
  height: 0.4rem;
  background: #e3e3e3;
  border-radius: 50%;
  margin-left: 20px;
  min-width: 30px;
  min-height: 30px;
}
.pagerBox .swiper_but img,
.pagerBox .swiper_but svg {
  width: 0.22rem;
  height: auto;
}
.pagerBox .swiper_but:hover {
  background-color: var(--active_color);
  border-color: var(--active_color);
}
.pagerBox .swiper_but:hover svg path {
  fill: #fff;
}
.pagerBox .swiper_but:hover i {
  color: #FFFFFF;
}
.pagerBox .swiper_but.prev {
  margin-right: 20px;
  margin-left: 0;
}
.pagerBox .swiper_but.prev img,
.pagerBox .swiper_but.prev svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.pagerBox .layui-laypage a,
.pagerBox .layui-laypage button,
.pagerBox .layui-laypage input,
.pagerBox .layui-laypage select,
.pagerBox .layui-laypage span {
  border: 0;
}
.pagerBox .layui-laypage .layui-laypage-curr em {
  color: var(--active_color);
  background: none;
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.text_c {
  text-align: center;
}
.color_FFF {
  color: #FFFFFF !important;
}
.color_FFF * {
  color: #FFFFFF !important;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.pager_box {
  width: 100%;
  height: auto;
  --widthNum: 0.5rem;
  --berCor: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
.pager_box .swiperbtn {
  width: var(--widthNum);
  height: var(--widthNum);
  border-radius: 50%;
  border: 1px solid var(--berCor);
  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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 38px;
  min-width: 38px;
}
.pager_box .swiperbtn i {
  color: var(--berCor);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pager_box .swiperbtn:hover {
  opacity: 0.7;
}
.pager_box.black {
  --widthNum: 0.48rem;
  border: 0;
}
.pager_box.black .swiperbtn {
  background: #f0f0f0;
}
.pager_box.black .swiperbtn i {
  color: #000;
}
.pager_box.black .swiperbtn:hover {
  opacity: 1;
  background: var(--active_color);
}
.pager_box.black .swiperbtn:hover i {
  color: #FFFFFF;
}
@media (max-width:990px) {
  .pager_box {
    display: none;
  }
}
.swiper_btn {
  --widthNum: 0.5rem;
  width: var(--widthNum);
  height: var(--widthNum);
  background: #FFFFFF;
  border: 1px solid #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;
  border-radius: 100px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper_btn:hover {
  background: var(--active_color);
  color: #FFFFFF;
  border: 1px solid var(--active_color);
}
.swiper_btn.bg_ededed {
  background: #ededed;
}
.swiper_btn.bg_ededed:hover {
  background: var(--active_color);
}
.swiper_btn.bor_ededed {
  border: 1px solid #ededed;
}
@media (max-width:990px) {
  .swiper_btn {
    display: none;
  }
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------ less 正文 */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- 首页 */
.idx_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_banner .center_box {
  width: 100%;
  height: 100%;
  position: absolute;
  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;
  padding-bottom: 0.83rem;
  max-width: 1345px;
  margin: auto;
  pointer-events: none;
  overflow: hidden;
}
.idx_banner .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  pointer-events: initial;
}
.idx_banner .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  max-width: 74.5%;
  position: relative;
  z-index: 1;
}
.idx_banner .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_banner .center_box .content .swiper_box ul li .conterInfo {
  width: 100%;
  height: auto;
}
.idx_banner .center_box .content .swiper_box ul li .conterInfo .t1 {
  color: #FFFFFF;
  font-weight: 700;
  line-height: calc(60 / 52);
}
.idx_banner .center_box .content .pager_box {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  width: auto;
  height: auto;
  margin: 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;
  pointer-events: initial;
}
.idx_banner .center_box .content .item_box {
  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;
  gap: 20px;
  margin-top: 0.6rem;
  position: relative;
  z-index: 2;
}
.idx_banner .center_box .content .item_box .item {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #FFFFFF;
  padding: 0.1rem 0.4rem;
  min-height: 40px;
  gap: 0.2rem;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.idx_banner .center_box .content .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--active_color);
  z-index: -1;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.idx_banner .center_box .content .item_box .item .icon img {
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.idx_banner .center_box .content .item_box .item .word {
  font-size: var(--font18);
  font-weight: 500;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.idx_banner .center_box .content .item_box .item:hover::after,
.idx_banner .center_box .content .item_box .item.active::after {
  width: 100%;
}
.idx_banner .center_box .content .item_box .item:hover .word,
.idx_banner .center_box .content .item_box .item.active .word {
  color: #FFFFFF;
}
.idx_banner .center_box .content .item_box .item:hover .icon img,
.idx_banner .center_box .content .item_box .item.active .icon img {
  filter: brightness(0) invert(1);
}
.idx_banner .swiper_img {
  width: 100%;
  height: auto;
  background: #000000;
  overflow: hidden;
}
.idx_banner .swiper_img ul li {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_img ul li .img_w100 img {
  height: 100vh;
  object-fit: cover;
}
.idx_banner .swiper_img ul li .img_w100 .wap {
  min-height: 400px;
  height: auto;
}
.idx_banner .swiper_img ul li.swiper-slide-active .img_w100 img {
  animation: scale 1s linear;
}
@media (max-width:990px) {
  .idx_banner .center_box {
    padding-bottom: 20px;
  }
  .idx_banner .center_box .content .item_box {
    gap: 10px;
    display: none;
  }
  .idx_banner .center_box .content .item_box .item {
    padding: 5px;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .idx_banner .center_box .content .item_box .item .word {
    font-size: 12px;
    text-align: center;
  }
  .idx_banner .center_box .content .item_box .item .icon {
    width: 5px;
    display: none;
  }
  .idx_banner .idxPageHide span {
    background: #FFFFFF;
    opacity: 0.5;
  }
  .idx_banner .center_box .content .swiper_box ul li .conterInfo .t1 {
    text-align: center;
  }
  .idx_banner .center_box .content .pager_box {
    display: none;
  }
  .idx_banner .center_box .content .swiper_box {
    max-width: unset !important;
  }
}
.idx_quality {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.15rem;
  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;
  gap: 0.15rem;
}
.idx_quality .content_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.idx_quality .content_box .center_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 1rem;
}
.idx_quality .content_box .center_box .content {
  width: 100%;
  height: auto;
  pointer-events: initial;
}
.idx_quality .content_box .center_box .content .t1 {
  line-height: calc(52 / 48);
  font-weight: 700;
}
.idx_quality .content_box .center_box .content .t2 {
  font-weight: 700;
  margin-top: 0.6rem;
}
.idx_quality .content_box .center_box .content .idx_more {
  margin-top: 0.35rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_quality .content_box .img_w100 {
  position: relative;
  z-index: 1;
}
.idx_quality .content_box .img_w100 img {
  max-height: 100vh;
  object-fit: cover;
}
.idx_quality .content_box .img_w100 .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.idx_quality .content_box .img_w100 .item_box .item {
  width: 2px;
  height: 2px;
  position: absolute;
  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;
  pointer-events: initial;
  cursor: pointer;
}
.idx_quality .content_box .img_w100 .item_box .item i {
  position: absolute;
  width: 25px;
  height: 25px;
  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;
  color: #FFFFFF;
  background: var(--active_color);
  border-radius: 50%;
  font-size: var(--font14);
  line-height: 1;
  padding-top: 1px;
}
.idx_quality .content_box .img_w100 .item_box .item i::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: -1;
  background: var(--active_color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 50%;
  opacity: 0.2;
}
.idx_quality .content_box .img_w100 .item_box .item i:hover::after {
  transform: scale(2);
  opacity: 0;
}
.idx_quality .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 50px 20px;
  display: none;
}
.idx_quality .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_quality .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_quality .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: auto;
  pointer-events: initial;
}
.idx_quality .swiper_box ul li .centerInfo .content .t1 {
  line-height: calc(52 / 48);
  font-weight: 700;
  text-align: start !important;
  font-size: 0.35rem;
}
.idx_quality .swiper_box ul li .centerInfo .content .t2 {
  font-weight: 700;
  margin-top: 0.3rem;
  text-align: start !important;
  font-size: 0.3rem;
}
.idx_quality .swiper_box ul li .centerInfo .content .idx_more {
  margin-top: 0.35rem;
  width: 100%;
  height: auto;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.idx_quality .swiper_box ul li .centerInfo .img_w100 {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.idx_quality .swiper_box ul li .centerInfo .img_w100 img {
  width: 100%;
  height: auto;
}
.idx_quality .swiper_box ul li .centerInfo .img_w100 .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.idx_quality .swiper_box ul li .centerInfo .img_w100 .item_box .item {
  width: 2px;
  height: 2px;
  position: absolute;
  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;
  pointer-events: initial;
  cursor: pointer;
}
.idx_quality .swiper_box ul li .centerInfo .img_w100 .item_box .item i {
  position: absolute;
  width: 25px;
  height: 25px;
  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;
  color: #FFFFFF;
  background: var(--active_color);
  border-radius: 50%;
  font-size: var(--font14);
  line-height: 1;
  padding-top: 1px;
}
.idx_quality .swiper_box ul li .centerInfo .img_w100 .item_box .item i::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  z-index: -1;
  background: var(--active_color);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-radius: 50%;
  opacity: 0.2;
}
.idx_quality .swiper_box ul li .centerInfo .img_w100 .item_box .item i:hover::after {
  transform: scale(2);
  opacity: 0;
}
@media (max-width:990px) {
  .idx_quality .content_box {
    display: none;
  }
  .idx_quality .swiper_box {
    display: block !important;
  }
}
.idx_power {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.15rem;
}
.idx_power .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
}
.idx_power .swiper_box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #00000052 10%, #00000000 50%);
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_power .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_power .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  max-height: 100vh;
  overflow: hidden;
  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;
  position: relative;
  z-index: 1;
}
.idx_power .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  --color_num: #000000;
  padding-bottom: 10px;
  position: absolute;
  top: 1rem;
}
.idx_power .swiper_box ul li .centerInfo .word_box .t1 {
  font-size: var(--font52);
  color: var(--color_num);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #FFFFFF;
}
.idx_power .swiper_box ul li .centerInfo .word_box .t2 {
  margin-top: 0.2rem;
  font-size: var(--font18);
  color: var(--color_num);
  color: #FFFFFF;
}
.idx_power .swiper_box ul li.swiper-slide-active .centerInfo::after {
  width: 0;
}
.idx_power .swiper_box ul li.swiper-slide-active .centerInfo::before {
  width: 0;
}
.idx_power .center_box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0.45rem;
  left: 0;
  z-index: 2;
}
.idx_power .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.58rem;
  --color_num: #FFFFFF;
  --number: 10s;
}
.idx_power .center_box .item_box .item {
  width: 100%;
  height: auto;
  padding-top: 0.2rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.idx_power .center_box .item_box .item::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color_num);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.idx_power .center_box .item_box .item::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--active_color);
  transform: translateY(-50%);
}
.idx_power .center_box .item_box .item .t1 {
  font-size: var(--font24);
  opacity: 0.7;
  color: var(--color_num);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}
.idx_power .center_box .item_box .item .t2 {
  margin-top: 0.1rem;
  opacity: 0.7;
  font-size: var(--font14);
  color: var(--color_num);
}
.idx_power .center_box .item_box .item.active::before {
  width: 100%;
  transition: all var(--number) linear;
}
.idx_power .center_box .item_box .item.active .t1 {
  opacity: 1;
}
.idx_power .center_box .item_box .item.active .t2 {
  opacity: 1;
}
@media (max-width:990px) {
  .idx_power {
    padding-bottom: 50px;
  }
  .idx_power .center_box {
    display: none;
  }
  .idx_power .swiper_box::after {
    display: none;
  }
  .idx_power .swiper_box ul li .centerInfo .word_box {
    position: relative;
    z-index: 1;
    top: unset !important;
    margin-top: 0.4rem;
  }
  .idx_power .swiper_box ul li .centerInfo .word_box .t1,
  .idx_power .swiper_box ul li .centerInfo .word_box .t2 {
    color: #000000 !important;
  }
}
.idx_application {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  margin-top: -2px;
  overflow: hidden;
  background: url(../images/bg1.jpg) no-repeat top left / cover;
  margin-top: 0.15rem;
}
.idx_application .content_box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 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;
}
.idx_application .content_box .idx_title {
  width: 33.33%;
  padding: 30px 0;
  padding-left: 0.55rem;
}
.idx_application .content_box .idx_title .idx_more {
  margin-top: 1rem;
}
.idx_application .images_con {
  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;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.idx_application .images_con .images {
  width: 53.1%;
  height: 100%;
  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;
}
.idx_application .images_con .images img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .idx_application .content_box {
    position: relative;
  }
  .idx_application .content_box .idx_title {
    width: 100%;
    height: auto;
    padding-left: 0;
  }
  .idx_application .images_con .images {
    width: 100%;
    height: auto;
  }
}
.idx_development {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #dadada;
  --number: 100%;
  --number2: 0;
  margin-top: 0.15rem;
}
.idx_development .developmentCon1,
.idx_development .developmentCon2 {
  width: 100%;
  height: 100vh;
}
.idx_development .developmentCon1 {
  width: 100%;
  z-index: 1;
  transform: translateX(var(--number2));
}
.idx_development .developmentCon1 .center_box {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 1.35rem;
}
.idx_development .developmentCon1 .center_box .content {
  width: 100%;
  height: auto;
}
.idx_development .developmentCon1 .center_box .content .word_box {
  height: auto;
  width: 28.57%;
}
.idx_development .developmentCon1 .center_box .content .word_box * {
  color: #FFFFFF;
}
.idx_development .developmentCon1 .center_box .content .word_box .idx_more {
  margin-top: 0.9rem;
}
.idx_development .developmentCon1 .svg_box {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 10;
  top: 21%;
  left: 0;
  --dashsf: 2750;
}
.idx_development .developmentCon1 .svg_box .svg {
  width: 106%;
  transform: translateX(-3%);
}
.idx_development .developmentCon1 .svg_box .svg svg .line {
  stroke-dasharray: 2750;
  stroke-dashoffset: var(--dashsf);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.idx_development .developmentCon1 .svg_box.active {
  --dashsf: 0;
}
.idx_development .developmentCon1 .img_w100 img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.idx_development .developmentCon2 {
  width: 100%;
  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;
  height: 100vh;
  background: #FFFFFF;
  z-index: 2;
  left: var(--number);
  position: absolute;
  top: 0;
}
.idx_development .developmentCon2 .left_box {
  width: 50%;
  height: auto;
  padding-top: clamp(100px, 1.2rem, 120px);
}
.idx_development .developmentCon2 .left_box .idx_title {
  text-align: center;
}
.idx_development .developmentCon2 .left_box .idx_title .t2 {
  margin-top: 0.2rem;
}
.idx_development .developmentCon2 .left_box .idx_title .idx_more {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.5rem;
}
.idx_development .developmentCon2 .left_box .images {
  width: 100%;
  height: auto;
  margin-top: 1.1rem;
  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;
}
.idx_development .developmentCon2 .left_box .images img {
  max-width: 80.715%;
}
.idx_development .developmentCon2 .right_box {
  width: 50%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_development .developmentCon2 .right_box .idx_title {
  text-align: center;
  width: 100%;
  height: auto;
  position: absolute;
  top: clamp(100px, 1.2rem, 120px);
}
.idx_development .developmentCon2 .right_box .idx_title * {
  color: #FFFFFF;
}
.idx_development .developmentCon2 .right_box .idx_title .t2 {
  margin-top: 0.2rem;
}
.idx_development .developmentCon2 .right_box .idx_title .join {
  width: 100%;
  height: auto;
  margin-top: 1.3rem;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_development .developmentCon2 .right_box .idx_title .join .llie {
  width: 1px;
  height: 2.6rem;
  background: #ffffff;
}
.idx_development .developmentCon2 .right_box .idx_title .join .one {
  width: auto;
  height: auto;
  margin-top: 0.2rem;
}
.idx_development .developmentCon2 .right_box .idx_title .join .one .icon {
  border: 1px solid #FFFFFF;
  border-radius: 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;
}
.idx_development .developmentCon2 .right_box .idx_title .join .one .word {
  font-size: var(--font18);
  margin-top: 0.2rem;
}
.idx_development .developmentCon2 .right_box .images img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
@media (max-width:990px) {
  .idx_development .developmentCon1 .center_box {
    position: relative;
    z-index: 2;
    bottom: 0;
    padding: 40px 0;
  }
  .idx_development .developmentCon1 .center_box .content .word_box {
    width: 100% !important;
  }
  .idx_development .developmentCon1 .img_w100 {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
  }
  .idx_development .developmentCon1 .img_w100 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .idx_development .developmentCon2 {
    position: relative;
    z-index: 1;
    left: 0 !important;
    -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;
    height: auto;
  }
  .idx_development .developmentCon2 .left_box,
  .idx_development .developmentCon2 .right_box {
    width: 100% !important;
    height: auto;
  }
  .idx_development .developmentCon2 .left_box {
    padding: 30px 0 !important;
  }
}
.idx_about {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  margin-top: -2px;
  padding-top: 1.8rem;
  padding-bottom: 4.8rem;
  overflow: hidden;
  background: url(../images/bg2.jpg) no-repeat bottom center / cover;
  margin-top: 0.15rem;
  background-position: center center !important;
}
.idx_about .center_box {
  width: 100%;
  height: auto;
}
.idx_about .center_box .idx_title {
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  padding-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.idx_about .center_box .idx_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #001e56;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.1;
}
.idx_about .center_box .idx_title .word {
  width: 33.33%;
}
.idx_about .center_box .idx_title .idx_more {
  width: auto;
  height: auto;
}
.idx_about .center_box .box_info {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.idx_about .center_box .box_info .left_box {
  width: 54.226%;
}
.idx_about .center_box .box_info .left_box .item_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.idx_about .center_box .box_info .left_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.3rem;
  border-radius: var(--border-radius12);
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.idx_about .center_box .box_info .left_box .item_box .item .number {
  width: 100%;
  height: auto;
  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;
}
.idx_about .center_box .box_info .left_box .item_box .item .number .beat {
  line-height: 1;
  font-weight: 500;
  color: var(--active_color);
}
.idx_about .center_box .box_info .left_box .item_box .item .number .icon {
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 500;
  color: var(--active_color);
}
.idx_about .center_box .box_info .left_box .item_box .item .word_box {
  margin-top: 0.9rem;
  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;
}
.idx_about .center_box .box_info .left_box .item_box .item .word_box .word {
  font-weight: 200;
}
.idx_about .center_box .box_info .left_box .item_box .item .word_box .icon {
  flex-shrink: 0;
  width: 0.37rem;
  min-width: 25px;
}
.idx_about .center_box .box_info .left_box .item_box .item:hover {
  transform: translateY(-10px);
  box-shadow: 0.5px 0.866px 53.1px 5.9px rgba(158, 228, 201, 0.11);
}
.idx_about .center_box .box_info .left_box .item_box .bg_none {
  background: none;
}
.idx_about .center_box .box_info .right_box {
  width: 43.57%;
}
.idx_about .center_box .box_info .right_box .word {
  color: #666666;
  line-height: 1.78;
}
@media (max-width:990px) {
  .idx_about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .idx_about .center_box {
    width: 100%;
    height: auto;
  }
  .idx_about .center_box .idx_title {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 15px;
  }
  .idx_about .center_box .idx_title .word {
    width: 100%;
    height: auto;
  }
  .idx_about .center_box .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .idx_about .center_box .box_info .left_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 10px !important;
  }
  .idx_about .center_box .box_info .left_box .item_box .bg_none {
    display: none;
  }
  .idx_about .center_box .box_info .left_box .item_box .item .word_box {
    margin-top: 10px;
  }
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- 内页 banner */
.ins_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ins_banner .center_box {
  width: 100%;
  height: 100%;
  position: absolute;
  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;
  z-index: 2;
  transform: translateY(-25px);
}
.ins_banner .center_box .word_box {
  width: 100%;
  height: auto;
}
.ins_banner .center_box .word_box .t1 {
  font-weight: 600;
  line-height: 1;
}
.ins_banner .center_box .word_box .t2 {
  margin-top: 0.15rem;
}
.ins_banner .center_box .word_box.max_w43 {
  max-width: 43%;
}
.ins_banner .center_box .input_box {
  width: 100%;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_banner .center_box .input_box * {
  color: #FFFFFF;
}
.ins_banner .center_box .input_box .t1 {
  font-weight: 600;
}
.ins_banner .center_box .input_box .input {
  margin-top: 0.6rem;
  width: 32.93%;
  min-width: 300px;
  background: #FFFFFF;
  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;
  height: 0.63rem;
  min-height: 45px;
  border-radius: 100px;
  overflow: hidden;
}
.ins_banner .center_box .input_box .input input {
  width: 100%;
  height: auto;
  padding: 0 0.3rem;
  border: 0;
  background: none;
  color: #000;
  font-size: var(--font16);
}
.ins_banner .center_box .input_box .input .icon {
  width: 0.87rem;
  min-width: 60px;
  background: var(--active_color);
  flex-shrink: 0;
  border-radius: 100px;
  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;
  cursor: pointer;
}
.ins_banner .center_box .input_box .input .icon i {
  color: #FFFFFF;
}
.ins_banner .item_box {
  position: absolute;
  z-index: 3;
  width: 100%;
  left: 0;
  bottom: 0;
  height: auto;
  padding: 0 60px;
  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;
  gap: 1.5rem;
  background: #00000033;
  backdrop-filter: blur(30px);
}
.ins_banner .item_box .item {
  width: auto;
  height: auto;
  font-size: var(--font16);
  color: #c6c6c6;
  line-height: 1.25;
  padding: 0.2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  z-index: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 50px;
}
.ins_banner .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_banner .item_box .item:hover {
  color: #FFFFFF;
}
.ins_banner .item_box .item.active {
  color: #FFFFFF;
}
.ins_banner .item_box .item.active::after {
  opacity: 1;
}
.ins_banner .item_box.active {
  position: fixed;
  top: var(--header-height);
  left: 0;
  background: #00000049;
  height: 50px;
}
.ins_banner .item_box.active .item {
  height: 100%;
  color: #ebebeb;
}
.ins_banner .item_box.active .item.active {
  color: #FFFFFF;
}
.ins_banner .img_w100 .wap {
  min-height: 70vh;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_banner .center_box .word_box {
    max-width: 100% !important;
    width: 100% !important;
  }
  .ins_banner .center_box .word_box .t2 {
    line-height: 1.5;
  }
  .ins_banner .item_box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    overflow: auto;
  }
  .ins_banner .item_box .item {
    white-space: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
}
.ins_title {
  width: 100%;
  height: auto;
}
.ins_title .t1 {
  font-weight: 700;
  line-height: 1.083;
}
.ins_title .t1 span {
  color: var(--active_color);
  line-height: 1.083;
}
.ins_title .t2 {
  margin-top: 0.15rem;
  opacity: 0.7;
}
.pager_sBox {
  width: 100%;
  position: relative;
  z-index: 1;
}
.pager_sBox .swiper_scrollbar {
  width: 100%;
  height: 8px;
  background: #dddddd;
  position: relative;
  z-index: 1;
}
.pager_sBox .swiper-pagination-progressbar-fill {
  height: 8px;
  background: var(--active_color);
}
.pager_sBox .img_bg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  font-size: 0;
}
.pager_sBox .img_bg img {
  font-size: 0;
  height: 8px;
  object-fit: cover;
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- 关于我们 */
.about_tBox {
  width: 100%;
  height: auto;
  padding-bottom: 0.3rem;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.about_tBox::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #000000;
  opacity: 0.06;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about_tBox .word {
  line-height: 1;
  margin-top: 3px;
  font-size: 15px;
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.95rem;
  overflow: hidden;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.85rem;
  padding-bottom: 1.4rem;
}
.ins_aboutCon1 .center_box .content .box_info {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .content .box_info .left_box {
  width: 50%;
  height: auto;
}
.ins_aboutCon1 .center_box .content .box_info .left_box .ins_title {
  width: 70%;
}
.ins_aboutCon1 .center_box .content .box_info .right_box {
  width: 50%;
  height: auto;
  padding-left: 10px;
}
.ins_aboutCon1 .center_box .content .box_info .right_box .word {
  width: 100%;
  height: auto;
  line-height: 1.625;
  color: #666666;
  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;
  gap: 0.25rem;
}
.ins_aboutCon1 .center_box .content .img_w100 {
  width: 100vw;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50vw);
}
.ins_aboutCon1 .content_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_aboutCon1 .content_img .box_info {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
}
.ins_aboutCon1 .content_img .box_info .item {
  width: 50%;
  height: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  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;
}
.ins_aboutCon1 .content_img .box_info .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 0px;
  background: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.ins_aboutCon1 .content_img .box_info .item.active {
  backdrop-filter: blur(7px);
}
.ins_aboutCon1 .content_img .box_info .item.active::after {
  height: 2.3rem;
  min-height: 100px;
}
.ins_aboutCon1 .content_img .box_info .item .icon {
  width: 0.6rem;
  min-width: 40px;
}
.ins_aboutCon1 .content_img .box_info .item .word {
  width: 43.75%;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutCon1 .content_img .box_info .item .word .t1 {
  margin-top: 0.25rem;
  color: #FFFFFF;
  font-weight: 700;
}
.ins_aboutCon1 .content_img .box_info .item .word .t2 {
  margin-top: 0.2rem;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.03;
}
@media (max-width:990px) {
  .ins_aboutCon1 {
    padding-top: 1rem;
  }
  .ins_aboutCon1 .content_img {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon1 .content_img .box_info {
    position: relative;
    z-index: 2;
  }
  .ins_aboutCon1 .content_img .box_info .item {
    padding: 50px 0;
  }
  .ins_aboutCon1 .content_img .box_info .item .word {
    width: 80%;
  }
  .ins_aboutCon1 .content_img .img_w100 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .ins_aboutCon1 .content_img .img_w100 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.95rem;
  padding-bottom: 1.54rem;
  overflow: hidden;
}
.ins_aboutCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .tit_box {
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  margin-top: 0.6rem;
}
.ins_aboutCon2 .center_box .tit_box .ins_title {
  width: 50%;
}
.ins_aboutCon2 .center_box .tit_box .pager_box {
  width: auto;
}
.ins_aboutCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_aboutCon2 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  background: #f3f3f3;
  border-radius: 0.1rem;
  padding: 0.5rem 0.4rem;
  min-height: 3.9rem;
  --color: #000000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 30%;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .years {
  line-height: 1.03;
  font-weight: 500;
  color: #f3f3f3;
  /* 文字填充色 */
  text-shadow: -1px -1px 0 #aaaab4, 1px -1px 0 #aaaab4, -1px 1px 0 #aaaab4, 1px 1px 0 #aaaab4;
  /* 文字描边色 */
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .word .title {
  line-height: 1.5;
  color: var(--color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .word .list {
  line-height: 1.5;
  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;
  gap: 5px;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .word .list .one {
  font-size: var(--font16);
  color: var(--color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo .word .list .one::after {
  content: "";
  position: absolute;
  right: calc(100% + 7px);
  top: 0.58em;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo:hover {
  --color: #FFFFFF;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo:hover::after {
  height: 100%;
  opacity: 1;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo:hover .years {
  color: #FFFFFF;
  text-shadow: unset !important;
}
.ins_aboutCon2 .center_box .swiper_box ul li .centerInfo:hover .list .one::after {
  background: var(--color);
}
.ins_aboutCon2 .center_box .pager_sBox {
  margin-top: 0.8rem;
}
@media (max-width:990px) {
  .ins_aboutCon2 {
    padding: 1rem 0;
  }
  .ins_aboutCon2 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon2 .center_box .tit_box .ins_title {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon2 .center_box .tit_box .pager_box {
    display: none;
  }
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.95rem;
  padding-bottom: 1.4rem;
  overflow: hidden;
  background: #f3f3f3;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .ins_title {
  margin-top: 0.8rem;
}
.ins_aboutCon3 .center_box .matop0 {
  margin-top: 0;
}
.ins_aboutCon3 .center_box .map_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
  margin-top: -10px;
}
.ins_aboutCon3 .center_box .map_box .word_box {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.ins_aboutCon3 .center_box .map_box .word_box .item_box {
  width: 26.4%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.22rem;
}
.ins_aboutCon3 .center_box .map_box .word_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.3rem 0.2rem;
  border-radius: 0.1rem;
  min-height: 1.5rem;
}
.ins_aboutCon3 .center_box .map_box .word_box .item_box .item .number {
  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;
}
.ins_aboutCon3 .center_box .map_box .word_box .item_box .item .number .beat,
.ins_aboutCon3 .center_box .map_box .word_box .item_box .item .number .icon {
  line-height: 1;
  font-weight: 700;
  color: var(--active_color);
}
.ins_aboutCon3 .center_box .map_box .word_box .item_box .item .word {
  margin-top: 10px;
  line-height: 1;
  color: #999999;
}
.ins_aboutCon3 .center_box .map_box .word_box .item_box .bg_none {
  background: none;
}
.ins_aboutCon3 .center_box .map_box .word_box .t1 {
  color: #000000;
  opacity: 0.2;
  margin-top: 0.48rem;
}
@media (max-width:990px) {
  .ins_aboutCon3 {
    padding: 1rem 0;
  }
  .ins_aboutCon3 .center_box .map_box {
    margin-top: 20px;
  }
  .ins_aboutCon3 .center_box .map_box .word_box {
    position: relative;
    z-index: 1;
    margin-top: 20px;
  }
  .ins_aboutCon3 .center_box .map_box .word_box .item_box {
    width: 100%;
    height: auto;
  }
  .ins_aboutCon3 .center_box .map_box .word_box .item_box .item {
    padding: 20px;
  }
}
.ins_aboutCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.95rem;
  padding-bottom: 2.7rem;
  overflow: hidden;
  background: url(../images/bg3.jpg) no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.ins_aboutCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box * {
  color: #FFFFFF;
}
.ins_aboutCon4 .center_box .about_tBox::after {
  background: #FFFFFF;
  opacity: 0.3;
}
.ins_aboutCon4 .center_box .ins_title {
  margin-top: 0.8rem;
}
.ins_aboutCon4 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem 0.3rem;
  margin-top: 1.4rem;
}
.ins_aboutCon4 .center_box .item_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
}
.ins_aboutCon4 .center_box .item_box .item .icon {
  flex-shrink: 0;
  width: 0.62rem;
  min-width: 40px;
}
.ins_aboutCon4 .center_box .item_box .item .word .t1 {
  font-weight: 700;
  line-height: 1.01;
}
.ins_aboutCon4 .center_box .item_box .item .word .t2 {
  opacity: 0.7;
}
.ins_aboutCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  display: none;
  margin-top: 50px;
}
.ins_aboutCon4 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon4 .center_box .swiper_box ul li .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
}
.ins_aboutCon4 .center_box .swiper_box ul li .item .icon {
  flex-shrink: 0;
  width: 0.62rem;
  min-width: 40px;
}
.ins_aboutCon4 .center_box .swiper_box ul li .item .word .t1 {
  font-weight: 700;
  line-height: 1.01;
}
.ins_aboutCon4 .center_box .swiper_box ul li .item .word .t2 {
  opacity: 0.7;
}
.ins_aboutCon4 .center_box .idxPageHide span {
  background: #FFFFFF;
}
@media (max-width:990px) {
  .ins_aboutCon4 {
    padding: 1rem 0;
  }
  .ins_aboutCon4 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 10px;
    margin-top: 0.5rem;
    display: none !important;
  }
  .ins_aboutCon4 .center_box .item_box .item {
    border: 1px solid #e5e5e533;
    padding: 20px;
    border-radius: 0.1rem;
  }
  .ins_aboutCon4 .center_box .swiper_box {
    display: block !important;
  }
  .ins_aboutCon4 .center_box .swiper_box ul li .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    border: 1px solid #e5e5e533;
    padding: 20px;
    border-radius: 0.1rem;
  }
  .ins_aboutCon4 .center_box .swiper_box ul li .item .t1 {
    margin-top: 0.5rem;
  }
  .ins_aboutCon4 .center_box .swiper_box ul li .item .t2 {
    margin-top: 0.2rem;
  }
}
.ins_aboutCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.95rem;
  overflow: hidden;
  background: url(../images/bg4.jpg) no-repeat top left / cover;
}
.ins_aboutCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .box_info {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .box_info .left_box {
  margin-top: 0.65rem;
  width: 40.55%;
  padding-bottom: 0.5rem;
}
.ins_aboutCon5 .center_box .box_info .left_box .ins_title .t2 {
  margin-top: 0.3rem;
}
.ins_aboutCon5 .center_box .box_info .left_box .content {
  width: 100%;
  height: auto;
  margin-top: 1rem;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .title {
  font-weight: 700;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem 0.36rem;
  margin-top: 0.24rem;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .item_box .item {
  width: 100%;
  height: auto;
  padding-left: 0.3rem;
  padding-right: 0.25rem;
  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: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 0.3rem);
  background: #FFFFFF;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0.5px 0.866px 53.1px 5.9px rgba(158, 228, 201, 0.11);
  border-radius: 0.1rem;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .item_box .item .word {
  width: auto;
  height: 100%;
  padding-top: 0.3rem;
  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;
  font-size: var(--font24);
  font-weight: 500;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .item_box .item .word i {
  width: 6px;
  height: 6px;
  background: #000000;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .item_box .item .images {
  width: 25.2%;
  padding-bottom: 11px;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .item_box .item .images .pb {
  padding-bottom: 137%;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .item_box .item:hover::after {
  background: var(--active_color);
}
.ins_aboutCon5 .center_box .box_info .left_box .content .item_box .item:hover .word {
  color: #FFFFFF;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .item_box .item:hover .word i {
  background: #FFFFFF;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .swiper_box {
  width: 100%;
  height: auto;
  display: none;
  margin-top: 50px;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .swiper_box ul li .item {
  width: 100%;
  height: auto;
  padding-left: 0.3rem;
  padding-right: 0.25rem;
  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: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  cursor: pointer;
  padding-bottom: 0.6rem;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .swiper_box ul li .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 0.8rem);
  background: #FFFFFF;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0.5px 0.866px 53.1px 5.9px rgba(158, 228, 201, 0.11);
  border-radius: 0.1rem;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .swiper_box ul li .item .word {
  width: auto;
  height: 100%;
  padding-top: 0.3rem;
  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;
  font-size: var(--font24);
  font-weight: 500;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .swiper_box ul li .item .word i {
  width: 6px;
  height: 6px;
  background: #000000;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .swiper_box ul li .item .images {
  width: 31.2%;
  padding-bottom: 0;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .swiper_box ul li .item .images .pb {
  padding-bottom: 137%;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .swiper_box ul li .item:hover::after {
  background: var(--active_color);
}
.ins_aboutCon5 .center_box .box_info .left_box .content .swiper_box ul li .item:hover .word {
  color: #FFFFFF;
}
.ins_aboutCon5 .center_box .box_info .left_box .content .swiper_box ul li .item:hover .word i {
  background: #FFFFFF;
}
.ins_aboutCon5 .center_box .box_info .right_box {
  width: 43.889%;
}
@media (max-width:990px) {
  .ins_aboutCon5 .center_box .box_info .left_box .item_box {
    display: none !important;
  }
  .ins_aboutCon5 .center_box .box_info .left_box .swiper_box {
    display: block !important;
  }
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- 案例 */
.ins_caseCon1 {
  width: 100%;
  height: var(--height);
  position: relative;
  z-index: 1;
  overflow: hidden;
  --scale: 0.57;
  --topNum: 85%;
  --opacity: 0;
  --delay: 0.1s;
  --height: 100vh;
}
.ins_caseCon1 .center_box {
  width: 100%;
  height: auto;
  position: absolute;
  top: 1.6rem;
  z-index: 1;
}
.ins_caseCon1 .center_box .idx_title {
  width: 100%;
  height: auto;
  max-width: 54%;
  margin: auto;
}
.ins_caseCon1 .center_box .idx_title .t1 {
  line-height: 1.08;
}
.ins_caseCon1 .images {
  width: 100%;
  height: 100vh;
  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: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transform: scale(var(--scale));
  transform-origin: center var(--topNum);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_caseCon1 .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon1 .swiper_box {
  width: 100%;
  height: auto;
  max-width: 23.95%;
  position: absolute;
  z-index: 3;
  top: 30vh;
  right: 1rem;
  opacity: var(--opacity);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transition-delay: var(--delay);
}
.ins_caseCon1 .swiper_box ul li {
  width: 100%;
  height: auto;
  z-index: 1;
  opacity: 1 !important;
}
.ins_caseCon1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  padding: 1rem 0.5rem;
  border-radius: 0.1rem;
  transform: translateY(-40px) translateX(40px);
  background: #FFFFFF;
  opacity: 0.2;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon1 .swiper_box ul li .centerInfo .icon {
  width: 0.81rem;
  min-width: 40px;
}
.ins_caseCon1 .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.ins_caseCon1 .swiper_box ul li .centerInfo .word .t1 {
  color: var(--active_color);
  font-weight: 600;
}
.ins_caseCon1 .swiper_box ul li .centerInfo .word .t2 {
  margin-top: 0.25rem;
  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;
  gap: 0.15rem;
  line-height: 1.555;
}
.ins_caseCon1 .swiper_box ul li.swiper-slide-next,
.ins_caseCon1 .swiper_box ul li.swiper-slide-prev {
  z-index: 2;
}
.ins_caseCon1 .swiper_box ul li.swiper-slide-next .centerInfo,
.ins_caseCon1 .swiper_box ul li.swiper-slide-prev .centerInfo {
  transform: translateY(-20px) translateX(20px);
  opacity: 0.5;
}
.ins_caseCon1 .swiper_box ul li.swiper-slide-active {
  z-index: 3;
  opacity: 1 !important;
}
.ins_caseCon1 .swiper_box ul li.swiper-slide-active .centerInfo {
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}
@media (max-width:990px) {
  .ins_caseCon1 {
    --scale: 1;
    --topNum: 85%;
    --opacity: 1;
    --delay: 0;
    --height: auto;
    padding: 50px 20px;
  }
  .ins_caseCon1 .center_box {
    position: relative;
    z-index: 2;
    top: 0;
  }
  .ins_caseCon1 .center_box .idx_title {
    max-width: 100%;
    color: #FFFFFF;
  }
  .ins_caseCon1 .images {
    z-index: 1;
    transform-origin: unset !important;
  }
  .ins_caseCon1 .swiper_box {
    z-index: 3;
    position: relative;
    width: 100%;
    height: auto;
    max-width: 100%;
    top: unset !important;
    right: unset !important;
    margin-top: 0.5rem;
  }
  .ins_caseCon1 .swiper_box ul li {
    opacity: 0;
  }
  .ins_caseCon1 .swiper_box ul li .centerInfo {
    transform: translateY(0) translateX(0px) !important;
    opacity: 0;
    padding: 0.4rem;
    padding-bottom: 0.8rem;
  }
  .ins_caseCon1 .swiper_box ul li.swiper-slide-active {
    z-index: 3;
    opacity: 1 !important;
  }
  .ins_caseCon1 .swiper_box ul li.swiper-slide-active .centerInfo {
    opacity: 1;
  }
  .ins_caseCon1 .idxPageHide {
    position: absolute;
    z-index: 4;
    bottom: 60px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    left: 40px;
  }
}
.ins_caseCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.3rem;
  overflow: hidden;
  background: url(../images/bg5.png) no-repeat top left;
  background-size: 100% auto;
}
.ins_caseCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .idx_title {
  width: 100%;
  height: auto;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #e6e6e6;
}
.ins_caseCon2 .center_box .idx_title .t1 {
  width: 34.4%;
  line-height: 1;
}
.ins_caseCon2 .center_box .idx_title .t2 {
  width: 54.83%;
  margin-top: 0;
  line-height: calc(28/18);
  color: #666666;
}
.ins_caseCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.85rem;
  position: relative;
  z-index: 1;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_caseCon2 .center_box .content .item_box {
  position: absolute;
  width: auto;
  height: auto;
  z-index: 2;
  top: 0;
  left: 0;
}
.ins_caseCon2 .center_box .content .item_box .item {
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-left: 20px;
  position: relative;
  z-index: 1;
}
.ins_caseCon2 .center_box .content .item_box .item::after {
  content: '';
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 9px;
  height: 9px;
  background: #222222;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon2 .center_box .content .item_box .item.active {
  color: var(--active_color);
}
.ins_caseCon2 .center_box .content .item_box .item.active::after {
  background-color: var(--active_color);
}
.ins_caseCon2 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  max-width: 88.5%;
}
.ins_caseCon2 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_caseCon2 .center_box .content .swiper_box ul li .centerInfo .pb {
  padding-bottom: 47.5%;
}
@media (max-width:990px) {
  .ins_caseCon2 .center_box .content .item_box {
    display: none;
  }
  .ins_caseCon2 .center_box .content .swiper_box {
    max-width: 100%;
  }
}
.ins_caseCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.6rem;
  padding-bottom: 1.25rem;
  overflow: hidden;
}
.ins_caseCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon3 .center_box .tit_box {
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_caseCon3 .center_box .tit_box .ins_title {
  width: 50%;
}
.ins_caseCon3 .center_box .tit_box .pager_box {
  width: auto;
}
.ins_caseCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.9rem;
}
.ins_caseCon3 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #f7f7f7;
  padding: 0.5rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 20%;
  background: var(--active_color);
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 0.3rem;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo .word_box .t1 {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo .word_box .t2 {
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.12rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  color: #999999;
  margin-top: 0.1rem;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo .word_box .t2 i {
  display: block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 1px;
  height: 12px;
  background: #cbcbcb;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo .word_box .t2 span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo .images {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 107.8%;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo .images .pb .ab {
  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;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo .images .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo:hover::after {
  height: 100%;
  opacity: 1;
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo:hover .images .pb .ab img {
  transform: scale(1.03);
}
.ins_caseCon3 .center_box .swiper_box ul li .centerInfo:hover .t1 {
  color: var(--active_color);
  font-weight: 600;
}
@media (max-width:990px) {
  .ins_caseCon3 .center_box .swiper_box ul li .centerInfo .images .pb {
    padding-bottom: 70.8%;
  }
}
.ins_caseCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.25rem;
  padding-bottom: 0.95rem;
  overflow: hidden;
  background: #f7f7f7;
}
.ins_caseCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon4 .center_box .tit_box {
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_caseCon4 .center_box .tit_box .ins_title {
  width: 50%;
}
.ins_caseCon4 .center_box .tit_box .pager_box {
  width: auto;
}
.ins_caseCon4 .center_box .tit_box .pager_box .swiperbtn {
  background: #FFFFFF;
}
.ins_caseCon4 .center_box .tit_box .pager_box .swiperbtn:hover {
  background: var(--active_color);
}
.ins_caseCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.ins_caseCon4 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #FFFFFF;
  overflow: hidden;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 48.5%;
  padding: 0.8rem;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box .t1 {
  font-weight: 600;
  line-height: 1.33;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box .t2 {
  margin-top: 0.5rem;
  color: #666666;
  line-height: 1.75;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box .item_box {
  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;
  margin-top: 0.85rem;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box .item_box .item {
  width: auto;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box .item_box .item .number {
  line-height: 1;
  font-weight: 600;
  color: var(--active_color);
  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;
  gap: 5px;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box .item_box .item .number span,
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box .item_box .item .number img {
  transform: translateY(-7px);
  display: block;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box .item_box .item .number img {
  width: 0.26rem;
  min-width: 15px;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box .item_box .item .word {
  font-size: var(--font16);
  color: #666666;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .images {
  width: 51.5%;
  height: auto;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .images .img {
  width: 100%;
  height: 100%;
}
.ins_caseCon4 .center_box .swiper_box ul li .centerInfo .images .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_caseCon4 .center_box .tit_box .ins_title {
    width: 100%;
  }
  .ins_caseCon4 .center_box .swiper_box ul li .centerInfo {
    gap: 0;
  }
  .ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box {
    padding: 0.4rem;
  }
  .ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box .t2 {
    max-height: 125px;
    overflow: auto;
  }
  .ins_caseCon4 .center_box .swiper_box ul li .centerInfo .word_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
.ins_caseCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_caseCon5 .center_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  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;
  padding-top: 1.5rem;
}
.ins_caseCon5 .center_box .content {
  width: 55.55%;
  text-align: center;
  margin: auto;
}
.ins_caseCon5 .center_box .content .idx_more {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.65rem;
}
.ins_caseCon5 .center_box .content .idx_more .more {
  padding: 0.16rem 0.34rem;
}
.ins_caseCon5 .img_w100 {
  width: 100%;
  height: auto;
}
.ins_caseCon5 .img_w100 img {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_caseCon5 .center_box .content {
    width: 100%;
    text-align: start;
  }
  .ins_caseCon5 .center_box .content .idx_more {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_caseCon5 .img_w100 img {
    min-height: 70vh;
  }
}
.ins_caseCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.85rem;
  padding-bottom: 1.6rem;
}
.ins_caseCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon6 .center_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_caseCon6 .center_box .idx_title .t2 {
  color: #333333;
  margin-top: 0.15rem;
}
.ins_caseCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem 0.48rem;
}
.ins_caseCon6 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_caseCon6 .center_box .item_box .item .images {
  width: 100%;
  height: auto;
}
.ins_caseCon6 .center_box .item_box .item .images .pb {
  padding-bottom: 62%;
}
.ins_caseCon6 .center_box .item_box .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon6 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.ins_caseCon6 .center_box .item_box .item .word_box .t1 {
  font-weight: 600;
  color: #000000;
}
.ins_caseCon6 .center_box .item_box .item .word_box .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
  color: var(--active_color);
  font-weight: 700;
}
.ins_caseCon6 .center_box .item_box .item .word_box .t2 .t3 {
  font-weight: 500;
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- 产品 */
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.4rem;
  padding-bottom: 2rem;
}
.ins_productCon1 .center_box {
  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;
}
.ins_productCon1 .center_box .content_box {
  width: 72.94%;
  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;
  gap: 1.2rem;
}
.ins_productCon1 .center_box .content_box .content {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .content_box .content .sub_title {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productCon1 .center_box .content_box .content .sub_title .t1 {
  font-weight: 600;
}
.ins_productCon1 .center_box .content_box .content .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem 0.5rem;
  margin-top: 0.55rem;
}
.ins_productCon1 .center_box .content_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .content_box .content .item_box .item .images {
  width: 100%;
  height: auto;
  background: #f3f3f3;
  border: 1px solid #f3f3f3;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .content_box .content .item_box .item .images .pb {
  padding-bottom: 109.5%;
}
.ins_productCon1 .center_box .content_box .content .item_box .item .images .pb .ab {
  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;
}
.ins_productCon1 .center_box .content_box .content .item_box .item .images .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .content_box .content .item_box .item .word_box {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 0.5rem;
  padding: 0 0.4rem;
}
.ins_productCon1 .center_box .content_box .content .item_box .item .word_box .t1 {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .content_box .content .item_box .item .word_box .t2 {
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.12rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  color: #999999;
  margin-top: 0.1rem;
}
.ins_productCon1 .center_box .content_box .content .item_box .item .word_box .t2 i {
  display: block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 1px;
  height: 12px;
  background: #cbcbcb;
}
.ins_productCon1 .center_box .content_box .content .item_box .item .word_box .t2 span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productCon1 .center_box .content_box .content .item_box .item:hover .images .pb .ab img {
  transform: scale(1.04);
}
.ins_productCon1 .center_box .content_box .content .item_box .item:hover .word_box .t1 {
  color: var(--active_color);
  font-weight: 600;
}
.ins_productCon1 .center_box .select_box {
  width: 19.05%;
  height: 100%;
  position: sticky;
  top: var(--header-height);
  padding-left: 0.4rem;
}
.ins_productCon1 .center_box .select_box .item_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .select_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .select_box .item_box .item .sub_title {
  background: #f3f3f3;
  padding: 0.25rem 0.35rem;
  line-height: 1;
  padding-right: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
}
.ins_productCon1 .center_box .select_box .item_box .item .list {
  padding: 0 0.4rem;
  margin-top: 0.4rem;
  padding-bottom: 0.4rem;
  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;
  gap: 0.2rem;
}
.ins_productCon1 .center_box .select_box .item_box .item .list .one {
  font-size: var(--font18);
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
}
.ins_productCon1 .center_box .select_box .item_box .item .list .one.active {
  color: var(--active_color);
  text-decoration: underline;
}
.ins_productCon1 .center_box .select_box .item_box .item:hover .sub_title {
  color: var(--active_color);
}
.ins_productCon1 .center_box .select_box .item_box .item.active .sub_title {
  background: var(--active_color);
  color: #FFFFFF;
}
@media (max-width:990px) {
  .ins_productCon1 .center_box {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_productCon1 .center_box .content_box {
    width: 100%;
    height: auto;
  }
  .ins_productCon1 .center_box .content_box .content .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .ins_productCon1 .center_box .content_box .content .item_box .item .images .pb {
    padding-bottom: 60%;
  }
  .ins_productCon1 .center_box .select_box {
    display: none;
  }
}
.ins_productDateCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.67rem;
  background: url(../images/bg7.jpg) no-repeat top left;
  background-size: 100% auto;
}
.ins_productDateCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productDateCon1 .center_box .box_info {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_productDateCon1 .center_box .box_info .word_box {
  width: 50%;
  padding-left: 0.7rem;
}
.ins_productDateCon1 .center_box .box_info .word_box .word {
  width: 100%;
  height: auto;
}
.ins_productDateCon1 .center_box .box_info .word_box .word .t1 {
  line-height: 1.03;
  font-weight: 600;
}
.ins_productDateCon1 .center_box .box_info .word_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  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;
  gap: 0.15rem;
}
.ins_productDateCon1 .center_box .box_info .word_box .list .t1 {
  padding-left: 20px;
  position: relative;
  z-index: 1;
}
.ins_productDateCon1 .center_box .box_info .word_box .list .t1::after {
  content: '';
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #222;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productDateCon1 .center_box .box_info .word_box .ins_more {
  margin-top: 1rem;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.23rem;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.ins_productDateCon1 .center_box .box_info .word_box .ins_more .more {
  width: auto;
  height: 0.5rem;
  min-height: 40px;
  min-width: 170px;
  padding: 0.08rem 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.15rem;
  -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;
  border-radius: 100px;
  border: 2px solid #222222;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productDateCon1 .center_box .box_info .word_box .ins_more .more img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productDateCon1 .center_box .box_info .word_box .ins_more .more:hover {
  color: #FFFF;
  background: var(--active_color);
  border-color: var(--active_color);
}
.ins_productDateCon1 .center_box .box_info .word_box .ins_more .more:hover img {
  filter: brightness(0) invert(1);
}
.ins_productDateCon1 .center_box .box_info .content {
  width: 50%;
  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;
  position: relative;
  z-index: 1;
}
.ins_productDateCon1 .center_box .box_info .content .swiper_box {
  width: 71.5%;
  overflow: hidden;
}
.ins_productDateCon1 .center_box .box_info .content .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_productDateCon1 .center_box .box_info .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productDateCon1 .center_box .box_info .content .swiper_box ul li .centerInfo .pb {
  padding-bottom: 91%;
}
.ins_productDateCon1 .center_box .box_info .content .idxPageShow {
  position: absolute;
  bottom: 0.4rem;
  z-index: 2;
}
.ins_productDateCon1 .center_box .box_info .content .idxPageShow span {
  width: 22px;
  height: 4px;
  border-radius: 100px;
}
.ins_productDateCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #FFFFFF;
  box-shadow: 0.5px 0.866px 63px 7px rgba(38, 36, 39, 0.05);
  border-radius: 0.2rem;
}
.ins_productDateCon1 .center_box .item_box .item {
  width: 100%;
  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-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;
  padding: 0.5rem 0.2rem;
  border-left: 1px solid #f0f0f0;
}
.ins_productDateCon1 .center_box .item_box .item .icon {
  width: 0.45rem;
  min-width: 30px;
}
.ins_productDateCon1 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.ins_productDateCon1 .center_box .item_box .item:first-child {
  border: 0;
}
@media (max-width:990px) {
  .ins_productDateCon1 {
    background-size: cover;
    padding: 1rem 0;
    padding-top: 1.5rem;
  }
  .ins_productDateCon1 .center_box .box_info .word_box {
    padding: 0 !important;
  }
  .ins_productDateCon1 .center_box .box_info .word_box .ins_more {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .ins_productDateCon1 .center_box .box_info .content .swiper_box {
    width: 100% !important;
    height: auto;
  }
  .ins_productDateCon1 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .ins_productDateCon1 .center_box .item_box .item {
    border-bottom: 1px solid #f0f0f0;
    padding: 0.4rem;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .ins_productDateCon1 .center_box .item_box .item:first-child {
    border-bottom: 1px solid #f0f0f0;
  }
}
.ins_productDateCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.1rem;
  padding-bottom: 0.9rem;
}
.ins_productDateCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_productDateCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0.9rem;
  gap: 0.3rem;
  overflow: hidden;
}
.ins_productDateCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  --num: clamp(50px, 0.9rem, 90px);
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 0.6rem;
  padding-top: 0.3rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-align: center;
}
.ins_productDateCon2 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: #f6f6f6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productDateCon2 .center_box .item_box .item::before {
  content: '';
  position: absolute;
  bottom: 20px;
  right: calc(0.15rem * -1);
  width: 1px;
  height: 100%;
  background: #f6f6f6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productDateCon2 .center_box .item_box .item .icon {
  width: var(--num);
  height: var(--num);
  background: #fafafa;
  border-radius: 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;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productDateCon2 .center_box .item_box .item .icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productDateCon2 .center_box .item_box .item .word {
  margin-top: 0.3rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productDateCon2 .center_box .item_box .item i {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(0.19rem) translateY(15%);
  width: 7px;
  height: 7px;
  background: #f6f6f6;
  display: block;
  border-radius: 50%;
}
.ins_productDateCon2 .center_box .item_box .item:hover .icon {
  background: var(--active_color);
}
.ins_productDateCon2 .center_box .item_box .item:hover .icon img {
  filter: brightness(0) invert(1);
}
.ins_productDateCon2 .center_box .item_box .item:hover .word {
  color: var(--active_color);
  font-weight: 500;
}
@media (max-width:990px) {
  .ins_productDateCon2 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .ins_productDateCon2 .center_box .item_box .item {
    padding: 0.2rem 0.2rem;
    border: 1px solid #e5e5e5;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    gap: 0.2rem;
    border-radius: 0.14rem;
  }
  .ins_productDateCon2 .center_box .item_box .item::after,
  .ins_productDateCon2 .center_box .item_box .item::before {
    opacity: 0;
  }
  .ins_productDateCon2 .center_box .item_box .item i {
    opacity: 0;
  }
  .ins_productDateCon2 .center_box .item_box .item .word {
    margin-top: 0;
  }
}
.ins_productDateCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
  overflow: hidden;
  background: url(../images/bg8.jpg) no-repeat top left;
  background-size: 100% auto;
}
.ins_productDateCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_productDateCon3 .center_box .images {
  width: 88.5%;
  margin: auto;
  margin-top: 0.55rem;
}
.ins_productDateCon4 {
  width: 100%;
  height: auto;
  padding-top: 0.96rem;
  padding-bottom: 0.88rem;
  background: #f9f9f9;
  overflow: hidden;
}
.ins_productDateCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_productDateCon4 .center_box .images_box {
  width: 50%;
}
.ins_productDateCon4 .center_box .images_box .swiper_img {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0.9rem;
}
.ins_productDateCon4 .center_box .images_box .swiper_img ul li {
  width: 0;
  height: auto;
}
.ins_productDateCon4 .center_box .images_box .swiper_img ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productDateCon4 .center_box .images_box .swiper_img ul li .centerInfo .pb {
  padding-bottom: 73%;
}
.ins_productDateCon4 .center_box .word_box {
  width: 43.61%;
  border-radius: 10px;
  overflow: hidden;
}
.ins_productDateCon4 .center_box .word_box .swiper_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  overflow: hidden;
}
.ins_productDateCon4 .center_box .word_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_productDateCon4 .center_box .word_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productDateCon4 .center_box .word_box .swiper_box ul li .centerInfo .title {
  width: 100%;
  height: auto;
  min-height: 0.9rem;
  padding: 20px 0.4rem;
  background: #f1fdf8;
  font-size: var(--font30);
  color: var(--active_color);
  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;
  font-weight: 600;
}
.ins_productDateCon4 .center_box .word_box .swiper_box ul li .centerInfo .list {
  width: 100%;
  height: auto;
  padding: 0px 0.4rem;
}
.ins_productDateCon4 .center_box .word_box .swiper_box ul li .centerInfo .list .one {
  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;
  gap: 0.3rem;
  padding: 0.215rem 0;
  border-bottom: 1px dashed #cccccc;
}
.ins_productDateCon4 .center_box .word_box .swiper_box ul li .centerInfo .list .one .name {
  width: auto;
  height: auto;
  font-weight: 500;
  flex-shrink: 0;
  max-width: 50%;
}
.ins_productDateCon4 .center_box .word_box .swiper_box ul li .centerInfo .list .one .price {
  width: fit-content;
  font-weight: 500;
  text-align: end;
}
.ins_productDateCon4 .center_box .word_box .swiper_box ul li .centerInfo .list .one:last-child {
  border: 0;
}
.ins_productDateCon4 .center_box .item_box {
  width: fit-content;
  max-width: 50%;
  height: auto;
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.3rem;
}
.ins_productDateCon4 .center_box .item_box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.06;
}
.ins_productDateCon4 .center_box .item_box .item {
  font-size: var(--font18);
  color: #787878;
  cursor: pointer;
  position: relative;
  z-index: 1;
  padding-bottom: 0.15rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_productDateCon4 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_productDateCon4 .center_box .item_box .item.active {
  color: var(--active_color);
}
.ins_productDateCon4 .center_box .item_box .item.active::after {
  opacity: 1;
}
.ins_productDateCon4 .center_box .item_box .item:hover {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_productDateCon4 .center_box .word_box .swiper_box {
    max-width: 100%;
  }
  .ins_productDateCon4 .center_box .item_box {
    display: none;
  }
}
.ins_productDateCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.68rem;
}
.ins_productDateCon5 .center_box {
  width: 100%;
  height: auto;
}
.ins_productDateCon5 .center_box .tit_box {
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_productDateCon5 .center_box .tit_box .ins_title {
  width: 50%;
}
.ins_productDateCon5 .center_box .tit_box .pager_box {
  width: auto;
}
.ins_productDateCon5 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_productDateCon5 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_productDateCon5 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_productDateCon5 .center_box .swiper_box ul li .centerInfo .images {
  width: 100%;
  height: auto;
}
.ins_productDateCon5 .center_box .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 53%;
}
.ins_productDateCon5 .center_box .swiper_box ul li .centerInfo .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productDateCon5 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
}
.ins_productDateCon5 .center_box .swiper_box ul li .centerInfo .ins_more_img {
  margin-top: 0.2rem;
}
.ins_productDateCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.1rem;
  padding-bottom: 0.9rem;
}
.ins_productDateCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_productDateCon6 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 0.6rem;
  margin-top: 0.9rem;
}
.ins_productDateCon6 .center_box .item_box .item {
  background: #f7f7f7;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-height: 0.95rem;
  padding: 0.3rem 0.5rem;
  gap: 0.3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 500;
  font-size: var(--font18);
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
.ins_productDateCon6 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .ins_productDateCon6 {
    padding: 1rem 0;
  }
  .ins_productDateCon6 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 0.4rem;
  }
}
.ins_productDateCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.6rem;
}
.ins_productDateCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_productDateCon7 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_productDateCon7 .center_box .content .table {
  width: 100%;
  height: auto;
  overflow: auto;
}
.ins_productDateCon7 .center_box .content .table .tr {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-width: 800px;
  overflow: hidden;
}
.ins_productDateCon7 .center_box .content .table .tr .td {
  width: 100%;
  height: auto;
  text-align: center;
  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;
  min-height: 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 10px 0;
}
.ins_productDateCon7 .center_box .content .table .tr .td:first-child {
  min-width: 23.167%;
  padding: 10px 0.5rem;
  text-align: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  border: 0 !important;
}
.ins_productDateCon7 .center_box .content .table .tr:nth-child(2n) {
  background: #f2f2f2;
  font-size: var(--font15);
}
.ins_productDateCon7 .center_box .content .table .tr.tab_tit {
  width: 100%;
  background: var(--active_color);
  padding: 0.15rem 0;
  min-height: 0.56rem;
  font-size: var(--font18);
  color: #FFFFFF;
}
.ins_productDateCon7 .center_box .content .table .tr.tab_tit .td {
  min-height: unset;
}
.ins_productDateCon7 .center_box .content .table .tr.tab_sub {
  width: 100%;
  height: auto;
  min-height: 0.51rem;
  padding: 0.12rem 0;
  background: #f0fbf7;
  font-weight: 600;
}
.ins_productDateCon7 .center_box .content .table .tr.tab_sub .td {
  min-height: unset;
}
.ins_productDateCon7 .center_box .content .table .tr.border_f .td {
  border-left: 1px solid #e5e5e5;
}
.ins_productDateCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.3rem;
}
.ins_productDateCon8 .center_box {
  width: 100%;
  height: auto;
}
.ins_productDateCon8 .center_box .tit_box {
  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;
  gap: 0.4rem;
}
.ins_productDateCon8 .center_box .tit_box .pager_box {
  flex-shrink: 0;
  width: fit-content;
}
.ins_productDateCon8 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.ins_productDateCon8 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_productDateCon8 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: 100%;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding-bottom: 1.55rem;
  position: relative;
  z-index: 1;
  border-radius: 0.1rem;
  overflow: hidden;
}
.ins_productDateCon8 .center_box .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #f7f7f7;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.1rem;
  overflow: hidden;
  transform: translateY(calc(1.45rem / 2));
}
.ins_productDateCon8 .center_box .swiper_box ul li .centerInfo .icon {
  width: 1.45rem;
  border-radius: 50%;
  background: var(--active_color);
  border: 0.15rem solid #FFFFFF;
}
.ins_productDateCon8 .center_box .swiper_box ul li .centerInfo .title {
  font-size: var(--font26);
  font-weight: 600;
  margin-top: 0.5rem;
}
.ins_productDateCon8 .center_box .swiper_box ul li .centerInfo .one {
  margin-top: 0.55rem;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.12rem;
  padding: 0 10px;
}
.ins_productDateCon8 .center_box .swiper_box ul li .centerInfo .one.matop {
  margin-top: 0.3rem;
}
.ins_productDateCon8 .center_box .swiper_box ul li .centerInfo .one p {
  text-align: center;
  font-size: var(--font20);
  color: #222222;
  padding-left: 10px;
  position: relative;
  z-index: 1;
}
.ins_productDateCon8 .center_box .swiper_box ul li .centerInfo .one p::after {
  content: '';
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 4px;
  height: 4px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50px;
}
.ins_productDateCon8 .center_box .swiper_box ul li .centerInfo .number {
  font-family: "ORBITRON";
  font-size: 1.7rem;
  font-weight: 900;
  color: #666666;
  opacity: 0.06;
  position: absolute;
  bottom: 0;
  transform: translateY(35%);
}
/* --------------------------------------------------------------- */
/* ---------------------------------f6f6f6------------------------------ */
/* --------------------------------------------------------------- 案例 */
.ins_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.28rem;
  background: #f8f8f8;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: url(../images/bg9.jpg) no-repeat top left;
  background-size: auto 100%;
  background-color: #FFFFFF;
}
.ins_contactCon1 .center_box .word_box {
  width: 49.7223%;
  height: auto;
  padding: 0.7rem;
}
.ins_contactCon1 .center_box .word_box .t1 {
  font-weight: 600;
}
.ins_contactCon1 .center_box .word_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  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;
  gap: 0.2rem;
}
.ins_contactCon1 .center_box .word_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.ins_contactCon1 .center_box .word_box .list .one .icon {
  width: auto;
  height: auto;
  flex-shrink: 0;
  width: 0.26rem;
  min-height: 18px;
}
.ins_contactCon1 .center_box .word_box .list .one .word {
  font-size: var(--font20);
  font-weight: 500;
}
.ins_contactCon1 .center_box .images {
  width: 50.2777%;
}
.ins_contactCon1 .center_box .images img {
  border-radius: 6px;
  overflow: hidden;
}
/* =================== */
.ins_contactCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.63rem;
  padding-bottom: 1rem;
  background: #f8f8f8;
}
.ins_contactCon2 .center_box {
  width: 100%;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1.2rem;
  background: url(../images/bg10.jpg) no-repeat bottom right;
  background-size: 100% auto;
  background-color: #FFFFFF;
}
.ins_contactCon2 .center_box .idx_title {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .idx_title .t2 {
  margin-top: 0.26rem;
  opacity: 0.6;
}
.ins_contactCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  padding: 0 0.56rem;
}
.ins_contactCon2 .center_box .content .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.ins_contactCon2 .center_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .content .item_box .item input,
.ins_contactCon2 .center_box .content .item_box .item textarea {
  font-size: var(--font14);
}
.ins_contactCon2 .center_box .content .item_box .item input {
  width: 100%;
  height: 0.57rem;
  min-height: 45px;
  border-radius: 100px;
  border: 1px solid #e5e5e5;
  padding: 0 0.3rem;
}
.ins_contactCon2 .center_box .content .item_box .item textarea {
  width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
  padding: 0.3rem;
  border-radius: 0.28rem;
  min-height: 2.9rem;
}
.ins_contactCon2 .center_box .content .item_box .grid_4 {
  grid-column: span 4;
}
.ins_contactCon2 .center_box .content .term {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  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: 0.15rem;
  cursor: pointer;
  --color: #999999;
}
.ins_contactCon2 .center_box .content .term i {
  width: 18px;
  height: 18px;
  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: 2px solid var(--color);
  border-radius: 6px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.ins_contactCon2 .center_box .content .term i::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon2 .center_box .content .term input {
  display: none;
}
.ins_contactCon2 .center_box .content .term span {
  color: #999999;
  font-size: var(--font16);
}
.ins_contactCon2 .center_box .content .term a {
  color: var(--active_color);
}
.ins_contactCon2 .center_box .content .term.active {
  --color: var(--active_color);
}
.ins_contactCon2 .center_box .content .button {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_contactCon2 .center_box .content .button button {
  width: 4.25rem;
  height: 0.57rem;
  min-height: 40px;
  border-radius: 100px;
  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: var(--active_color);
  color: #FFFFFF;
  border: 0;
  font-size: var(--font16);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_contactCon2 .center_box .content .button button:hover {
  opacity: 0.8;
}
.ins_contactCon2 .center_box .content .max_w {
  max-width: 83.4%;
  margin: auto;
}
.ins_contactCon2 .center_box .content .max_w .item_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem 0.5rem;
}
.ins_contactCon2 .center_box .content .max_w .item_box .grid_4 {
  grid-column: span 3;
}
@media (max-width:990px) {
  .ins_contactCon2 .center_box .content .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 0.3rem !important;
  }
  .ins_contactCon2 .center_box .content .item_box .grid_4 {
    grid-column: unset !important;
  }
  .ins_contactCon2 .center_box .content .max_w {
    max-width: 100% !important;
    margin: auto;
  }
}
.ins_casedateCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.98rem;
  padding-bottom: 1.24rem;
}
.ins_casedateCon1 .center_box {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_casedateCon1 .center_box .word_box {
  width: 40.85%;
  height: auto;
  padding: 0.7rem 0;
}
.ins_casedateCon1 .center_box .word_box .t1 {
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed #e5e5e5;
}
.ins_casedateCon1 .center_box .word_box .list {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  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;
  gap: 0.2rem;
}
.ins_casedateCon1 .center_box .word_box .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.ins_casedateCon1 .center_box .word_box .list .one .icon {
  width: auto;
  height: auto;
  flex-shrink: 0;
  width: 0.26rem;
  min-height: 18px;
}
.ins_casedateCon1 .center_box .word_box .list .one .word {
  font-size: var(--font20);
  font-weight: 500;
}
.ins_casedateCon1 .center_box .images {
  width: 50%;
  padding-left: 10px;
}
.ins_casedateCon1 .center_box .images img {
  border-radius: 6px;
  overflow: hidden;
}
.ins_casedateCon2 {
  padding-top: 1.25rem;
  padding-bottom: 1.45rem;
  background: #f8f8f8;
}
.ins_casedateCon2 .center_box .swiper_box ul li .centerInfo {
  background: #FFFFFF;
}
.ins_casedateCon2 .pager_box .swiperbtn {
  background: #FFFFFF;
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- ESG */
.ins_esgCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.23rem;
  padding-bottom: 1.38rem;
}
.ins_esgCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_esgCon1 .center_box .content {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_esgCon1 .center_box .content .swiper_info {
  width: 88.72%;
  margin: auto;
  position: relative;
  z-index: 1;
}
.ins_esgCon1 .center_box .content .swiper_info .img_w100 {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.ins_esgCon1 .center_box .content .swiper_info .img_w100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_esgCon1 .center_box .content .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  padding-top: 1.35rem;
  overflow: hidden;
}
.ins_esgCon1 .center_box .content .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_esgCon1 .center_box .content .swiper_info .swiper_box ul li .centerInfo {
  width: 81.1%;
  margin: auto;
  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;
}
.ins_esgCon1 .center_box .content .swiper_info .swiper_box ul li .centerInfo .images {
  width: 34.58%;
  padding: 0.24rem;
  background: #FFFFFF;
}
.ins_esgCon1 .center_box .content .swiper_info .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 135%;
}
.ins_esgCon1 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box {
  width: 57.1%;
  padding-top: 0.7rem 0;
}
.ins_esgCon1 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box .t1 {
  font-weight: 600;
  line-height: 1.14;
}
.ins_esgCon1 .center_box .content .swiper_info .swiper_box ul li .centerInfo .word_box .t2 {
  margin-top: 0.2rem;
}
@media (max-width:990px) {
  .ins_esgCon1 .center_box .content .swiper_box ul li .centerInfo {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.4rem;
  }
  .ins_esgCon1 .center_box .content .swiper_box ul li .centerInfo .images,
  .ins_esgCon1 .center_box .content .swiper_box ul li .centerInfo .word_box {
    width: 100% !important;
    height: auto;
  }
}
.ins_esgCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_esgCon2 .center_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 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;
}
.ins_esgCon2 .center_box .word_box {
  width: 47.52%;
  height: auto;
}
.ins_esgCon2 .center_box .word_box .t1 {
  line-height: 1.13;
  font-weight: 600;
  color: #FFFFFF;
}
.ins_esgCon2 .center_box .word_box .t2 {
  margin-top: 0.42rem;
  color: #FFFFFF;
}
.ins_esgCon2 .center_box .word_box .item_box {
  width: fit-content;
  height: auto;
  margin-top: 0.7rem;
  padding: 10px;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.ins_esgCon2 .img_w100 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
@media (max-width:990px) {
  .ins_esgCon2 {
    padding: 1rem 0;
  }
  .ins_esgCon2 .center_box {
    position: relative;
    z-index: 2;
  }
  .ins_esgCon2 .center_box .word_box {
    width: 100%;
  }
  .ins_esgCon2 .img_w100 {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .ins_esgCon2 .img_w100 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_esgCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.3rem;
  padding-bottom: 1.64rem;
}
.ins_esgCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_esgCon3 .center_box .ins_title {
  width: 100%;
  height: auto;
}
.ins_esgCon3 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.55rem;
}
.ins_esgCon3 .center_box .content .word {
  font-weight: 600;
}
.ins_esgCon3 .center_box .content .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.4rem;
}
.ins_esgCon3 .center_box .content .item_box .item {
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  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;
  min-width: 2.15rem;
  height: 0.52rem;
  min-height: 40px;
  padding: 0.1rem 0.25rem;
  font-size: var(--font16);
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_esgCon3 .center_box .content .item_box .item:hover {
  color: var(--active_color);
}
.ins_esgCon3 .center_box .content .item_box .item.active {
  background: var(--active_color);
  color: #FFFFFF;
  border: 1px solid var(--active_color);
}
.ins_esgCon3 .center_box .content .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.ins_esgCon3 .center_box .content .swiper_box ul li {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_esgCon3 .center_box .content .swiper_box ul li.swiper-slide-active {
  opacity: 1;
}
.ins_esgCon3 .center_box .content .swiper_box .centerInfo {
  width: 100%;
  height: auto;
}
.ins_esgCon3 .center_box .content .swiper_box .centerInfo .swiper_img {
  width: 100%;
  height: auto;
}
.ins_esgCon3 .center_box .content .swiper_box .centerInfo .swiper_img .images {
  width: 100%;
  height: auto;
}
.ins_esgCon3 .center_box .content .swiper_box .centerInfo .swiper_img .images .pb {
  padding-bottom: 59.8%;
  border-radius: 0.2rem;
  overflow: hidden;
}
.ins_esgCon3 .center_box .content + .content {
  margin-top: 1.5rem;
}
@media (max-width:990px) {
  .ins_esgCon3 .center_box .content .item_box {
    overflow: auto;
  }
  .ins_esgCon3 .center_box .content .item_box * {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .ins_esgCon3 .center_box .content .item_box *::-webkit-scrollbar {
    display: none;
  }
  .ins_esgCon3 .center_box .content .item_box .item {
    white-space: nowrap;
    width: auto;
    padding: 0 20px;
    min-width: unset;
  }
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- 新闻 */
.ins_newCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.54rem;
  overflow: hidden;
  padding-bottom: 0.85rem;
}
.ins_newCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.65rem;
}
.ins_newCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  display: block;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 67.5%;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .images .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  padding: 0 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.3rem;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .word_box .time {
  width: 80px;
  background: var(--active_color);
  padding: 0.25rem 0.1rem;
  text-align: center;
  transform: translateY(-50%);
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .word_box .time .t1 {
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .word_box .time .t2 {
  color: #FFFFFF;
  margin-top: 0.1rem;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo .word_box .word {
  font-size: var(--font24);
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.2rem 0;
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo:hover .images .pb .ab img {
  transform: scale(1.03);
}
.ins_newCon1 .center_box .swiper_box ul li .centerInfo:hover .word_box .word {
  color: var(--active_color);
}
.ins_newCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fafafa;
  padding-top: 1.25rem;
  padding-bottom: 1rem;
}
.ins_newCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newCon2 .center_box .item_box {
  width: 100%;
  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;
  gap: 0.9rem;
  margin-top: 0.8rem;
}
.ins_newCon2 .center_box .item_box .item {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid #00b87000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item .images {
  width: 31.388%;
}
.ins_newCon2 .center_box .item_box .item .images .pb {
  padding-bottom: 67.4%;
}
.ins_newCon2 .center_box .item_box .item .word_box {
  width: 65%;
}
.ins_newCon2 .center_box .item_box .item .word_box .t1 {
  font-weight: 600;
  color: var(--text_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item .word_box .time {
  color: var(--text_color);
  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: 0.14rem;
  font-size: var(--font16);
  margin-top: 0.2rem;
}
.ins_newCon2 .center_box .item_box .item .word_box .t2 {
  color: #999999;
  line-height: 1.625;
  margin-top: 0.3rem;
}
.ins_newCon2 .center_box .item_box .item .word_box .new_more {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.ins_newCon2 .center_box .item_box .item .word_box .new_more .more {
  min-width: 1.5rem;
  width: fit-content;
  height: 0.5rem;
  padding: 10px 20px;
  min-height: 40px;
  border: 1px solid var(--active_color);
  color: var(--active_color);
  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: 100px;
  font-size: var(--font18);
  font-weight: 600;
  gap: 0.16rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newCon2 .center_box .item_box .item:hover {
  border: 1px solid #00b870;
  box-shadow: 0px 0px 10px 0px rgba(28, 69, 185, 0.1);
}
.ins_newCon2 .center_box .item_box .item:hover .word_box .t1 {
  color: var(--active_color);
}
.ins_newCon2 .center_box .item_box .item:hover .word_box .new_more .more {
  background: var(--active_color);
  color: #FFFFFF;
}
@media (max-width:990px) {
  .ins_newCon2 .center_box .item_box .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .ins_newCon2 .center_box .item_box .item .images,
  .ins_newCon2 .center_box .item_box .item .word_box {
    width: 100% !important;
  }
  .ins_newCon2 .center_box .item_box .item .word_box .t1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .ins_newCon2 .center_box .item_box .item .word_box .t2 {
    max-height: 110px;
    overflow: auto;
  }
}
.ins_newDateCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fafafa;
  padding-bottom: 1.55rem;
}
.ins_newDateCon1 .center_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.8rem;
  padding-bottom: 1.2rem;
}
.ins_newDateCon1 .center_box .ins_title {
  text-align: center;
  margin: auto;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e5e5e5;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_newDateCon1 .center_box .ins_title .t1 {
  width: 75%;
}
.ins_newDateCon1 .center_box .ins_title .share {
  margin-top: 0.25rem;
  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: 0.35rem;
}
.ins_newDateCon1 .center_box .ins_title .share .time {
  color: var(--text_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: auto;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.14rem;
  font-size: var(--font16);
  color: #999999;
}
.ins_newDateCon1 .center_box .ins_title .share .time img {
  opacity: 0.3;
}
.ins_newDateCon1 .center_box .ins_title .share .icon_box {
  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: 0.2rem;
}
.ins_newDateCon1 .center_box .ins_title .share .icon_box .one {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  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;
}
.ins_newDateCon1 .center_box .ins_title .share .icon_box .one .icon {
  width: auto;
  height: auto;
  opacity: 0.3;
  display: block;
}
.ins_newDateCon1 .center_box .ins_title .share .icon_box .one .images {
  position: absolute;
  width: max-content;
  max-width: 120px;
  height: auto;
  top: 100%;
  border: 1px solid #e5e5e5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newDateCon1 .center_box .ins_title .share .icon_box .one:hover .images {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newDateCon1 .center_box .content {
  width: 100%;
  height: auto;
  padding-top: 0.6rem;
  padding-bottom: 0.8rem;
}
.ins_newDateCon1 .center_box .content p {
  font-size: var(--font16);
  line-height: 1.875;
  min-height: 0.5em;
  color: #222222;
}
@media (max-width:990px) {
  .ins_newDateCon1 {
    padding-top: 0.4rem;
  }
  .ins_newDateCon1 .center_box {
    padding: 0;
    background: none;
  }
  .ins_newDateCon1 .center_box .ins_title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .ins_newDateCon1 .center_box .ins_title .t1 {
    width: 100%;
    text-align: start;
  }
}
.newPerBox {
  width: 100%;
  height: auto;
  padding-top: 0.9rem;
  border-top: 1px solid #e5e5e5;
  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: 0.4rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.newPerBox .next {
  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;
  gap: 0.15rem;
}
.newPerBox .next .prne {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 5px;
}
.newPerBox .next .prne span {
  flex-shrink: 0;
}
.newPerBox .next .prne a {
  color: #999999;
  text-decoration: underline;
}
.newPerBox .more {
  width: auto;
  height: auto;
  flex-shrink: 0;
}
.newPerBox .more img,
.newPerBox .more span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
}
.newPerBox .more span {
  font-size: var(--font18);
}
.newPerBox .more a {
  background: var(--active_color);
  padding: 0 0.19rem;
  height: 0.5rem;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.15rem;
  -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;
  color: #FFFFFF;
  border-radius: 100px;
  min-width: 140px;
}
.newPerBox .more a:hover img {
  transform: translateX(-3px);
}
.newPerBox .more a:hover span {
  transform: translateX(3px);
}
@media (max-width:990px) {
  .newPerBox {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .newPerBox .next {
    gap: 0.5rem;
  }
  .newPerBox .next .prne {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- OEM */
.ins_oemCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_oemCon1 .center_box {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_oemCon1 .center_box .item_box {
  width: 31.66%;
  padding: 0.5rem 0.45rem;
  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;
  gap: 1rem;
}
.ins_oemCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
}
.ins_oemCon1 .center_box .item_box .item .icon {
  width: 0.77rem;
  height: 0.77rem;
  min-width: 0.5rem;
  min-height: 0.5rem;
  margin: auto;
  background: var(--active_color);
  border-radius: 50%;
}
.ins_oemCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 0.25rem;
}
.ins_oemCon1 .center_box .item_box .item .word_box .t1 {
  font-weight: 600;
}
.ins_oemCon1 .center_box .item_box .item .word_box .t2 {
  color: #666666;
  margin-top: 0.15rem;
}
.ins_oemCon1 .center_box .images_box {
  width: 36%;
  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;
}
.ins_oemCon1 .center_box .images_box .line {
  width: 85.5%;
  position: absolute;
  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;
  z-index: 1;
}
.ins_oemCon1 .center_box .images_box .line i {
  width: 100%;
  position: absolute;
  padding-bottom: 100%;
  display: block;
  border-radius: 50%;
  border: 1px solid #000;
  opacity: 0.04;
  animation: 10s run_sc linear infinite;
}
.ins_oemCon1 .center_box .images_box .line i:nth-child(2) {
  width: 160%;
  padding-bottom: 160%;
}
.ins_oemCon1 .center_box .images_box .line i:nth-child(3) {
  width: 222%;
  padding-bottom: 222%;
}
.ins_oemCon1 .center_box .images_box .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.ins_oemCon1 .center_box .images_box .images .pb {
  padding-bottom: 144%;
}
.ins_oemCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  display: none;
}
.ins_oemCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_oemCon1 .center_box .swiper_box ul li .item {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.12rem;
  padding: 0.4rem 0.4rem;
}
.ins_oemCon1 .center_box .swiper_box ul li .item .icon {
  width: 0.77rem;
  height: 0.77rem;
  min-width: 0.5rem;
  min-height: 0.5rem;
  margin: auto;
  background: var(--active_color);
  border-radius: 50%;
  flex-shrink: 0;
  margin: unset;
}
.ins_oemCon1 .center_box .swiper_box ul li .item .word_box {
  width: 100%;
  height: auto;
  text-align: start;
  margin-top: 0;
}
.ins_oemCon1 .center_box .swiper_box ul li .item .word_box .t1 {
  font-weight: 600;
}
.ins_oemCon1 .center_box .swiper_box ul li .item .word_box .t2 {
  color: #666666;
  margin-top: 0.15rem;
}
@media (max-width:990px) {
  .ins_oemCon1 {
    padding: 1rem 0;
  }
  .ins_oemCon1 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.2rem;
  }
  .ins_oemCon1 .center_box .item_box {
    width: 100%;
    height: auto;
    padding: 0;
    gap: 0.2rem;
    display: none !important;
  }
  .ins_oemCon1 .center_box .item_box .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 0.4rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.12rem;
    padding: 0.4rem 0.4rem;
  }
  .ins_oemCon1 .center_box .item_box .item .icon {
    flex-shrink: 0;
    margin: unset;
  }
  .ins_oemCon1 .center_box .item_box .item .word_box {
    text-align: start;
    margin-top: 0;
  }
  .ins_oemCon1 .center_box .images_box {
    width: 100%;
  }
  .ins_oemCon1 .center_box .images_box .pb {
    padding-bottom: 90% !important;
  }
  .ins_oemCon1 .center_box .swiper_box {
    display: block !important;
  }
}
.ins_oemCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-image: url(../images/bg13.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.ins_oemCon2 .center_box {
  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;
}
.ins_oemCon2 .center_box * {
  color: #FFFFFF;
}
.ins_oemCon2 .center_box .item_box {
  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;
  min-height: 100vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.56rem;
}
.ins_oemCon2 .center_box .item_box .item {
  width: 20.6%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 1rem 0.6rem;
  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;
  gap: 0.52rem;
  position: relative;
  z-index: 1;
}
.ins_oemCon2 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50vh);
  right: 0;
  width: 1px;
  height: 100vh;
  background: #FFF;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_oemCon2 .center_box .item_box .item .images {
  width: auto;
  height: auto;
  flex-shrink: 0;
}
.ins_oemCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: 100%;
  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;
}
.ins_oemCon2 .center_box .item_box .item .word_box .t1 {
  font-size: var(--font24);
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_oemCon2 .center_box .item_box .item .word_box .t2 {
  font-size: var(--font18);
  line-height: 1.66;
  opacity: 0;
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transform: translateX(50px);
}
.ins_oemCon2 .center_box .item_box .item .word_box .more_box {
  margin-top: 0.74rem;
  position: relative;
  z-index: 1;
}
.ins_oemCon2 .center_box .item_box .item .word_box .more_box .more {
  min-width: 140px;
  width: fit-content;
  padding: 0 0.3rem;
  height: 0.5rem;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
  -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: var(--active_color);
  border-radius: 100px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_oemCon2 .center_box .item_box .item .word_box .more_box .icon {
  width: 0.47rem;
  height: 0.47rem;
  min-width: 38px;
  min-height: 38px;
  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: 2px solid #FFFFFF;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_oemCon2 .center_box .item_box .item.active {
  width: 38.2%;
  padding: 0;
  padding-right: 0.6rem;
}
.ins_oemCon2 .center_box .item_box .item.active .word_box .word .t1 {
  font-size: var(--font36);
}
.ins_oemCon2 .center_box .item_box .item.active .word_box .word .t2 {
  opacity: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  transform: translateX(0%);
}
.ins_oemCon2 .center_box .item_box .item.active .word_box .more_box .more {
  opacity: 1;
  visibility: visible;
}
.ins_oemCon2 .center_box .item_box .item.active .word_box .more_box .icon {
  opacity: 0;
  visibility: hidden;
}
.ins_oemCon2 .center_box .item_box .item:last-child::after {
  opacity: 0;
}
.ins_oemCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  display: none;
}
.ins_oemCon2 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_oemCon2 .center_box .swiper_box ul li .item {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  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;
  gap: 0.52rem;
  position: relative;
  z-index: 1;
}
.ins_oemCon2 .center_box .swiper_box ul li .item .images {
  width: auto;
  height: auto;
  flex-shrink: 0;
}
.ins_oemCon2 .center_box .swiper_box ul li .item .word_box {
  width: 100%;
  height: 100%;
  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;
}
.ins_oemCon2 .center_box .swiper_box ul li .item .word_box .t1 {
  font-size: var(--font36);
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_oemCon2 .center_box .swiper_box ul li .item .word_box .t2 {
  font-size: var(--font18);
  line-height: 1.66;
  margin-top: 0.25rem;
}
.ins_oemCon2 .center_box .swiper_box ul li .item .word_box .more_box {
  margin-top: 0.74rem;
  position: relative;
  z-index: 1;
}
.ins_oemCon2 .center_box .swiper_box ul li .item .word_box .more_box .more {
  min-width: 140px;
  width: fit-content;
  padding: 0 0.3rem;
  height: 0.5rem;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
  -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: var(--active_color);
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .ins_oemCon2 {
    padding: 1rem 0;
  }
  .ins_oemCon2 .center_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_oemCon2 .center_box .item_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    display: none;
  }
  .ins_oemCon2 .center_box .swiper_box {
    display: block !important;
  }
}
.ins_oemCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
  padding-bottom: 1.5rem;
}
.ins_oemCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_oemCon3 .center_box .swiper_info {
  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;
  gap: 0.6rem;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}
.ins_oemCon3 .center_box .swiper_info::after {
  content: '';
  position: absolute;
  top: 14px;
  z-index: 1;
  left: 50%;
  transform: translateX(-50vw);
  width: 100vw;
  height: 1px;
  background: linear-gradient(90deg, #00000000 0%, #e8e8e8 30%, #e8e8e8 70%, #00000000 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_oemCon3 .center_box .swiper_info .swiper_item {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ins_oemCon3 .center_box .swiper_info .swiper_item ul li {
  width: 0;
  height: auto;
}
.ins_oemCon3 .center_box .swiper_info .swiper_item ul li .centerInfo {
  cursor: pointer;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_oemCon3 .center_box .swiper_info .swiper_item ul li .centerInfo .icon {
  width: 26px;
  height: 26px;
  background: #ebebeb;
  border-radius: 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;
  border: 3px solid #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_oemCon3 .center_box .swiper_info .swiper_item ul li .centerInfo .icon i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #757575;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_oemCon3 .center_box .swiper_info .swiper_item ul li .centerInfo .word {
  margin-top: 0.15rem;
  font-size: var(--font16);
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_oemCon3 .center_box .swiper_info .swiper_item ul li.active .centerInfo .icon {
  background: var(--active_color);
}
.ins_oemCon3 .center_box .swiper_info .swiper_item ul li.active .centerInfo .icon i {
  background: #FFFF;
}
.ins_oemCon3 .center_box .swiper_info .swiper_item ul li.active .centerInfo .word {
  color: var(--active_color);
}
.ins_oemCon3 .center_box .swiper_info .swiper_btn {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transform: translateY(calc((50% - 14px) * -1));
}
.ins_oemCon3 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_oemCon3 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_oemCon3 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 56.69%;
}
.ins_oemCon3 .center_box .swiper_box ul li .centerInfo .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_oemCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.3rem;
  padding-bottom: 1.25rem;
  background: #f7f7f7;
}
.ins_oemCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_oemCon4 .center_box .idx_title {
  width: 100%;
  height: auto;
  padding-bottom: 0.8rem;
}
.ins_oemCon4 .center_box .idx_title .t1 {
  width: 34.4%;
  line-height: 1;
}
.ins_oemCon4 .center_box .idx_title .t2 {
  width: 45%;
  margin-top: 0;
  line-height: calc(27/16);
  color: #333333;
}
.ins_oemCon4 .center_box .swiper_box {
  width: 100%;
  height: auto;
}
.ins_oemCon4 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_oemCon4 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border-radius: 0.15rem;
  overflow: hidden;
}
.ins_oemCon4 .center_box .swiper_box ul li .centerInfo .images {
  width: 100%;
  height: auto;
}
.ins_oemCon4 .center_box .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 75%;
}
.ins_oemCon4 .center_box .swiper_box ul li .centerInfo .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_oemCon4 .center_box .swiper_box ul li .centerInfo .word {
  width: 100%;
  height: auto;
  min-height: 85px;
  padding: 0.25rem 0.3rem;
  text-align: center;
  font-size: var(--font20);
  font-weight: 500;
}
.ins_oemCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_oemCon5 .center_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 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;
}
.ins_oemCon5 .center_box .ins_title .t2 {
  opacity: 0.9;
  line-height: 1.625;
  margin-top: 0.3rem;
}
.ins_oemCon5 .center_box .ins_title {
  max-width: 41%;
}
.ins_oemCon5 .center_box .more_box {
  margin-top: 0.6rem;
  position: relative;
  z-index: 1;
}
.ins_oemCon5 .center_box .more_box .more {
  min-width: 140px;
  width: fit-content;
  padding: 0 0.3rem;
  height: 0.5rem;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
  -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: var(--active_color);
  border-radius: 100px;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .ins_oemCon5 {
    padding: 1rem 0;
  }
  .ins_oemCon5 .center_box {
    position: relative;
    z-index: 1;
  }
  .ins_oemCon5 .img_w100 {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .ins_oemCon5 .img_w100 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.ins_oemCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.35rem;
  --dashsf: 2263;
}
.ins_oemCon6 .center_box {
  width: 100%;
  height: auto;
}
.ins_oemCon6 .center_box .ins_title .t2 {
  opacity: 0.9;
  line-height: 1.625;
  margin-top: 0.3rem;
}
.ins_oemCon6 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_oemCon6 .content .svg_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_oemCon6 .content .svg_box .svgCon1 {
  width: 100%;
  height: auto;
}
.ins_oemCon6 .content .svg_box .svgCon2 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_oemCon6 .content .svg_box .svgCon2 svg .line {
  stroke-dasharray: 2263;
  stroke-dashoffset: var(--dashsf);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.ins_oemCon6 .content .item_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.ins_oemCon6 .content .item_box .item {
  width: 5px;
  height: 5px;
  position: absolute;
  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;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  transform: translateY(26px);
}
.ins_oemCon6 .content .item_box .item .one {
  position: absolute;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -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: 0.15rem;
  bottom: 100%;
  cursor: pointer;
}
.ins_oemCon6 .content .item_box .item .one .number {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  border-radius: 50%;
  border: 4px solid #191919;
  color: #191919;
  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: var(--font24);
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_oemCon6 .content .item_box .item .one .word {
  text-align: center;
  width: 100%;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid #e9e9e9;
  padding: 0.3rem 0.15rem;
  border-radius: 0.1rem;
  max-width: 2.8rem;
  background: #FFFFFF;
  position: relative;
  z-index: 1;
  transform: translateX(7px);
}
.ins_oemCon6 .content .item_box .item .one .word i {
  position: absolute;
  width: 15px;
  height: 15px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  display: block;
  bottom: 0;
  background: #FFFFFF;
  transform: rotate(45deg) translateY(80%);
}
.ins_oemCon6 .content .item_box .item .one .word .icon {
  width: 0.37rem;
  min-width: 25px;
}
.ins_oemCon6 .content .item_box .item .one .word .icon img {
  filter: brightness(0) invert(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_oemCon6 .content .item_box .item .one .word .t1 {
  font-weight: 500;
  margin-top: 0.15rem;
}
.ins_oemCon6 .content .item_box .item .one .word .t2 {
  margin-top: 0.1rem;
  color: #999999;
}
.ins_oemCon6 .content .item_box .item:nth-child(2n) {
  transform: translateY(-26px);
}
.ins_oemCon6 .content .item_box .item:nth-child(2n) .one {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  top: 100%;
  bottom: unset;
}
.ins_oemCon6 .content .item_box .item:nth-child(2n) .one .word {
  transform: translateX(-8px);
}
.ins_oemCon6 .content .item_box .item:nth-child(2n) .one .word i {
  bottom: unset;
  top: 0;
  transform: rotate(45deg) translateY(-80%);
  border: 0;
  border-left: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
}
.ins_oemCon6 .content .item_box .item.active .one .number {
  border-color: var(--active_color);
  color: var(--active_color);
}
.ins_oemCon6 .content .item_box .item.active .one .icon img {
  filter: unset !important;
}
@media (max-width:990px) {
  .ins_oemCon6 {
    padding: 1rem 0;
  }
  .ins_oemCon6 .content .item_box {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: unset;
    left: unset;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
  }
  .ins_oemCon6 .content .item_box .item {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    top: unset !important;
    left: unset !important;
    transform: translateY(0px) !important;
  }
  .ins_oemCon6 .content .item_box .item .one {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    top: unset !important;
    bottom: unset !important;
  }
  .ins_oemCon6 .content .item_box .item .one .number {
    display: none;
  }
  .ins_oemCon6 .content .item_box .item .one .word {
    transform: translateX(0) !important;
    width: 100%;
    height: 100%;
    max-width: unset;
  }
  .ins_oemCon6 .content .item_box .item .one .word i {
    display: none !important;
  }
  .ins_oemCon6 .content .svg_box {
    display: none;
  }
}
.ins_oemCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1rem;
}
.ins_oemCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_oemCon7 .center_box .content {
  width: 100%;
  height: auto;
  max-width: 46%;
}
.ins_oemCon7 .center_box .content .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.26rem;
  margin-top: 0.6rem;
}
.ins_oemCon7 .center_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_oemCon7 .center_box .content .item_box .item input,
.ins_oemCon7 .center_box .content .item_box .item textarea {
  font-size: var(--font14);
}
.ins_oemCon7 .center_box .content .item_box .item input {
  width: 100%;
  height: 0.57rem;
  min-height: 45px;
  border-radius: 100px;
  border: 1px solid #e5e5e5;
  padding: 0 0.3rem;
}
.ins_oemCon7 .center_box .content .item_box .item textarea {
  width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
  padding: 0.3rem;
  border-radius: 0.28rem;
  min-height: 1.45rem;
}
.ins_oemCon7 .center_box .content .item_box .grid_4 {
  grid-column: span 2;
}
.ins_oemCon7 .center_box .content .term {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  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: 0.15rem;
  cursor: pointer;
  --color: #999999;
}
.ins_oemCon7 .center_box .content .term i {
  width: 18px;
  height: 18px;
  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: 2px solid var(--color);
  border-radius: 6px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.ins_oemCon7 .center_box .content .term i::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_oemCon7 .center_box .content .term input {
  display: none;
}
.ins_oemCon7 .center_box .content .term span {
  color: #999999;
  font-size: var(--font16);
}
.ins_oemCon7 .center_box .content .term a {
  color: #999999;
}
.ins_oemCon7 .center_box .content .term a:hover {
  color: var(--active_color);
}
.ins_oemCon7 .center_box .content .term.active {
  --color: var(--active_color);
}
.ins_oemCon7 .center_box .content .button {
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
}
.ins_oemCon7 .center_box .content .button button {
  width: 4.25rem;
  height: 0.57rem;
  min-height: 40px;
  border-radius: 100px;
  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: var(--active_color);
  color: #FFFFFF;
  border: 0;
  font-size: var(--font16);
  cursor: pointer;
}
.ins_oemCon7 .img_w100 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ins_oemCon7 .img_w100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_oemCon7 .center_box .content {
    max-width: 100%;
  }
  .ins_oemCon7 .center_box .content .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .ins_oemCon7 .center_box .content .item_box .grid_4 {
    grid-column: unset;
  }
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- ESG */
.ins_suptfqaCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.6rem;
  padding-bottom: 1.4rem;
  background: #f8f8f8;
}
.ins_suptfqaCon1 .center_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding-top: 1rem;
  padding-bottom: 0.95rem;
}
.ins_suptfqaCon1 .center_box .item_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;
  gap: 0.9rem;
  margin-top: 0.9rem;
  position: relative;
  z-index: 1;
}
.ins_suptfqaCon1 .center_box .item_box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #c8c8c8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.3;
}
.ins_suptfqaCon1 .center_box .item_box .item {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 0.25rem;
  font-size: var(--font18);
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
}
.ins_suptfqaCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_suptfqaCon1 .center_box .item_box .item:hover {
  color: var(--active_color);
}
.ins_suptfqaCon1 .center_box .item_box .item.active {
  color: var(--active_color);
}
.ins_suptfqaCon1 .center_box .item_box .item.active::after {
  opacity: 1;
}
.ins_suptfqaCon1 .center_box .select_box {
  width: 100%;
  height: auto;
  margin-top: 0.77rem;
  padding: 0 0.8rem;
  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;
  gap: 0.3rem;
}
.ins_suptfqaCon1 .center_box .select_box .item {
  width: 100%;
  height: auto;
  padding: 0 0.4rem;
  background: #f7f7f7;
  cursor: pointer;
}
.ins_suptfqaCon1 .center_box .select_box .item .top {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  min-height: 0.8rem;
  padding: 10px 0;
  gap: 0.3rem;
}
.ins_suptfqaCon1 .center_box .select_box .item .top .word {
  font-size: var(--font18);
  font-weight: 500;
}
.ins_suptfqaCon1 .center_box .select_box .item .top .icon {
  width: 0.4rem;
  height: 0.4rem;
  min-width: 30px;
  min-height: 30px;
  background: #FFFFFF;
  border: 1px solid var(--active_color);
  border-radius: 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;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.ins_suptfqaCon1 .center_box .select_box .item .top .icon i {
  font-size: 12px;
  color: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_suptfqaCon1 .center_box .select_box .item .bot {
  width: 100%;
  height: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.7rem;
  border-top: 1px solid #e5e5e5;
  display: none;
}
.ins_suptfqaCon1 .center_box .select_box .item .bot .word {
  width: 100%;
  height: auto;
  line-height: 1.87;
  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;
  gap: 0.25rem;
  color: #666666;
  font-size: var(--font16);
}
.ins_suptfqaCon1 .center_box .select_box .item.active .top .icon {
  background: var(--active_color);
}
.ins_suptfqaCon1 .center_box .select_box .item.active .top .icon i {
  color: #FFFFFF;
  transform: rotate(180deg);
}
@media (max-width:990px) {
  .ins_suptfqaCon1 * * {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .ins_suptfqaCon1 * *::-webkit-scrollbar {
    display: none;
  }
  .ins_suptfqaCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_suptfqaCon1 .center_box .item_box {
    overflow: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding: 0 0.4rem;
    border-bottom: 1px solid #c8c8c856;
  }
  .ins_suptfqaCon1 .center_box .item_box::after {
    opacity: 0;
  }
  .ins_suptfqaCon1 .center_box .item_box .item {
    white-space: nowrap;
  }
  .ins_suptfqaCon1 .center_box .select_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 0.4rem;
    padding: 0.4rem;
  }
  .ins_suptfqaCon1 .center_box .select_box .item .bot .word {
    max-height: 200px;
    overflow: auto;
  }
}
.ins_partnersCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.7rem;
  padding-bottom: 1.7rem;
  overflow: hidden;
}
.ins_partnersCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_partnersCon1 .center_box .word_box {
  width: 38.88%;
  height: auto;
}
.ins_partnersCon1 .center_box .word_box .select_box {
  width: 100%;
  height: auto;
  margin-top: 0.77rem;
  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;
}
.ins_partnersCon1 .center_box .word_box .select_box .item {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-bottom: 1px solid #e8e8e8;
}
.ins_partnersCon1 .center_box .word_box .select_box .item .top {
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.35rem 0;
  gap: 0.3rem;
}
.ins_partnersCon1 .center_box .word_box .select_box .item .top .word {
  font-size: var(--font32);
  font-weight: 700;
  color: #c6c6c6;
}
.ins_partnersCon1 .center_box .word_box .select_box .item .top .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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}
.ins_partnersCon1 .center_box .word_box .select_box .item .top .icon i {
  font-size: var(--font26);
  font-weight: 600;
  color: #cccccc;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_partnersCon1 .center_box .word_box .select_box .item .bot {
  width: 100%;
  height: auto;
  padding-bottom: 0.45rem;
  display: none;
}
.ins_partnersCon1 .center_box .word_box .select_box .item .bot .word {
  width: 100%;
  height: auto;
  line-height: 1.87;
  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;
  gap: 0.25rem;
  color: #666666;
  font-size: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_partnersCon1 .center_box .word_box .select_box .item .bot .word p {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_partnersCon1 .center_box .word_box .select_box .item .bot .more {
  margin-top: 0.5rem;
  width: 100%;
  height: auto;
}
.ins_partnersCon1 .center_box .word_box .select_box .item .bot .more .one {
  width: fit-content;
  min-width: 1.5rem;
  height: 0.5rem;
  min-height: 40px;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.1rem;
  color: #FFFFFF;
  border-radius: 100px;
  background: var(--active_color);
  font-size: var(--font18);
}
.ins_partnersCon1 .center_box .word_box .select_box .item .bot .more .one i {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font18);
}
.ins_partnersCon1 .center_box .word_box .select_box .item .bot .more .one:hover i {
  transform: translateX(10px);
}
.ins_partnersCon1 .center_box .word_box .select_box .item.active .top .word {
  color: var(--active_color);
}
.ins_partnersCon1 .center_box .word_box .select_box .item.active .top .icon i {
  color: var(--active_color);
  transform: rotate(45deg);
}
.ins_partnersCon1 .center_box .images_box {
  width: 48.61%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_partnersCon1 .center_box .images_box .swiper_box {
  width: 100%;
  height: auto;
  max-width: 76.5%;
  position: relative;
  z-index: 2;
}
.ins_partnersCon1 .center_box .images_box .swiper_box ul li {
  width: 0;
}
.ins_partnersCon1 .center_box .images_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  background: none;
}
.ins_partnersCon1 .center_box .images_box .swiper_box ul li .centerInfo::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ccf1e2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateX(20px);
}
.ins_partnersCon1 .center_box .images_box .swiper_box ul li .centerInfo .pb {
  border-radius: 50%;
  overflow: hidden;
  z-index: 8;
}
.ins_partnersCon1 .center_box .images_box .line {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translateY(-50%);
  width: 12.56rem;
  height: 12.56rem;
  z-index: 1;
  border: 1px solid #e7e7e7;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_partnersCon1 .center_box .images_box .line .one {
  width: 20px;
  height: 20px;
  background: var(--active_color);
  border-radius: 50%;
  position: absolute;
  top: 16%;
  left: 11.7%;
}
.ins_partnersCon1 .center_box .images_box .line .one:nth-child(2) {
  top: 81%;
  left: 10.5%;
}
@media (max-width:990px) {
  .ins_partnersCon1 .center_box .word_box {
    position: relative;
    z-index: 1;
  }
  .ins_partnersCon1 .center_box .word_box .select_box {
    margin-top: 0.5rem;
  }
  .ins_partnersCon1 .center_box .images_box {
    z-index: -1;
  }
  .ins_partnersCon1 .center_box .images_box .swiper_box {
    max-width: 100%;
  }
  .ins_partnersCon1 .center_box .images_box .swiper_box ul li .centerInfo {
    border-radius: 0;
  }
  .ins_partnersCon1 .center_box .images_box .swiper_box ul li .centerInfo::after {
    border-radius: 0;
    transform: translateX(10px) translateY(10px);
  }
  .ins_partnersCon1 .center_box .images_box .swiper_box ul li .centerInfo .pb {
    border-radius: 0;
  }
  .ins_partnersCon1 .center_box .images_box .line {
    display: none;
  }
}
.ins_partnersCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  background-image: url(../images/bg16.jpg);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.ins_partnersCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_partnersCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.25rem;
}
.ins_partnersCon2 .center_box .item_box .item {
  width: 11.7%;
  height: 7.7rem;
  position: relative;
  z-index: 1;
  border-radius: 0.25rem;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.ins_partnersCon2 .center_box .item_box .item .images {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_partnersCon2 .center_box .item_box .item .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_partnersCon2 .center_box .item_box .item .word_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ins_partnersCon2 .center_box .item_box .item .word_box .befor {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem 0.3rem;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_partnersCon2 .center_box .item_box .item .word_box .befor .word {
  width: 100%;
  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-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.ins_partnersCon2 .center_box .item_box .item .word_box .befor .word .t1 {
  margin-top: 0.2rem;
  font-weight: 500;
  color: #FFFFFF;
}
.ins_partnersCon2 .center_box .item_box .item .word_box .befor .more {
  margin-top: 2.5rem;
}
.ins_partnersCon2 .center_box .item_box .item .word_box .befor .more i {
  width: 0.47rem;
  min-width: 38px;
  height: 0.47rem;
  min-height: 38px;
  border: 2px solid #FFFFFF;
  border-radius: 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;
  color: #FFFFFF;
  font-weight: 600;
  font-size: var(--font18);
}
.ins_partnersCon2 .center_box .item_box .item .word_box .after {
  opacity: 0;
}
.ins_partnersCon2 .center_box .item_box .item.active {
  width: 44.9%;
}
.ins_partnersCon2 .center_box .item_box .item.active .word_box .befor {
  opacity: 0;
}
.ins_partnersCon2 .center_box .item_box .item.active .word_box .after {
  opacity: 1;
  width: 100%;
  height: auto;
  position: absolute;
  padding: 0.4rem 0.3rem;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.25rem;
}
.ins_partnersCon2 .center_box .item_box .item.active .word_box .after .icon {
  flex-shrink: 0;
}
.ins_partnersCon2 .center_box .item_box .item.active .word_box .after .word .t1 {
  font-weight: 600;
  color: #FFFFFF;
}
.ins_partnersCon2 .center_box .item_box .item.active .word_box .after .word .t2 {
  color: #FFFFFF;
  margin-top: 0.2rem;
}
.ins_partnersCon2 .center_box .swiper_box {
  width: 100%;
  height: auto;
  display: none;
}
@media (max-width:990px) {
  .ins_partnersCon2 {
    border-radius: 0.3rem;
  }
  .ins_partnersCon2 .center_box .item_box {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    display: none;
  }
  .ins_partnersCon2 .center_box .swiper_box {
    display: block !important;
  }
  .ins_partnersCon2 .center_box .swiper_box ul li {
    width: 100%;
    height: auto;
  }
  .ins_partnersCon2 .center_box .swiper_box ul li .centerInfo {
    width: 100%;
    height: auto;
  }
  .ins_partnersCon2 .center_box .swiper_box ul li .centerInfo .after {
    opacity: 1;
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }
  .ins_partnersCon2 .center_box .swiper_box ul li .centerInfo .after .icon {
    flex-shrink: 0;
  }
  .ins_partnersCon2 .center_box .swiper_box ul li .centerInfo .after .word .t1 {
    font-weight: 600;
    color: #FFFFFF;
  }
  .ins_partnersCon2 .center_box .swiper_box ul li .centerInfo .after .word .t2 {
    color: #FFFFFF;
    margin-top: 0.2rem;
  }
}
.ins_partnersCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ins_partnersCon3 .developmentCon2 {
  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;
  background: #FFFFFF;
  z-index: 2;
  left: var(--number);
}
.ins_partnersCon3 .developmentCon2 .left_box {
  width: 50%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_partnersCon3 .developmentCon2 .left_box .idx_title {
  text-align: center;
  width: 100%;
  height: auto;
  position: absolute;
  top: 1.2rem;
  padding: 0 0.4px;
}
.ins_partnersCon3 .developmentCon2 .left_box .idx_title .t2 {
  margin-top: 0.2rem;
}
.ins_partnersCon3 .developmentCon2 .left_box .idx_title .idx_more {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.5rem;
}
.ins_partnersCon3 .developmentCon2 .left_box .idx_title .idx_more a {
  color: #222222;
  padding: 0.16rem 0.23rem;
}
.ins_partnersCon3 .developmentCon2 .left_box .images {
  width: 100%;
  height: auto;
}
.ins_partnersCon3 .developmentCon2 .right_box {
  width: 50%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_partnersCon3 .developmentCon2 .right_box .idx_title {
  text-align: center;
  width: 100%;
  height: auto;
  position: absolute;
  top: 1.2rem;
  padding: 0 0.4px;
}
.ins_partnersCon3 .developmentCon2 .right_box .idx_title .t2 {
  margin-top: 0.2rem;
}
.ins_partnersCon3 .developmentCon2 .right_box .idx_title .idx_more {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.5rem;
}
.ins_partnersCon3 .developmentCon2 .right_box .idx_title .idx_more a {
  color: #FFFFFF;
  background: var(--active_color);
  padding: 0.16rem 0.23rem;
}
.ins_partnersCon3 .developmentCon2 .right_box .images {
  width: 100%;
  height: auto;
}
@media (max-width:990px) {
  .ins_partnersCon3 .developmentCon2 {
    width: 100%;
    height: auto;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_partnersCon3 .developmentCon2 .left_box,
  .ins_partnersCon3 .developmentCon2 .right_box {
    width: 100%;
    height: auto;
  }
}
.ins_partnersCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2.3rem;
}
.ins_partnersCon4 .center_box {
  width: 100%;
  height: auto;
}
.ins_partnersCon4 .center_box .content {
  width: 100%;
  height: auto;
  max-width: 50%;
}
.ins_partnersCon4 .center_box .content .ins_title .t2 {
  margin-top: 0.25rem;
  opacity: 1;
}
.ins_partnersCon4 .center_box .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 1.15rem;
  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: 0.8rem;
}
.ins_partnersCon4 .center_box .content .item_box .item {
  width: 50%;
  height: auto;
}
.ins_partnersCon4 .center_box .content .item_box .item .title {
  width: 100%;
  height: auto;
}
.ins_partnersCon4 .center_box .content .item_box .item .title .t1 {
  font-weight: 600;
  color: var(--active_color);
}
.ins_partnersCon4 .center_box .content .item_box .item .list {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  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;
  gap: 0.2rem;
}
.ins_partnersCon4 .center_box .content .item_box .item .list .one {
  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: 0.14rem;
}
.ins_partnersCon4 .center_box .content .item_box .item .list .one .icon {
  flex-shrink: 0;
  background: #daf4ea;
  border-radius: 50%;
}
.ins_partnersCon4 .center_box .content .item_box .item .list .one .word {
  font-size: var(--font20);
  font-weight: 500;
}
.ins_partnersCon4 .center_box .content .item_box .line {
  width: 1px;
  height: auto;
  border: 1px dashed #e5e5e5;
}
.ins_partnersCon4 .img_w100 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ins_partnersCon4 .img_w100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_partnersCon4 {
    padding: 1rem 0;
  }
  .ins_partnersCon4 .center_box .content {
    max-width: 100%;
  }
  .ins_partnersCon4 .center_box .content .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 0.5rem;
    margin-top: 0.8rem;
  }
  .ins_partnersCon4 .center_box .content .item_box .item {
    width: 100%;
    height: auto;
  }
  .ins_partnersCon4 .center_box .content .item_box .line {
    display: none;
  }
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- ESG */
.ins_warrelCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #f8f8f8;
  padding-top: 0.8rem;
  padding-bottom: 0.6rem;
}
.ins_warrelCon1 .center_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.7rem 0.8rem;
  padding-bottom: 1rem;
}
.ins_warrelCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  overflow: hidden;
}
.ins_warrelCon1 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_warrelCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_warrelCon1 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 132%;
}
.ins_warrelCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #f8f8f8;
  padding-bottom: 0.6rem;
  padding-top: 0.6rem;
}
.ins_warrelCon2 .center_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
}
.ins_warrelCon2 .center_box .search_in {
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.8rem;
  background: #f4f4f4;
}
.ins_warrelCon2 .center_box .search_in .ins_title {
  width: fit-content;
  height: auto;
}
.ins_warrelCon2 .center_box .search_in .search_b {
  width: 5.05rem;
  min-width: 300px;
  height: 0.6rem;
  min-height: 40px;
  background: #FFFFFF;
  border-radius: 100px;
  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: 0.1rem 0.3rem;
  gap: 0.3rem;
}
.ins_warrelCon2 .center_box .search_in .search_b .input {
  width: 100%;
  height: 100%;
}
.ins_warrelCon2 .center_box .search_in .search_b .input input {
  width: 100%;
  height: 100%;
  font-size: var(--font16);
  border: 0;
}
.ins_warrelCon2 .center_box .search_in .search_b .input input::-webkit-input-placeholder,
.ins_warrelCon2 .center_box .search_in .search_b .input input textarea::-webkit-input-placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.ins_warrelCon2 .center_box .search_in .search_b .input input:-moz-placeholder,
.ins_warrelCon2 .center_box .search_in .search_b .input input textarea:-moz-placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.ins_warrelCon2 .center_box .search_in .search_b .input input::-moz-placeholder,
.ins_warrelCon2 .center_box .search_in .search_b .input input textarea::-moz-placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.ins_warrelCon2 .center_box .search_in .search_b .input input:-ms-input-placeholder,
.ins_warrelCon2 .center_box .search_in .search_b .input input textarea:-ms-input-placeholder {
  color: #b8b8b8;
  opacity: 1;
}
.ins_warrelCon2 .center_box .search_in .search_b .icon {
  flex-shrink: 0;
}
.ins_warrelCon2 .center_box .search_in .search_b .icon i {
  font-weight: 600;
  color: var(--active_color);
  font-size: var(--font22);
  cursor: pointer;
}
.ins_warrelCon2 .center_box .content {
  width: 100%;
  height: auto;
  padding: 0.8rem;
  padding-bottom: 0.9rem;
  background: url(../images/bg10.jpg) no-repeat bottom right;
  background-size: 100% auto;
  background-color: #FFFFFF;
}
.ins_warrelCon2 .center_box .content .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.ins_warrelCon2 .center_box .content .item_box .item {
  width: 100%;
  height: auto;
}
.ins_warrelCon2 .center_box .content .item_box .item input,
.ins_warrelCon2 .center_box .content .item_box .item textarea {
  font-size: var(--font14);
}
.ins_warrelCon2 .center_box .content .item_box .item input {
  width: 100%;
  height: 0.57rem;
  min-height: 50px;
  border-radius: 100px;
  border: 1px solid #e5e5e5;
  padding: 0 0.3rem;
}
.ins_warrelCon2 .center_box .content .item_box .item textarea {
  width: 100%;
  height: auto;
  border: 1px solid #e5e5e5;
  padding: 0.3rem;
  border-radius: 0.28rem;
  min-height: 2.4rem;
}
.ins_warrelCon2 .center_box .content .item_box .grid_4 {
  grid-column: span 4;
}
.ins_warrelCon2 .center_box .content .term {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  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: 0.15rem;
  cursor: pointer;
  --color: #999999;
}
.ins_warrelCon2 .center_box .content .term i {
  width: 18px;
  height: 18px;
  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: 2px solid var(--color);
  border-radius: 6px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.ins_warrelCon2 .center_box .content .term i::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_warrelCon2 .center_box .content .term input {
  display: none;
}
.ins_warrelCon2 .center_box .content .term span {
  color: #999999;
  font-size: var(--font16);
}
.ins_warrelCon2 .center_box .content .term a {
  color: #999999;
}
.ins_warrelCon2 .center_box .content .term a:hover {
  color: var(--active_color);
}
.ins_warrelCon2 .center_box .content .term.active {
  --color: var(--active_color);
}
.ins_warrelCon2 .center_box .content .button {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_warrelCon2 .center_box .content .button button {
  width: 4.25rem;
  height: 0.57rem;
  min-height: 40px;
  border-radius: 100px;
  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: var(--active_color);
  color: #FFFFFF;
  border: 0;
  font-size: var(--font16);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_warrelCon2 .center_box .content .button button:hover {
  opacity: 0.8;
}
@media (max-width:990px) {
  .ins_warrelCon2 .center_box .search_in {
    padding: 0.4rem;
  }
  .ins_warrelCon2 .center_box .content {
    padding: 0.4rem;
  }
  .ins_warrelCon2 .center_box .content .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 0.3rem;
  }
  .ins_warrelCon2 .center_box .content .item_box .grid_4 {
    grid-column: unset !important;
  }
}
.ins_warrelCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #f8f8f8;
  padding-bottom: 1.5rem;
}
.ins_warrelCon3 .center_box {
  width: 100%;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1.3rem;
  background: #FFFFFF;
  padding: 0.8rem 0;
}
.ins_warrelCon3 .center_box .item_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;
  gap: 0.9rem;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
  padding: 0 0.8rem;
}
.ins_warrelCon3 .center_box .item_box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #c8c8c8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.3;
}
.ins_warrelCon3 .center_box .item_box .item {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 0.25rem;
  font-size: var(--font18);
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
}
.ins_warrelCon3 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_warrelCon3 .center_box .item_box .item:hover {
  color: var(--active_color);
}
.ins_warrelCon3 .center_box .item_box .item.active {
  color: var(--active_color);
}
.ins_warrelCon3 .center_box .item_box .item.active::after {
  opacity: 1;
}
.ins_warrelCon3 .center_box .content {
  width: 100%;
  height: auto;
  padding: 0 0.8rem;
  margin-top: 0.8rem;
}
.ins_warrelCon3 .center_box .content .select {
  width: 100%;
  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;
  gap: 0.6rem;
}
.ins_warrelCon3 .center_box .content .select .title {
  width: 100%;
  height: auto;
}
.ins_warrelCon3 .center_box .content .select .title .t1 {
  font-weight: 600;
}
.ins_warrelCon3 .center_box .content .select .item {
  width: 100%;
  height: auto;
}
.ins_warrelCon3 .center_box .content .select .item .list {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  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;
  gap: 0.2rem;
}
.ins_warrelCon3 .center_box .content .select .item .list .one {
  width: 100%;
  height: auto;
  padding-left: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.375;
}
.ins_warrelCon3 .center_box .content .select .item .list .one::after {
  content: '';
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--active_color);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width:990px) {
  .ins_warrelCon3 * * {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .ins_warrelCon3 * *::-webkit-scrollbar {
    display: none;
  }
  .ins_warrelCon3 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_warrelCon3 .center_box .item_box {
    overflow: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding: 0 0.4rem;
    border-bottom: 1px solid #c8c8c856;
  }
  .ins_warrelCon3 .center_box .item_box::after {
    opacity: 0;
  }
  .ins_warrelCon3 .center_box .item_box .item {
    white-space: nowrap;
  }
}
.ins_supdowcCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.6rem;
  padding-bottom: 1.4rem;
  background: #f8f8f8;
}
.ins_supdowcCon1 .center_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding-top: 1rem;
  padding-bottom: 0.95rem;
}
.ins_supdowcCon1 .center_box .item_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;
  gap: 0.9rem;
  margin-top: 0.9rem;
  position: relative;
  z-index: 1;
  overflow: auto;
}
.ins_supdowcCon1 .center_box .item_box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #c8c8c8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.3;
}
.ins_supdowcCon1 .center_box .item_box .item {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 0.25rem;
  font-size: var(--font18);
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
}
.ins_supdowcCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_supdowcCon1 .center_box .item_box .item:hover {
  color: var(--active_color);
}
.ins_supdowcCon1 .center_box .item_box .item.active {
  color: var(--active_color);
}
.ins_supdowcCon1 .center_box .item_box .item.active::after {
  opacity: 1;
}
.ins_supdowcCon1 .center_box .content {
  width: 100%;
  height: auto;
  padding: 0 1.08rem;
  margin-top: 0.75rem;
}
.ins_supdowcCon1 .center_box .content .dow_itbox {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.68rem 1.06rem;
}
.ins_supdowcCon1 .center_box .content .dow_itbox .item {
  width: 100%;
  height: auto;
}
.ins_supdowcCon1 .center_box .content .dow_itbox .item .images {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.ins_supdowcCon1 .center_box .content .dow_itbox .item .images .pb {
  padding-bottom: 132%;
}
.ins_supdowcCon1 .center_box .content .dow_itbox .item .images .pb .ab {
  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;
}
.ins_supdowcCon1 .center_box .content .dow_itbox .item .images .pb .ab img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_supdowcCon1 .center_box .content .dow_itbox .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
  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;
}
.ins_supdowcCon1 .center_box .content .dow_itbox .item .word span {
  font-size: var(--font18);
  font-weight: 600;
  color: #000000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_supdowcCon1 .center_box .content .dow_itbox .item .word .icon {
  width: auto;
  height: auto;
  background: #d7f8eb;
  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: 50%;
}
.ins_supdowcCon1 .center_box .content .dow_itbox .item:hover .images .pb .ab img {
  transform: scale(1.03);
}
.ins_supdowcCon1 .center_box .content .dow_itbox .item:hover .word span {
  color: var(--active_color);
}
@media (max-width:990px) {
  .ins_supdowcCon1 * * {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .ins_supdowcCon1 * *::-webkit-scrollbar {
    display: none;
  }
  .ins_supdowcCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_supdowcCon1 .center_box .item_box {
    overflow: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding: 0 0.4rem;
    border-bottom: 1px solid #c8c8c856;
  }
  .ins_supdowcCon1 .center_box .item_box::after {
    opacity: 0;
  }
  .ins_supdowcCon1 .center_box .item_box .item {
    white-space: nowrap;
  }
  .ins_supdowcCon1 .center_box .content {
    padding: 0 0.4rem;
  }
  .ins_supdowcCon1 .center_box .content .dow_itbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }
}
.ins_supvideoCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.6rem;
  padding-bottom: 1.4rem;
  background: #f8f8f8;
}
.ins_supvideoCon1 .center_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding-top: 1rem;
  padding-bottom: 0.8rem;
}
.ins_supvideoCon1 .center_box .item_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;
  gap: 0.9rem;
  margin-top: 0.9rem;
  position: relative;
  z-index: 1;
}
.ins_supvideoCon1 .center_box .item_box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #c8c8c8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.3;
}
.ins_supvideoCon1 .center_box .item_box .item {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 0.25rem;
  font-size: var(--font18);
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: block;
}
.ins_supvideoCon1 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.ins_supvideoCon1 .center_box .item_box .item:hover {
  color: var(--active_color);
}
.ins_supvideoCon1 .center_box .item_box .item.active {
  color: var(--active_color);
}
.ins_supvideoCon1 .center_box .item_box .item.active::after {
  opacity: 1;
}
.ins_supvideoCon1 .center_box .content {
  width: 100%;
  height: auto;
  padding: 0.8rem;
  padding-bottom: 0;
}
.ins_supvideoCon1 .center_box .content .video_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem 0.67rem;
}
.ins_supvideoCon1 .center_box .content .video_box .item {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.ins_supvideoCon1 .center_box .content .video_box .item .images {
  width: 100%;
  height: auto;
  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;
}
.ins_supvideoCon1 .center_box .content .video_box .item .images .line {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  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;
}
.ins_supvideoCon1 .center_box .content .video_box .item .images .line i {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  display: block;
  position: absolute;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ins_supvideoCon1 .center_box .content .video_box .item .images .line i:first-child {
  opacity: 0.4;
}
.ins_supvideoCon1 .center_box .content .video_box .item .images .line i:nth-child(2) {
  border: 1px solid #FFFFFF;
  border-right: 0;
  border-bottom: 0;
}
.ins_supvideoCon1 .center_box .content .video_box .item .images .pb {
  width: 100%;
  height: auto;
  padding-bottom: 62%;
}
.ins_supvideoCon1 .center_box .content .video_box .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_supvideoCon1 .center_box .content .video_box .item .word {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  text-align: center;
  margin-top: 0.3rem;
}
.ins_supvideoCon1 .center_box .content .video_box .item:hover .images .line i:nth-child(2) {
  transform: rotate(360deg);
}
@media (max-width:990px) {
  .ins_supvideoCon1 * * {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }
  .ins_supvideoCon1 * *::-webkit-scrollbar {
    display: none;
  }
  .ins_supvideoCon1 .center_box {
    width: 100%;
    height: auto;
  }
  .ins_supvideoCon1 .center_box .item_box {
    overflow: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding: 0 0.4rem;
    border-bottom: 1px solid #c8c8c856;
  }
  .ins_supvideoCon1 .center_box .item_box::after {
    opacity: 0;
  }
  .ins_supvideoCon1 .center_box .item_box .item {
    white-space: nowrap;
  }
  .ins_supvideoCon1 .center_box .content {
    padding: 0.4rem;
  }
  .ins_supvideoCon1 .center_box .content .video_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 0.4rem;
  }
}
.ins_caseCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.68rem;
  padding-top: 1rem;
}
.ins_caseCon7 .center_box {
  width: 100%;
  height: auto;
}
.ins_caseCon7 .center_box .tit_box {
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_caseCon7 .center_box .tit_box .ins_title {
  width: 50%;
}
.ins_caseCon7 .center_box .tit_box .pager_box {
  width: auto;
}
.ins_caseCon7 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_caseCon7 .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.ins_caseCon7 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  display: block;
}
.ins_caseCon7 .center_box .swiper_box ul li .centerInfo .images {
  width: 100%;
  height: auto;
}
.ins_caseCon7 .center_box .swiper_box ul li .centerInfo .images .pb {
  padding-bottom: 53%;
}
.ins_caseCon7 .center_box .swiper_box ul li .centerInfo .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_caseCon7 .center_box .swiper_box ul li .centerInfo .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  padding-right: 0.8rem;
}
.ins_caseCon7 .center_box .swiper_box ul li .centerInfo .word_box .t1 {
  font-weight: 600;
  color: #000000;
}
.ins_caseCon7 .center_box .swiper_box ul li .centerInfo .time {
  margin-top: 0.3rem;
  color: #999999;
}
.ins_caseCon7 .center_box .idxProgressbar {
  max-width: 720px;
  margin: auto;
  margin-top: 1.2rem;
  height: 6px;
  border-radius: 10px;
}
.ins_caseCon7 .center_box .idxProgressbar span {
  border-radius: 10px;
  overflow: hidden;
}
.search_result {
  width: 100%;
  height: auto;
  padding-top: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1.5rem;
}
.search_result .center_box {
  width: 100%;
  height: auto;
}
.search_result .center_box .input {
  width: 100%;
  height: 0.6rem;
  min-height: 50px;
  margin: auto;
  border: 2px solid #e5e5e5;
  border-radius: 0.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  padding: 0 0.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.search_result .center_box .input input {
  width: 100%;
  height: 40px;
  border: 0;
}
.search_result .center_box .input .icon {
  flex-shrink: 0;
  cursor: pointer;
}
.search_result .center_box .input .icon i {
  font-size: var(--font20);
  cursor: pointer;
}
.search_result .center_box .item_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.search_result .center_box .item_box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateX(-50vw);
  opacity: 0.2;
}
.search_result .center_box .item_box .item {
  width: auto;
  height: auto;
  padding-bottom: 0.2rem;
  font-size: var(--font18);
  font-weight: 500;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search_result .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 4px;
  background: var(--active_color);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search_result .center_box .item_box .item:hover,
.search_result .center_box .item_box .item.active {
  color: var(--active_color);
}
.search_result .center_box .item_box .item.active::after {
  opacity: 1;
}
.search_result .center_box .content {
  width: 100%;
  height: auto;
}
.search_result .center_box .content .result_box {
  width: 100%;
  height: auto;
  display: none;
}
.search_result .center_box .content .result_box .proitem_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem 0.3rem;
  margin-top: 0.4rem;
}
.search_result .center_box .content .result_box .proitem_box .item {
  width: 100%;
  height: auto;
}
.search_result .center_box .content .result_box .proitem_box .item .images {
  width: 100%;
  height: auto;
  background: #f3f3f3;
  border: 1px solid #f3f3f3;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search_result .center_box .content .result_box .proitem_box .item .images .pb {
  padding-bottom: 109.5%;
}
.search_result .center_box .content .result_box .proitem_box .item .images .pb .ab {
  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;
}
.search_result .center_box .content .result_box .proitem_box .item .images .pb .ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search_result .center_box .content .result_box .proitem_box .item .word_box {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 0.2rem;
  padding: 0 0.2rem;
}
.search_result .center_box .content .result_box .proitem_box .item .word_box .t1 {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search_result .center_box .content .result_box .proitem_box .item .word_box .t2 {
  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;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.12rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
  color: #999999;
  margin-top: 0.1rem;
}
.search_result .center_box .content .result_box .proitem_box .item .word_box .t2 i {
  display: block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 1px;
  height: 12px;
  background: #cbcbcb;
}
.search_result .center_box .content .result_box .proitem_box .item .word_box .t2 span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search_result .center_box .content .result_box .proitem_box .item:hover .images {
  border-color: var(--active_color);
}
.search_result .center_box .content .result_box .proitem_box .item:hover .images .pb .ab img {
  transform: scale(1.04);
}
.search_result .center_box .content .result_box .proitem_box .item:hover .word_box .t1 {
  color: var(--active_color);
}
@media (max-width:990px) {
  .search_result .center_box .content .result_box .proitem_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.search_result .center_box .content .result_box .newitem_box {
  width: 100%;
  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;
  gap: 0.3rem;
  margin-top: 0.4rem;
}
.search_result .center_box .content .result_box .newitem_box .item {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid #00b87000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search_result .center_box .content .result_box .newitem_box .item .images {
  width: 31.388%;
}
.search_result .center_box .content .result_box .newitem_box .item .images .pb {
  padding-bottom: 67.4%;
}
.search_result .center_box .content .result_box .newitem_box .item .word_box {
  width: 65%;
  padding: 0.4rem 0;
}
.search_result .center_box .content .result_box .newitem_box .item .word_box .t1 {
  font-weight: 600;
  color: var(--text_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.search_result .center_box .content .result_box .newitem_box .item .word_box .time {
  color: var(--text_color);
  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: 0.14rem;
  font-size: var(--font16);
  margin-top: 0.2rem;
}
.search_result .center_box .content .result_box .newitem_box .item .word_box .t2 {
  color: #999999;
  line-height: 1.625;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.search_result .center_box .content .result_box .newitem_box .item .word_box .new_more {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.search_result .center_box .content .result_box .newitem_box .item .word_box .new_more .more {
  min-width: 1.5rem;
  width: fit-content;
  height: 0.45rem;
  padding: 10px 20px;
  min-height: 40px;
  border: 1px solid var(--active_color);
  color: var(--active_color);
  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: 100px;
  font-size: var(--font18);
  font-weight: 600;
  gap: 0.16rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.search_result .center_box .content .result_box .newitem_box .item:hover {
  border: 1px solid #00b870;
  box-shadow: 0px 0px 10px 0px rgba(28, 69, 185, 0.1);
}
.search_result .center_box .content .result_box .newitem_box .item:hover .word_box .t1 {
  color: var(--active_color);
}
.search_result .center_box .content .result_box .newitem_box .item:hover .word_box .new_more .more {
  background: var(--active_color);
  color: #FFFFFF;
}
@media (max-width:990px) {
  .search_result .center_box .content .result_box .newitem_box .item {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .search_result .center_box .content .result_box .newitem_box .item .images,
  .search_result .center_box .content .result_box .newitem_box .item .word_box {
    width: 100% !important;
  }
  .search_result .center_box .content .result_box .newitem_box .item .word_box .t1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .search_result .center_box .content .result_box .newitem_box .item .word_box .t2 {
    max-height: 110px;
    overflow: auto;
  }
}
.search_result .center_box .content .result_box .caseitem_box {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem 0.48rem;
}
.search_result .center_box .content .result_box .caseitem_box .item {
  width: 100%;
  height: auto;
}
.search_result .center_box .content .result_box .caseitem_box .item .images {
  width: 100%;
  height: auto;
}
.search_result .center_box .content .result_box .caseitem_box .item .images .pb {
  padding-bottom: 62%;
}
.search_result .center_box .content .result_box .caseitem_box .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search_result .center_box .content .result_box .caseitem_box .item .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.search_result .center_box .content .result_box .caseitem_box .item .word_box .t1 {
  font-weight: 600;
  color: #000000;
}
.search_result .center_box .content .result_box .caseitem_box .item .word_box .t2 {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
  color: var(--active_color);
  font-weight: 700;
}
.search_result .center_box .content .result_box .caseitem_box .item .word_box .t2 .t3 {
  font-weight: 500;
}
@media (max-width:990px) {
  .search_result .center_box .content .result_box .caseitem_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
.search_result .center_box .content .result_box.active {
  display: block !important;
}
.ins_lawCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-bottom: 1rem;
}
.ins_lawCon1 .center_box {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.6rem 0.7rem;
  padding-bottom: 1.15rem;
}
.ins_lawCon1 .center_box .title {
  text-align: center;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.ins_lawCon1 .center_box .content {
  width: 100%;
  height: auto;
  padding-top: 0.5rem;
}
.ins_lawCon1 .center_box .content h1 {
  font-weight: 600;
  font-size: var(--font20);
}
.ins_lawCon1 .center_box .content p {
  font-size: var(--font16);
  color: #666666;
  line-height: 1.625;
  min-height: 0.5em;
}
.ins_lawCon1 .center_box .content p a {
  color: var(--active_color);
  text-decoration: underline;
}
@media (max-width:990px) {
  .ins_lawCon1 .center_box {
    padding: 0.6rem 20px;
  }
}
/* 客服挂件 */
.kefu_box {
  width: auto;
  height: auto;
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 19;
  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-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.kefu_box .item {
  width: fit-content;
  height: 0.6rem;
  min-height: 40px;
  background-color: rgba(0, 28, 56, 0.2);
  margin-top: 10px;
  border-radius: 100px;
  position: relative;
  z-index: 5;
  cursor: pointer;
  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;
}
.kefu_box .item .icon {
  width: 0.6rem;
  min-width: 40px;
  height: 0.6rem;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.kefu_box .item .word {
  padding-right: 35px;
  color: #FFF;
  font-size: var(--font18);
  display: none;
}
.kefu_box .item:hover {
  background: var(--active_color);
}
.kefu_box .item:hover .word {
  display: block;
}
.kefu_box .item:hover .icon img {
  opacity: 1 !important;
}
.kefu_box .item:last-child {
  background: #FFF;
  box-shadow: 0px 4px 10px 0px rgba(0, 28, 56, 0.1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.kefu_box .item:last-child .icon img {
  opacity: 0.4;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.kefu_box .item:last-child:hover {
  box-shadow: 0px 4px 16px 0px rgba(0, 28, 56, 0.2);
}
@media (max-width:990px) {
  .kefu_box {
    display: none;
  }
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
.ins_lawCon1 .center_box .content table {
  width: 100% !important;
  height: auto;
  display: block !important;
  overflow: auto;
}
.ins_lawCon1 .center_box .content table tbody {
  min-width: 800px;
}
@media (max-width:1440px) {
  footer .center_box .footer_box .footer_top .content .right_box .share .list a {
    transform: scale(0.5);
  }
}
@media (max-width:990px) {
  .ins_title .t1 {
    line-height: 1.2;
  }
  .ins_title .t2 {
    line-height: 1.5;
    margin-top: 0.2rem;
  }
  .ins_aboutCon1 .center_box .content .box_info .right_box,
  .ins_casedateCon1 .center_box .images {
    padding-left: 0;
  }
  .ins_aboutCon1 .center_box .content .box_info .right_box .word {
    max-height: 200px;
    overflow: auto;
  }
  .ins_casedateCon1 .center_box .word_box {
    padding: 0;
  }
  .ins_title {
    width: 100% !important;
    max-width: 100% !important;
  }
  .ins_caseCon6 .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .ins_contactCon1 .center_box .word_box {
    padding: 0.4rem 20px;
  }
  .ins_contactCon1 .center_box {
    background-size: 100% auto;
  }
  .ins_contactCon2 .center_box .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .ins_esgCon1 .center_box .content .swiper_info {
    width: 100%;
  }
  .ins_esgCon1 .center_box .content .swiper_info .swiper_box {
    padding: 1rem 0;
  }
  .ins_esgCon1 .center_box .content .swiper_info .swiper_box ul li .centerInfo {
    width: 100%;
    padding: 0 20px;
  }
  .ins_caseCon7 .center_box .idxProgressbar {
    height: 3px;
  }
  .ins_caseCon3 .center_box .swiper_box ul li .centerInfo {
    height: 100%;
  }
  .ins_casedateCon1 .center_box .word_box .caseMore .more {
    width: unset;
  }
  .ins_banner .center_box .input_box .input .icon {
    min-width: 45px;
  }
  .ins_newCon2 .center_box .item_box .item .word_box {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 20px;
  }
  .ins_productDateCon7 .center_box .content .table .tr .td {
    overflow-wrap: anywhere;
  }
  .ins_productDateCon7 .center_box .content .table .tr .td {
    font-size: 12px;
    padding: 10px 0.4rem !important;
  }
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box {
  scrollbar-width: thin;
  scrollbar-color: var(--active_color) #d4d6d7;
  padding-top: 10px;
  padding-right: 10px;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  background-color: #d4d6d7;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0.76);
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box {
  scrollbar-width: thin;
  scrollbar-color: var(--active_color) #d4d6d7;
  padding-top: 10px;
  padding-right: 10px;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  background-color: #d4d6d7;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
header .header_box .center_box .item_box .item .navigation .product_nav .cont_box .pro_box::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0.76);
}
