<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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;
}
@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/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;
  display: block;
  cursor: pointer;
  color: var(--text_color);
}
a:hover {
  color: var(--text_color);
}
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 动画 */
/* 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;
  }
}
/* 旋转 */
/* 不显示滚动条 */
.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;
}
.w1660 {
  width: 100%;
  max-width: 1660px;
  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) {
  .w1660 {
    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,
  .w1660,
  .w1560,
  .w1440,
  .w1400,
  .w1350,
  .w1280,
  .w1240,
  .w1200,
  .w1150 {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media (max-width:990px) {
  .w1800,
  .w1720,
  .w1680,
  .w1660,
  .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: #08449b;
  --text_color: #333333;
  --back_color: #f5f5f5;
  /* 字体大小 */
  --font12: 12px;
  --font14: 14px;
  --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: 'SourceHanSansCN';
  src: url('../fonts/SourceHanSansCN-ExtraLight.ttf');
  font-weight: 100;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../fonts/SourceHanSansCN-Light.ttf');
  font-weight: 200;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../fonts/SourceHanSansCN-Normal.ttf');
  font-weight: 300;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../fonts/SourceHanSansCN-Regular.ttf');
  font-weight: normal;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../fonts/SourceHanSansCN-Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../fonts/SourceHanSansCN-Bold.ttf');
  font-weight: 700;
}
/* -------------------------------------------------------------------  pc头部 */
header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0.25rem;
  left: 0;
  z-index: 20;
  -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);
  --color1: #FFFFFF;
  --bg_color: none;
  --fiter: unset;
  --borr: 0.12rem;
}
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;
  position: relative;
  z-index: 1;
  padding: 0 0.35rem;
  /* 导航 */
}
header .header_box .center_box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1680px;
  height: 100%;
  background: #ffffff33;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  backdrop-filter: blur(50px);
  z-index: -1;
  border-radius: var(--borr);
}
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;
  min-width: 168px;
}
header .header_box .center_box .column_left .logo_box .logo {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
}
header .header_box .center_box .column_left .logo_box .logo .be {
  position: absolute;
  top: 0;
  left: 0;
  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_left .logo_box .logo .af {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column_center {
  width: auto;
  height: auto;
}
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;
}
header .header_box .center_box .column_right .phone {
  width: 168px;
  height: 56px;
  background: #FFFFFF;
  border-radius: 0.12rem;
  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: var(--active_color);
  gap: 5px;
  cursor: pointer;
}
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: var(--font16);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
}
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);
}
@media (max-width:990px) {
  header .header_box {
    display: none !important;
  }
}
header.text_back .header_box .center_box::after {
  width: 100%;
  background: #edf2fa;
}
header.text_back .header_box {
  --color1: var(--active_color);
  --fiter: brightness(0) invert(1);
}
header.text_back .header_box .center_box .column_right .phone {
  background: var(--active_color);
  color: #FFFFFF;
}
header.text_back .header_box .center_box .column_right .phone img {
  filter: var(--fiter);
}
header.text_back .center_box .column_left .logo_box .logo .be {
  opacity: 1 !important;
}
header.text_back .center_box .column_left .logo_box .logo .af {
  opacity: 0 !important;
}
header.active {
  top: 0;
}
header.active .header_box .center_box::after {
  width: 100vw;
  left: 50%;
  transform: translateX(-50vw);
  background: #edf2fa;
}
header.active .header_box {
  --color1: var(--active_color);
  --fiter: brightness(0) invert(1);
  --borr: 0;
}
header.active .header_box .center_box .column_right .phone {
  background: var(--active_color);
  color: #FFFFFF;
}
header.active .header_box .center_box .column_right .phone img {
  filter: var(--fiter);
}
header.active .center_box .column_left .logo_box .logo .be {
  opacity: 1 !important;
}
header.active .center_box .column_left .logo_box .logo .af {
  opacity: 0 !important;
}
@media (max-width:990px) {
  header {
    top: 0;
  }
}
/* -------------------------------------------------------------------  pc底部 */
footer {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  padding-top: 1.2rem;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(28, 69, 185, 0.1);
}
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 .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;
  padding-bottom: 0.5rem;
}
footer .center_box .footer_box .footer_top .content .left_box {
  width: 46%;
}
footer .center_box .footer_box .footer_top .content .left_box .logo {
  width: 1.25rem;
  height: auto;
  min-width: 80px;
}
footer .center_box .footer_box .footer_top .content .left_box .list_box {
  width: 100%;
  margin-top: 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;
}
@media (max-width:767px) {
  footer .center_box .footer_box .footer_top .content .left_box .list_box {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
footer .center_box .footer_box .footer_top .content .left_box .list_box .one {
  /* width: 100%; */
  height: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .center_box .footer_box .footer_top .content .left_box .list_box .one .t1 {
  opacity: 0.6;
}
footer .center_box .footer_box .footer_top .content .left_box .list_box .one .t2 {
  font-weight: 200;
}
footer .center_box .footer_box .footer_top .content .left_box .list_box .one:first-child .t3 {
  white-space: nowrap;
}
footer .center_box .footer_box .footer_top .content .left_box .list_box .one .t3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.3rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  /* margin-top: 0.1rem; */
}
footer .center_box .footer_box .footer_top .content .right_box {
  width: 52.5%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
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;
  font-size: var(--font18);
}
footer .center_box .footer_box .footer_top .content .right_box .item_box .item .list {
  width: 100%;
  height: auto;
  margin-top: 0.25rem;
}
footer .center_box .footer_box .footer_top .content .right_box .item_box .item .list .one {
  font-size: var(--font14);
  display: block;
  font-size: var(--font16);
  color: #999999;
  line-height: 2.5714;
  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: #000000;
  text-decoration: underline;
}
footer .center_box .footer_box .footer_top .content .right_box .share {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
footer .center_box .footer_box .footer_top .content .right_box .share .word {
  opacity: 0.4;
  font-size: var(--font14);
}
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.3rem 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid #e5e5e5;
}
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;
  color: #999999;
}
footer .center_box .footer_box .footer_bottom .copy_box {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  color: #999999;
  font-size: var(--font16);
}
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;
  color: #999999;
  font-size: var(--font16);
}
footer .center_box .footer_box .footer_bottom a:hover {
  color: #000000 !important;
  text-decoration: underline;
}
@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: 20px;
  }
  .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: 85px;
  font-family: "SourceHanSansCN";
  color: var(--text_color);
}
* { font-family: "SourceHanSansCN" ; }
/* --------------------------------------------------------------- 文字描边 */
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 图片100% */
.img_w100 {
  width: 100%;
  height: 100%;
  
  z-index: 1;
  top: 0;
  left: 0;
  position: initial;
  min-height: 0;
}
.idx_banner .img_w100{
 
}
.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;
  }
}
.idxPagescoll {
  width: 100%;
  height: 2px;
  background: #ececec;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}
.idxPagescoll span {
  background: var(--active_color);
}
/* --------------------------------------------------------------- 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: var(--num_15);
}
.idxPageShow span {
  width: 9px;
  height: 9px;
}
.idxPageShow .swiper-pagination-bullet-active {
  background: var(--active_color);
}
.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;
  margin-top: 0.4rem;
}
.idx_more .more {
  width: fit-content;
  height: auto;
  min-width: 100px;
  min-height: 35px;
  padding: 5px 10px 5px 0.2rem;
  border-radius: 0.12rem;
  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;
  gap: 0.3rem;
  background: #e9eff9;
  color: var(--active_color);
  overflow: hidden;
}
.idx_more .more span {
  position: relative;
  z-index: 2;
}
.idx_more .more i {
  width: 0.58rem;
  height: 0.58rem;
  min-width: 40px;
  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;
  border-radius: 50%;
  transform: rotate(180deg);
  font-size: var(--font28);
  position: relative;
  z-index: 1;
}
.idx_more .more i::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #dce5f3;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: -1;
  border-radius: 50%;
}
.idx_more .more:hover i::after {
  width: 400px;
  height: 400px;
}
.idx_more.flex_c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .t1 {
  font-weight: 500;
  line-height: 1.227;
}
.idx_title .t1 span {
  color: var(--active_color);
}
.idx_title .t2 {
  line-height: 1.666;
  margin-top: 0.3rem;
}
.idx_titBox {
  width: 100%;
  height: auto;
}
.idx_titBox .icon {
  width: 1.71rem;
  min-width: 120px;
  height: 100%;
  padding: 0.1rem 0.2rem;
  text-align: center;
  min-height: 40px;
  border: 1px solid var(--active_color);
  border-radius: 100px;
  color: var(--active_color);
  line-height: 1;
}
.idx_titBox .word {
  line-height: calc(54/44);
  width: 56.375%;
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.text_c {
  text-align: center;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.pager_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;
}
.pager_box .swiperbtn {
  cursor: pointer;
}
.pager_box .swiperbtn i {
  color: #677b99;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pager_box .swiperbtn:hover i {
  color: var(--active_color);
}
.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);
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------------------------ less 正文 */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- 首页 */
.idx_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  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 .swiper_box {
  width: 100%;
  height: auto;
  background: #000000;
  overflow: hidden;
  border-radius: 0 0 0.3rem 0.3rem;
}
.idx_banner .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .contentInfo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  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_banner .swiper_box ul li .contentInfo * {
  color: #FFFFFF;
}
.idx_banner .swiper_box ul li .contentInfo .word_box {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .contentInfo .word_box .word {
  width: 100%;
  height: auto;
}
.idx_banner .swiper_box ul li .contentInfo .word_box .word .t1 {
  font-weight: 600;
}
.idx_banner .swiper_box ul li .contentInfo .word_box .line {
  margin-top: 0.4rem;
  width: 100vw;
  position: relative;
  z-index: 1;
  left: 50%;
  transform: translateX(-50vw);
  height: 1px;
  background: #ffffff40;
  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_banner .swiper_box ul li .contentInfo .word_box .line img {
  position: absolute;
  width: max-content;
  height: auto;
  max-height: unset;
  right: 100%;
}
.idx_banner .swiper_box ul li .contentInfo .word_box .font {
  width: 36%;
  margin-top: 0.4rem;
}
.idx_banner .swiper_box ul li .img_w100 img {
  max-height: 100vh;
  object-fit: cover;
}
.idx_banner .swiper_box ul li .img_w100 .wap {
  min-height: 600px;
}
.idx_banner .swiper_box ul li.swiper-slide-active .img_w100 img {
  animation: scale 1s linear;
}
.idx_banner .swiper_box ul li.swiper-slide-active .contentInfo .word_box .line img {
  right: 0;
  transform: translateX(100%);
  transition: all linear 10s;
}
.idx_about {
  width: 100%;
  height: auto;
  padding-top: 1.4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background: #f2f7ff;
  position: relative;
  z-index: 1;
  --left: 50%;
}
.idx_about::after {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_about .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_about .center_box .text_box {
  font-size: 3rem;
  color: #FFFFFF;
  width: auto;
  height: auto;
  position: absolute;
  z-index: 1;
  line-height: 0;
  font-weight: 600;
  bottom: 2.24rem;
  left: 0;
  transform: translateX(var(--left));
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.idx_about .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 1.35rem;
  position: relative;
  z-index: 2;
}
.idx_about .center_box .content .left_box {
  width: 44.437%;
  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;
}
.idx_about .center_box .content .left_box .images {
  width: 38.5%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.idx_about .center_box .content .left_box .word_box {
  width: 56%;
  height: auto;
}
.idx_about .center_box .content .left_box .word_box p {
  line-height: 1.75;
  opacity: 0.7;
}
.idx_about .center_box .content .right_box {
  width: 48.1875%;
}
.idx_about .center_box .content .right_box .t1 {
  opacity: 0.7;
  line-height: 1.75;
  max-width: 590px;
}
.idx_about .center_box .content .right_box .images {
  width: 100%;
  height: auto;
  margin-top: 0.4rem;
  border-radius: 6px;
  overflow: hidden;
}
.idx_product {
  width: 100%;
  height: auto;
  padding-top: 1.4rem;
  padding-bottom: 1rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.idx_product .center_box {
  width: 100%;
  height: auto;
}
.idx_product .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 1.4rem;
  overflow: hidden;
}
.idx_product .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.idx_product .center_box .swiper_box ul li .contentInfo {
  width: 100%;
  height: auto;
}
.idx_product .center_box .swiper_box ul li .contentInfo .images {
  width: 100%;
  height: auto;
  border-radius: 6px;
  overflow: hidden;
}
.idx_product .center_box .swiper_box ul li .contentInfo .images .pb {
  padding-bottom: 64.5%;
}
.idx_product .center_box .swiper_box ul li .contentInfo .word_box {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.idx_product .center_box .swiper_box ul li .contentInfo .word_box .t2 {
  margin-top: 0.05rem;
  color: #666666;
}
.idx_product .center_box .idx_more {
  margin-top: 0.6rem;
}
.idx_news {
  width: 100%;
  height: auto;
  padding-top: 1.3rem;
  padding-bottom: 1.4rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(../images/bg3.jpg) no-repeat right top;
}
.idx_news .center_box {
  width: 100%;
  height: auto;
}
.idx_news .center_box .idx_titBox {
  width: 100%;
  height: auto;
}
.idx_news .center_box .idx_titBox .word {
  margin-top: 0.3rem;
}
.idx_news .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.8rem;
}
.idx_news .center_box .content .images {
  width: 39.1875%;
}
.idx_news .center_box .content .images .one {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 6px;
}
.idx_news .center_box .content .images .one .images {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.idx_news .center_box .content .images .one .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_news .center_box .content .images .one .word {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: auto;
  left: 0;
  bottom: 0.25rem;
  padding: 0 0.34rem;
}
.idx_news .center_box .content .images .one .word * {
  color: #FFFFFF;
}
.idx_news .center_box .content .images .one .word .t1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.idx_news .center_box .content .images .one .word .t2 {
  margin-top: 0.1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.idx_news .center_box .content .word_b {
  width: 55.625%;
}
.idx_news .center_box .content .word_b .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1.3rem;
}
.idx_news .center_box .content .word_b .item_box .item {
  width: 100%;
  height: auto;
}
.idx_news .center_box .content .word_b .item_box .item .t1 {
  color: #999999;
}
.idx_news .center_box .content .word_b .item_box .item .t2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-top: 0.4rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_news .center_box .content .word_b .item_box .item .t3 {
  color: #999999;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.2rem;
  line-height: 1.875;
}
.idx_news .center_box .content .word_b .item_box .item:hover .t2 {
  color: var(--active_color);
}
.idx_news .center_box .content .word_b .idx_more {
  margin-top: 0.6rem;
}
.idx_partners {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #08449b;
  padding-top: 1.3rem;
  padding-bottom: 1.05rem;
  border-radius: 0.3rem 0.3rem 0 0;
}
.idx_partners .center_box {
  width: 100%;
  height: auto;
}
.idx_partners .center_box * {
  color: #FFFFFF;
}
.idx_partners .center_box .idx_titBox {
  width: 100%;
  height: auto;
}
.idx_partners .center_box .idx_titBox .icon {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.idx_partners .center_box .idx_titBox .word {
  margin-top: 0.3rem;
}
.idx_partners .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 1.4rem;
}
.idx_partners .center_box .swiper_box ul {
  transition-timing-function: linear !important;
}
.idx_partners .center_box .swiper_box ul li {
  width: 0;
  height: auto;
}
.idx_partners .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border: 1px solid #3969af;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_partners .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 94.5%;
}
.idx_partners .center_box .swiper_box ul li .centerInfo .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;
}
.idx_partners .center_box .swiper_box ul li .centerInfo .pb .ab img {
  /* filter: brightness(0) invert(1); */
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_partners .center_box .swiper_box ul li .centerInfo:hover {
  background: #FFFFFF;
}
.idx_partners .center_box .swiper_box ul li .centerInfo:hover .pb .ab img {
  filter: unset !important;
}
.idx_partners .img_w100 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  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_partners .img_w100 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- 内页 banner */
.ins_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  padding-top: 2.7rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background: url(../images/bg5.jpg) no-repeat right top;
}
.ins_banner .center_box {
  width: 100%;
  height: 100%;
}
.ins_banner .center_box .idx_titBox {
  width: 100%;
  height: auto;
}
.ins_banner .center_box .idx_titBox .btns_box {
  width: 45%;
  height: 100%;
  font-weight: 600;
  line-height: 1;
}
.ins_banner .center_box .idx_titBox .word_box {
  width: 55%;
}
.ins_banner .center_box .idx_titBox .word_box .t2 {
  margin-top: 0.3rem;
}
.ins_banner .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.17rem;
  margin-top: 1.7rem;
}
.ins_banner .item_box .item {
  width: 100%;
  height: auto;
  background: #e9eff9;
  padding: 0.1rem;
  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;
  border-radius: 0.12rem;
  font-size: var(--font16);
  color: #677b99;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_banner .item_box .item:hover,
.ins_banner .item_box .item.active {
  color: var(--active_color);
}
.ins_banner .img_w100 .wap {
  min-height: 70vh;
  object-fit: cover;
}
@media (max-width:990px) {
  .ins_banner .item_box {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    overflow: auto;
    margin-top: 30px;padding-bottom: 20px;
  }
.ins_newsCon1 .center_box .swiper_info .pager_box {
	display: none;
}
  .ins_banner .item_box .item {
    white-space: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0.1rem 0.2rem;
  }
  .ins_banner .center_box .idx_titBox .word {
    width: 100%;
  }
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- 关于我们 */
.more_box {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  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;
  gap: 10px;
  cursor: pointer;
}
.more_box .word {
  color: #333333;
}
.more_box .icon {
  animation: run 4s linear infinite;
}
.ins_productCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.9rem;
  padding-bottom: 0.34rem;
  overflow: hidden;
  background: #f2f7ff;
}
.ins_productCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.46rem;
}
.ins_productCon1 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.42rem 0.55rem;
  border-radius: 6px;
  overflow: hidden;
}
.ins_productCon1 .center_box .item_box .item .word_box {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .item_box .item .word_box .word {
  width: 100%;
  height: auto;
}
.ins_productCon1 .center_box .item_box .item .word_box .word .t2 {
  color: #999999;
  margin-top: 0.1rem;
}
.ins_productCon1 .center_box .item_box .item .word_box .idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0.65rem;
}
.ins_productCon1 .center_box .item_box .item .word_box .idx_more .more {
  width: fit-content;
  background: none;
}
.ins_productCon1 .center_box .item_box .item .images {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
  border-radius: 6px;
  overflow: hidden;
}
.ins_productCon1 .center_box .item_box .item .images .pb {
  padding-bottom: 64.7%;
}
.ins_productCon1 .center_box .item_box .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_productdateCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 2.05rem;
  padding-bottom: 0.7rem;
  background: #f2f7ff;
  overflow: hidden;
}
.ins_productdateCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_productdateCon1 .center_box .back_box {
  width: 100%;
  height: auto;
}
.ins_productdateCon1 .center_box .back_box .one {
  width: 68px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.12rem;
  background: #e9eff9;
}
.ins_productdateCon1 .center_box .back_box .one i {
  color: var(--active_color);
}
.ins_productdateCon1 .center_box .product {
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0.3rem;
}
.ins_productdateCon1 .center_box .product .word_box {
  width: 26.875%;
  padding: 0.4rem 0;
}
.ins_productdateCon1 .center_box .product .word_box .t2 {
  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.4rem;
  color: #666666;
}
.ins_productdateCon1 .center_box .product .images {
  width: 41.5625%;
}
.ins_productdateCon1 .center_box .content {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  padding: 0.96rem;
  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.1rem;
  margin-top: 0.7rem;
  border-radius: 0.4rem;
}
.ins_productdateCon1 .center_box .content .item_1 {
  width: 100%;
  height: auto;
}
.ins_productdateCon1 .center_box .content .item_1 .word {
  width: 100%;
  height: auto;
}
.ins_productdateCon1 .center_box .content .item_1 .word .t1 {
  text-align: center;
}
.ins_productdateCon1 .center_box .content .item_1 .word .t2 {
  margin-top: 0.4rem;
  color: #666666;
}
.ins_productdateCon1 .center_box .content .item_1 .images {
  width: 100%;
  height: auto;
  margin-top: 0.45rem;
}
/* --------------------------------------------------------------- */
/* --------------------------------------------------------------- */
.g_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0 0 0.3rem 0.3rem;
  overflow: hidden;
}
.g_banner .center_box {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 2;
  bottom: 1rem;
  left: 0;
}
.g_banner .center_box .word {
  width: 100%;
  height: auto;
}
.g_banner .center_box .word .t1 {
  color: #FFFFFF;
}
.g_banner .center_box .word .t2 {
  line-height: 1;
  color: #FFFFFF;
  font-weight: 600;
}
.g_banner .img_w100 img {
  min-height: 600px;
  object-fit: cover;
}
.ins_technologyCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.3rem;
  padding-bottom: 0.4rem;
}
.ins_technologyCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_technologyCon1 .center_box .ins_top {
  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_technologyCon1 .center_box .ins_top .item_box {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.17rem;
}
.ins_technologyCon1 .center_box .ins_top .item_box .item {
  height: 0.68rem;
  min-height: 40px;
  padding: 0.1rem 0.6rem;
  border-radius: 6px;
  background: #e9eff9;
  color: #677b99;
  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_technologyCon1 .center_box .ins_top .item_box .item:hover,
.ins_technologyCon1 .center_box .ins_top .item_box .item.active {
  color: var(--active_color);
}
.ins_technologyCon1 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 1.25rem;
}
.ins_technologyCon1 .center_box .content .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.23rem;
}
.ins_technologyCon1 .center_box .content .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;
  gap: 0.2rem;
  height: 1.32rem;
  min-height: 100px;
  padding: 0.15rem 0.3rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: #FFFFFF;
  border-radius: 6px;
  overflow: hidden;
}
.ins_technologyCon1 .center_box .content .item_box .item .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: var(--font18);
  color: #666666;
}
.ins_technologyCon1 .center_box .content .item_box .item .icon {
  flex-shrink: 0;
  font-size: var(--font16);
  color: #999999;
  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_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.3rem;
}
.ins_contactCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .ins_top {
  width: 100%;
  height: auto;
}
.ins_contactCon1 .center_box .ins_top .t1 {
  width: 40%;
}
.ins_contactCon1 .center_box .ins_top .t2 {
  width: 50%;
}
.ins_contactCon1 .img_w100 {
  margin-top: 0.3rem;
}
.ins_contactCon2 {
  width: 100%;
  height: auto;
  padding-top: 1.5rem;
  padding-bottom: 1.3rem;
  overflow: hidden;
  background: url(../images/bg6.jpg) center center / cover;
}
.ins_contactCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_contactCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 1.3rem;
  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.46rem;
}
.ins_contactCon2 .center_box .item_box .item {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
  padding: 0.85rem 0.25rem;
}
.ins_contactCon2 .center_box .item_box .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.8;
  z-index: -1;
}
.ins_contactCon2 .center_box .item_box .item .title {
  color: var(--active_color);
  padding: 0 0.25rem;
}
.ins_contactCon2 .center_box .item_box .item .content {
  width: 100%;
  height: auto;
  padding: 0.6rem 0.25rem;
  padding-bottom: 0.7rem;
  background: #FFFFFF;
  border-radius: 6px;
  margin-top: 0.65rem;
}
.ins_contactCon2 .center_box .item_box .item .content .list {
  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.45rem;
}
.ins_contactCon2 .center_box .item_box .item .content .list .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.27rem;
}
.ins_contactCon2 .center_box .item_box .item .content .list .one .icon {
  flex-shrink: 0;
}
.ins_contactCon2 .center_box .item_box .item .content .list .one .t10 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.25rem;
}
.ins_contactCon2 .center_box .item_box .item .content .list .one .t2 {
  margin-top: 0.06rem;
}
.ins_contactCon2 .center_box .item_box .item .images {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
}
.ins_contactCon2 .center_box .item_box .item .images img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  overflow: hidden;
}
.ins_contactCon2 .center_box .item_box .item + .item {
  margin-top: 100px;
}
.ins_newsCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}
.ins_newsCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newsCon1 .center_box .ins_top {
  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;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}
.ins_newsCon1 .center_box .ins_top .item_box {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.17rem;
}
.ins_newsCon1 .center_box .ins_top .item_box .item {
  height: 0.68rem;
  min-height: 40px;
  padding: 0.1rem 0.6rem;
  border-radius: 6px;
  overflow: hidden;
  background: #e9eff9;
  color: #677b99;
  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_newsCon1 .center_box .ins_top .item_box .item:hover,
.ins_newsCon1 .center_box .ins_top .item_box .item.active {
  color: var(--active_color);
}
.ins_newsCon1 .center_box .swiper_info {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ins_newsCon1 .center_box .swiper_info .pager_box {
  position: absolute;
  top: 1.5rem;
  z-index: 10;
}
.ins_newsCon1 .center_box .swiper_info .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  overflow: hidden;
}
.ins_newsCon1 .center_box .swiper_info .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
}
.ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .time {
  color: #999999;
}
.ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .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.25rem;
}
.ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .content .title {
  width: 22.5%;
  color: var(--active_color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .content .subtitle {
  width: 23.75%;
}
.ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .content .subtitle .t1 {
  line-height: 1.875;
}
.ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .content .subtitle .idx_more {
  margin-top: 0.35rem;
}
.ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .content .images {
  width: 36%;
}
.ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .content .images img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  overflow: hidden;
}
.ins_newsCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.4rem;
  padding-bottom: 0.4rem;
}
.ins_newsCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_newsCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem 0.34rem;
}
.ins_newsCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #f2f7ff;
  padding: 20px;
  padding-bottom: 0.3rem;
  border-radius: 6px;
  overflow: hidden;
}
.ins_newsCon2 .center_box .item_box .item .images {
  width: 100%;
  height: auto;
  border-radius: 6px;
  overflow: hidden;
}
.ins_newsCon2 .center_box .item_box .item .images .pb {
  padding-bottom: 60%;
}
.ins_newsCon2 .center_box .item_box .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newsCon2 .center_box .item_box .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.3rem;
}
.ins_newsCon2 .center_box .item_box .item .word .t1 {
  color: #999999;
}
.ins_newsCon2 .center_box .item_box .item .word .t2 {
  margin-top: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newsCon2 .center_box .item_box .item .idx_more {
  margin-top: 0.65rem;
}
.ins_newsCon2 .center_box .item_box .item .idx_more .more {
  background: none;
}
.ins_newsCon2 .center_box .item_box .item:hover .images .pb .ab img {
  transform: scale(1.05);
}
.ins_newsCon2 .center_box .item_box .item:hover .word .t2 {
  color: var(--active_color);
}
.ins_newsCon2 .center_box .item_box .item:hover .idx_more .more i::after {
  width: 400px;
  height: 400px;
}
.ins_newdateCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 2.05rem;
  padding-bottom: 1.4rem;
  overflow: hidden;
}
.ins_newdateCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_newdateCon1 .center_box .ins_top {
  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_newdateCon1 .center_box .ins_top .back_box {
  width: 68.75%;
  height: auto;
}
.ins_newdateCon1 .center_box .ins_top .back_box .one {
  width: 68px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.12rem;
  background: #e9eff9;
}
.ins_newdateCon1 .center_box .ins_top .back_box .one i {
  color: var(--active_color);
}
.ins_newdateCon1 .center_box .ins_top .text_btn {
  width: 23.75%;
  background: #e9eff9;
  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;
  border-radius: 0.12rem;
  padding: 0 0.3rem;
}
.ins_newdateCon1 .center_box .ins_top .text_btn .one {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.12rem;
  border-radius: 0.12rem;
  font-size: var(--font16);
  color: var(--active_color);
}
.ins_newdateCon1 .center_box .ins_top .text_btn .one i {
  color: var(--active_color);
}
.ins_newdateCon1 .center_box .contentInfo {
  width: 100%;
  height: auto;
  margin-top: 1.2rem;
}
.ins_newdateCon1 .center_box .contentInfo .left_box {
  width: 68.75%;
}
.ins_newdateCon1 .center_box .contentInfo .left_box .title {
  width: 100%;
  height: auto;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.ins_newdateCon1 .center_box .contentInfo .left_box .title .t1 {
  width: 100%;
  height: auto;
}
.ins_newdateCon1 .center_box .contentInfo .left_box .title .t2 {
  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.35rem;
  color: #999999;
  margin-top: 0.25rem;
}
.ins_newdateCon1 .center_box .contentInfo .left_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.35rem;
}
.ins_newdateCon1 .center_box .contentInfo .left_box .content p {
  line-height: 1.87;
  font-size: var(--font16);
  min-height: 0.5em;
}
.ins_newdateCon1 .center_box .contentInfo .right_box {
  width: 23.75%;
}
.ins_newdateCon1 .center_box .contentInfo .right_box .title {
  width: fit-content;
  height: auto;
  padding: 0.1rem;
  background: linear-gradient(310deg, #00000000 30%, #6f92c5 100%);
  border-radius: 12px;
  line-height: 1.3;
}
.ins_newdateCon1 .center_box .contentInfo .right_box .list {
  margin-top: 0.4rem;
  border-top: 1px solid #f0f0f0;
  padding-top: 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: 0.55rem;
}
.ins_newdateCon1 .center_box .contentInfo .right_box .list .one {
  width: 100%;
  height: auto;
}
.ins_newdateCon1 .center_box .contentInfo .right_box .list .one .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_newdateCon1 .center_box .contentInfo .right_box .list .one .t2 {
  margin-top: 0.2rem;
  color: #999999;
}
.ins_newdateCon1 .center_box .contentInfo .right_box .list .one:hover .t1 {
  color: var(--active_color);
}
.ins_applicationCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}
.ins_applicationCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_applicationCon1 .center_box .ins_top {
  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;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}
.ins_applicationCon1 .center_box .ins_top .item_box {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.17rem;
}
.ins_applicationCon1 .center_box .ins_top .item_box .item {
  height: 0.68rem;
  min-height: 40px;
  padding: 0.1rem 0.6rem;
  border-radius: 6px;
  overflow: hidden;
  background: #e9eff9;
  color: #677b99;
  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_applicationCon1 .center_box .ins_top .item_box .item:hover,
.ins_applicationCon1 .center_box .ins_top .item_box .item.active {
  color: var(--active_color);
}
.ins_applicationCon1 .center_box .content {
  width: 100%;
  height: auto;
  background: #9799a6;
  border-radius: 6px;
}
.ins_applicationCon1 .center_box .content .word_box {
  width: 50%;
  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.3rem;
  padding: 0.8rem 0.9rem;
}
.ins_applicationCon1 .center_box .content .word_box .word {
  width: 100%;
  height: auto;
  max-width: 510px;
}
.ins_applicationCon1 .center_box .content .word_box .word .t1 {
  color: #FFFFFF;
}
.ins_applicationCon1 .center_box .content .word_box .word .t2 {
  margin-top: 0.35rem;
  color: #FFFFFF;
  opacity: 0.6;
  line-height: 1.87;
}
.ins_applicationCon1 .center_box .content .images {
  width: 50%;
}
.ins_applicationCon1 .center_box .content .images .img {
  width: 100%;
  height: auto;
}
.ins_applicationCon1 .center_box .content .images .img img {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
}
.ins_applicationCon2 {
  width: 100%;
  height: auto;
  margin-top: 0.84rem;
  padding-bottom: 0.45rem;
  overflow: hidden;
}
.ins_applicationCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_applicationCon2 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 0.66rem;
}
.ins_applicationCon2 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #f7f7f7;
  border-radius: 6px;
  overflow: hidden;
}
.ins_applicationCon2 .center_box .item_box .item .images {
  width: auto;
  height: auto;
}
.ins_applicationCon2 .center_box .item_box .item .images .pb {
  padding-bottom: 62.3%;
}
.ins_applicationCon2 .center_box .item_box .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 6px;
  overflow: hidden;
}
.ins_applicationCon2 .center_box .item_box .item .word_box {
  margin-top: 0.3rem;
  padding: 0.4rem;
  padding-top: 0;
}
.ins_applicationCon2 .center_box .item_box .item .word_box .word {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_applicationCon2 .center_box .item_box .item .word_box .idx_more {
  margin-top: 0.4rem;
}
.ins_applicationCon2 .center_box .item_box .item .word_box .idx_more .more {
  background: none;
}
.ins_applicationCon2 .center_box .item_box .item:hover .images .pb .ab img {
  transform: scale(1.05);
}
.ins_applicationCon2 .center_box .item_box .item:hover .word_box .word {
  color: var(--active_color);
}
.ins_applicationCon2 .center_box .item_box .item:hover .word_box .idx_more .more i::after {
  width: 400px;
  height: 400px;
}
#kefu {
  position: relative;
  z-index: 100;
}
.messages_popu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.messages_popu .content {
  width: auto;
  height: auto;
  padding: 0.55rem 0.75rem 0.75rem 0.55rem;
  background: #FFFFFF;
}
.messages_popu .content .title {
  font-size: var(--font30);
  font-weight: 700;
  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;
}
.messages_popu .content .title i {
  display: block;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  color: #FFFFFF;
  background: #3d3d3d;
  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;
  font-size: 12px;
}
.messages_popu .content .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.7rem;
  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;
}
.messages_popu .content .item_box .item {
  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.4rem;
}
.messages_popu .content .item_box .item .name {
  font-size: var(--font20);
  color: #666666;
}
.messages_popu .content .item_box .item .input {
  width: auto;
  height: auto;
}
.messages_popu .content .item_box .item .input input {
  width: 4.5rem;
  min-width: 200px;
  height: 0.68rem;
  min-height: 40px;
  padding: 0 0.25rem;
  border: 1px solid #eaeaea;
  border-radius: 0.12rem;
}
.messages_popu .content button {
  width: 100%;
  height: 0.68rem;
  min-height: 40px;
  font-size: var(--font24);
  color: #FFFFFF;
  cursor: pointer;
  margin-top: 0.65rem;
  background: var(--active_color);
  border-radius: 0.12rem;
  border: 0;
}
.messages_popu.active {
  opacity: 1;
  visibility: visible;
}
.ins_technologydetaCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 2rem 0 1rem;
}
.ins_technologydetaCon1 .center_box {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 2;
  bottom: 0;
  left: 0;
}
.ins_technologydetaCon1 .img_w100 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_technologydetaCon1 .center_box .word_box {
  width: 100%;
  height: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_technologydetaCon1 .center_box .word_box .ins_top {
  width: 29.6875%;
  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;
  gap: 0.26rem;
}
.ins_technologydetaCon1 .center_box .word_box .ins_top .back_box {
  width: auto;
  height: auto;
  flex-shrink: 0;
}
.ins_technologydetaCon1 .center_box .word_box .ins_top .back_box .one {
  width: 68px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 0.12rem;
  background: #e9eff9;
}
.ins_technologydetaCon1 .center_box .word_box .ins_top .back_box .one i {
  color: var(--active_color);
}
.ins_technologydetaCon1 .center_box .word_box .ins_top .text_btn {
  width: 100%;
  background: #e9eff9;
  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;
  border-radius: 0.12rem;
  padding: 0 0.3rem;
}
.ins_technologydetaCon1 .center_box .word_box .ins_top .text_btn .one {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.12rem;
  border-radius: 0.12rem;
  font-size: var(--font16);
  color: var(--active_color);
}
.ins_technologydetaCon1 .center_box .word_box .ins_top .text_btn .one i {
  color: var(--active_color);
}
.ins_technologydetaCon1 .center_box .word_box .word {
  width: 42.1875%;
  background: #FFFFFF;
  padding: 1.3rem 0.84rem 1.8rem 0.68rem;
  border-radius: 6px;
}
.ins_technologydetaCon1 .center_box .word_box .word .t1 {
  color: var(--active_color);
}
.ins_technologydetaCon1 .center_box .word_box .word .t2 {
  margin-top: 0.4rem;
  line-height: 1.87;
  color: #333333;
}
@media (max-width:990px) {
  .ins_technologydetaCon1 .center_box {
    position: relative;
    z-index: 3;
    padding-top: 150px;
  }
}
.ins_aboutCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.3rem;
  padding-bottom: 1.5rem;
}
.ins_aboutCon1 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .idx_titBox {
  width: 100%;
  height: auto;
  text-align: center;
  max-width: 66.25%;
  margin: 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 .center_box .idx_titBox span {
  color: var(--active_color);
}
.ins_aboutCon1 .center_box .idx_titBox .word {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .idx_titBox .icon {
  margin-top: 0.2rem;
  width: 1.8rem;
}
.ins_aboutCon1 .center_box .idx_titBox .subtitle {
  line-height: 1.75;
  margin-top: 0.35rem;
}
.ins_aboutCon1 .center_box .swiper_box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.ins_aboutCon1 .center_box .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon1 .center_box .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  border-radius: 0.12rem;
  overflow: hidden;
}
.ins_aboutCon1 .center_box .swiper_box ul li .centerInfo .pb {
  padding-bottom: 63%;
}
.ins_aboutCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.45rem;
  padding-bottom: 1.65rem;
  overflow: hidden;
}
.ins_aboutCon2 .image_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
}
.ins_aboutCon2 .image_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ins_aboutCon2 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 1.6rem;
  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_aboutCon2 .center_box .content .left_box {
  width: 21.875%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.ins_aboutCon2 .center_box .content .left_box .item_box {
  width: fit-content;
  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;
}
.ins_aboutCon2 .center_box .content .left_box .item_box .item {
  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.3rem;
  cursor: pointer;
}
.ins_aboutCon2 .center_box .content .left_box .item_box .item .icon {
  flex-shrink: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ins_aboutCon2 .center_box .content .left_box .item_box .item .word {
  font-size: var(--font36);
}
.ins_aboutCon2 .center_box .content .left_box .item_box .item.active .icon {
  opacity: 1;
}
.ins_aboutCon2 .center_box .content .swiper_box {
  width: 72.9375%;
  overflow: hidden;
}
.ins_aboutCon2 .center_box .content .swiper_box ul li {
  width: 100%;
  height: auto;
}
.ins_aboutCon2 .center_box .content .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.ins_aboutCon2 .center_box .content .swiper_box ul li .centerInfo .imaegs {
  width: 63%;
}
.ins_aboutCon2 .center_box .content .swiper_box ul li .centerInfo .imaegs img {
  border-radius: 0.12rem;
}
.ins_aboutCon2 .center_box .content .swiper_box ul li .centerInfo .word {
  width: 20%;
  font-size: var(--font24);
}
/* 弹窗 */
.popup_img {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background: #000000b0;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_img .images {
  max-width: 80%;
  min-width: 50%;
  max-height: 80vh;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.popup_img .images .img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.popup_img .images .img img {
  width: auto;
  height: auto;
}
.popup_img .images .icon {
  width: 50px;
  height: 50px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%) translateY(-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;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_img .images .icon i {
  width: 0;
  height: 0;
  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;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_img .images .icon i::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}
.popup_img .images .icon i::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 20px;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(-45deg);
}
.popup_img .images .icon:hover {
  background: var(--active_color);
}
.popup_img .images .icon:hover i {
  transform: rotate(360deg);
}
.popup_img .images .icon:hover i::after {
  background: #FFF;
}
.popup_img .images .icon:hover i::before {
  background: #FFF;
}
.popup_img.active {
  opacity: 1;
  visibility: visible;
}
.ins_aboutCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.5rem;
  padding-bottom: 0.9rem;
}
.ins_aboutCon3 .center_box {
  width: 100%;
  height: auto;
}
.ins_aboutCon3 .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.48rem;
  margin-top: 1.07rem;
}
.ins_aboutCon3 .center_box .item_box .item {
  width: 100%;
  height: auto;
  background: #f5f5f5;
  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.3rem 0.45rem 0.35rem 0.4rem;
  border-radius: 6px;
}
.ins_aboutCon3 .center_box .item_box .item .word {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.ins_aboutCon3 .center_box .item_box .item .word .icon {
  width: 116px;
  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;
  line-height: 1;
  border-radius: 100px;
  border: 1px solid var(--active_color);
  font-size: var(--font16);
  color: var(--active_color);
}
.ins_aboutCon3 .center_box .item_box .item .word .more {
  font-size: var(--font20);
}
.ins_aboutCon3 .center_box .item_box .item .image_boxs {
  width: 43%;
  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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.ins_aboutCon3 .center_box .item_box .item .image_boxs .img {
  width: 100%;
  height: auto;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.ins_aboutCon3 .center_box .item_box .item .image_boxs .img .pb {
  padding-bottom: 70%;
}
.ins_aboutCon3 .center_box .item_box .item .image_boxs .look {
  margin-top: 0.46rem;
  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;
  cursor: pointer;
}
.ins_aboutCon3 .center_box .item_box .item .image_boxs .look span {
  font-size: var(--font16);
  opacity: 0.6;
  line-height: 1;
  display: block;
}
@media (max-width:990px) {
  footer {
    padding-top: 0;
  }
  .ins_contactCon2 .center_box .item_box .item + .item {
    margin-top: 0;
  }
  footer .center_box .footer_box .footer_bottom .copy_box {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .ins_aboutCon1 .center_box .idx_titBox {
    max-width: 100%;
  }
  .ins_aboutCon2 .center_box .content .left_box,
  footer .center_box .footer_box .footer_top .content .right_box {
    display: none !important;
  }
  .ins_aboutCon2 .center_box .content .swiper_box ul li .centerInfo,
  .ins_applicationCon1 .center_box .ins_top,
  .ins_newsCon1 .center_box .ins_top,
  .ins_contactCon2 .center_box .item_box,
  .ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .content,
  .ins_technologyCon1 .center_box .ins_top {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .ins_aboutCon2 .center_box .content .swiper_box ul li .centerInfo .imaegs,
  .ins_aboutCon2 .center_box .content .swiper_box ul li .centerInfo .word,
  footer .center_box .footer_box .footer_top .content .left_box,
  .idx_banner .swiper_box ul li .contentInfo .word_box .font,
  .idx_news .center_box .idx_titBox .word,
  .idx_partners .center_box .idx_titBox .word,
  .ins_newdateCon1 .center_box .ins_top .text_btn,
  .ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .content .title,
  .ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .content .subtitle,
  .ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .content .images {
    width: 100% !important;
  }
  .ins_aboutCon2 .center_box .content {
    margin-top: 1rem;
  }
  .ins_aboutCon3 .center_box .item_box,
  .ins_applicationCon2 .center_box .item_box,
  .idx_news .center_box .content .word_b .item_box,
  .ins_newsCon2 .center_box .item_box,
  .ins_productCon1 .center_box .item_box,
  .ins_technologyCon1 .center_box .content .item_box {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .ins_applicationCon1 .center_box .ins_top .item_box,
  .ins_newsCon1 .center_box .ins_top .item_boxm,
  .ins_technologyCon1 .center_box .ins_top .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
  }
  .idx_about .center_box .content,
  .idx_product .center_box .swiper_box {
    margin-top: 50px;
  }
  .idx_product .center_box .idx_titBox .icon {
    width: 120px !important;
  }
  .ins_newsCon1 .center_box .swiper_info .swiper_box ul li .centerInfo .content .images {
    margin-top: 30px;
  }
  .ins_technologydetaCon1 .center_box .word_box .word {
    padding: 20px !important;
  }
}
</pre></body></html>