@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 qq：491813163  微信：18223904336 */
/* 公共响应变量 */
/* 初始化*/
* {
  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;
  overflow-x: hidden;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@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: #333333;
  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;
  
}
body {
  min-height: 100%;
  font-family: "sourcehansanscn";
  font-size: 16px;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.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;
}
/* 动画延迟 */
/* 图片放大 */
/* 旋转 */
.xzx {
  transform: rotatex(180deg);
  -ms-transform: rotatex(180deg);
  -moz-transform: rotatex(180deg);
  -webkit-transform: rotatex(180deg);
  -o-transform: rotatex(180deg);
}
.xzy {
  transform: rotatey(180deg);
  -ms-transform: rotatey(180deg);
  -moz-transform: rotatey(180deg);
  -webkit-transform: rotatey(180deg);
  -o-transform: rotatey(180deg);
}
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  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;
}
/* 侧边条 */
/* 媒体查询 缩写 */
/* 媒体查询 缩写 */
/* 布局 */
.w1560 {
  width: 100%;
  height: auto;
  max-width: 81.25%;
  margin: 0 auto;
}
@media (max-width:1840px) {
  .w1560 {
    max-width: 100%;
    padding: 0 7.60869565%;
  }
}
@media (max-width:990px) {
  .w1560 {
    max-width: 100%;
    padding: 0 20px;
  }
}
.w1440 {
  /*width: 100%;*/
  /*height: auto;*/
  /*max-width: 75%;*/
  /*margin: 0 auto;*/
   height: auto;
  width: 62.5%;
  margin: 0 auto;
}
@media (max-width:1720px) {
  .w1440 {
    /*max-width: 100%;*/
    /*padding: 0 8.13953488%;*/
    width: 100%;
    padding: 0 9.45945946%;
  }
}
@media (max-width:990px) {
  .w1440 {
    max-width: 100%;
    padding: 0 20px;
  }
}
.w1400 {
  width: 100%;
  height: auto;
  max-width: 72.91666667%;
  margin: 0 auto;
}
@media (max-width:1680px) {
  .w1400 {
    max-width: 100%;
    padding: 0 8.33333333%;
  }
}
@media (max-width:990px) {
  .w1400 {
    max-width: 100%;
    padding: 0 20px;
  }
}
.w1200 {
  height: auto;
  width: 62.5%;
  margin: 0 auto;
}
@media (max-width:1480px) {
  .w1200 {
    width: 100%;
    padding: 0 9.45945946%;
  }
}
@media (max-width:990px) {
  .w1200 {
    width: 100%;
    padding: 0 20px;
  }
}
.w1080 {
  height: auto;
  max-width: 56.25%;
  margin: 0 auto;
}
@media (max-width:1360px) {
  .w1080 {
    max-width: 100%;
    padding: 0 10.29411765%;
  }
}
@media (max-width:990px) {
  .w1080 {
    max-width: 100%;
    padding: 0 20px;
  }
}
/* 常用 css3 动画 */
/* 360 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes run2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes tran_run {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tran_run2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
/* 大 => 小 */
@keyframes grow2 {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* 透明度  1 => 0 */
@keyframes bgfd {
  0% {
    width: 0%;
    height: 0%;
    opacity: 1;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}


::-webkit-scrollbar {
  width: 2px;
  height: 5px;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 0;
}

/* 默认 空标签 */
.cle {
  clear: both;
  width: 0;
  height: 0;
  display: block;
  overflow: hidden;
  font-size: 0px;
}
/* 图片 垂直居中 */
.imgmid {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 100%;
  width: 1px;
  margin-left: -1px;
  vertical-align: middle;
  font-size: 0px;
}
.block_a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  overflow: hidden;
}
.none {
  display: none;
}
/* 移动端不兼容 暂不推荐使用 */
.ratio {
  -webkit-aspect-ratio: 1 / 1;
  aspect-ratio: 1 / 1;
}
.center_box {
  position: relative;
  z-index: 5;
}
.m1px {
  margin-bottom: -1px;
}
:root {
  --active_color: #144ca8;
  --bg_color: #fafafa;
  /* 字体 */
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --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: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font90: clamp(32px, 0.9rem, 90px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font130: 1.3rem;
  --font160: 1.6rem;
  --font220: 2.2rem;
  --font15: clamp(12px, 0.15rem, 15px);
  /* 圆角 */
  --border-radius20: clamp(0.625rem, calc(-0.913rem   1.92vw), 1.25rem);
  --border-radius18: clamp(0.625rem, calc(-0.606rem   1.54vw), 1.125rem);
  --border-radius16: clamp(0.5rem, calc(-0.731rem   1.54vw), 1rem);
  --border-radius14: clamp(0.5rem, calc(-0.423rem   1.15vw), 0.875rem);
  --border-radius12: clamp(0.375rem, calc(-0.548rem   1.15vw), 0.75rem);
  --border-radius10: clamp(0.313rem, calc(-0.457rem   0.96vw), 0.625rem);
  --border-radius8: clamp(0.25rem, calc(-0.365rem   0.77vw), 0.5rem);
  /* 数值 */
  /* 70px ~ 310px */
  --num_310: clamp(4.375rem, calc(-32.548rem   46.15vw), 19.375rem);
  /* 70px ~ 300px */
  --num_300: clamp(4.375rem, calc(-31.010rem   44.23vw), 18.75rem);
  /* 70px ~ 230px */
  --num_230: clamp(4.375rem, calc(-20.240rem   30.77vw), 14.375rem);
  /* 70px ~ 220px */
  --num_220: clamp(4.375rem, calc(-18.702rem   28.85vw), 13.75rem);
  /* 70px ~ 210px */
  --num_210: clamp(4.375rem, calc(-17.163rem   26.92vw), 13.125rem);
  /* 70px ~ 200px */
  --num_200: clamp(4.375rem, calc(-15.625rem   25.00vw), 12.5rem);
  /* 70px ~ 190px */
  --num_190: clamp(4.375rem, calc(-14.087rem   23.08vw), 11.875rem);
  /* 70px ~ 180px */
  --num_180: clamp(4.375rem, calc(-12.548rem   21.15vw), 11.25rem);
  /* 70px ~ 170px */
  --num_170: clamp(4.375rem, calc(-11.010rem   19.23vw), 10.625rem);
  /* 70px ~ 160px */
  --num_160: clamp(4.375rem, calc(-9.4710rem   17.31vw), 10rem);
  /* 70px ~ 150px */
  --num_150: clamp(4.375rem, calc(-7.9330rem   15.38vw), 9.375rem);
  /* 70px ~ 140px */
  --num_140: clamp(4.375rem, calc(-6.3940rem   13.46vw), 8.75rem);
  /* 65px ~ 130px */
  --num_130: clamp(4.063rem, calc(-5.9380rem   12.50vw), 8.125rem);
  /* 60px ~ 120px */
  --num_120: clamp(3.75rem, calc(-5.4810rem   11.54vw), 7.5rem);
  /* 55px ~ 110px */
  --num_110: clamp(3.438rem, calc(-5.0240rem   10.58vw), 6.875rem);
  /* 50px ~ 105px */
  --num_105: clamp(3.125rem, calc(-5.3370rem   10.58vw), 6.563rem);
  /* 50px ~ 100px */
  --num_100: clamp(3.125rem, calc(-4.5670rem   9.620vw), 6.25rem);
  /* 45px ~ 95px */
  --num_95: clamp(2.813rem, calc(-4.880rem   9.62vw), 5.938rem);
  /* 45px ~ 90px */
  --num_90: clamp(2.813rem, calc(-4.111rem   8.65vw), 5.625rem);
  /* 40px ~ 85px */
  --num_85: clamp(2.5rem, calc(-4.423rem   8.65vw), 5.313rem);
  /* 40px ~ 80px */
  --num_80: clamp(2.5rem, calc(-3.654rem   7.69vw), 5rem);
  /* 35px ~ 75px */
  --num_75: clamp(2.188rem, calc(-3.966rem   7.69vw), 4.688rem);
  /* 35px ~ 70px */
  --num_70: clamp(2.188rem, calc(-3.197rem   6.73vw), 4.375rem);
  /* 30px ~ 65px */
  --num_65: clamp(1.875rem, calc(-3.510rem   6.73vw), 4.063rem);
  /* 30px ~ 60px */
  --num_60: clamp(1.875rem, calc(-2.740rem   5.77vw), 3.75rem);
  /* 25px ~ 55px */
  --num_55: clamp(1.563rem, calc(-3.053rem   5.77vw), 3.438rem);
  /* 25px ~ 50px */
  --num_50: clamp(1.563rem, calc(-2.284rem   4.81vw), 3.125rem);
  /* 20px ~ 45px */
  --num_45: clamp(1.25rem, calc(-2.596rem   4.81vw), 2.813rem);
  /* 20px ~ 40px */
  --num_40: clamp(1.25rem, calc(-1.827rem   3.85vw), 2.5rem);
  /* 15px ~ 35px */
  --num_35: clamp(0.938rem, calc(-2.139rem   3.85vw), 2.188rem);
  /* 15px ~ 30px */
  --num_30: clamp(0.938rem, calc(-1.370rem   2.88vw), 1.875rem);
  /* 10px ~ 25px */
  --num_25: clamp(0.625rem, calc(-1.683rem   2.88vw), 1.563rem);
  /* 10px ~ 20px */
  --num_20: clamp(0.625rem, calc(-0.913rem   1.92vw), 1.25rem);
}
/* 分页 */
.layui-laypage a,
.layui-laypage span {
  height: 43px;
  line-height: 43px;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em {
  background-color: var(--active_color);
}
.layui-laypage a:hover {
  color: var(--active_color);
}
/* 字体颜色 */
.white {
  color: #fff;
}
.blue {
  color: #1f4d92;
}
/* 网格布局 */
.grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.mt10 {
  margin-top: 0.1rem;
}
.mt20 {
  margin-top: 0.2rem;
}
.mt30 {
  margin-top: 0.3rem;
}
.mt40 {
  margin-top: 0.4rem;
}
.mt50 {
  margin-top: 0.5rem;
}
/* 文字字重 */
.medium {
  font-weight: 500;
}
.bold {
  font-weight: 600;
}
.heavy {
  font-weight: 700;
}
/* 字体大小 */
/* 间距 */
/* 点扩散 */
.halo_box {
  width: 100px;
  height: 100px;
  position: relative;
  --color: #fff;
}
.halo_box::before,
.halo_box::after,
.halo_box .halo::before,
.halo_box .halo::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  box-shadow: 0 0 60px var(--color) inset;
}
.halo_box::before,
.halo_box::after,
.halo_box .halo::before,
.halo_box .halo::after,
.halo_box .halo {
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.halo_box::before {
  animation: bgfd 6s ease infinite;
}
.halo_box::after {
  animation: bgfd 6s ease infinite 1.5s;
}
.halo_box .halo {
  width: 100%;
  height: 100%;
  position: relative;
}
.halo_box .halo::before {
  animation: bgfd 6s ease infinite 3s;
}
.halo_box .halo::after {
  animation: bgfd 6s ease infinite 4.5s;
  filter: invert();
}
/* ----------------------------------------------------------    字体 */
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "sourcehansanscn";
  src: ;
  font-weight: 200;
}
@font-face {
  font-family: "sourcehansanscn";
  src: ;
  font-weight: 300;
}
@font-face {
  font-family: "sourcehansanscn";
  src: ;
  font-weight: normal;
}
@font-face {
  font-family: "sourcehansanscn";
  src: ;
  font-weight: 500;
}
@font-face {
  font-family: "sourcehansanscn";
  src: ;
  font-weight: 600;
}
@font-face {
  font-family: "sourcehansanscn";
  src: ;
  font-weight: 700;
}
@font-face {
  font-family: "opposans";
  src: ;
  font-weight: 700;
}

.layui-btn {
  height: 100%;
  border-radius: 0;
  background: #144ca8;
}
/* placeholder style */
/* 视频弹窗 */
.videomark {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  display: none;
}
.videobox {
  position: fixed;
  width: 1400px;
  max-width: calc(100% - 100px);
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
}
.videobox video {
  width: 100%;
  object-fit: fill;
}
.videobox .close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  right: -20px;
  top: -20px;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0;
  --c: #1a1a1a;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.videobox .close::before,
.videobox .close::after {
  content: '';
  width: 50%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--c);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.videobox .close::before {
  width: 2px;
}
.videobox .close::after {
  height: 2px;
}
.videobox .close:hover {
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  background: #144ca8;
  --c: #fff;
}
.videobox .video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.videobox .video video,
.videobox .video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  object-fit: fill;
}
@media (max-width:1440px) {
  .videobox {
    max-width: 70%;
  }
}
@media (max-width:768px) {
  .videobox {
    width: 100%;
    max-width: 100%;
  }
  .videobox .close {
    right: 0;
    top: -40px;
  }
}
.h100 {
  height: 100%;
}
/* 最大 内容盒子 */
main {
  width: 100%;
  height: auto;
  /*overflow: hidden;*/
  --header-height: 80px;
}
@media (max-width:990px) {
  main {
    --header-height: 60px;
  }
}
.fp-auto-height {
  min-height: auto !important;
}
/* 头部 */
header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  /* mobile version header */
}
header .header_box {
  width: 100%;
  height: var(--header-height);
  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;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  --logo-color: #fff;
  --color: #fff;
  --bg-color: rgba(255, 255, 255, 0.3);
  --filter: brightness(0) invert(1);
  --spacing: clamp(1.5rem, calc(-2.5rem   5vw), 3.125rem);
}
header .header_box::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 100%;
  height: 0%;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
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;
  --min_width: 200px;
  gap: 20px;
}
header .header_box .center_box .header_logo {
  /*width: var(--min_width);*/
  width: 2.5rem;
  height: 100%;
  flex-shrink: 0;
}
header .header_box .center_box .header_nav {
  width: fit-content;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: clamp(30px, 3.125vw, 60px);
}
header .header_box .center_box .header_column {
  width: var(--min_width);
  height: 100%;
  flex-shrink: 0;
}
header .header_box .center_box .logo {
  width: auto;
  height: 100%;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
header .header_box .center_box .logo svg {
  width: 100%;
  height: 100%;
}
header .header_box .center_box .logo svg .cls-1,
header .header_box .center_box .logo svg .cls-3 {
  fill: var(--color);
}
header .header_box .center_box .logo svg .cls-2 {
  fill: #144ca8;
}
header .header_box .center_box .logo 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;
  position: relative;
}
header .header_box .center_box .logo a .be {
  opacity: 0;
  position: absolute;
  z-index: 2;
}
header .header_box .center_box .logo a .af {
  position: relative;
  z-index: 1;
}
header .header_box .center_box .logo a img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .nav {
  width: auto;
  height: 100%;
  position: relative;
  z-index: 5;
}
header .header_box .center_box .nav ul {
  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;
  gap: clamp(25px, 2.56vw, 30px);
}
header .header_box .center_box .nav ul li {
  width: 100%;
  height: 100%;
  position: relative;
}
header .header_box .center_box .nav ul li > a {
  width: 100%;
  height: 100%;
  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;
  line-height: 1;
  font-size: var(--font16);
  color: var(--color);
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .nav ul li > a:before {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  opacity: 0.23; 
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .nav ul li .subnavbox{
    display: none;
}
header .header_box .center_box .nav ul li .subnav {
  position: absolute;
  top: 100%;
  background: #1f4d92;
  min-width: 170px;
  left: 50%;
  padding: 0.1rem 0;
  transform: translatex(-50%);
  /*opacity: 0;*/
  /*visibility: hidden;*/
  /*-webkit-transition: all 0.3s ease;*/
  /*-o-transition: all 0.3s ease;*/
  /*transition: all 0.3s ease;*/
  
}
header .header_box .center_box .nav ul li .subnav > a {
  font-size: 14px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.07rem 0;
  /*-webkit-transition: all 0.3s ease;*/
  /*-o-transition: all 0.3s ease;*/
  /*transition: all 0.3s ease;*/
}
header .header_box .center_box .nav ul li .subnav > a:hover {
  /*-webkit-transition: all 0.3s ease;*/
  /*-o-transition: all 0.3s ease;*/
  /*transition: all 0.3s ease;*/
  background-color: #285dac;
  color: #fff;
}
header .header_box .center_box .nav ul li .subnav .active {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #285dac;
}


header .header_box .center_box .nav ul li .propanel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  position: absolute;
  top: 100%;
  background: var(--active_color);
  min-width: 170px;
  left: 50%;
  padding: 0.1rem 0;
  transform: translatex(-50%);
  /*opacity: 0;*/
  /*visibility: hidden;*/
  /*-webkit-transition: all 0.3s ease;*/
  /*-o-transition: all 0.3s ease;*/
  /*transition: all 0.3s ease;*/
  position: fixed;
  width: 12rem;
  min-width: 1000px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.18);
  background: #f7f7f7;
  
}
header .header_box .center_box .nav ul li .propanel .left {
  width: 20.8%;
  padding: 0.2rem;
}
header .header_box .center_box .nav ul li .propanel .left .t_li {
    display: flex;
    justify-content: space-between;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.12rem 0.16rem;
  cursor: pointer;
}
header .header_box .center_box .nav ul li .propanel .left .t_li .icon{
    opacity: 0;
    -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .nav ul li .propanel .left .t_li:hover{
  /*  -webkit-transition: all 0.3s ease;*/
  /*-o-transition: all 0.3s ease;*/
  /*transition: all 0.3s ease;*/
  /*color: #fff;*/
  /*background-color: var(--active_color);*/
}
header .header_box .center_box .nav ul li .propanel .left .active {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  background-color: var(--active_color);
}
header .header_box .center_box .nav ul li .propanel .left .active .icon{
    opacity: 1;
    -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .header_box .center_box .nav ul li .propanel .right {
  width: 79.2%;
  background-color: #fff;
  padding: 0.3rem 0.24rem 0.59rem 0.24rem;
}
header .header_box .center_box .nav ul li .propanel .right .probox{
    display: none;
}
header .header_box .center_box .nav ul li .propanel .right .active{
    display: inline-block;
}
header .header_box .center_box .nav ul li .propanel .right .scan_title {
  /*font-weight: bold;*/
  font-size: var(--font18);
}
header .header_box .center_box .nav ul li .propanel .right .itemlist {
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: -webkit-flex;*/
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  /*-ms-flex-wrap: wrap;*/
  /*gap: 0.53rem;*/
  margin-top: 0.2rem;
  padding-top: 0.3rem;
  border-top: solid 1px #e9e9e9;
}
header .header_box .center_box .nav ul li .propanel .right .itemlist .item{
    margin: .1rem 0;
}
header .header_box .center_box .nav ul li .propanel .right .itemlist .item .t0 {
  font-size: var(--font16);
  /*font-weight: bold;*/
}
header .header_box .center_box .nav ul li .propanel .right .itemlist .item .t0:hover{
    color: #144ca8;
}
header .header_box .center_box .nav ul li .propanel .right .itemlist .item .info {
  margin-top: 0.1rem;
  display: none;
}
header .header_box .center_box .nav ul li .propanel .right .itemlist .item .info .p_li {
  display: block;
  font-size: var(--font14);
  margin-top: 0.1rem;
  color: #666666;
}
header .header_box .center_box .nav ul li .propanel .right .itemlist .item .info .p_li:hover{
    color: #144ca8;
}
header .header_box .center_box .nav ul li .propanel .right .itemlist .item .info .active {
  color: #144ca8;
}
header .header_box .center_box .nav ul li .propanel .right .itemlist .active {
  color: #144ca8;
}
header .header_box .center_box .nav ul li .propanel .right .itemlist .active .t0 {
  font-weight: 600;
}
header .header_box .center_box .nav ul li .core_propanel {
  position: fixed;
  width: 12rem;
  min-width: 1000px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.18);
  background: #f7f7f7;
}
header .header_box .center_box .nav ul li .core_propanel .itemlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.29rem;
  padding: 0.32rem 0.52rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
header .header_box .center_box .nav ul li .core_propanel .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  height: 1.5rem;
  min-height: 120px;
  background: #ffffff;
  border-radius: 12px;
}
header .header_box .center_box .nav ul li .core_propanel .itemlist .item .icon {
  width: 0.36rem;
  height: 0.36rem;
}
header .header_box .center_box .nav ul li .core_propanel .itemlist .item .icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .header_box .center_box .nav ul li .core_propanel .itemlist .item .word {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 0.2rem;
  font-size: var(--font16);
}
header .header_box .center_box .nav ul li .core_propanel .itemlist .item:hover .icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
header .header_box .center_box .nav ul li .core_propanel .itemlist .item:hover .word {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
  font-weight: 600;
}
header .header_box .center_box .nav ul li:hover > a {
  /*color: #144ca8;*/
}
header .header_box .center_box .nav ul li:hover .subnav,
header .header_box .center_box .nav ul li:hover .propanel,
header .header_box .center_box .nav ul li:hover .core_propanel {
  opacity: 1;
  visibility: visible;
}
header .header_box .center_box .nav ul li:hover a::before {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header .header_box .center_box .column {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
header .header_box .center_box .column .head_logon {
  font-size: var(--font14);
  font-weight: 800;
  width: 80px;
  height: 32px;
  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(--bg-color);
  border-radius: 100px;
}
header .header_box .center_box .column .head_logon * {
  color: var(--color);
}
header .header_box .center_box .column .head_logon a:hover {
  color: #144ca8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column .head_search {
  width: auto;
  height: auto;
  position: relative;
}
header .header_box .center_box .column .head_search .round {
  width: auto;
  height: auto;
  cursor: pointer;
}
header .header_box .center_box .column .head_search .round i {
  font-size: var(--font18);
  color: var(--color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column .head_search .search_box {
  position: fixed;
  width: 100vw;
  height: 250px;
  left: 0;
  background-color: #fff;
  top: 0;
  z-index: 88;
  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;
  transform: translatey(-100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column .head_search .search_box .inputbox {
  width: 100%;
  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;
  grid-gap: 0 20px;
}
header .header_box .center_box .column .head_search .search_box .inputbox input {
  max-width: clamp(calc(420 / 16 * 1rem), calc((420 / 16 * 1rem)   ((620 - 420) * ((100vw - 1024 / 16 * 1rem) / (1920 - 1024)))), calc(620 / 16 * 1rem));
  height: clamp(calc(38 / 16 * 1rem), calc((38 / 16 * 1rem)   ((52 - 38) * ((100vw - 1024 / 16 * 1rem) / (1920 - 1024)))), calc(52 / 16 * 1rem));
  width: 100%;
  border: 1px solid #e5e5e5;
  font-size: var(--font14);
  color: #1f1f1f;
  padding-left: clamp(calc(20 / 2 * 1px), calc(20 / 1920 * 100 * 1vw), 20px);
  border-radius: 0.1rem;
}
header .header_box .center_box .column .head_search .search_box .inputbox a {
  width: clamp(calc(80 / 16 * 1rem), calc((80 / 16 * 1rem)   ((90 - 80) * ((100vw - 1024 / 16 * 1rem) / (1920 - 1024)))), calc(90 / 16 * 1rem));
  height: clamp(calc(38 / 16 * 1rem), calc((38 / 16 * 1rem)   ((52 - 38) * ((100vw - 1024 / 16 * 1rem) / (1920 - 1024)))), calc(52 / 16 * 1rem));
  padding: 0 15px;
  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: #144ca8;
  color: #fff;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 0.1rem;
}
header .header_box .center_box .column .head_search .search_box .closbox {
  width: clamp(calc(30 / 16 * 1rem), calc((30 / 16 * 1rem)   ((40 - 30) * ((100vw - 1024 / 16 * 1rem) / (1920 - 1024)))), calc(40 / 16 * 1rem));
  height: clamp(calc(30 / 16 * 1rem), calc((30 / 16 * 1rem)   ((40 - 30) * ((100vw - 1024 / 16 * 1rem) / (1920 - 1024)))), calc(40 / 16 * 1rem));
  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: #f8f8f8;
  position: absolute;
  bottom: 20px;
  border-radius: 50%;
  cursor: pointer;
}
header .header_box .center_box .column .head_search .search_box .closbox i {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0;
  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;
}
header .header_box .center_box .column .head_search .search_box .closbox i::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  background: #000;
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column .head_search .search_box .closbox i::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 2px;
  background: #000;
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column .head_search .search_box .closbox:hover {
  background: #144ca8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column .head_search .search_box .closbox:hover i::after {
  background: #fff;
}
header .header_box .center_box .column .head_search .search_box .closbox:hover i::before {
  background: #fff;
}
header .header_box .center_box .column .head_search .search_box.active {
  transform: translatey(0%);
}
header .header_box .center_box .column .line {
  width: 1px;
  height: 12px;
  background: var(--bg-color);
}
header .header_box .center_box .column .head_language {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
}
header .header_box .center_box .column .head_language .round {
  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;
  cursor: pointer;
  gap: 6px;
}
header .header_box .center_box .column .head_language .round .icon {
  width: auto;
  height: 1em;
  font-size: var(--font22);
  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;
  filter: var(--filter);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column .head_language .round .icon i {
  font-size: var(--font18);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .column .head_language .round .drop {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 3px 0 3px;
  border-color: var(--color) transparent transparent transparent;
}
header .header_box .center_box .column .head_language .sub_btn {
  position: absolute;
  top: calc(100%   10px);
  left: 50%;
  width: 100%;
  min-width: 70px;
  height: auto;
  background: #fff;
  padding: 5px 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 9999999;
  transform: translatex(-50%);
  border-radius: 0.1rem;
}
header .header_box .center_box .column .head_language .sub_btn a {
  display: block;
  text-align: center;
  padding: 3px 0;
  color: #242424;
}
header .header_box .center_box .column .head_language .sub_btn a:hover,
header .header_box .center_box .column .head_language .sub_btn a.active {
  color: #144ca8;
}
header .header_box .center_box .column .head_language:hover .head_btn {
  --initial-color: #144ca8;
}
header .header_box .center_box .column .head_language:hover .sub_btn {
  opacity: 1;
  visibility: visible;
}
@media (max-width:990px) {
  header .header_box {
    display: none !important;
  }
}

header .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;
}
header .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;
}
header .search_for .search_in .input {
  width: fit-content;
  height: auto;
}
header .search_for .search_in .input input {
  width: 520px;
  height: 0.4rem;
  min-height: 38px;
  border: 0;
}
header .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;
}
header .search_for .search_in .icon:hover {
  color: var(--active_color);
}
header .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;
}
header .search_for .close_box i {
  font-size: var(--font20);
}
header .search_for .close_box:hover {
  color: var(--active_color);
}
header .search_for.active {
  opacity: 1;
  visibility: visible;
  transform: translatey(0%);
}

/*header.active .header_box,*/
/*header.white .header_box,*/
/*header:hover .header_box {*/
/*  --color: #333333;*/
/*  --bg-color: rgba(4, 29, 44, 0.04);*/
/*  --logo-color: #525f66;*/
/*  --filter: none;*/
/*}*/
/*header.active .header_box::after,*/
/*header.white .header_box::after,*/
/*header:hover .header_box::after {*/
/*  opacity: 1;*/
/*  height: 100%;*/
/*}*/
/*header.active .header_box .logo a .be,*/
/*header.white .header_box .logo a .be,*/
/*header:hover .header_box .logo a .be {*/
/*  opacity: 1;*/
/*}*/
/*header.active .header_box .logo a .af,*/
/*header.white .header_box .logo a .af,*/
/*header:hover .header_box .logo a .af {*/
/*  opacity: 0;*/
/*}*/
header.active {
  --header-height: 60px;
}
header .m_header_box {
  width: 100%;
  height: auto;
  display: none;
}
header .m_header_box .header_title {
  width: 100%;
  height: 60px;
  padding: 0 20px;
  position: relative;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
header .m_header_box .header_title .logo {
  width: 50%;
  /*max-width: 120px;*/
  height: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
header .m_header_box .header_title .logo svg {
  width: 100%;
  height: 100%;
}
header .m_header_box .header_title .logo svg .cls-1,
header .m_header_box .header_title .logo svg .cls-3 {
  fill: var(--color);
}
header .m_header_box .header_title .logo svg .cls-2 {
  fill: #144ca8;
}
header .m_header_box .header_title .logo a {
  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 .m_header_box .header_title .column {
  position: relative;
  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;
  gap: .2rem;
}
header .m_header_box .header_title .column .menu_btn {
  width: 24px;
  height: 30px;
  overflow: hidden;
}
header .m_header_box .header_title .column .menu_btn .icon {
  width: 100%;
  height: 100%;
  position: relative;
}
header .m_header_box .header_title .column .menu_btn .icon::after,
header .m_header_box .header_title .column .menu_btn .icon::before,
header .m_header_box .header_title .column .menu_btn .icon i {
  width: 100%;
  height: 2px;
  display: block;
  background: #144ca8;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -50%;
  transform-origin: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .m_header_box .header_title .column .menu_btn .icon::before {
  content: '';
  margin-top: -8px;
}
header .m_header_box .header_title .column .menu_btn .icon::after {
  content: '';
  margin-top: 6px;
}
header .m_header_box .header_title .column .menu_btn.active .icon i {
  opacity: 0;
}
header .m_header_box .header_title .column .menu_btn.active .icon::before {
  margin-top: -1px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  border-radius: 5px;
}
header .m_header_box .header_title .column .menu_btn.active .icon::after {
  margin-top: -1px;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  border-radius: 5px;
}
header .m_header_box .header_title .column .head_btn {
  width: auto;
  height: 30px;
  margin-right: 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-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
header .m_header_box .header_title .column .head_btn .icon {
  max-width: 14px;
  height: 14px;
  font-size: 0;
  margin-right: 5px;
  filter: invert(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .m_header_box .header_title .column .head_btn .link {
  line-height: 1;
  font-size: 12px;
  color: #000;
  margin-top: 3px;
}
header .m_header_box .header_title .column .head_btn .link span {
  opacity: 0.6;
}
header .m_header_box .header_title .column .head_btn .link a {
  color: #000;
  opacity: 0.6;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .m_header_box .header_title .column .head_btn .link a:hover {
  opacity: 1;
}
header .m_header_box .header_title .column .head_btn:hover .icon {
  filter: invert(1);
}
header .m_header_box .header_title .column .head_btn:hover .link {
  color: #000;
}
header .m_header_box .header_title .column .head_btn:hover .link a,
header .m_header_box .header_title .column .head_btn:hover .link span {
  color: #000;
}
header .m_header_box .header_title::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #000;
  opacity: 0.1;
}
header .m_header_box .header_body {
  width: 100%;
  height: calc(100vh - 60px);
  background: #fff;
  display: none;
  overflow: hidden;
}
header .m_header_box .header_body .menu_info {
  width: 100%;
  height: 100%;
  padding: 0 0 20px;
  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;
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav {
  width: 100%;
  height: auto;
  flex: 1;
  padding: 20px;
  overflow: hidden;
  overflow-y: auto;
}
header .m_header_box .header_body .menu_nav ul {
  width: 100%;
  height: auto;
}
header .m_header_box .header_body .menu_nav ul li {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav ul li .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav ul li .one a {
  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: 15px 0;
  position: relative;
  --onea: #000;
}
header .m_header_box .header_body .menu_nav ul li .one a .title {
  width: 100%;
  height: auto;
  flex: 1;
  font-size: 16px;
  line-height: 20px;
  color: var(--onea);
}
header .m_header_box .header_body .menu_nav ul li .one a .icon {
  width: 20px;
  height: 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;
  font-size: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .m_header_box .header_body .menu_nav ul li .one a .icon i {
  font-size: 12px;
  color: var(--onea);
}
header .m_header_box .header_body .menu_nav ul li .one.active a {
  --onea: #144ca8;
}
header .m_header_box .header_body .menu_nav ul li .one.active.is_active a .icon {
  --color: #144ca8;
  
}
header .m_header_box .header_body .menu_nav ul li .one   ul {
  padding: 0 0 20px;
}
header .m_header_box .header_body .menu_nav ul li .one   ul > li {
  margin-top: 10px;
}
header .m_header_box .header_body .menu_nav ul li .one   ul > li:first-child {
  margin: 0;
}
header .m_header_box .header_body .menu_nav ul li .two {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav ul li .two a {
  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: 5px 0;
  position: relative;
  --towa: #000;
}
header .m_header_box .header_body .menu_nav ul li .two a .icon {
  width: 20px;
  height: 16px;
  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-size: 0;
  --color: var(--towa);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
header .m_header_box .header_body .menu_nav ul li .two a .icon i {
  font-size: 10px;
  color: var(--towa);
}
header .m_header_box .header_body .menu_nav ul li .two a .title {
  width: 100%;
  height: auto;
  flex: 1;
  font-size: 14px;
  line-height: 16px;
  color: var(--towa);
}
header .m_header_box .header_body .menu_nav ul li .two.active a {
  --towa: #144ca8;
}
header .m_header_box .header_body .menu_nav ul li .two   ul {
  padding: 10px 0 10px 20px;
}
header .m_header_box .header_body .menu_nav ul li .two   ul > li {
  margin-top: 10px;
}
header .m_header_box .header_body .menu_nav ul li .two   ul > li > a {
  padding: 0 0 0 20px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  color: var(--threea);
  --threea: #999;
}
header .m_header_box .header_body .menu_nav ul li .two   ul > li > a::after {
  content: '';
  width: 4px;
  height: 4px;
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  background: var(--threea);
}
header .m_header_box .header_body .menu_nav ul li .two   ul > li:first-child {
  margin: 0;
}
header .m_header_box .header_body .menu_nav ul li .three {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav ul li .three a {
  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;
  position: relative;
  --threea: #757575;
}
header .m_header_box .header_body .menu_nav ul li .three a .icon {
  width: 20px;
  height: 16px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .m_header_box .header_body .menu_nav ul li .three a .icon::after {
  content: '';
  width: 4px;
  height: 4px;
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  background: var(--threea);
}
header .m_header_box .header_body .menu_nav ul li .three a .title {
  width: 100%;
  height: auto;
  flex: 1;
  font-size: 14px;
  line-height: 16px;
  color: var(--threea);
}
header .m_header_box .header_body .menu_nav ul li .three.active a {
  --threea: #144ca8;
}
header .m_header_box .header_body .menu_nav ul li .three   ul {
  padding: 10px 0 10px 20px;
}
header .m_header_box .header_body .menu_nav ul li .three   ul > li {
  margin-top: 10px;
}
header .m_header_box .header_body .menu_nav ul li .three   ul > li > a {
  padding: 0 0 0 20px;
}
header .m_header_box .header_body .menu_nav ul li .three   ul > li:first-child {
  margin: 0;
}
header .m_header_box .header_body .menu_nav ul li ul {
  display: none;
}
header .m_header_box .header_body .menu_nav ul li li {
  border: 0;
}
header .m_header_box .header_body .menu_nav ul li > a {
  font-size: 12px;
  color: #999;
}
header .m_header_box .header_body .menu_nav ul li > a.active {
  color: #144ca8;
}

header .m_header_box .header_body .search_m_for{
    position: relative;
    padding: 20px;
}

header .m_header_box .header_body .search_m_for .search_in {
      width: 100%;
  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;
}
header .m_header_box .header_body .search_m_for .search_in .input {
      width: 100%;
  height: auto;
}
header .m_header_box .header_body .search_m_for .search_in .input input {
  width: 100%;
  height: 0.4rem;
  min-height: 38px;
  border: 0;
}
header .m_header_box .header_body .search_m_for .search_in .icon {
        position: absolute;
    right: .8rem;
  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;
}







header .m_header_box .header_body .menu_form {
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 0 20px;
  overflow: hidden;
}
header .m_header_box .header_body .menu_form .center {
  width: 100%;
  height: 44px;
  background: #f8f8f8;
  overflow: hidden;
}
header .m_header_box .header_body .menu_form .center form {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
header .m_header_box .header_body .menu_form .center form input {
  flex: 1;
  height: 100%;
  padding: 0 15px;
  background: transparent;
  font-size: 14px;
  color: #282f36;
  border: 0;
}
header .m_header_box .header_body .menu_form .center form button {
  width: 50px;
  padding: 0;
}
header .m_header_box .header_body .menu_form .center form button i {
  font-size: 18px;
  color: #fff;
}
header .m_header_box .header_body .menu_lang {
  width: 100%;
  height: auto;
  margin-top: 40px;
  padding: 0 20px;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
header .m_header_box .header_body .menu_lang .one {
  width: auto;
  height: 36px;
  margin-right: 10px;
  overflow: hidden;
}
header .m_header_box .header_body .menu_lang .one a {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #fff;
  border-radius: 50px;
  font-size: 12px;
  color: #282f36;
}
header .m_header_box .header_body .menu_lang .one a.active {
  background: #144ca8;
  color: #fff;
}
@media (max-width:990px) {
  header .m_header_box {
    display: block;
  }
}
header .m_header_nbsp {
  width: 100%;
  height: var(--header-height);
  display: none;
  overflow: hidden;
}
@media (max-width:990px) {
  header .m_header_nbsp {
    display: block;
  }
}
.bluebg {
  background-color: #1f4d92;
}
.activec {
  color: #144ca8;
}
.black3 {
  color: #333333;
}
.black6 {
  color: #666666;
}
.black9 {
  color: #999999;
}
.f7 {
  background: #f7f7f7;
}
.bgwhite {
  background: #ffffff;
}
.center {
  text-align: center;
}
.pthead {
  padding-top: var(--header-height);
}
.mthead {
  margin-top: var(--header-height);
}
/* 底部 */
footer {
  width: 100%;
  height: auto;
}
footer .center_box {
  height: 100%;
}
footer .headline {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  color: #2c3147;
  font-weight: 800;
}
footer .headline a {
  font-size: var(--font16);
  color: #2c3147;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .headline a:hover {
  color: #144ca8;
}
footer .footer_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;
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
footer .footer_box .footer_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-top: clamp(calc(80 / 2 * 1px), calc(80 / 1920 * 100 * 1vw), 80px);
  padding-bottom: clamp(calc(30 / 2 * 1px), calc(30 / 1920 * 100 * 1vw), 30px);
  border-bottom: 2px solid #f0f3f5;
}
footer .footer_box .footer_top .logo {
  /*width: fit-content;*/
  width: 2rem;
  height: auto;
  font-size: 0;
}
footer .footer_box .footer_top .logo a{
    display: block;
    width: 100%;
}
footer .footer_box .footer_top .share {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 14px;
}
footer .footer_box .footer_top .share .title {
  font-size: var(--font14);
  color: #808391;
  font-weight: 800;
}
footer .footer_box .footer_top .share .item {
  width: var(--item-size);
  height: var(--item-size);
  --item-size: 36px;
  position: relative;
  z-index: 1;
}
footer .footer_box .footer_top .share .item .icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #e6e9ee;
  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;
}
footer .footer_box .footer_top .share .item .icon i {
  font-size: var(--font18);
  line-height: 1;
  color: #8291aa;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer_box .footer_top .share .item .qrcode {
  width: 90px;
  height: auto;
  margin: 0 0 10px;
  padding-bottom: 10px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translatex(-50%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer_box .footer_top .share .item .qrcode .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  background: #fff;
  font-size: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
footer .footer_box .footer_top .share .item .qrcode::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translatex(-50%);
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #ffffff transparent transparent transparent;
}
footer .footer_box .footer_top .share .item:hover .icon {
  background: #144ca8;
  border: 1px solid #144ca8;
}
footer .footer_box .footer_top .share .item:hover .icon i {
  color: #fff;
}
footer .footer_box .footer_top .share .item:hover .qrcode {
  margin: 0;
  opacity: 1;
  pointer-events: initial;
  visibility: visible;
}
footer .footer_box .footer_top .share .item:first-child {
  margin: 0;
}
footer .footer_box .footer_center {
  width: 100%;
  height: auto;
  padding-top: clamp(calc(60 / 2 * 1px), calc(60 / 1920 * 100 * 1vw), 60px);
  padding-bottom: clamp(calc(80 / 2 * 1px), calc(80 / 1920 * 100 * 1vw), 80px);
}
footer .footer_box .footer_center .nav_box {
  width: auto;
  height: auto;
}
footer .footer_box .footer_center .nav_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
footer .footer_box .footer_center .nav_box ul li {
  width: auto;
  height: auto;
  overflow: hidden;
}
footer .footer_box .footer_center .nav_box ul li .menu {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
footer .footer_box .footer_center .nav_box ul li .menu .one {
  width: 100%;
  height: auto;
  margin: 15px 0 0;
  line-height: 1.2;
  transform: translatex(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer_box .footer_center .nav_box ul li .menu .one:hover{
    transform: translatex(3px);
}

footer .footer_box .footer_center .nav_box ul li .menu .one a {
  font-size: var(--font14);
  color: #808391;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
footer .footer_box .footer_center .nav_box ul li .menu .one a:hover {
  color: #144ca8;
}
footer .footer_box .footer_center .nav_box ul li .menu .one:first-child {
  margin: 0;
}
footer .footer_box .footer_bottom {
  width: 100%;
  height: auto;
  padding-top: 0.3rem;
  padding-bottom: 0.55rem;
  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;
  position: relative;
  z-index: 1;
}
footer .footer_box .footer_bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translatex(-50vw);
  width: 100vw;
  height: 100%;
  background: #f5f5f5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer_box .footer_bottom .copy {
  width: auto;
  height: auto;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
  font-size: var(--font14);
  color: #888888;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-weight: 800;
  
}
footer .footer_box .footer_bottom .copy a {
  font-size: var(--font14);
  color: #888888;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer_box .footer_bottom .copy a:hover {
  color: #144ca8;
}
footer .footer_box .footer_bottom .links {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  font-weight: 800;
  line-height: 1;
}
footer .footer_box .footer_bottom .links a {
  margin-left: 20px;
  position: relative;
  z-index: 1;
  font-size: var(--font14);
  color: #808391;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .footer_box .footer_bottom .links a:first-child {
  margin: 0;
}
footer .footer_box .footer_bottom .links a:first-child::after {
  display: none;
}
footer .footer_box .footer_bottom .links a:hover {
  color: #144ca8;
}
@media (max-width:990px) {
  footer {
    height: auto;
    padding: 0;
  }
  footer .footer_box {
    height: auto;
    display: block;
  }
  footer .footer_box .footer_top {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  footer .footer_box .footer_top .content {
    width: 100%;
  }
  footer .footer_box .footer_top .share {
    margin-top: 20px;
  }
  footer .footer_box .footer_center {
    margin: 30px 0 0;
  }
  footer .footer_box .footer_bottom {
    margin: 20px 0 0;
    padding: 15px 0;
  }
}
@media (max-width:768px) {
  footer .footer_box .footer_top .nav_box {
    display: none;
  }
  footer .footer_box .footer_center {
    display: none;
  }
  footer .footer_box .footer_bottom {
    display: block;
  }
  footer .footer_box .footer_bottom .links {
    display: none;
  }
  footer .footer_box .footer_bottom .copy {
    line-height: 1.75;
  }
}
footer.is_active {
  height: 100vh;
}
footer.is_active .footer_box .footer_center {
  padding: 0;
}
footer.is_active .footer_box .footer_bottom {
  padding: clamp(1.25rem, calc(-1.827rem   3.85vw), 2.5rem) 0 0;
}
/* 导航高度 占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
}
.pre-next-button {
  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;
}
.pre-next-button .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0.5rem;
  height: 0.5rem;
  background: #e3e3e3;
  border-radius: 50%;
  cursor: pointer;
}
.pre-next-button .btn img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(0) invert(0.5);
}
.pre-next-button .btn:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--active_color);
}
.pre-next-button .btn:hover img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}
/* 公共样式 */
/* 标题 */
.idx_title {
  width: 100%;
  height: auto;
}
.idx_title .title {
  width: 100%;
  height: auto;
  font-size: var(--font36);
  line-height: 1;
  font-weight: 800;
}
.idx_title .details {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  line-height: 1.333;
}
/* 按钮 */
.idx_more a {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 13px;
  border-radius: 100px;
  background: #fff;
  color: #2c3147;
  font-size: var(--font14);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more a img,
.idx_more a span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more a:hover {
  background: #144ca8;
  color: #fff;
}
.idx_more a:hover span {
  color: #fff;
}
.idx_more a:hover img {
  filter: brightness(0) invert(1);
}
@media (max-width:990px) {
  .idx_more a {
    height: 35px;
  }
}
.more_btn {
  width: fit-content;
  background-color: var(--active_color);
  color: #fff;
  border-radius: 0.26rem;
  padding: 0.18rem 0.48rem;
  line-height: 1;
}
.more_btn a {
  color: #fff;
}
/* 分页 */
.pagination-operate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.16rem;
}
.pagination-operate .btn {
  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.47rem;
  height: 0.47rem;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  background-color: #ffffff;
}
.pagination-operate .prebtn,
.pagination-operate .nextbtn {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination-operate .prebtn:hover,
.pagination-operate .nextbtn:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--active_color);
}
.pagination-operate .prebtn:hover img,
.pagination-operate .nextbtn:hover img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}
.pagination-operate .bgwhite {
  border: none;
  background-color: #fff;
}
@media (max-width:990px) {
  .pagination-operate .prebtn img,
  .pagination-operate .nextbtn img {
    scale: 0.8;
  }
}
.about_more .t0 {
  font-size: var(--font24);
}
.about_more .t1 {
  font-weight: 600;
  font-size: var(--font36);
  margin-top: 0.2rem;
}
.descp {
  line-height: calc(35/18);
}
.descp p {
  position: relative;
  z-index: 1;
  padding-left: 16px;
  font-size: var(--font18);
}
.descp p::before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  left: 3px;
  top: 0.16rem;
  background: #333333;
  border-radius: 50%;
}
/* 公共轮播图点 */
.pagershow {
  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: 10px;
}
.pagershow span {
  width: 30px;
  height: 2px;
  background: #dcdcdc;
  opacity: 1;
  border-radius: 0;
}
.pagershow .swiper-pagination-bullet-active {
  background: #144ca8;
}
.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: 10px;
  margin-top: 40px;
}
.idxpageshow span {
  width: 11px;
  height: 11px;
  background: #dcdcdc;
  opacity: 1;
  border-radius: 50%;
}
.idxpageshow .swiper-pagination-bullet-active {
  background: #144ca8;
}
@media (max-width:990px) {
  .idxpageshow {
    gap: 5px;
  }
  .idxpageshow span {
    width: 5px;
    height: 5px;
  }
}
.idxpagehide {
  display: none;
}
@media (max-width:990px) {
  .idxpagehide {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
    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: 5px;
    margin-top: 0.8rem;
  }
  .idxpagehide span {
    width: 8px;
    height: 8px;
    background: #dcdcdc;
    opacity: 1;
    border-radius: 50%;
  }
  .idxpagehide .swiper-pagination-bullet-active {
    background: #144ca8;
  }
}
.idxpagesoll {
  padding-bottom: 5px;
}
@media (max-width:990px) {
  .idxpagesoll {
    width: 100% !important;
    height: auto !important;
    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: 5px;
  }
  .idxpagesoll span {
    width: 5px !important;
    height: 5px !important;
    background: #dcdcdc;
    opacity: 1;
    border-radius: 50%;
  }
  .idxpagesoll .swiper-pagination-bullet-active {
    background: #144ca8;
  }
}
/* 公共样式 - 结束 */
.layui-laypage a,
.layui-laypage span {
  margin: 0 0.07rem;
  border-radius: 4px;
  border: none;
  background: #fafafa;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em {
  box-shadow: 0px 3px 15px 0px rgba(20, 76, 168, 0.23);
  border-radius: 4px;
}
/*
插件：投递简历弹窗
版本：
官网：
*/
#hi-resume-pop {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-resume-pop * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#hi-resume-pop form {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52%;
  min-width: 700px;
  background: #f7f7f7;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 0.2rem;
}
#hi-resume-pop form .hi-title-box {
  position: relative;
  padding: 0 0.4rem;
}
#hi-resume-pop form .hi-title-box .hi-title {
  line-height: 0.8rem;
  font-size: 20px;
}
#hi-resume-pop form .hi-title-box .hi-close {
  position: absolute;
  right: 0.54rem;
  top: 0.54rem;
  width: 0.28rem;
  height: 0.28rem;
  min-width: 20px;
  min-height: 20px;
}
#hi-resume-pop form .hi-title-box .hi-close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width:768px) {
  #hi-resume-pop form {
    width: 90%;
    min-width: inherit;
  }
}
.solf_tools_alert .content {
  background:  no-repeat;
  border-radius: 0.24rem;
  padding: 0.5rem 0.8rem;
}
.solf_tools_alert .content .hi-title {
  font-weight: 600;
  font-size: var(--font32);
}
.solf_tools_alert .content .flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.49rem;
}
.solf_tools_alert .content .flexbox .image {
  width: 45%;
}
.solf_tools_alert .content .flexbox .info {
  width: 55%;
}
.solf_tools_alert .content .flexbox .info .t0 {
  font-weight: 600;
  font-size: var(--font20);
}
.solf_tools_alert .content .flexbox .info .desc {
  font-size: var(--font18);
}
.solf_tools_alert .content .flexbox .info .desc p {
  margin-top: 0.2rem;
}
.solf_tools_alert .content .flexbox .info .download {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.45rem;
  background: #144ca8;
  box-shadow: 0px 7px 16px 0px rgba(20, 76, 168, 0.38);
  border-radius: 4px;
  height: 0.5rem;
  min-height: 35px;
}
@media (max-width:768px) {
  .solf_tools_alert .content .flexbox {
    display: block;
  }
  .solf_tools_alert .content .flexbox .image {
    width: 100%;
  }
  .solf_tools_alert .content .flexbox .info {
    width: 100%;
  }
}
/* index banner */
.idx_banner {
  width: 100%;
  height: calc(var(--header-height)   6.4rem);
  position: relative;
  z-index: 1;
  background: #000;
  overflow: hidden;
  padding-top: var(-header-height)!important;
}
.idx_banner .swiper_box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.idx_banner .swiper_box .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_banner .swiper_box .swiper-slide .centerinfo {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.idx_banner .swiper_box .swiper-slide .centerinfo .title,
.idx_banner .swiper_box .swiper-slide .centerinfo .title p {
  font-size: var(--font80);
  font-weight: 800;
  font-style: italic;
  color: #fff;
  text-shadow: #144ca8 5px 5px 1px;
  font-family: "yipin";
}
.idx_banner .swiper_box .swiper-slide .centerinfo .title {
  transform: translatey(20px);
  opacity: 0;
}
.idx_banner .swiper_box .swiper-slide .images {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.idx_banner .swiper_box .swiper-slide .images .img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.idx_banner .swiper_box .swiper-slide .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_banner .swiper_box .swiper-slide.active,
.idx_banner .swiper_box .swiper-slide.swiper-slide-duplicate-active {
  z-index: 2;
  pointer-events: initial;
}
.idx_banner .swiper_box .swiper-slide.active .centerinfo .title,
.idx_banner .swiper_box .swiper-slide.swiper-slide-duplicate-active .centerinfo .title {
  transform: translatey(10px);
  opacity: 1;
  transition: all 0.5s linear;
}
.idx_banner .swiper_box .swiper-slide.active .images,
.idx_banner .swiper_box .swiper-slide.swiper-slide-duplicate-active .images {
  animation: grow2 0.5s linear;
}
.idx_banner .pager_box {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: clamp(1.875rem, calc(-10.433rem   15.38vw), 6.875rem);
  z-index: 10;
}
.idx_banner .pager_box .pager {
  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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: clamp(0.625rem, calc(-0.913rem   1.92vw), 1.25rem);
}
.idx_banner .pager_box .pager span {
  width: var(--one-size);
  height: var(--one-size);
  position: relative;
  z-index: 1;
  background: transparent;
  opacity: 1;
  --one-size: clamp(1rem, calc(-1.154rem   2.69vw), 1.875rem);
  --two-size: clamp(0.375rem, calc(-0.548rem   1.15vw), 0.75rem);
  --color: #fff;
  --opacity: 0;
}
.idx_banner .pager_box .pager span::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--color);
  opacity: var(--opacity);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_banner .pager_box .pager span::after {
  content: '';
  width: var(--two-size);
  height: var(--two-size);
  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%);
  border-radius: 50%;
  background: var(--color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_banner .pager_box .pager span.active {
  --color: #144ca8;
  --opacity: 1;
}
@media (max-width:990px) {
  .idx_banner {
    height: 60vh;
    padding-top: var(--header-height);
  }
}
@keyframes lines {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* 定义旋转动画 */
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* 产品 */
.idx_product {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #f2f2f2;
  padding-top: 1rem;
  padding-bottom: 0.8rem;
  overflow: hidden;
}
.idx_product .center_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.idx_product .center_box .item {
  width: 100%;
  height: auto;
  background: url(/uploads/image/whvdimages/bg1.jpg) no-repeat top center / cover;
  display: block;
  border-radius: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.idx_product .center_box .item .images {
  width: 100%;
  height: auto;
}
.idx_product .center_box .item .images .pb {
  padding-bottom: 64.915%;
  overflow: unset !important;
}
.idx_product .center_box .item .images .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  overflow: unset !important;
}
.idx_product .center_box .item .images .pb .ab img {
 
}
.idx_product .center_box .item .word {
  width: 100%;
  height: auto;
  padding: 0.65rem 0.4rem;
  text-align: center;
}
.idx_product .center_box .item .word .title {
  font-size: var(--font30);
  font-weight: 800;
  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;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_product .center_box .item .word .title img {
  filter: brightness(0) invert(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_product .center_box .item .word .title span {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_product .center_box .item .word .subtitle {
  font-size: var(--font16);
  font-weight: 400;
  max-width: 290px;
  margin: auto;
  margin-top: 0.3rem;
  line-height: 1.5;
}
.idx_product .center_box .item .icon {
  position: absolute;
  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;
  top: 5px;
  left: 0;
  border-radius: 0.2rem;
  overflow: hidden;
}
.idx_product .center_box .item:hover {
  box-shadow: #9198b2 0 0 30px 1px;
}
.idx_product .center_box .item:hover .word .title span {
  color: #144ca8;
}
.idx_product .center_box .item:hover .word .title img {
  filter: unset !important;
}
@media (max-width:990px) {
  .idx_product .center_box {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
/* 精选产品 */
.idx_selected {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 1rem 0;
  overflow: hidden;
}
.idx_selected .center_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_selected .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  margin-top: 0.6rem;
}

.idx_selected .center_box .idxpagehide {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    gap: .05rem;
    margin-top: .5rem;
}

.idx_selected .center_box .item_box .item {
    display: inline-block;
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.idx_selected .center_box .item_box .item .word {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  /*background: rgba(0, 0, 0, 0.3);*/
  border-radius: .2rem;
}
.idx_selected .center_box .item_box .item .word .title {
  font-size: var(--font24);
  font-weight: 800;
  color: #fff;
  padding: 10px;
}
.idx_selected .center_box .item_box .item .word .button {
  width: 100%;
  height: auto;
  min-height: 48px;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  padding: 0.1rem 0.2rem;
  
}
.idx_selected .center_box .item_box .item .word .button::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #ffffffe5;
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.8;
  border-radius: 0.1rem;
  backdrop-filter: blur(20px);
}
.idx_selected .center_box .item_box .item .word .button span {
  position: relative;
  z-index: 2;
  font-size: var(--font14);
  /*font-weight: 800;*/
}
.idx_selected .center_box .item_box .item .word .button img {
  position: relative;
  z-index: 2;
  display: none;
}
.idx_selected .center_box .item_box .item .word .button:hover::after {
  opacity: 1;
}
.idx_selected .center_box .item_box .item .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: .2rem;
}
.idx_selected .center_box .item_box .item .images .pb {
  padding-bottom: 103.7%;
}
.idx_selected .center_box .item_box .item .images .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: .2rem;
}
@media (max-width:990px) {
  .idx_selected .center_box .item_box {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .idx_selected .center_box .item_box .item .word .button {
    height: 30px !important;
    min-height: unset !important;
    width: fit-content;
    gap: 10px;
  }
  .idx_selected .center_box .item_box .item .word .button img {
    width: 12px;
  }
  .idx_selected .center_box .item_box .item .images .pb {
    padding-bottom: 50%;
  }
}
/* 产品视频 */
.idx_videowrap {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
}
.idx_videowrap .innerbox .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_videowrap .innerbox .top .title {
  font-weight: 600;
  font-size: var(--font36);
}
.idx_videowrap .innerbox .itemlist {
  margin-top: 0.59rem;
  gap: 0.2rem;
}
.idx_videowrap .innerbox .itemlist .item {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.idx_videowrap .innerbox .itemlist .item .video_box {
  width: 100%;
  height: auto;
  height: 2.46rem;
  min-height: 200px;
}
.idx_videowrap .innerbox .itemlist .item .video_box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.idx_videowrap .innerbox .itemlist .item .info {
  padding: 0.24rem;
  background: #f7f7f7;
}
.idx_videowrap .innerbox .itemlist .item .info .name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font18);
}
.idx_videowrap .innerbox .itemlist .item .info .time {
  font-size: var(--font16);
  margin-top: 0.15rem;
}
.idx_videowrap .innerbox .itemlist .item:hover .info .name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
  font-weight: 600;
}
@media (max-width:768px) {
  .idx_videowrap .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width:480px) {
    .idx_videowrap{
        padding: 0.5rem 0;
    }
}
/* 行业应用 */
.idx_industry {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  --width: 20%;
  background: #fff;
  /*margin-top: 1rem;*/
}
.idx_industry::after {
  content: '';
  position: absolute;
  z-index: 3;
  bottom: 0;
  right: 0;
  width: var(--width);
  height: 100%;
  background: #fff;
  transition: all 0.5s linear;
}
.idx_industry::before {
  content: '';
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  width: var(--width);
  height: 100%;
  background: #fff;
  transition: all 0.5s linear;
}
.idx_industry .list_box {
  width: 100%;
  height: auto;
  background: #144ca8;
  padding: 1.1rem 0 0.4rem 0;
}
.idx_industry .list_box .center_box {
  width: 100%;
  height: auto;
}
.idx_industry .list_box .center_box .idx_title .title {
  color: #fff;
}
.idx_industry .list_box .center_box .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 0.5rem;
}
.idx_industry .list_box .center_box .item_box .item {
  color: #fff;
  font-size: var(--font18);
  /*font-weight: 800;*/
  cursor: pointer;
  position: relative;
  z-index: 1;
  padding-bottom: 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_industry .list_box .center_box .item_box .item span {
  color: #fff;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_industry .list_box .center_box .item_box .item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #5586d8;
  z-index: 1;
  opacity: 0.2;
}
.idx_industry .list_box .center_box .item_box .item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 4px;
  background: #5586d8;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}
.idx_industry .list_box .center_box .item_box .item:hover::before,
.idx_industry .list_box .center_box .item_box .item.active::before {
  width: 100%;
  left: 0;
}
.idx_industry .list_box .center_box .item_box .item:hover span,
.idx_industry .list_box .center_box .item_box .item.active span {
  opacity: 1;
}
.idx_industry .swiper_box {
  width: 100%;
  height: auto;
  background: #000;
}
.idx_industry .swiper_box ul li {
  position: relative;
  z-index: 1;
}
.idx_industry .swiper_box ul li .centerinfo {
  position: absolute;
  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;
}
.idx_industry .swiper_box ul li .centerinfo .word {
  width: 100%;
  height: auto;
}
.idx_industry .swiper_box ul li .centerinfo .word .title {
  font-size: var(--font60);
  color: #fff;
  font-weight: 800;
  line-height: 1;
}
.idx_industry .swiper_box ul li .centerinfo .word .subtitle {
  margin-top: 0.1rem;
  font-size: var(--font24);
  color: #fff;
}
.idx_industry .swiper_box ul li .centerinfo .word .idx_more a {
  font-weight: 600;
  margin-top: 0.59rem;
  padding: 0.13rem 0.2rem;
}
.idx_industry .swiper_box ul li .images {
  width: 100%;
  height: auto;
}
.idx_industry .swiper_box ul li .images img {
  width: 100%;
  height: auto;
  display: block;
}
.idx_industry .swiper_box ul li.active {
  pointer-events: initial;
}
@media (max-width:990px) {
   .idx_industry .idxpagehide {
       padding: .5rem 0;
       margin-top: 0;
   }
  .idx_industry .swiper_box ul li .images img {
    min-height: 50vh;
    object-fit: cover;
  }
  .idx_industry .list_box {
    padding-top: 0;
    background: none;
  }
  .idx_industry .list_box .center_box .item_box {
    display: none;
  }
  .idx_industry .list_box .center_box .idx_title .title {
    color: #144ca8;
    text-align: center;
  }
}
@media (max-width:480px) {
    .idx_industry{
        margin-top: .5rem;
        --width: inherit;
    }
}

/* 新闻 */
.idx_news {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #f7f7f7;
  padding-top: 0.9rem;
  padding-bottom: 0.8rem;
}
.idx_news .center_box {
  width: 100%;
  height: auto;
}
.idx_news .center_box .idx_title .title {
  text-align: center;
  color: #144ca8;
}
.idx_news .center_box .content {
  width: 100%;
  height: auto;
  margin-top: 0.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;
}
.idx_news .center_box .content .con_left {
  width: 59.1666%;
  display: block;
}
.idx_news .center_box .content .con_left * {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_news .center_box .content .con_left .images {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  overflow: hidden;
}
.idx_news .center_box .content .con_left .images img {
  width: 100%;
  height: auto;
}
.idx_news .center_box .content .con_left .word {
  width: 100%;
  height: auto;
  padding: 0.4rem 0.2rem;
}
.idx_news .center_box .content .con_left .word .title {
  font-size: var(--font24);
  line-height: 1.25;
}
.idx_news .center_box .content .con_left .word .time {
  font-size: var(--font14);
  color: #929499;
  font-weight: 800;
  margin-top: 0.25rem;
}
.idx_news .center_box .content .con_left .word .more {
  width: 60px;
  height: 24px;
  border: 1px solid #dcdcdc;
  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;
  font-size: 12px;
  margin-top: 0.2rem;
}
.idx_news .center_box .content .con_left:hover .word .title * {
  color: #144ca8;
}
.idx_news .center_box .content .con_left:hover .images img {
  transform: scale(1.02);
}
.idx_news .center_box .content .con_right {
  width: 37.5%;
  border-top: 1px solid #d2d2d2;
}
.idx_news .center_box .content .con_right .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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.25rem 0 0.2rem 0;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #d2d2d2;
}
.idx_news .center_box .content .con_right .item * {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_news .center_box .content .con_right .item .word {
  width: 100%;
  height: auto;
}
.idx_news .center_box .content .con_right .item .word .title {
  font-size: var(--font18);
  line-height: 1.25;
}
.idx_news .center_box .content .con_right .item .word .time {
  font-size: var(--font14);
  color: #929499;
  margin-top: 15px;
}
.idx_news .center_box .content .con_right .item .word .more {
  width: 60px;
  height: 24px;
  border: 1px solid #dcdcdc;
  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;
  font-size: 12px;
  margin-top: 0.2rem;
}
.idx_news .center_box .content .con_right .item:hover .word .title * {
  color: #144ca8;
}
.idx_news .center_box .content .con_right .item:hover .images img {
  transform: scale(1.05);
}
.idx_news .center_box .content .con_right .images {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.idx_news .center_box .content .con_right .images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width:990px) {
  .idx_news .center_box .content {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .idx_news .center_box .content .con_left,
  .idx_news .center_box .content .con_right {
    width: 100%;
  }
  .idx_news .center_box .content .con_right .item {
    padding: 20px 0;
  }

  .idx_news .center_box .content .con_right .item .images {
    width: 80px;
    display: none;
  }
}
/* 联系我们 */
.idx_contact {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 0.7rem;
  padding-bottom: 0.6rem;
  overflow: hidden;
  background: url(/uploads/image/whvdimages/bg2.jpg) no-repeat;
  background-color: #144ca8;
}
.idx_contact .center_box {
  width: 100%;
  height: auto;
}
.idx_contact .center_box .idx_title .title {
  color: #fff;
}
.idx_contact .center_box .idx_title .details {
  color: #fff;
  margin-top: 20px;
}
.idx_contact .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 10px;
}
.idx_contact .center_box .item_box .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_contact .center_box .item_box .item input {
  width: 100%;
  height: 40px;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
  font-size: var(--font14);
  font-weight: 400;
  padding-left: 20px;
  color: #fff;
}
.idx_contact .center_box .item_box .item input::-webkit-input-placeholder,
.idx_contact .center_box .item_box .item textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.idx_contact .center_box .item_box .item input:-moz-placeholder,
.idx_contact .center_box .item_box .item textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.idx_contact .center_box .item_box .item input::-moz-placeholder,
.idx_contact .center_box .item_box .item textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.idx_contact .center_box .item_box .item input:-ms-input-placeholder,
.idx_contact .center_box .item_box .item textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.idx_contact .center_box .item_box .item button {
  width: 120px;
  height: 40px;
  border: 0;
  background: #fff;
  border-radius: 6px;
  font-size: var(--font14);
  font-weight: 400;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_contact .center_box .item_box .item button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
@media (max-width:990px) {
  .idx_contact .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .idx_contact .center_box .item_box .item button {
    height: 35px;
    width: 100px;
  }
}
/* 服务与支持 */
.idx_server_surport {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_server_surport .image {
  position: absolute;
}
.idx_server_surport .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  z-index: 1;
  padding: 1rem 0 ;
}
.idx_server_surport .info .left {
  width: 49.5%;
}
.idx_server_surport .info .left .title {
  font-weight: 600;
  font-size: var(--font36);
}
.idx_server_surport .info .right {
  width: 50.5%;
}
.idx_server_surport .info .right .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  line-height: 1;
  padding: 0.41rem 0;
}
.idx_server_surport .info .right .itemlist .item .t0 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font20);
}
.idx_server_surport .info .right .itemlist .item .icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(0) invert(0.5);
}
.idx_server_surport .info .right .itemlist .item:before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(51, 51, 51, 0.2);
}
.idx_server_surport .info .right .itemlist .item:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--active_color);
}
.idx_server_surport .info .right .itemlist .item:hover .t0 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
  font-weight: 600;
}
.idx_server_surport .info .right .itemlist .item:hover .icon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: inherit;
}
.idx_server_surport .info .right .itemlist .item:hover:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
@media (max-width:768px) {
  .idx_server_surport .info {
    display: block;
  }
  .idx_server_surport .info .left {
    width: 100%;
  }
  .idx_server_surport .info .right {
    width: 100%;
    margin-top: 0.2rem;
  }
}
@media (max-width:768px) {
    .idx_server_surport .info{
        padding: .5rem 0 1rem 0;
    }
}
/* 最新公告 */
.idx_announcement {
  background: #ffffff;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
}
.idx_announcement .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.4rem;
}
.idx_announcement .innerbox .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-weight: 600;
  gap: 0.26rem;
  font-size: var(--font36);
}
.idx_announcement .innerbox .title:hover{
    color: var(--active_color);
}

.idx_announcement .innerbox .left {
  width: 64.5%;
}
.idx_announcement .innerbox .left .itemlist {
  border: 1px solid #dbdbdb;
  padding: 0 0.3rem;
  margin-top: 0.6rem;
}
.idx_announcement .innerbox .left .itemlist .item {
  position: relative;
  display: block;
  padding: 0.25rem 0;
  cursor: pointer;
}
.idx_announcement .innerbox .left .itemlist .item .t0 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font18);
}
.idx_announcement .innerbox .left .itemlist .item .time {
  color: #666666;
  font-size: var(--font14);
  margin-top: 0.14rem;
  font-weight: 400;
}
.idx_announcement .innerbox .left .itemlist .item:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #e0e0e0;
}
.idx_announcement .innerbox .left .itemlist .item:after {
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  left: 0;
  bottom: 0;
  background: var(--active_color);
  transition: all 0.5s ease;
}
.idx_announcement .innerbox .left .itemlist .item:last-child {
  border-bottom: none;
}
.idx_announcement .innerbox .left .itemlist .item:last-child::before {
  background-color: #fff;
}
.idx_announcement .innerbox .left .itemlist .item:hover .t0 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #144ca8;
}
.idx_announcement .innerbox .left .itemlist .item:hover:after {
  width: 100%;
  transition: all 0.5s ease;
}
.idx_announcement .innerbox .right {
  width: 35.5%;
}
.idx_announcement .innerbox .right .itembox {
    display: inline-block;
    width: 100%;
  position: relative;
  margin-top: 0.6rem;
}
.idx_announcement .innerbox .right .itembox .top_box {
  height: 2.3rem;
  min-height: 177px;
}
.idx_announcement .innerbox .right .itembox .top_box .image {
  position: relative;
  width: 100%;
  height: 100%;
}
.idx_announcement .innerbox .right .itembox .top_box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_announcement .innerbox .right .itembox .top_box .info {
  color: #fff;
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0;
  top: 0;
  padding: 0.21rem 0.26rem;
}
.idx_announcement .innerbox .right .itembox .top_box .info .a_logo {
  width: 74px;
  line-height: 1;
}
.idx_announcement .innerbox .right .itembox .top_box .info .a_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_announcement .innerbox .right .itembox .top_box .info .word {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: var(--font24);
}
.idx_announcement .innerbox .right .itembox .bottom_box {
  padding: 0.2rem;
  border: 1px solid #dbdbdb;
  height: 2.13rem;
  /*min-height: 180px;*/
  padding-top: 0.18rem;
}
.idx_announcement .innerbox .right .itembox .bottom_box .newst {
  font-size: var(--font18);
}
.idx_announcement .innerbox .right .itembox .bottom_box .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  padding: 0.24rem 0;
  width: calc(100% - 0.48rem);
  left: 0.24rem;
}
.idx_announcement .innerbox .right .itembox .bottom_box .time .t0 {
  color: #666666;
  font-size: var(--font14);
}
@media (max-width:768px) {
  .idx_announcement .innerbox {
    display: block;
  }
  .idx_announcement .innerbox .left {
    width: 100%;
  }
  .idx_announcement .innerbox .right {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.invester-wrap {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.78rem 0 1.19rem 0;
  background: #fafafa;
}
.invester-wrap .innerbox .title {
  font-weight: 600;
  font-size: var(--font36);
}
.invester-wrap .innerbox .itemlist {
  margin-top: 0.6rem;
  gap: 0.4rem 0.2rem;
}
.invester-wrap .innerbox .itemlist .item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
  height: 1.84rem;
  background: #ffffff;
  border-radius: 6px;
  border: 1px solid #e4e4e4;
  padding: 0.24rem;
}
.invester-wrap .innerbox .itemlist .item .icon {
  width: 0.66rem;
  height: 0.66rem;
  min-width: 0.66rem;
}
.invester-wrap .innerbox .itemlist .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.invester-wrap .innerbox .itemlist .item .info .t0 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font20);
}
.invester-wrap .innerbox .itemlist .item .info .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font14);
  margin-top: 0.1rem;
}
.invester-wrap .innerbox .itemlist .item .info .more {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
  position: absolute;
  bottom: 0.23rem;
  font-size: var(--font16);
}
.invester-wrap .innerbox .itemlist .item:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--active_color);
}
.invester-wrap .innerbox .itemlist .item:hover .info .t0 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}
.invester-wrap .innerbox .itemlist .item:hover .info .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}
.invester-wrap .innerbox .itemlist .item:hover .info .more {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}
@media (max-width:480px) {
  .invester-wrap .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.invester-information-wrap {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.78rem 0 1.19rem 0;
  background: #fafafa;
}
.invester-information-wrap .innerbox .title {
  font-weight: 600;
  font-size: var(--font36);
}
.invester-information-wrap .innerbox .itemlist {
  width: 100%;
  margin-top: 0.5rem;
}
.invester-information-wrap .innerbox .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0.3rem 0;
  line-height: 1;
  border-bottom: solid 1px rgba(102, 102, 102, 0.15);
}
.invester-information-wrap .innerbox .itemlist .item .t0 {
  color: #333333;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font18);
}
.invester-information-wrap .innerbox .itemlist .item .time {
  color: #666666;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font14);
}
.invester-information-wrap .innerbox .itemlist .item:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--active_color);
}
.invester-information-wrap .innerbox .itemlist .item:hover .t0 {
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--active_color);
}
.invester-information-wrap .innerbox .itemlist .item:hover .time {
  color: #333333;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.invester-information-wrap .innerbox .itemlist .item:hover:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
@media (max-width:480px) {
  .invester-information-wrap .innerbox .itemlist .item {
    display: block;
    width: 100%;
  }
  .invester-information-wrap .innerbox .itemlist .item .time {
    margin-top: 0.2rem;
  }
}


/* 新闻 */
.contactform {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.03rem;
  padding-bottom: 0.6rem;
  overflow: hidden;
  background: url(/uploads/image/whvdimages/bg2.jpg) no-repeat;
  background-color: #144ca8;
}
.contactform .center_box {
  width: 100%;
  height: auto;
}
.contactform .center_box .idx_title .title {
  color: #fff;
}
.contactform .center_box .idx_title .details {
  color: #fff;
  margin-top: 20px;
}
.contactform .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  gap: 10px;
}
.contactform .center_box .item_box .more-box {
  background:  no-repeat;
  background-size: cover;
  padding: 0.14rem 0.2rem;
  background-color: #ffffff;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
}
.contactform .center_box .item_box .more-box .t0 {
  color: #144ca8;
}
.contactform .center_box .item_box .more-box .flexbox {
  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;
  gap: 0.5rem;
}
.contactform .center_box .item_box .more-box .flexbox .tel {
  font-weight: 700;
  color: #144ca8;
  font-size: var(--font18);
}
.contactform .center_box .item_box .more-box .flexbox .morebtn {
  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;
  float: right;
  margin-top: 0.18rem;
  width: 0.32rem;
  height: 0.32rem;
  min-width: 28px;
  min-height: 28px;
  background: #144ca8;
  border-radius: 50%;
}
.contactform .center_box .item_box .more-box .flexbox .morebtn img {
  width: 17px;
}
@media (max-width:990px) {
  .contactform .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .contactform .center_box .item_box .item button {
    height: 35px;
    width: 100px;
  }
}
@media (max-width:990px) {
  .contactform .center_box .item_box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pro_section1 {
  position: relative;
  /*padding-top: .1rem;*/
  padding-top: 0;
}
.pro_section1 .image {
  height: 8.5rem;
}
.pro_section1 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro_section1 .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.pro_section1 .info .innerbox {
  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;
  color: #fff;
}
.pro_section1 .info .innerbox .left {
  width: 60%;
}
.pro_section1 .info .innerbox .left .title {
  font-weight: 600;
  font-size: var(--font60);
}
.pro_section1 .info .innerbox .left .desc {
  font-size: var(--font40);
  margin-top: 0.54rem;
}
.pro_section1 .info .innerbox .rgiht {
  
  width: 40%;
  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;
}
.pro_section1 .info .innerbox .rgiht .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 74.35%;
  width: 28%;
    position: absolute;
    bottom: 10%;
}
.pro_section1 .info .innerbox .rgiht .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width:480px) {
  .pro_section1 .info .innerbox {
    flex-direction: column;
  }
  .pro_section1 .info .innerbox .left {
    width: 100%;
    height: auto;
  }
  .pro_section1 .info .innerbox .left .desc {
    margin-top: 0;
  }
  .pro_section1 .info .innerbox .rgiht {
    width: 100%;
    height: auto;
  }
  .pro_section1 .info .innerbox .rgiht .img {
    height: 200px;
  }
}
.pro_section2 {
  position: relative;
}
.pro_section2 .image {
  height: 6.7rem;
  min-height: 520px;
}
.pro_section2 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro_section2 .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.pro_section2 .info .innerbox {
  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;
}
.pro_section2 .info .innerbox .left {
  flex: 1;
}
.pro_section2 .info .innerbox .left .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 64.5%;
}
.pro_section2 .info .innerbox .left .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pro_section2 .info .innerbox .rgiht {
  flex: 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;
  flex-direction: column;
}
.pro_section2 .info .innerbox .rgiht .title {
  font-weight: 600;
  font-size: var(--font36);
}
.pro_section2 .info .innerbox .rgiht .desc {
  font-size: var(--font18);
  margin-top: 0.3rem;
  max-width: 593px;
}
.pro_section2 .info .innerbox .rgiht .t3 {
  color: #144ca8;
  font-weight: 700;
  font-size: var(--font30);
  margin-top: 0.9rem;
}
.pro_section2 .info .innerbox .rgiht .t4 {
  margin-top: 0.2rem;
  font-size: var(--font20);
}
@media (max-width:480px) {
  .pro_section2 .info .innerbox {
    display: inline-block;
  }
}
.pro_section3 {
  position: relative;
}
.pro_section3 .image {
  height: 6.7rem;
}
.pro_section3 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro_section3 .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.pro_section3 .info .innerbox {
  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;
  color: #fff;
}
.pro_section3 .info .innerbox .left {
  flex: 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;
  flex-direction: column;
}
.pro_section3 .info .innerbox .left .title {
  font-weight: 600;
  font-size: var(--font36);
  line-height: calc(57/36);
}
.pro_section3 .info .innerbox .left .desc {
  font-size: var(--font18);
  margin-top: 0.3rem;
  max-width: 522px;
}
@media (max-width:480px) {
  .pro_section3 .info .innerbox {
    display: inline-block;
  }
}
.pro_section4 {
  position: relative;
}
.pro_section4 .image {
  height: 6.7rem;
}
.pro_section4 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro_section4 .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.pro_section4 .info .innerbox {
  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-left: 50%;
}
.pro_section4 .info .innerbox .right {
  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;
  flex-direction: column;
  width: 100%;
}
.pro_section4 .info .innerbox .right .codelist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.5rem;
}
.pro_section4 .info .innerbox .right .codelist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0.94;
  width: 1rem;
  height: 1rem;
  background: #ffffff;
  border-radius: 0.1rem;
  border: 1px solid #144ca8;
}
.pro_section4 .info .innerbox .right .codelist .item .codeimg {
  width: 0.34rem;
  height: 0.34rem;
}
.pro_section4 .info .innerbox .right .codelist .item .codeimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro_section4 .info .innerbox .right .codelist .item .name {
  font-size: var(--font18);
  margin-top: 0.15rem;
}
.pro_section4 .info .innerbox .right .title {
  font-weight: 600;
  font-size: var(--font36);
  line-height: calc(57/36);
  margin-top: 0.4rem;
}
.pro_section4 .info .innerbox .right .desc {
  font-size: var(--font18);
  margin-top: 0.3rem;
  max-width: 595px;
}
@media (max-width:480px) {
  .pro_section4 .info .innerbox {
    display: inline-block;
    padding-left: 0;
  }
}
.pro_section5 {
  position: relative;
  height: 9rem;
}
.pro_section5 .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.pro_section5 .info .innerbox {
  text-align: center;
}
.pro_section5 .info .innerbox .image {
  width: 59%;
  margin: auto;
}
.pro_section5 .info .innerbox .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro_section5 .info .innerbox .title {
  font-weight: 600;
  font-size: var(--font36);
  line-height: calc(57/36);
  margin-top: 0.5rem;
}
.pro_section5 .info .innerbox .desc {
  font-size: var(--font18);
  margin: auto;
  margin-top: 0.3rem;
  max-width: 630px;
}
@media (max-width:480px) {
  .pro_section5 .info .innerbox {
    display: inline-block;
  }
}
.pro_section6 {
  position: relative;
}
.pro_section6 .image {
  height: 9.5rem;
}
.pro_section6 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro_section6 .info {
  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;
  width: 100%;
  height: 100%;
  top: 0;
}
.pro_section6 .info .innerbox {
  color: #fff;
  text-align: center;
}
.pro_section6 .info .innerbox .image {
  width: 59%;
  margin: auto;
}
.pro_section6 .info .innerbox .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro_section6 .info .innerbox .title {
  font-weight: 600;
  font-size: var(--font36);
  line-height: calc(57/36);
  margin-top: 1rem;
}
.pro_section6 .info .innerbox .desc {
  font-size: var(--font18);
  margin: auto;
  margin-top: 0.32rem;
  max-width: 792px;
}
@media (max-width:480px) {
  .pro_section6 .info .innerbox {
    display: inline-block;
  }
}
.pro_section7 {
  position: relative;
}
.pro_section7 .image {
  height: 8.11rem;
}
.pro_section7 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro_section7 .info {
  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;
  width: 100%;
  height: 100%;
  top: 0;
}
.pro_section7 .info .innerbox {
  position: absolute;
  width: 90%;
  bottom: 1.04rem;
}
.pro_section7 .info .innerbox .title {
  font-weight: 600;
  font-size: var(--font36);
  line-height: calc(57/36);
}
.pro_section7 .info .innerbox .desc {
  font-size: var(--font18);
  margin-top: 0.32rem;
  max-width: 792px;
}
@media (max-width:480px) {
  .pro_section7 .info .innerbox {
    display: inline-block;
  }
}

.pro_section1 .image img,.pro_section2 .image img,.pro_section3 .image img,.pro_section4 .image img,.pro_section5 .image img,.pro_section6 .image img,.pro_section7 .image img{
    height: 100%!important;
    object-fit: cover;
}


.pro_apply-section {
  padding: 1rem 0;
}
.pro_apply-section .innerbox {
  text-align: center;
}
.pro_apply-section .innerbox .itemlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  margin-top: 0.59rem;
}
.pro_apply-section .innerbox .itemlist .item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
  padding: 0 0.37rem;
  text-align: left;
  z-index: 2;
  background: #fafafa;
  height: 2.6rem;
  cursor: pointer;
}
.pro_apply-section .innerbox .itemlist .item .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 0.6rem;
}
.pro_apply-section .innerbox .itemlist .item .name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 0.48rem;
  font-size: var(--font20);
}
.pro_apply-section .innerbox .itemlist .item .line {
  width: 0.2rem;
  height: 2px;
  background: #144ca8;
  margin-top: 0.4rem;
}
.pro_apply-section .innerbox .itemlist .item:after {
  position: absolute;
  content: '';
  z-index: 1;
  width: 91.66666667%;
  left: 4.16666667%;
  bottom: -4.16666667%;
  height: 4.16666667%;
  background: #144ca8;
  opacity: 0;
}
.pro_apply-section .innerbox .itemlist .item:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--active_color);
}
.pro_apply-section .innerbox .itemlist .item:hover .name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}
.pro_apply-section .innerbox .itemlist .item:hover .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}
.pro_apply-section .innerbox .itemlist .item:hover:after {
  opacity: 0.2;
}
@media (max-width:480px) {
  .pro_apply-section .innerbox .itemlist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.pro_techparameter-section {
  padding: 1rem 0;
  background-color: var(--bg_color);
}


.pro_techparameter-section .innerbox {
  overflow: auto;
}
.pro_techparameter-section .innerbox .idx_title .title{
  text-align: center;
}
.pro_techparameter-section .innerbox .itemlist {
  width: 100%;
  margin-top: 0.59rem;
}
.pro_techparameter-section .innerbox .itemlist .rowline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: fit-content;
  min-width: 100%;
}
.pro_techparameter-section .innerbox .itemlist .rowline .left {
  color: #144ca8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 20.5%;
  height: 100%;
  min-height: 0.51rem;
  min-width: 250px;
  padding-left: 0.6rem;
}
.pro_techparameter-section .innerbox .itemlist .rowline .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 79.5%;
  min-width: 600px;
  height: 100%;
  min-height: 0.51rem;
}
.pro_techparameter-section .innerbox .itemlist .rowline .right p {
  padding-left: 1rem;
}
.pro_techparameter-section .innerbox .itemlist .rowline .right .rowp {
  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-direction: column;
  padding: 0.18rem 0;
}
.pro_techparameter-section .innerbox .itemlist .rowline .right .rowp .rp {
  text-align: left;
}
.pro_techparameter-section .innerbox .itemlist .rowline .right ul {
  width: 100%;
}
.pro_techparameter-section .innerbox .itemlist .rowline .right ul li {
  border-bottom: solid 1px #d6d6d6;
  padding-left: 1rem;
}
.pro_techparameter-section .innerbox .itemlist .rowline .right ul li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 0.51rem;
}
.pro_techparameter-section .innerbox .itemlist .rowline .right ul li:last-child {
  border-bottom: none;
}
.pro_techparameter-section .innerbox .itemlist .rowline .right .colume_p {
  width: 100%;
  text-align: left;
  padding: 0.18rem 0;
}
.pro_techparameter-section .innerbox .itemlist .rowline:nth-child(odd) {
  background-color: #aadaf0;
}
.pro_techparameter-section .innerbox .itemlist .rowline:nth-child(even) {
  background-color: #fff;
}
.pro_techparameter-section .innerbox table {
  display: table;
  margin-top: 0.59rem;
  width: 100%;
}
.pro_techparameter-section .innerbox table th,
.pro_techparameter-section .innerbox table td {
  min-width: 200px;
  min-height: 200px;
  border: solid 1px #d6d6d6;
  min-height: 0.51rem;
    padding: .1rem .3rem;
}
/*.pro_techparameter-section .innerbox table tr td:first-child{*/
/*    color: var(--active_color);*/
/*}*/

/*.pro_techparameter-section .innerbox table tr:nth-child(odd){*/
    
/*    background-color: rgb(170 218 240);*/
/*}*/
/*.pro_techparameter-section .innerbox table tr:nth-child(even){*/
/*    background-color: #fff;*/
/*}*/


.pro-related-accessories {
  padding: 0.99rem 0;
}
.pro-related-accessories .innerbox {
  text-align: center;
}
.pro-related-accessories .innerbox .itemlist {
  margin-top: 0.6rem;
  gap: 0.21rem;
}
.pro-related-accessories .innerbox .itemlist .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}
.pro-related-accessories .innerbox .itemlist .item .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 2.54rem;
  min-height: 180px;
  background: #fafafa;
  padding: 0.25rem;
}
.pro-related-accessories .innerbox .itemlist .item .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pro-related-accessories .innerbox .itemlist .item .name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #333333;
  font-size: var(--font20);
  margin-top: 0.2rem;
}
.pro-related-accessories .innerbox .itemlist .item:hover .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
.pro-related-accessories .innerbox .itemlist .item:hover .name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
@media (max-width:480px) {
  .pro-related-accessories .innerbox .itemlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
#pro6{
    /*margin-top: 1rem;*/
}


@media (max-width:480px){
    #pro6 p img{
        width: 100%!important;
        height: auto!important;
        object-fit: cover;
    }
    .pro_techparameter-section .innerbox table th,
    .pro_techparameter-section .innerbox table td {
      min-width: auto;
      min-height: auto;
    
        padding: .1rem .1rem;
    }
}
.pro-manual {
  padding: 0.99rem 0;
  background-color: var(--bg_color);
}
.pro-manual .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.8rem;
}
.pro-manual .innerbox .left {
  width: 59%;
}
.pro-manual .innerbox .left .itemlist {
  margin-top: 0.6rem;
  width: 100%;
}
.pro-manual .innerbox .left .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  border-top: solid 1px #e8e8e8;
  cursor: pointer;
  line-height: 1;
  padding: 0.295rem 0;
}
.pro-manual .innerbox .left .itemlist .item .i-left {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  color: #333333;
  font-size: var(--font18);
  width: 62%;
  padding-right: 0.64rem;
}
.pro-manual .innerbox .left .itemlist .item .i-left .icon {
  font-size: var(--font18);
}
.pro-manual .innerbox .left .itemlist .item .i-left .icon img {
  margin-right: 0.22rem;
}
.pro-manual .innerbox .left .itemlist .item .i-left .preview {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #999999;
  font-size: var(--font16);
}
.pro-manual .innerbox .left .itemlist .item .i-left .preview:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.pro-manual .innerbox .left .itemlist .item .i-right {
    display: flex;
    width: 38%;
    justify-content: end;
   font-size: var(--font16);
}
.pro-manual .innerbox .left .itemlist .item .i-right a:first-child{
    padding-right: 0.5rem;
  
}
.pro-manual .innerbox .left .itemlist .item .i-right a:last-child{
    padding-left: 0.5rem;
  border-left: solid 1px #e5e5e5;
}

.pro-manual .innerbox .left .itemlist .item .i-right .downbtn {
  color: #999999;
}
.pro-manual .innerbox .left .itemlist .item .i-right .downbtn:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.pro-manual .innerbox .left .itemlist .item:last-child {
  border-bottom: solid 1px #e8e8e8;
}
.pro-manual .innerbox .right {
  width: 41%;
}
.pro-manual .innerbox .right .itemlist {
  margin-top: 0.6rem;
}
.pro-manual .innerbox .right .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0.26rem 0;
  border-top: solid 1px #e8e8e8;
}
.pro-manual .innerbox .right .itemlist .item .r-left {
  width: 0.95rem;
  min-width: 0.95rem;
  padding-left: 0.13rem;
}
.pro-manual .innerbox .right .itemlist .item .r-right {
  padding-left: 0.4rem;
}
.pro-manual .innerbox .right .itemlist .item .r-right .t0 {
  font-size: var(--font18);
}
.pro-manual .innerbox .right .itemlist .item .r-right .flexbox {
  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;
  color: #999999;
  margin-top: 0.5rem;
  cursor: pointer;
}
.pro-manual .innerbox .right .itemlist .item .r-right .flexbox .preview {
  width: 30%;
}
.pro-manual .innerbox .right .itemlist .item .r-right .flexbox .preview:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.pro-manual .innerbox .right .itemlist .item .r-right .flexbox .download {
  width: 70%;
  border-left: solid 1px #e5e5e5;
  text-align: center;
}
.pro-manual .innerbox .right .itemlist .item .r-right .flexbox .download:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
@media (max-width:768px) {
  .pro-manual .innerbox {
    display: block;
  }
  .pro-manual .innerbox .left {
    width: 100%;
  }
  .pro-manual .innerbox .right {
    width: 100%;
    margin-top: 0.5rem;
  }
}
@media (max-width:480px) {
  .pro-manual .innerbox {
    display: inline-block;
    width: 100%;
  }
  .pro-manual .innerbox .left {
    width: 100%;
  }
  .pro-manual .innerbox .left .itemlist .item{
      flex-direction: column;
  }
  .pro-manual .innerbox .left .itemlist .item .i-left {
    display: block;
    width: 100%;

  }
   .pro-manual .innerbox .left .itemlist .item .i-right {
   
    width: 100%;
            justify-content: normal;
        margin-top: .3rem;

  }
  .pro-manual .innerbox .left .itemlist .item .i-left .preview {
    margin-top: 0.3rem;
  }
  .pro-manual .innerbox .right {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.pro-manual2 .innerbox .left {
  width: 100%;
}
.pro-manual2 .innerbox .left .idx_title {
  text-align: center;
}
.pro-manual2 .innerbox .left .itemlist {
  display: grid;
  column-gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
}
.pro-manual2 .innerbox .left .itemlist .item {
  border-top: none;
  border-bottom: solid 1px #e8e8e8;
}
.pro-manual2 .innerbox .left .itemlist .item:nth-child(1),
.pro-manual2 .innerbox .left .itemlist .item:nth-child(2) {
  border-top: solid 1px #e8e8e8;
}
@media (max-width:768px) {
  .pro-manual2 .innerbox .left .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}




.pro-manual3 .innerbox .right {
  width: 100%;
}
.pro-manual3 .innerbox .right .idx_title {
  text-align: center;
}
.pro-manual3 .innerbox .right .itemlist {
  display: grid;
  column-gap: 0.8rem;
  grid-template-columns: repeat(2, 1fr);
}
.pro-manual3 .innerbox .right .itemlist .item {
  border-top: none;
  border-bottom: solid 1px #e8e8e8;
}
.pro-manual3 .innerbox .right .itemlist .item:nth-child(1),
.pro-manual3 .innerbox .right .itemlist .item:nth-child(2) {
  border-top: solid 1px #e8e8e8;
}
@media (max-width:768px) {
  .pro-manual3 .innerbox .left .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}

.pro-related-recommendations {
  padding: 0.99rem 0;
}
.pro-related-recommendations .innerbox {
  text-align: center;
  overflow: hidden;
}
.pro-related-recommendations .innerbox .itemlist {
  margin-top: 0.6rem;
  gap: 0.21rem;
}
.pro-related-recommendations .innerbox .itemlist .item {
  min-height: 3.84rem;
  border: 1px solid #d6d6d6;
  padding: 0.38rem 0.2rem;
  cursor: pointer;
}
.pro-related-recommendations .innerbox .itemlist .item .image {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 1.32rem;
}
.pro-related-recommendations .innerbox .itemlist .item .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pro-related-recommendations .innerbox .itemlist .item .info {
  color: #333333;
  margin-top: 0.36rem;
  text-align: left;
}
.pro-related-recommendations .innerbox .itemlist .item .info .t0 {
  font-weight: 600;
  font-size: var(--font20);
}
.pro-related-recommendations .innerbox .itemlist .item .info .t1 {
  margin-top: 0.14rem;
  font-size: var(--font16);
}
.pro-related-recommendations .innerbox .itemlist .item .info .t2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.08rem;
  margin-top: 0.1rem;
  flex-wrap: wrap;
}
.pro-related-recommendations .innerbox .itemlist .item .info .t2 .tag {
  background: rgba(20, 76, 168, 0.08);
  line-height: 1;
  padding: 0.06rem 0.1rem;
  font-size: var(--font14);
  white-space: nowrap;
  border-radius: 0.13rem;
}
.pro-related-recommendations .innerbox .itemlist .item .info .idx_more {
  margin-top: 0.39rem;
}
.pro-related-recommendations .innerbox .itemlist .item .info .idx_more a {
  color: #144ca8;
  background-color: inherit;
}
.pro-related-recommendations .innerbox .itemlist .item:hover .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.1;
}
.pro-related-recommendations .innerbox .itemlist .item:hover .info .t0 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
@media (max-width:480px) {
  .pro-related-recommendations .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* 联系我们 */
.message_contact {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 0.57rem;
  padding-top: 0.7rem;
  overflow: hidden;
  background-color: var(--active_color);
}
.message_contact .center_box {
  width: 100%;
  height: auto;
}
.message_contact .center_box .idx_title .title {
  color: #fff;
}
.message_contact .center_box .idx_title .details {
  color: #fff;
  margin-top: 20px;
}
.message_contact .center_box .item_box {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 10px;
}
.message_contact .center_box .item_box .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.message_contact .center_box .item_box .item input {
  width: 100%;
  height: 40px;
  border: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
  font-size: var(--font14);
  font-weight: 400;
  padding-left: 20px;
  color: #fff;
}
.message_contact .center_box .item_box .item input::-webkit-input-placeholder,
.message_contact .center_box .item_box .item textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.message_contact .center_box .item_box .item input:-moz-placeholder,
.message_contact .center_box .item_box .item textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.message_contact .center_box .item_box .item input::-moz-placeholder,
.message_contact .center_box .item_box .item textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}
.message_contact .center_box .item_box .item input:-ms-input-placeholder,
.message_contact .center_box .item_box .item textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.message_contact .center_box .item_box .item button {
  width: 120px;
  height: 40px;
  border: 0;
  background: #fff;
  border-radius: 6px;
  font-size: var(--font14);
  font-weight: 400;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.message_contact .center_box .item_box .item button:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
@media (max-width:990px) {
  .message_contact .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .message_contact .center_box .item_box .item button {
    height: 35px;
    width: 100px;
  }
}
.public_banner {
  position: relative;
  padding-top: var(--header-height);
}
.public_banner .image {
  height: 5.1rem;
}
.public_banner .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public_banner .image .wap{
    display: none;
}

@media (max-width:480px) {
    .public_banner .image .pc{
        display: none;
    }
    .public_banner .image .wap{
        display: block;
    }
}
.public_banner .info {
  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-weight: 600;
  color: #fff;
  font-size: var(--font46);
  padding-top: var(--header-height);
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 2;
  text-align: left;
}
.server-wrap {
  background: #fafafa;
}
.server-wrap .server-list {
  padding: 1.2rem 0 1.1rem 0;
  gap: 0.4rem;
}
.server-wrap .server-list .item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  height: 3.7rem;
  min-height: 300px;
  text-align: center;
  cursor: pointer;
  background:  no-repeat;
  border-radius: 0px 0px 8px 8px;
  background-size: cover;
  background-position: center;
}
.server-wrap .server-list .item .image {
  position: relative;
  position: absolute;
  width: 100%;
  transform: translatey(-33px);
}
.server-wrap .server-list .item .info {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
}
.server-wrap .server-list .item .info .t0 {
  /*font-weight: 600;*/
  font-size: var(--font24);
  margin-top: 1.33rem;
  padding: 0 0.4rem;
}
.server-wrap .server-list .item .info .t1 {
  color: #333333;
  font-size: var(--font16);
  padding: 0 0.4rem;
  margin-top: 0.3rem;
}
.server-wrap .server-list .item .info .idx_more {
  position: absolute;
  bottom: 0.4rem;
  width: 100%;
}
.server-wrap .server-list .item .info .idx_more a {
  color: #144ca8;
  margin: auto;
  background-color: inherit;
}
.server-wrap .server-list .item .info .idx_more a:hover {
  background: inherit;
}
.server-wrap .server-list .item:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  background: #144ca8;
  border-radius: 0px 0px 8px 8px;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.server-wrap .server-list .item:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 40px 0px rgba(17, 59, 123, 0.22);
  border-radius: 0px 0px 8px 8px;
  background:  no-repeat;
  background-size: cover;
  background-position: center;
}
.server-wrap .server-list .item:hover:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}
@media (max-width:768px) {
  .server-wrap .server-list .item {
    min-height: 220px;
  }
}
@media (max-width:480px) {
  .server-wrap .server-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .server-wrap .server-list .item {
    min-height: 250px;
  }
}
.application_form {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-bottom: 0.57rem;
  padding-top: 0.7rem;
  overflow: hidden;
  background-color: var(--active_color);
}
.application_form .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  height: auto;
}
.application_form .innerbox .idx_title .title {
  color: #fff;
}
.application_form .innerbox .idx_title .details {
  color: #fff;
  margin-top: 20px;
}
.application_form .innerbox .more-box {
    display: inline-block;
  background:  no-repeat;
  background-size: cover;
  padding: 0.14rem 0.2rem;
  background-color: #ffffff;
  border-radius: 4px;
  width: 32.5%;
  min-width: 200px;
  cursor: pointer;
}
.application_form .innerbox .more-box .t0 {
  color: #144ca8;
}
.application_form .innerbox .more-box .morebtn {
  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;
  float: right;
  margin-top: 0.18rem;
  width: 0.32rem;
  height: 0.32rem;
  min-width: 28px;
  min-height: 28px;
  background: #144ca8;
  border-radius: 50%;
}
.application_form .innerbox .more-box .morebtn img {
  width: 7px;
}
@media (max-width:990px) {
  .application_form .center_box .item_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .application_form .center_box .item_box .item button {
    height: 35px;
    width: 100px;
  }
}
@media (max-width:480px) {
  .application_form .idx_title .title {
    line-height: inherit;
  }
  .application_form .innerbox {
    display: inline-block;
    width: 100%;
  }
  .application_form .innerbox .more-box {
    margin-top: 0.5rem;
  }
}
.application_wrap {
  padding-bottom: 1rem;
}
.application_wrap .innerbox .itemlist {
  gap: 0.2rem;
  margin-top: 0.2rem;
}
.application_wrap .innerbox .itemlist .item {
  margin-top: 0.4rem;
  cursor: pointer;
}
.application_wrap .innerbox .itemlist .item .img {
  overflow: hidden;
  border-radius: 0.08rem;
 
}
.application_wrap .innerbox .itemlist .item .img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.08rem;
  
}
.application_wrap .innerbox .itemlist .item .img .pc{
     height: 3.5rem;
  min-height: 320px;
}
.application_wrap .innerbox .itemlist .item .wrap{
    display: none;
}
.application_wrap .innerbox .itemlist .item .t0 {
  font-weight: 600;
  font-size: var(--font24);
  margin-top: 0.1rem;
}
.application_wrap .innerbox .itemlist .item .t1 {
  font-size: var(--font22);
  margin-top: 0.2rem;
}
.application_wrap .innerbox .itemlist .item .taglist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
  margin-top: 0.23rem;
}
.application_wrap .innerbox .itemlist .item .taglist .tag {
  color: #144ca8;
  background: #f3f7fd;
  border-radius: 2px;
  line-height: 1;
  padding: 0.08rem 0.12rem;
}
.application_wrap .innerbox .itemlist .item .more {
  color: #666666;
  margin-top: 0.2rem;
}
.application_wrap .innerbox .itemlist .item:hover .img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
.application_wrap .innerbox .itemlist .item:hover .t0 {
  color: #144ca8;
}
.application_wrap .innerbox .itemlist .item:hover .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #333333;
}
@media (max-width:480px) {
  .application_wrap .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
  .application_wrap .innerbox .itemlist .item .img .pc{
      display: none;
  }
  .application_wrap .innerbox .itemlist .item .img .wrap{
      display: block;
  }
}
/* 服务和保修 */
.public_banner2 {
  position: relative;
  padding-top: var(--header-height);
}
.public_banner2 .image {
  height: 5.1rem;
}
.public_banner2 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public_banner2 .info {
  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;

  font-weight: 600;
  color: #fff;
  font-size: var(--font46);
  padding-top: var(--header-height);
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 2;
  
}
.public_banner2 .info .innerbox{
    text-align: left;
}
.public_banner3 {
  position: relative;
}
.public_banner3 .image {
  height: 5.6rem;
}
.public_banner3 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public_banner3 .info {
  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-weight: 600;
  color: #fff;
  padding-top: var(--header-height);
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 2;
}
.public_banner3 .info .t0 {
  font-size: var(--font32);
}
.public_banner3 .info .t1 {
  font-size: var(--font46);
  margin-top: 0.4rem;
}
.public_banner3 .info .t2 {
  margin-top: 0.36rem;
  font-size: var(--font24);
  width: 58%;
}
.public_banner3 .info .index-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-weight: 600;
  gap: 0.11rem;
  margin-top: 0.6rem;
  border-radius: 3px;
  background: #ffffff;
  border-radius: 23px;
  padding: 0.13rem 0.21rem;
  font-size: var(--font14);
  width: fit-content;
  color: #2c3147;
}
@media (max-width:480px) {
  .public_banner3 .info .t2 {
    width: 100%;
  }
  
   .public_banner3 .image .pc {
        display: none;
    }
    .public_banner3 .image .wap{
        display: block;
    }

}
.server-warranty-section1 {
  padding: 0.4rem 0 1.2rem 0;
}
.server-warranty-section1 .innerbox .item {
  margin-top: 0.4rem;
}
.server-warranty-section1 .innerbox .item .t0 {
  font-weight: 600;
  font-size: var(--font18);
}
.server-warranty-section1 .innerbox .item .info {
  margin-top: 0.1rem;
  line-height: calc(32/18);
}
.server-warranty-section1 .cardlist {
  gap: 0.24rem;
  margin-top: 0.42rem;
}
.server-warranty-section1 .cardlist .c_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  height: 3.12rem;
  background: #fafafa;
  border-radius: 0.1rem;
  padding: 0.3rem 0.8rem;
  min-height: 200px;
}
.server-warranty-section1 .cardlist .c_item .icon {
  width: 0.48rem;
  height: 0.48rem;
}
.server-warranty-section1 .cardlist .c_item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.server-warranty-section1 .cardlist .c_item .title {
  font-weight: 600;
  font-size: var(--font18);
  margin-top: 0.36rem;
}
.server-warranty-section1 .cardlist .c_item .addr {
  font-size: var(--font16);
  margin-top: 0.1rem;
}
@media (max-width:768px) {
  .server-warranty-section1 .cardlist {
    grid-template-columns: repeat(1, 1fr);
  }
  .server-warranty-section1 .cardlist .c_item {
    padding: 0.3rem;
    min-height: inherit;
  }
}
/* 新闻中心 */
.tab-section {
  background: rgb(126 133 139 / 6%);
	position: sticky;
	top: 60px;
	/*z-index: 2;*/
	z-index: 7;
	background-color: #fff;
}
.tab-section .innerbox {
  width: 100%;
}
.newtab {
  position: sticky;
  top: 60px;
  background-color: #fff;
  z-index: 2;
  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.98rem;
  width: 100%;
  height: auto;
  font-size: var(--font20);
}
.newtab .title {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  /*padding: 0.205rem 0;*/
  padding: 0.1rem 0;
  cursor: pointer;
  font-size: var(--font16);
}
.newtab .title .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: none;
  margin-left: 0.06rem;
}
.newtab .title:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  content: '';
  bottom: -5.5px;
  left: 0;
  width: 0;
  height: 7px;
  background:  no-repeat;
  background-position: center;
  z-index: 2;
}
.newtab .title:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.newtab .active {
  color: var(--active_color);
}
.newtab .active .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}
.newtab .active:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
}
.newtab:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: -4rem;
  width: 1920px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}
@media (max-width:480px) {
  .newtab {
    width: 100%;
    overflow: auto;
    gap: 0.4rem;
    padding-left: 3rem;
    display: none;
  }
  .newtab .title {
    white-space: nowrap;
  }
  .newtab .title:after {
    background: inherit;
    background-color: var(--active_color);
  }
}
.news-wrap {
  position: relative;
  width: 100%;
  height: auto;
}
.news-wrap .innerbox .newsinfo .newpanel {
  width: 100%;
  height: auto;
  display: none;
}
.news-wrap .innerbox .newsinfo .newpanel .itemlist {
  gap: 0.2rem;
  margin-top: 0.2rem;
}
.news-wrap .innerbox .newsinfo .newpanel .itemlist .item {
  margin-top: 0.4rem;
  cursor: pointer;
}
.news-wrap .innerbox .newsinfo .newpanel .itemlist .item .img {
  overflow: hidden;
  border-radius: 0.2rem;
}
.news-wrap .innerbox .newsinfo .newpanel .itemlist .item .img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
}
.news-wrap .innerbox .newsinfo .newpanel .itemlist .item .time {
  font-size: var(--font14);
  color: #929499;
  margin-top: 0.15rem;
}
.news-wrap .innerbox .newsinfo .newpanel .itemlist .item .t0 {
  font-weight: 600;
  font-size: var(--font24);
  margin-top: 0.1rem;
}
.news-wrap .innerbox .newsinfo .newpanel .itemlist .item:hover .img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
.news-wrap .innerbox .newsinfo .active {
  display: inline-block;
}
.news-wrap .innerbox #demo-laypage-normal-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 1.09rem;
  margin-bottom: 1.2rem;
}
@media (max-width:480px) {
  .news-wrap .innerbox .newsinfo .newpanel .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-detail-wrap {
  background: #ffffff;
  margin-top: var(--header-height);
  padding-bottom: 1.15rem;
}
.news-detail-wrap .nav-home {
  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;
  gap: 0.1rem;
  padding-top: 0.6rem;
}
.news-detail-wrap .nav-home .item {
  font-size: var(--font16);
}
.news-detail-wrap .nav-home .item 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;
}
.news-detail-wrap .nav-home .item img {
  margin: 0 0.05rem;
}
.news-detail-wrap .innerbox {
  background-color: var(--white-color);
  padding-top: 0.65rem;
}
.news-detail-wrap .innerbox .title {
  font-weight: 600;
  font-size: var(--font40);
}
.news-detail-wrap .innerbox .time {
  color: #999999;
  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.38rem 0 0.2rem 0;
  text-align: center;
  border-bottom: solid 1px #ededed;
}
.news-detail-wrap .innerbox .time .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 1rem;
}
.news-detail-wrap .innerbox .time .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.14rem;
}
.news-detail-wrap .innerbox .time .right .medialist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.12rem;
}
.news-detail-wrap .innerbox .time .right .medialist .img {
  width: 20px;
  height: 20px;
}
.news-detail-wrap .innerbox .desc {
  margin-top: 0.8rem;
  line-height: calc(32/18);
}
.news-detail-wrap .innerbox .desc p {
  margin-top: 0.2rem;
}
.news-detail-wrap .innerbox .images {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.82rem;
  margin-top: 0.5rem;
  text-align: center;
}
.news-detail-wrap .innerbox .images img {
  width: auto;
}
.news-detail-wrap .innerbox .return-wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: solid 1px #e7ebef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: .5rem;
}
.news-detail-wrap .innerbox .return-wrap .left p {
  margin-top: 0.2rem;
}
.news-detail-wrap .innerbox .return-wrap .left p:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.news-detail-wrap .innerbox .return-wrap .left p:hover a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.news-detail-wrap .innerbox .return-wrap .right {
  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.26rem;
  min-width: 150px;
}
.news-detail-wrap .innerbox .return-wrap .right .index-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.11rem;
  border-radius: 3px;
  border: 1px solid #e2e2e2;
  padding: 0.2rem 0.23rem;
}
.news-detail-wrap .innerbox .return-wrap .right .index-more .icon{
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-detail-wrap .innerbox .return-wrap .active {
  color: #144ca8;
}
.news-detail-wrap .innerbox .return-wrap .active a {
  color: #144ca8;
}
@media (max-width:480px) {
    
    .news-detail-wrap .innerbox{
        padding-top: 0.3rem;
    }
    .news-detail-wrap .innerbox .desc{
        margin-top: .3rem;
    }
  .news-detail-wrap .innerbox .time {
    display: inline-block;
    width: 100%;
  }
  .news-detail-wrap .innerbox .time .left {
    display: inline-block;
    width: 100%;
    text-align: left;
  }
  .news-detail-wrap .innerbox .time .right {
    margin-top: 0.2rem;
  }
  .news-detail-wrap .innerbox .return-wrap{
      display: block;
      margin-top: 0.5rem;
    padding-top: 0rem;
  }
  .news-detail-wrap .innerbox .return-wrap .right{
      margin-top: .3rem;
  }
}

.news_recoment {
  position: relative;
  z-index: 1;
  background: #fafafa;
  padding: 1rem 0 1.25rem 0;
}
.news_recoment .innerbox .t0 {
  font-weight: 600;
  font-size: var(--font36);
}
.news_recoment .innerbox .itemlist {
  margin-top: 0.6rem;
  gap: 0.2rem;
}
.news_recoment .innerbox .itemlist .item {
  cursor: pointer;
}
.news_recoment .innerbox .itemlist .item .image {
  height: 3.32rem;
  min-height: 225px;
  border-radius: 20px;
  overflow: hidden;
}
.news_recoment .innerbox .itemlist .item .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}
.news_recoment .innerbox .itemlist .item .info {
  margin-top: 0.2rem;
}
.news_recoment .innerbox .itemlist .item .info .time {
  font-weight: 600;
  font-size: var(--font14);
  color: #929499;
}
.news_recoment .innerbox .itemlist .item .info .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: var(--font24);
  margin-top: 0.2rem;
  line-height: 1;
}
.news_recoment .innerbox .itemlist .item:hover .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
@media (max-width:480px) {
    .news_recoment{
        padding: .5rem 0;
    }
  .news_recoment .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}


.public_banner {
  position: relative;
  padding-top: var(--header-height);
}

.public_banner .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.public_banner .info {
  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-weight: 600;
  color: #fff;
  padding-top: var(--header-height);
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 2;
 
}
.public_banner .info .t0 {
  /*font-size: var(--font32);*/
    font-size: var(--font46);
  margin-top: 0.4rem;
}
.public_banner .info .t1 {
  font-size: var(--font46);
  margin-top: 0.4rem;
  color: #000;
}
.public_banner .info .innerbox{
    text-align: left;
}

.product_d_section1 {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  display: none;
}
.product_d_section1 .innerbox {
  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;
  gap: 0.5rem;
}
.product_d_section1 .innerbox .left {
  width: 30%;
}
.product_d_section1 .innerbox .left .t0 {
  font-weight: 600;
  font-size: var(--font36);
}
.product_d_section1 .innerbox .right {
  width: 70%;
}
.product_d_section1 .innerbox .right .itemlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 0.3rem 0 0.5rem 0;
}
.product_d_section1 .innerbox .right .itemlist .item {
  position: relative;
  z-index: 1;
  text-align: center;
  cursor: pointer;
}
.product_d_section1 .innerbox .right .itemlist .item .image {
  width: 0.85rem;
  height: 0.85rem;
}
.product_d_section1 .innerbox .right .itemlist .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product_d_section1 .innerbox .right .itemlist .item .title {
  color: #333333;
  font-weight: 600;
  font-size: var(--font16);
  margin-top: 0.1rem;
}
.product_d_section1 .innerbox .right .itemlist .item:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  content: '';
  width: 0;
  bottom: -0.5rem;
  left: 0;
  height: 3px;
}
.product_d_section1 .innerbox .right .itemlist .item:hover:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--active_color);
  width: 100%;
}
.product_d_section1 .innerbox .right .itemlist .item:hover .title {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.product_d_section1 .innerbox .right .itemlist .active:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--active_color);
  width: 100%;
}
.product_d_section1 .innerbox .right .itemlist .active .title {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.product_d_section1 .innerbox:after {
  position: absolute;
  content: '';
  width: 1920px;
  bottom: 0;
  left: 0;
  height: 1px ;
  background: rgba(51, 51, 51, 0.2);
}
@media (max-width:768px) {
  .product_d_section1 .innerbox {
    display: block;
    padding-top: 0.5rem;
  }
  .product_d_section1 .innerbox .left {
    width: 100%;
  }
  .product_d_section1 .innerbox .right {
    margin-top: 0.3rem;
    width: 100%;
  }
  .product_d_section1 .innerbox .right .itemlist {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .product_d_section1 .innerbox .right .itemlist .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width:480px) {
  .product_d_section1 .innerbox .right .itemlist {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.3rem 0.2rem;
  }
}
.product_d_filtercontent {
  background: #fafafa;
  padding-top: 0.6rem;
  padding-bottom: 1rem;
  margin-top: var(--header-height);
}
.product_d_filtercontent .innerbox .tab_head {
  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;
  background: #ffffff;
  height: .56rem;
  padding: 0.15rem 0;
}
.product_d_filtercontent .innerbox .tab_head .t-left {
  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 0.2rem;
  width: 20%;
  min-width: 200px;
}
.product_d_filtercontent .innerbox .tab_head .t-left .htitle {
  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;
}
.product_d_filtercontent .innerbox .tab_head .t-left .htitle .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;
  width: 0.18rem;
  height: 0.18rem;
}
.product_d_filtercontent .innerbox .tab_head .t-left .htitle .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product_d_filtercontent .innerbox .tab_head .t-left .htitle .t0 {
  /*font-weight: 600;*/
  font-size: var(--font18);
}
.product_d_filtercontent .innerbox .tab_head .t-left .refresh_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;
  width: 0.16rem;
  height: 0.16rem;
}
.product_d_filtercontent .innerbox .tab_head .t-left .refresh_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product_d_filtercontent .innerbox .tab_head .t-left .refresh_icon:hover img{
    animation: rotate360 2s linear infinite;
}
.product_d_filtercontent .innerbox .tab_head .t-right {
  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 0.24rem;
  width: 100%;
}
.product_d_filtercontent .innerbox .tab_head .t-right .t1 {
  /*font-weight: 600;*/
  font-size: var(--font18);
}
.product_d_filtercontent .innerbox .tab_head .t-right .num {
  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: #fff;
  width: 0.4rem;
  height: 0.4rem;
  background: #144ca8;
  box-shadow: 0px 3px 13px 0px rgba(20, 76, 168, 0.32);
  border-radius: 50%;
  font-size: var(--font16);
}
.product_d_filtercontent .innerbox .tab_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.product_d_filtercontent .innerbox .tab_content .tab_head{
    /*display: none;*/
}
.product_d_filtercontent .innerbox .tab_content .tc-left {
  width: 20%;
  min-width: 200px;
  background-color: #fff;
  cursor: pointer;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .tag {
  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;
  gap: 0.14rem;
  padding: 0.2rem;
  background: #ffffff;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .tag .t_name {
  color: #144ca8;
  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-size: var(--font16);
  gap: 0.09rem;
  background: rgba(20, 76, 168, 0.08);
  border-radius: 2px;
  padding: 0.07rem 0.13rem;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .tag .t_name .close {
  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;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .tag .t_name .close img {
  display: none;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item {
  padding: 0.4rem 0.3rem;
  border-bottom: solid 1px #e9e9e9;
  background: #ffffff;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .f_result{
    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.2rem;
    
    min-width: 200px;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .f_result .htitle{
    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;
}

.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .f_result .htitle .icon img{
        display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 0.18rem;
    height: 0.18rem;
}
 
 
 .product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .f_result .htitle .t0{
        /*font-weight: 600;*/
        font-size: var(--font18);
 }
 
 .product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .f_result .refresh_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;
    width: 0.16rem;
    height: 0.16rem;
 }
 
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .ft {
  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;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .ft .ft0 {
  /*font-weight: 600;*/
  font-size: var(--font16);
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .ft .more{
    filter: brightness(0) invert(0.4);
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo {
  display: none;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .fli {
  cursor: pointer;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .fli .f_one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.1rem;
  cursor: pointer;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .fli .f_one .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;
  gap: 0.13rem;
  font-size: var(--font16);
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .fli .f_one .t2 .more {
  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;
  filter: brightness(0) invert(0.3);
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .fli .f_one .choose {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  border: 1px solid #d6d6d6;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .fli .f_one .choose img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .fli .f_one .on img {
  display: inline-block;
  border: none;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .fli .twoul {
  padding-left: 0.18rem;
  font-size: var(--font14);
  margin-top: 0.15rem;
  line-height: calc(30/14);
  display: none;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .fli .twoul .twoli {
  color: #333333;
  display: flex;
    align-items: center;
    justify-content: space-between;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .fli .twoul .twoli:hover a {
  color: #144ca8;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .fli .twoul .li_on {
  color: var(--active_color);
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .fli .twoul .li_on a {
  color: var(--active_color);
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .one_active .f_one {
  color: #144ca8;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item .finfo .ful .one_active .f_one .t2 .more {
  transform: rotate(180deg);
  filter: inherit;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .item:last-child {
  border-bottom: none;
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .active {
  background: rgba(197, 197, 197, 0.15);
}
.product_d_filtercontent .innerbox .tab_content .tc-left .itemlist .active .ft .more img{
    -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
    transform: rotate(180deg);
}
.product_d_filtercontent .innerbox .tab_content .tc-right {
  width: 80%;
  
}
.product_d_filtercontent .innerbox .tab_content .tc-right .tab_head{
    padding: .08rem 0;
}


.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist {
  gap: 0.16rem;
  padding-top: 0.16rem;
  padding-left: 0.16rem;
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  padding: 0.23rem;
  background: #ffffff;
  border-radius: 10px;
  /*height: 4.15rem;*/
  /*min-height: 300px;*/
  cursor: pointer;
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  height: 1.75rem;
  min-height: 125px;
  overflow: hidden;
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item .info {
  margin-top: 0.3rem;
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item .info .t0 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /*font-weight: 600;*/
  font-size: var(--font20);
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item .info .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font16);
  margin-top: 0.1rem;
  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item .info .tagbox {
  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.09rem;
  margin-top: 0.2rem;
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item .info .tagbox .name {
  background: #f3f7fd;
  border-radius: 16px;
  font-size: var(--font16);
  border: 1px solid #144ca8;
  line-height: 1;
  padding: 0.075rem 0.15rem;
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item .info .idx_more {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /*position: absolute;*/
  width: 100%;
  /*left: 0;*/
  /*padding-left: 0.23rem;*/
  /*bottom: 0.3rem;*/
  margin-top: .2rem;
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #333333;
  box-shadow: 0px 0px 20px 0px rgba(56, 56, 56, 0.1);
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item:hover .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item:hover .info .t0 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.product_d_filtercontent .innerbox .tab_content .tc-right .cardlist .item:hover .info .idx_more {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.product_d_filtercontent #demo-laypage-normal-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.8rem;
  padding-left: 20%;
}
@media (max-width:768px) {
  .product_d_filtercontent .innerbox .tab_content .tc-right .cardlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .product_d_filtercontent .innerbox .tab_head {
    display: inline-block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
  }
  .product_d_filtercontent .innerbox .tab_head .t-left {
    width: 100%;
    height: 40px;
    background-color: #fff;
  }
  .product_d_filtercontent .innerbox .tab_head .t-right {
    width: 100%;
    height: 40px;
    margin-top: 0.2rem;
    background-color: #fff;
   
  }
  .product_d_filtercontent .innerbox .tab_content {
    display: inline-block;
    width: 100%;
  }
  .product_d_filtercontent .innerbox .tab_content .tc-left {
    width: 100%;
  }
  .product_d_filtercontent .innerbox .tab_content .tc-right {
    width: 100%;
    padding-top: 0.3rem;
    padding-left: 0;
  }
  .product_d_filtercontent .innerbox .tab_content .tc-right .cardlist {
    grid-template-columns: repeat(1, 1fr);
    margin-top: .16rem;
    padding-left: 0;
  }
  .product_d_filtercontent #demo-laypage-normal-2 {
    padding-left: 0;
  }
}
.product_d_buyer {
  position: relative;
  z-index: 1;
 
  padding-top: calc(var(--header-height)   0.4rem);
}
.product_d_buyer .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 1.4rem;
}
.product_d_buyer .innerbox .left {
  width: 41.67%;
}
.product_d_buyer .innerbox .left .imgswiper {
  /*height: 5rem;*/
  height: 4rem;
  min-height: 350px;
  overflow: hidden;
}
.product_d_buyer .innerbox .left .imgswiper .img{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_d_buyer .innerbox .left .imgswiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product_d_buyer .innerbox .left .imgswiper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_d_buyer .innerbox .left .imglistswiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  margin-top: 0.24rem;
}
.product_d_buyer .innerbox .left .imglistswiper .imgbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0.1rem;
  width: 0.7rem;
  height: 0.7rem;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #efefef;
  cursor: pointer;
}
.product_d_buyer .innerbox .left .imglistswiper .imgbox video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_d_buyer .innerbox .left .imglistswiper .active .imgbox {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: solid 1px var(--active_color);
}
.product_d_buyer .innerbox .right {
  width: 46.67%;
}
.product_d_buyer .innerbox .right .title {
  font-weight: 600;
  font-size: var(--font36);
}
.product_d_buyer .innerbox .right .desc {
  margin-top: 0.2rem;
  background: #f8f9fc;
  border-radius: 6px;
  padding: 0.25rem;
}
.product_d_buyer .innerbox .right .desc .word {
  font-size: var(--font16);
}
.product_d_buyer .innerbox .right .pz .t0 {
  font-weight: 600;
  margin-top: 0.5rem;
  font-size: var(--font20);
}
.product_d_buyer .innerbox .right .pz .pro_ul .pro_li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 0.23rem;
  font-size: var(--font18);
  border: solid 1px rgba(102, 102, 102, 0.1);
  border-radius: 6px;
  padding: 0.235rem 0.19rem;
  cursor: pointer;
}
.product_d_buyer .innerbox .right .pz .pro_ul .pro_li .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product_d_buyer .innerbox .right .pz .pro_ul .pro_li .type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.product_d_buyer .innerbox .right .pz .pro_ul .active {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: solid 1px var(--active_color);
}
.product_d_buyer .innerbox .right .pz .pro_ul .active .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}

.product_d_buyer .innerbox .right .pro_intro {
  margin-top: 0.2rem;
}
.product_d_buyer .innerbox .right .pro_intro .p_li {
  position: relative;
  z-index: 1;
  margin: 0.05rem 0;
  font-size: var(--font16);
  padding-left: 0.1rem;
}
.product_d_buyer .innerbox .right .pro_intro .p_li:after {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translatey(-50%);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #333;
}
.product_d_buyer .innerbox .right .buybtn {
  font-weight: 600;
  text-align: center;
  color: #fff;
  font-size: var(--font18);
  margin-top: 0.59rem;
  background: #144ca8;
  border-radius: 6px;
  line-height: 1;
  padding: 0.16rem;
}

.product_d_buyer .innerbox .right .buybtn a{
    color: #fff;
}

@media (max-width:768px) {
    .product_d_buyer .innerbox{
        display: inline-block; 
        width: 100%;
        
    }
    .product_d_buyer .innerbox .left{
        width: 100%;
    }
     .product_d_buyer .innerbox .right{
        width: 100%;
        margin-top: .8rem;
    }
}


.product_d_buyer_fix {
  position: relative;
  z-index: 1;
  /*margin-top: 1.2rem;*/
  /*margin-top: calc(var(--header-height)   0.4rem);*/
    margin-top: calc(var(--header-height));
}
.product_d_buyer_fix .fix_title_tab {
  position: sticky;
  z-index: 3;
  background-color: #fff;
  top: 60px;
  /*margin-top: 1.2rem;*/
}
.product_d_buyer_fix .pro_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  /*margin-top: 0.9rem;*/
  margin-top: 0;
}
.product_d_buyer_fix .pro_nav .item {
  display: block;
  line-height: 1;
  padding: 0.1rem 0.35rem;
}
.product_d_buyer_fix .pro_nav .active {
  font-weight: 600;
  background: #f8f9fc;
  border-radius: 6px 6px 0px 0px;
}
.letter-wrap {
  position: relative;
  margin-top: -1.98rem;
  margin-bottom: 1rem;
}
.letter-wrap .w1200{
    padding: 0;
}
.letter-wrap .innerbox .info {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 28%;
  width: 50%;
  padding: 1rem 0 1rem 0;
}
.letter-wrap .innerbox .info .title {
  font-size: var(--font24);
}
.letter-wrap .innerbox .info .time {
  margin-top: 0.24rem;
  font-size: var(--font18);
}
.letter-wrap .innerbox .info .desc {
  font-size: var(--font18);
  margin-top: 0.3rem;
  padding-top: 0.5rem;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}
@media (max-width:990px) {
  .letter-wrap .innerbox .info {
    left: 20%;
    width: 70%;
    padding: 1.5rem 0 1rem 0;
  }
}
@media (max-width:768px) {
  .letter-wrap .innerbox .info {
    left: 14%;
    width: 78%;
  }
  .letter-wrap .innerbox .info .desc {
    height: 700px;
    overflow: auto;
  }
}
@media (max-width:480px) {
    .letter-wrap{
        margin-top: -.98rem;
    }
    .letter-wrap .image{
        width: 120%;
        margin-left: -10%;
    }
  .letter-wrap .innerbox .info {
    left: 14%;
    width: 78%;
    padding: 0.8rem 0;
    top: .8rem;
  }
  .letter-wrap .innerbox .info .desc {
    height: 350px;
    overflow: auto;
  }
  .product_d_buyer_fix .pro_nav .item{
      padding: 0.1rem 0.25rem;
  }
}
.public_banner {
  position: relative;
  padding-top: var(--header-height);
}

.public_banner .info {
  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: #fff;
  padding-top: var(--header-height);
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 2;
}
/*.public_banner .info .t0 {*/
/*  font-size: var(--font32);*/
/*}*/
/*.public_banner .info .t1 {*/
/*  font-weight: 600;*/
/*  font-size: var(--font40);*/
/*  margin-top: 0.3rem;*/
/*}*/
.about-section1 {
  background:  no-repeat;
  background-size: cover;
}
.about-section1 .innerbox .aboutinfo {
  padding-top: 0.8rem;
}
.about-section1 .innerbox .aboutinfo .title {
  font-weight: 600;
  text-align: center;
  font-size: var(--font36);
}
.about-section1 .innerbox .aboutinfo .flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.7rem;
}
.about-section1 .innerbox .aboutinfo .flexbox .left {
  flex: 1;
}
.about-section1 .innerbox .aboutinfo .flexbox .left ul li {
  font-size: var(--font18);
  margin-top: 0.4rem;
}
.about-section1 .innerbox .aboutinfo .flexbox .left ul li:first-child {
  margin-top: 0;
}
.about-section1 .innerbox .aboutinfo .flexbox .left ul li .bold{
    font-weight: normal;
}
.about-section1 .innerbox .aboutinfo .flexbox .right {
  flex: 1;
  padding-left: 0.52rem;
  height: 5.1rem;
  min-height: 380px;
}
.about-section1 .innerbox .aboutinfo .flexbox .right .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50px 0px 50px 0px;
  cursor: pointer;
}
.about-section1 .innerbox .aboutinfo .flexbox .right .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px 0px 50px 0px;
}
.about-section1 .innerbox .aboutinfo .flexbox .right:hover .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
.about-section1 .innerbox .aboutinfo .itemlist {
  margin-top: 0.7rem;
}
.about-section1 .innerbox .aboutinfo .itemlist .item .t1 {
  font-weight: 600;
  font-size: var(--font20);
}
.about-section1 .innerbox .aboutinfo .itemlist .item .num {
  font-weight: 600;
  color: #144ca8;
  font-size: var(--font40);
  margin-top: 0.2rem;
  font-family: "opposans";
}
.about-section1 .innerbox .aboutvideo {
  position: relative;
  /*height: 6.3rem;*/
  /*min-height: 450px;*/
  padding-top: 0.7rem;
  margin-top: 0.38rem;
  padding-bottom: 0.8rem;
  border-top: solid 1px #cbcbcb;
}
.about-section1 .innerbox .aboutvideo .videobanner {
  width: 100%;
  height: 100%;
}
.about-section1 .innerbox .aboutvideo .videobanner video {
    position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.16rem;
  z-index: 2;
}
.about-section1 .innerbox .aboutvideo .info {
  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;
  flex-direction: column;
  gap: 0.24rem;
  position: absolute;
  /*z-index: 2;*/
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}
.about-section1 .innerbox .aboutvideo .info .videobtn {
  width: 0.6rem;
  height: 0.6rem;
  cursor: pointer;
}
.about-section1 .innerbox .aboutvideo .t2 {
  font-weight: 600;
  color: #fff;
  font-size: var(--font24);
}
@media (max-width:768px) {
  .about-section1 .innerbox .aboutinfo .flexbox {
    display: inline-block;
    width: 100%;
  }
  .about-section1 .innerbox .aboutinfo .flexbox .right {
    padding-left: 0;
    margin-top: 0.8rem;
  }
}
@media (max-width:480px) {
  .about-section1 .innerbox .aboutinfo .itemlist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}
.about-development {
  background-color: #ffffff;
  padding: 0.8rem 0;
}
.about-development .itemlist {
  position: relative;
  margin-top: 0.7rem;
}
.about-development .itemlist:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background: #cbcbcb;
}
.about-development .itemlist .item {

  cursor: pointer;
  height: fit-content;
}
.about-development .itemlist .item .line1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-right: 24.5%;
}
.about-development .itemlist .item .descp{
    padding-right: 24.5%;
}
.about-development .itemlist .item .image{
    padding-right: 24.5%;
}
.about-development .itemlist .item .line1 .title {
  font-weight: 600;
  font-size: var(--font24);
}
.about-development .itemlist .item .line1 .time {
  font-weight: 600;
  font-size: var(--font32);
}
.about-development .itemlist .item .line1:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  right: 0;
  transform: translatex(50%);
  top: 8px;
  background:  no-repeat;
  background-size: contain;
  border-radius: 50%;
}
.about-development .itemlist .item .descp {
  margin-top: 0.24rem;
}
.about-development .itemlist .item .image {
  margin-top: 0.29rem;
  border-radius: 0.1rem;
  overflow: hidden;
}
.about-development .itemlist .item .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.1rem;
}
.about-development .itemlist .item .image:hover img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
.about-development .itemlist .active .line1 {
  color: #144ca8;
}
.about-development .itemlist .active .line1:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background:  no-repeat;
}
.about-development .itemlist .item:nth-child(odd) {
  margin-top: 0.68rem;
}
.about-development .itemlist .item:nth-child(even) {
  margin-top: 2.98rem;
}
.about-development .itemlist .item:nth-child(even) .line1 {
  flex-direction: row-reverse;
  padding: 0 0 0 24.5%;
}
.about-development .itemlist .item:nth-child(even) .descp {
  
  padding: 0 0 0 24.5%;
}
.about-development .itemlist .item:nth-child(even) .image {
  
  padding: 0 0 0 24.5%;
}
.about-development .itemlist .item:nth-child(even) .line1:after {
  left: 0;
  transform: translatex(-50%);
}
.about-development .loadmore {
  font-weight: 600;
  font-size: var(--font16);
  color: var(--active_color);
  border-radius: 26px;
  border: 1px solid #144ca8;
  width: fit-content;
  padding: 0.13rem 0.47rem;
  margin: auto;
  margin-top: 0.8rem;
}

@media (max-width:480px) {
  .about-development .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-development .itemlist::after {
    display: none;
  }
  .about-development .itemlist .item {
    position: relative;
    z-index: 1;
    padding: 0.5rem 0;
  }
  .about-development .itemlist .item:after {
    position: absolute;
    content: '';
    left: 0;
    width: 100% ;
    height: 1px ;
    top: 0;
    background: #cbcbcb;
  }
  .about-development .itemlist .item .line1 {
    display: inline-block;
    width: 100%;
    padding-right: 0;
  }
  .about-development .itemlist .item .descp {
      padding-right: 0;
  }
  .about-development .itemlist .item .image {
      padding-right: 0;
  }
  .about-development .itemlist .item .line1 .time {
    margin-top: 0.2rem;
  }
  .about-development .itemlist .item:nth-child(odd) {
    margin-top: 0;
  }
  .about-development .itemlist .item:nth-child(even) {
    margin-top: 0;
  }
  .about-development .itemlist .item:nth-child(even) .line1{
      padding: 0 5%;
  }
  .about-development .itemlist .item:nth-child(even) .descp{
      padding: 0 5%;
  }
  .about-development .itemlist .item:nth-child(even) .image{
      padding: 0 5%;
  }
  
  
}
.about-technology {
  background:  no-repeat;
  background-size: cover;
}
.about-technology .innerbox {
  color: #fff;
  padding-top: 1.16rem;
  padding-bottom: 1.46rem;
}
.about-technology .innerbox .about_more {
  width: 58%;
  margin: auto;
}
.about-technology .innerbox .about_more .t2 {
  font-size: var(--font20);
  margin-top: 0.5rem;
  line-height: calc(30/20);
}
.about-technology .innerbox .itemlist {
  margin-top: 1.29rem;
  padding: 0.4rem 0;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
.about-technology .innerbox .itemlist .item {
  background:  no-repeat;
  padding-left: 0.1rem;
}
.about-technology .innerbox .itemlist .item .name {
  font-weight: 600;
  font-size: var(--font18);
}
.about-technology .innerbox .itemlist .item .num {
  font-weight: 600;
  font-size: var(--font80);
  margin-top: 0.2rem;
  line-height: 1;
  /*font-family: "opposans";*/
}
@media (max-width:990px) {
  .about-technology .innerbox .about_more {
    width: 70%;
  }
}
@media (max-width:768px) {
  .about-technology .innerbox .itemlist {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
  }
}
@media (max-width:480px) {
  .about-technology .innerbox .about_more {
    width: 90%;
  }
  .about-technology .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.4rem;
  }
  .about-technology .innerbox .itemlist .item {
    text-align: center;
  }
}
.about-production-strength {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0 1.5rem 0;
}
.about-production-strength .innerbox {
  width: 100%;
  height: auto;
}
.about-production-strength .innerbox .about_more {
  width: 41%;
  margin: auto;
}
.about-production-strength .innerbox .about_more .t2 {
  font-size: var(--font20);
  margin-top: 0.5rem;
  line-height: calc(30/20);
}
.about-production-strength .innerbox .swiper_box {
  margin-top: 0.5rem;
}
.about-production-strength .innerbox .swiper_box .swiper-scrollbar {
  display: block !important;
  width: 62.5%;
  margin-left: 19%;
  bottom: 0.8rem;
  background: #e4e6e9;
}
.about-production-strength .innerbox .swiper_box .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: var(--active_color);
}

.about-production-strength .innerbox .swiper_box_newversion {
  margin-top: 0.5rem;
}
.about-production-strength .innerbox .swiper_box_newversion .img {
  height: 3.5rem;
  min-height: 320px;
}
.about-production-strength .innerbox .swiper_box_newversion .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-production-strength .innerbox .swiper_box_newversion .swiper-slide {
  transform-style: preserve-3d;
  /* 保持3d样式 */
}
.about-production-strength .innerbox .swiper_box_newversion .swiper-scrollbar {
  position: relative;
  margin-top: 100px;
  display: block !important;
  width: 62.5%;
  margin-left: 19%;
  bottom: 0.8rem;
  background: #e4e6e9;
}
.about-production-strength .innerbox .swiper_box_newversion .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: var(--active_color);
}
.about-production-strength .innerbox .swiper_box_newversion .idxpagehide {
  display: block;
  text-align: center;
  margin-top: 0.4rem;
}







@media (max-width:990px) {
  .about-production-strength .innerbox .about_more {
    width: 70%;
  }
}
@media (max-width:480px) {
  .about-production-strength .innerbox .about_more {
    width: 90%;
  }
}
.about-section2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about-section2 .innerbox {
  width: 100%;
  height: auto;
}
.about-section2 .innerbox .image .m_img {
  display: none;
}
.about-section2 .innerbox .info {
  position: absolute;
  width: 100%;
  top: 0.7rem;
}
.about-section2 .innerbox .about_more {
  width: 41%;
  margin: auto;
}
.about-section2 .innerbox .about_more .t2 {
  font-size: var(--font18);
  margin-top: 0.38rem;
  line-height: calc(28/18);
}
@media (max-width:990px) {
  .about-section2 .innerbox .about_more {
    width: 70%;
  }
}
@media (max-width:768px) {
  .about-section2 .innerbox .image {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .about-section2 .innerbox .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about-section2 .innerbox .info {
    position: relative;
    padding: 0rem 0 10rem 0;
  }
}
@media (max-width:480px) {
  .about-section2 .innerbox .about_more {
    width: 90%;
  }
  .about-section2 .innerbox .image .pc_img {
    display: none;
  }
  .about-section2 .innerbox .image .m_img {
    display: inline-block;
  }
}
.about-section3 {
  padding: 0.7rem 0 0.9rem 0;
}
.about-section3 .innerbox .mapbox {
  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;
  margin-top: 0.8rem;
}
.about-section3 .innerbox .mapbox .left {
  width: 66%;
}
.about-section3 .innerbox .mapbox .right {
  width: 34%;
  padding-left: 1.14rem;
}
.about-section3 .innerbox .mapbox .right .itemlist .item {
  margin-top: 0.6rem;
}
.about-section3 .innerbox .mapbox .right .itemlist .item .num {
  font-weight: 600;
  color: #144ca8;
  font-size: var(--font40);
  line-height: 1;
  font-family: "opposans";
}
.about-section3 .innerbox .mapbox .right .itemlist .item .title {
  font-size: var(--font20);
  margin-top: 0.15rem;
}
.about-section3 .innerbox .mapbox .right .itemlist .item:first-child {
  margin-top: 0;
}
@media (max-width:768px) {
  .about-section3 .innerbox .mapbox {
    display: inline-block;
    width: 100%;
  }
  .about-section3 .innerbox .mapbox .left {
    margin: auto;
  }
  .about-section3 .innerbox .mapbox .right {
    width: 100%;
    padding-left: 0;
    margin-top: 0.5rem;
  }
  .about-section3 .innerbox .mapbox .right .itemlist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .about-section3 .innerbox .mapbox .right .itemlist .item {
    margin-top: 0;
  }
}
@media (max-width:480px) {
  .about-section3 .innerbox .mapbox .right .itemlist {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.5rem;
  }
  .about-section3 .innerbox .mapbox .right .itemlist .item {
    text-align: center;
  }
}
.about-section4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
  background: #fafafa;
}
.about-section4 .innerbox {
  width: 100%;
  height: auto;
}
.about-section4 .innerbox .about_more {
  width: 41%;
  margin: auto;
}
.about-section4 .innerbox .about_more .t2 {
  font-size: var(--font20);
  margin-top: 0.5rem;
  line-height: calc(30/20);
}
.about-section4 .innerbox .swiperbox {
  margin-top: 0.75rem;
}
.about-section4 .innerbox .swiperbox .cooplist {
  margin-bottom: 0.28rem;
}
.about-section4 .innerbox .swiperbox .cooplist .image {
  background: #ffffff;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.03);
  border: 1px solid #f2f2f2;
  height: 1rem;
  min-height: 70px;
  padding: 0.1rem 0.3rem;
}
.about-section4 .innerbox .swiperbox .cooplist .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width:990px) {
  .about-section4 .innerbox .about_more {
    width: 70%;
  }
}
@media (max-width:480px) {
  .about-section4 .innerbox .about_more {
    width: 90%;
  }
}
.aboutus-section1 {
  width: 100%;
  height: auto;
  position: relative;
  padding-top: var(--header-height);
}
.aboutus-section1 .image {
  width: 100%;
  height: auto;
  
}
.aboutus-section1 .image img{
    width: 100%;
    height: 100%;
    min-height: 5rem;
    object-fit: cover;
}
.aboutus-section-tab {
  width: 100%;
  height: auto;
  position: relative;
  transform: translatey(-70px);
}
.aboutus-section-tab .info {
  position: sticky;
  top: 130px;
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}
.aboutus-section-tab .info .newtab .title:after {
  display: none;
}
.aboutus-section2 {
  width: 100%;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1.1rem;
  background:  no-repeat;
  background-size: cover;
}
.aboutus-section2 .innerbox {
  text-align: center;
  width: 100%;
  height: auto;
}
.aboutus-section2 .innerbox .img {
  width: 55%;
  margin: auto;
}
.aboutus-section2 .innerbox .desc {
  margin: auto;
  margin-top: 0.54rem;
  font-size: var(--font20);
  width: 70%;
}
.aboutus-section2 .innerbox .itemlist {
  margin-top: 0.8rem;
  gap: 0.3rem;
}
.aboutus-section2 .innerbox .itemlist .item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  height: 2rem;
  min-height: 160px;
  background: linear-gradient(173deg, #e8f3ff 0%, #ffffff 100%);
  border-radius: 0.08rem;
  border: 1px solid #cee5fe;
  cursor: pointer;
}
.aboutus-section2 .innerbox .itemlist .item .icon {
  width: 0.7rem;
  height: 0.7rem;
}
.aboutus-section2 .innerbox .itemlist .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.aboutus-section2 .innerbox .itemlist .item .title {
  font-weight: 600;
  margin-top: 0.3rem;
  font-size: var(--font20);
}
.aboutus-section2 .innerbox .itemlist .item:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translatey(10px);
}
@media (max-width:480px) {
  .aboutus-section2 .innerbox .desc {
    width: 100%;
  }
  .aboutus-section2 .innerbox .itemlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
.aboutus-section3 {
  width: 100%;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1.1rem;
  background:  no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
.aboutus-section3 .innerbox {
  width: 100%;
  height: auto;
}
.aboutus-section3 .innerbox .t0 {
  font-weight: 600;
  color: #fff;
  text-align: center;
  font-size: var(--font36);
}
.aboutus-section3 .innerbox .swiperbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.8rem;
  gap: 0.24rem;
}
.aboutus-section3 .innerbox .swiperbox .left {
  width: 65.5%;
}
.aboutus-section3 .innerbox .swiperbox .left .itemlist {
  width: 100%;
  gap: 0.16rem;
}
.aboutus-section3 .innerbox .swiperbox .left .itemlist .item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  height: 1.6rem;
  min-height: 130px;
  background: #ffffff;
  border-radius: 16px;
  padding: 0.3rem;
  cursor: pointer;
}
.aboutus-section3 .innerbox .swiperbox .left .itemlist .item .name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: var(--font20);
}
.aboutus-section3 .innerbox .swiperbox .left .itemlist .item .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  left: 0.3rem;
  bottom: 0.19rem;
  width: 0.38rem;
  height: 0.38rem;
}
.aboutus-section3 .innerbox .swiperbox .left .itemlist .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.aboutus-section3 .innerbox .swiperbox .left .itemlist .on {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background:  no-repeat;
  background-size: cover;
}
.aboutus-section3 .innerbox .swiperbox .left .itemlist .on .name {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}
.aboutus-section3 .innerbox .swiperbox .left .itemlist .on .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}
.aboutus-section3 .innerbox .swiperbox .right {
  width: 34.5%;
  height: auto;
  position: relative;
  overflow: hidden;
}
.aboutus-section3 .innerbox .swiperbox .right .swiperlist {
  height: 100%;
  background:  no-repeat;
  background-size: cover;
  border-radius: 0.16rem;
}
.aboutus-section3 .innerbox .swiperbox .right .swiperlist .swiper-slide{
    pointer-events: auto;
}
.aboutus-section3 .innerbox .swiperbox .right .swiperlist .item {
  padding: 0.79rem 0.5rem;
  height: 100%;
  font-size: 0.2rem;
}
.aboutus-section3 .innerbox .swiperbox .right .swiperlist .item .t1 {
  font-weight: 600;
  position: relative;
  z-index: 1;
  font-size: var(--font32);
  width: fit-content;
}
.aboutus-section3 .innerbox .swiperbox .right .swiperlist .item .t1::after {
  position: absolute;
  content: '';
  width: 100%;
  bottom: 0;
  left: 0;
  height: 0.1rem;
  background: linear-gradient(0deg, #144ca8 0%, rgba(255, 255, 255, 0) 100%);
}
.aboutus-section3 .innerbox .swiperbox .right .swiperlist .item .desc {
    font-size: var(--font20);
    margin-top: 0.5rem;
    height: 3rem;
    overflow: auto;
    padding-right: .1rem;
}
.aboutus-section3 .innerbox .swiperbox .right .swiperlist .swiper-slide .item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.aboutus-section3 .innerbox .swiperbox .right .swiperlist .active .item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
}
.aboutus-section3 .innerbox .swiperbox .right .pagination-operate {
  position: absolute;
  z-index: 2;
  bottom: 0.4rem;
  left: 0.5rem;
}
@media (max-width:480px) {
  .aboutus-section3 .innerbox .swiperbox {
    display: inline-block;
    width: 100%;
  }
  .aboutus-section3 .innerbox .swiperbox .left {
    width: 100%;
  }
  .aboutus-section3 .innerbox .swiperbox .left .itemlist {
    grid-template-columns: repeat(2, 1fr);
  }
  .aboutus-section3 .innerbox .swiperbox .left .itemlist .item {
    min-height: inherit;
  }
  .aboutus-section3 .innerbox .swiperbox .right {
    width: 100%;
    margin-top: 0.16rem;
  }
  .aboutus-section3 .innerbox .swiperbox .right .swiperlist {
    min-height: 5.5rem;
  }
}
.aboutus-section4 {
  width: 100%;
  position: relative;
  padding: 1rem 0;
}
.aboutus-section4 .innerbox {
  padding: 0 0.4rem;
}
.aboutus-section4 .innerbox .t0 {
  font-weight: 600;
  text-align: center;
  font-size: var(--font36);
}
.aboutus-section4 .innerbox .itemlist {
  gap: 0.24rem;
  margin-top: 0.8rem;
}
.aboutus-section4 .innerbox .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}
.aboutus-section4 .innerbox .itemlist .item .img {
  border-radius: 8px;
  overflow: hidden;
}
.aboutus-section4 .innerbox .itemlist .item .img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.aboutus-section4 .innerbox .itemlist .item .img:hover img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
.aboutus-section4 .innerbox .itemlist .item .img1 {
  height: 3.17rem;
}
.aboutus-section4 .innerbox .itemlist .item .img2 {
  height: 5.36rem;
}
.aboutus-section4 .innerbox .itemlist .item:nth-child(even) .img1 {
  order: 2;
}
@media (max-width:480px) {
  .aboutus-section4 .itemlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
.employ-wrap {
  padding: 1rem 0 2.65rem 0;
  background:  no-repeat;
  background-color: #f1f8ff;
  background-position: bottom;
}
.employ-wrap .t0 {
  font-weight: 600;
  text-align: center;
  font-size: var(--font36);
}
.employ-wrap .innerbox {
  overflow: auto;
  margin-top: 0.42rem;
  padding: 0 0.3rem;
}

/*联系方式*/

.employ-wrap .employee_people {
  width: 100%;
  height: auto;
  padding: 0.8rem 0.3rem;
  /*border-bottom: solid 1px #dbdbdb;*/
}
.employ-wrap .employee_people .left {
  font-weight: 600;
  font-size: var(--font32);
}
.employ-wrap .employee_people .right {
  padding-top: .3rem;
}
.employ-wrap .employee_people .right .t0 {
  font-weight: 600;
  font-size: var(--font20);
      text-align: left;
}
.employ-wrap .employee_people .right .desc {
  margin-top: 0.1rem;
}
.employ-wrap .employee_people .right .desc .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.18rem;
  margin-top: 0.2rem;
  font-size: var(--font18);
}
.employ-wrap .employee_people .right .desc .item .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;
  width: 0.22rem;
  height: 0.22rem;
}
.employ-wrap .employee_people .right .desc .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*联系方式*/


.employ-wrap .innerbox .itemlist {
  margin-top: 0.6rem;
  gap: 0.3rem;
}
.employ-wrap .innerbox .itemlist .item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  font-size: var(--font20);
  gap: 0.19rem;
  cursor: pointer;
  padding: 0.2rem;
  height: 0.9rem;
  border-radius: 8px;
  background: url(/uploads/image/whvdimages/employ-img1.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  overflow: hidden;
}
.employ-wrap .innerbox .itemlist .active{
        -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #144ca8;
    box-shadow: 0px 6px 21px 0px rgba(140, 158, 188, 0.46);
}
.employ-wrap .innerbox .itemlist .active:after{width:100%}
.employ-wrap .innerbox .itemlist .item .icon {
  height: 0.5rem;
}
.employ-wrap .innerbox .itemlist .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.employ-wrap .innerbox .itemlist .item:after {
  position: absolute;
  content: '';
  width: 0;
  left: 0;
  bottom: 0;
  height: 0.05rem;
  background-color: var(--active_color);
}
.employ-wrap .innerbox .itemlist .item:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #144ca8;
  box-shadow: 0px 6px 21px 0px rgba(140, 158, 188, 0.46);
}
.employ-wrap .innerbox .itemlist .active:after {
  width: 100%;
}
.employ-wrap .innerbox .tab-ul {
  margin-top: 0.7rem;
}
.employ-wrap .innerbox .tab-ul li {
  margin-bottom: 0;
  border-bottom: solid 1px #f2f2f2;
}
.employ-wrap .innerbox .tab-ul li:last-child {
  border-bottom: none;
}
.employ-wrap .innerbox .tab-ul li .top {
  color: #333333;
  width: 100%;
  border-radius: 0;
  border-bottom: solid 1px #e5e5e5;
  padding: 0.325rem 0;
}
.employ-wrap .innerbox .tab-ul li .top .i-left {
  white-space: nowrap;
  color: #1a1a1a;
}
.employ-wrap .innerbox .tab-ul li .top .tab-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}
.employ-wrap .innerbox .tab-ul li .top .tab-box .tab-title {
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.6rem;
}
.employ-wrap .innerbox .tab-ul li .top .more {
  text-align: center;
  width: 1.5rem;
  transform: rotate(180deg);
  filter: brightness(0) invert(0.5);
}
.employ-wrap .innerbox .tab-ul li .bom {
  display: none;
  background: rgba(218, 236, 255, 0.4);
  padding: 0 0.64rem;
  padding-bottom: 0.5rem;
  border-bottom: solid 1px #144ca8;
}
.employ-wrap .innerbox .tab-ul li .bom .item {
  padding-top: 0.33rem;
}
.employ-wrap .innerbox .tab-ul li .bom .item .content {
  margin-top: 0.15rem;
  font-size: var(--font18);
  line-height: calc(26/14);
}
.employ-wrap .innerbox .tab-ul li .bom .item .content p {
  font-size: var(--font14);
  color: var(--black-333);
}
.employ-wrap .innerbox .tab-ul .active .top .more {
  filter: inherit;
  transform: rotate(0deg);
  padding-left: 0 !important;
}
.employ-wrap .more_btn {
  margin: auto;
  margin-top: 0.8rem;
}

.employ-wrap .contact_section2{
    background-color: rgba(255,255,255,0);
}
.employ-wrap .contact_section2 .w1400{
    padding: 0;
    width: 100%;
    max-width: 100%;
}
.employ-wrap .contact_section2 .innerbox .itemlist .item{
    flex-direction: column;
    height: auto;
    align-items: start;
    padding:.2rem;
}
.employ-wrap .contact_section2 .innerbox .itemlist .item .medialist{
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0;
}

.employ-wrap .contact_section2 .innerbox .itemlist .item .medialist .m_box{
    margin-top: 0;
}
.employ-wrap .contact_section2 .innerbox .itemlist .item .medialist .m_box .name{
    
}

.employ-wrap .contact_section2 .innerbox{
    overflow: inherit;
}

@media (max-width:1560px) {
  .employ-wrap .innerbox .itemlist .item {
    background-size: cover;
  }
}
@media (max-width:480px) {
  .employ-wrap {
    padding: 0.6rem 0;
  }
  .employ-wrap .innerbox .itemlist {
    grid-template-columns: repeat(2, 1fr);
  }
  .employ-wrap .innerbox .itemlist .item {
    min-height: 50px;
    background-size: cover;
  }
  .employ-wrap .innerbox .tab-ul li {
    padding-bottom: 0.2rem;
  }
  .employ-wrap .innerbox .tab-ul li .top {
    height: inherit;
  }
  .employ-wrap .innerbox .tab-ul li .top .tab-box {
    display: inline-block;
    width: 100%;
  }
  .employ-wrap .innerbox .tab-ul li .top .tab-box .tab-title {
    gap: 0.2rem;
    flex-wrap: wrap;
  }
  .employ-wrap .innerbox .tab-ul li .top .tab-box .tab-title .item {
    white-space: nowrap;
  }
  .employ-wrap .innerbox .tab-ul li .top .more {
    display: none;
  }
  .employ-wrap .innerbox .tab-ul li .bom .item .content p {
    font-size: var(--font12);
  }
}
.ecology-section1 {
  padding-top: var(--header-height);
  position: relative;
  
}

.ecology-section1 .image img{
    min-height: 500px;
    object-fit: cover;
}
.ecology-section1 .info {
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  text-align: center;
}
.ecology-section1 .info .t0 {
  font-weight: 600;
  font-size: var(--font46);
  margin-top: 1.1rem;
  padding: 0 0.5rem;
  padding-top: var(--header-height);
}
.ecology-section2 {
  width: 100%;
  height: auto;
  background: #f8f9fc;
  padding: 1rem 0 1.4rem 0;
}
.ecology-section2 .innerbox .t0 {
  font-weight: 600;
  text-align: center;
  font-size: var(--font36);

}
.ecology-section2 .innerbox .t0 p{
    padding: 0 .5rem;
}
.ecology-section2 .innerbox .infolist {
  margin-top: 0.6rem;
}
.ecology-section2 .innerbox .infolist .top_tab {
  background: #f2f4f8;
  padding: 0.14rem 0;
  box-shadow: 0px 3px 13px 0px rgba(75, 75, 75, 0.11);
}
.ecology-section2 .innerbox .infolist .top_tab .title_list {
  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;
}
.ecology-section2 .innerbox .infolist .top_tab .title_list .item {
  font-size: var(--font20);
}
.ecology-section2 .innerbox .infolist .top_tab .title_list .active {
  background: #f2f4f8;
  box-shadow: 0px 3px 13px 0px rgba(75, 75, 75, 0.11);
  border-radius: 0.25rem;
  line-height: 1;
  padding: 0.155rem 0.295rem;
}
.ecology-section2 .innerbox .infolist .bottom_content {
  margin-top: 0.6rem;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left {
  width: 56%;
  padding-right: 0.73rem;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .descbox .line {
  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;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .descbox .m_img{
    margin-top: .3rem;
    display: none;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .descbox .line .t_t0 {
  font-weight: 600;
  font-size: var(--font24);
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .descbox .line .t_t0 .img {
  display: inline-block;
  width: 1.2rem;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .descbox .line .more {
  color: #144ca8;
  font-size: var(--font16);
  line-height: 1;
  padding: 0.1rem 0.23rem;
  background: #fafafa;
  border-radius: 19px;
  border: 1px solid #104991;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .descbox .desc {
  margin-top: 0.38rem;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .descbox .desc p {
  margin-bottom: 0.1rem;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .onelist .one_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.4rem;
  border-bottom: solid 1px #d5d9e4;
  padding: 0.365rem 0;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .onelist .one_item .o_left {
  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;
  gap: 0.27rem;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .onelist .one_item .o_left .num {
  color: #144ca8;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .onelist .one_item .o_left .num .t0 {
  font-size: var(--font24);
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .onelist .one_item .o_left .num .t1 {
  font-size: var(--font16);
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .left .onelist .one_item .o_rigth {
  font-size: var(--font16);
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .right {
  width: 44%;
  overflow: hidden;
  border-radius: 19px;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .right img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.ecology-section2 .innerbox .infolist .bottom_content .infobox .right:hover img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
.ecology-section2 .innerbox .infolist .bottom_content .relatest_wrap {
  margin-top: 0.62rem;
  padding-top: 0.49rem;
  position: relative;
  border-top: 1px solid #d5d9e4;
}
.ecology-section2 .innerbox .infolist .bottom_content .relatest_wrap::before {
  position: absolute;
  content: '';
  width: 100%;
  top: -0.49rem;
}
.ecology-section2 .innerbox .infolist .bottom_content .relatest_wrap .title {
  font-weight: 600;
  font-size: var(--font24);
}
.ecology-section2 .innerbox .infolist .bottom_content .relatest_wrap .itemlist {
  margin-top: 0.32rem;
  overflow: hidden;
}
.ecology-section2 .innerbox .infolist .bottom_content .relatest_wrap .itemlist .item {
  display: block;
  padding: 0.3rem;
  background: #ffffff;
  border-radius: 10px;
  cursor: pointer;
}
.ecology-section2 .innerbox .infolist .bottom_content .relatest_wrap .itemlist .item .image {
  height: 1.65rem;
  text-align: center;
  overflow: hidden;
}
.ecology-section2 .innerbox .infolist .bottom_content .relatest_wrap .itemlist .item .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ecology-section2 .innerbox .infolist .bottom_content .relatest_wrap .itemlist .item .info {
  margin-top: 0.32rem;
}
.ecology-section2 .innerbox .infolist .bottom_content .relatest_wrap .itemlist .item .info .t3 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: var(--font20);
  text-align: left;
}
.ecology-section2 .innerbox .infolist .bottom_content .relatest_wrap .itemlist .item .info .t1 {
  margin-top: 0.15rem;
  font-size: var(--font16);
  text-align: left;
}
.ecology-section2 .innerbox .infolist .bottom_content .relatest_wrap .itemlist .item:hover .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
.ecology-section2 .innerbox .infolist .bottom_content .relatest_wrap .itemlist .item:hover .info .t0 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--active_color);
}
@media (max-width:768px) {
  .ecology-section2 .innerbox .infolist .bottom_content .infobox {
    display: block;
  }
  .ecology-section2 .innerbox .infolist .bottom_content .infobox .left {
    width: 100%;
    padding-right: 0;
  }
  .ecology-section2 .innerbox .infolist .bottom_content .infobox .right {
    width: 100%;
    margin-top: 0.5rem;
  }
}

@media (max-width:480px){
    .ecology-section2 .innerbox .infolist .bottom_content .infobox .right{
        display: none;
    }
    .ecology-section2 .innerbox .infolist .bottom_content .infobox .left .descbox .m_img{
        display: block;
    }
    .ecology-section2 .innerbox .infolist .bottom_content .infobox .left .descbox .line{
        border-bottom: solid .02rem var(--active_color);
        padding-bottom: .2rem;
    }
    .ecology-section2 .innerbox .infolist .top_tab .title_list{
        overflow: auto;
        
    }
    .ecology-section2 .innerbox .infolist .top_tab .title_list::-webkit-scrollbar {
        display: none; /* webkit browsers */
    }
    .ecology-section2 .innerbox .infolist .top_tab .title_list .item{
        padding: 0.155rem 0.295rem;
        white-space: nowrap;
    }
}


.development-section1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:  no-repeat;
  background-size: cover;
  padding-bottom: 0.84rem;
}
.development-section1 .innerbox .t0 {
  font-weight: 600;
  text-align: center;
  margin-top: 0.8rem;
  font-size: var(--font36);
}
.development-section1 .innerbox .info {
  padding: 0.6rem;
  background: #ffffff;
  box-shadow: 0px 10px 54px 0px rgba(0, 17, 28, 0.12);
  border-radius: 24px;
  border: 3px solid #e2e9f1;
  margin-top: 80px;
}
.development-section1 .innerbox .info .title {
  font-weight: 600;
  text-align: center;
  font-size: var(--font24);
}
.development-section1 .innerbox .info .chart {
  margin-top: 56px;
}
.development-section2 {
  width: 100%;
  height:7.95rem;
  min-height: 450px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:  no-repeat;
  background-size: cover;
  padding-top: 1.7rem;
      background-position: center;
}

.development-section2 .t0{
    font-size: var(--font36);
    text-align: center;
    font-weight: 600;
}
.development-section2 .innerbox .image {
  width: 39%;
  margin: auto;
}
.development-section2 .innerbox .info {
  text-align: center;
  font-size: var(--font24);
  margin: auto;
  margin-top: 0.6rem;
  width: 76%;
}
.development-section2 .innerbox .info .word {
  margin-bottom: 0.1rem;
}
@media (max-width:480px) {
  .development-section2 {
    padding-top: 1rem;
  }
  .development-section2 .innerbox .image {
    width: 80%;
  }
  .development-section2 .innerbox .info {
    width: 100%;
  }
}
.development-section3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.development-section3 .innerbox .info {
  color: #fff;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
}
.development-section3 .innerbox .info .word {
  padding-top: 1rem;
  margin: auto;
  width: 79%;
}
.development-section3 .innerbox .info .word .t0 {
  font-weight: 600;
  font-size: var(--font36);
}
.development-section3 .innerbox .info .word .t1 {
  margin-top: 0.38rem;
  font-size: var(--font24);
}
.development-section3 .innerbox .info .word .t1 p {
  margin-bottom: 0.27rem;
}
@media (max-width:480px) {
  .development-section3 .innerbox .image {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .development-section3 .innerbox .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .development-section3 .innerbox .info {
    position: relative;
    padding: 1rem 0 1.5rem 0;
  }
  .development-section3 .innerbox .info .word {
    width: 100%;
  }
}
.development-section4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.development-section4 .innerbox .info {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
}
.development-section4 .innerbox .info .word {
  text-align: center;
  padding-top: 1rem;
  margin: auto;
  width: 79%;
}
.development-section4 .innerbox .info .word .t0 {
  font-weight: 600;
  font-size: var(--font36);
}
.development-section4 .innerbox .info .word .t1 {
  margin-top: 0.38rem;
  font-size: var(--font24);
  line-height: calc(34/24);
}
@media (max-width:480px) {
  .development-section4 .innerbox .image {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .development-section4 .innerbox .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .development-section4 .innerbox .info {
    position: relative;
    padding: 1.3rem 0;
  }
  .development-section4 .innerbox .info .word {
    width: 100%;
  }
}
.development-section5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
}
.development-section5 .innerbox .title {
  text-align: center;
}
.development-section5 .innerbox .title .t0 {
  font-weight: 600;
  font-size: var(--font36);
}
.development-section5 .innerbox .title .t1 {
  margin-top: 0.3rem;
  font-size: var(--font24);
}
.development-section5 .innerbox .itemlist {
  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.99rem;
  gap: 1rem;
}
.development-section5 .innerbox .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.15rem;
}
.development-section5 .innerbox .itemlist .item .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;
  width: 1.26rem;
  height: 1.26rem;
}
.development-section5 .innerbox .itemlist .item .desc {
  text-align: center;
  font-size: var(--font24);
  width: 82%;
  line-height: calc(30/24);
}
.development-section5 .innerbox .imglist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  margin-top: 0.93rem;
}
.development-section5 .innerbox .imglist .img {
  flex: 1;
  height: 4rem;
  overflow: hidden;
}
.development-section5 .innerbox .imglist .img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.development-section5 .innerbox .imglist .img:hover img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
@media (max-width:768px) {
  .development-section5 .innerbox .itemlist {
    display: block;
  }
  .development-section5 .innerbox .itemlist .item {
    margin-top: 0.5rem;
  }
}
.core_banner {
  position: relative;
  padding-top: var(--header-height);
}
.core_banner .image {
  height: 5.1rem;
}
.core_banner .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.core_banner .info {
  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-weight: 600;
  color: #fff;
  padding-top: var(--header-height);
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 2;
}
.core_banner .info .innerbox {
  width: 66%;
}
.core_banner .info .innerbox .t0 {
  font-size: var(--font46);
}
.core_banner .info .innerbox .t1 {
  font-size: var(--font24);
  margin-top: 0.4rem;
  font-weight: normal;
}
@media (max-width:480px) {
  .core_banner .image {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  .core_banner .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .core_banner .info {
    position: relative;
    z-index: 1;
    padding: 1.2rem 0;
  }
  .core_banner .info .innerbox {
    width: 100%;
  }
}
.core-section2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.core-section2 .innerbox .info {
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
}
.core-section2 .innerbox .info .word {
  padding-top: 4.12rem;
  margin: auto;
  width: 79%;
}
.core-section2 .innerbox .info .word .t0 {
  font-weight: 600;
  font-size: var(--font36);
}
.core-section2 .innerbox .info .word .t1 {
  margin-top: 0.45rem;
  font-size: var(--font28);
  line-height: calc(38/28);
}
@media (max-width:768px) {
  .core-section2 .innerbox .info .word {
    padding-top: 1.5rem;
  }
}
@media (max-width:480px) {
  .core-section2 .innerbox .image {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .core-section2 .innerbox .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .core-section2 .innerbox .info {
    position: relative;
    padding: 1rem 0 1.5rem 0;
  }
  .core-section2 .innerbox .info .word {
    width: 100%;
  }
}
.core-section3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.core-section3 .innerbox .info {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
}
.core-section3 .innerbox .info .left {
  width: 39%;
}
.core-section3 .innerbox .info .right {
  width: 61%;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
}
.core-section3 .innerbox .info .right .title {
  font-weight: 600;
  font-size: var(--font48);
  padding: 1.43rem 1.93rem 1rem 0.9rem;
}
.core-section3 .innerbox .info .right .itemlist {
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  padding: 0.89rem 1rem;
}
.core-section3 .innerbox .info .right .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.32rem;
  margin-bottom: 0.8rem;
  width: 80%;
}
.core-section3 .innerbox .info .right .itemlist .item .icon {
  width: 0.62rem;
  height: 0.62rem;
  min-width: 0.62rem;
}
.core-section3 .innerbox .info .right .itemlist .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.core-section3 .innerbox .info .right .itemlist .item .word {
  font-weight: 600;
  font-size: var(--font28);
}
@media (max-width:990px) {
  .core-section3 .innerbox .info .left {
    width: 30%;
  }
  .core-section3 .innerbox .info .right {
    width: 70%;
  }
}
@media (max-width:768px) {
  .core-section3 .innerbox .image {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .core-section3 .innerbox .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .core-section3 .innerbox .info {
    position: relative;
  }
  .core-section3 .innerbox .info .left {
    width: 0;
  }
  .core-section3 .innerbox .info .right {
    width: 100%;
  }
}
@media (max-width:480px) {
  .core-section3 .innerbox .info .right .title {
    padding: 1rem 0.5rem;
  }
  .core-section3 .innerbox .info .right .itemlist {
    padding: 0.5rem;
  }
  .core-section3 .innerbox .info .right .itemlist .item {
    width: 100%;
  }
}
.core-section4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.core-section4 .innerbox .info {
  color: #fff;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
}
.core-section4 .innerbox .info .word {
  padding-top: 1.1rem;
  margin: auto;
  width: 79%;
}
.core-section4 .innerbox .info .word .t0 {
  font-weight: 600;
  font-size: var(--font36);
}
.core-section4 .innerbox .info .word .t1 {
  margin: auto;
  margin-top: 0.38rem;
  font-size: var(--font24);
  width: 89%;
}
.core-section4 .innerbox .info .word .t1 p {
  margin-bottom: 0.27rem;
}
.core-section4 .innerbox .info .word .img {
  margin-top: 0.9rem;
}
@media (max-width:480px) {
  .core-section4 .innerbox .image {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .core-section4 .innerbox .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .core-section4 .innerbox .info {
    position: relative;
    padding: 1rem 0 1.5rem 0;
  }
  .core-section4 .innerbox .info .word {
    width: 100%;
  }
  .core-section4 .innerbox .info .word .t1 {
    width: 100%;
  }
}
.core-section5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.core-section5 .innerbox .info {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
}
.core-section5 .innerbox .info .word {
  text-align: center;
  padding-top: 1rem;
  margin: auto;
  width: 79%;
}
.core-section5 .innerbox .info .word .t0 {
  font-weight: 600;
  font-size: var(--font48);
}
.core-section5 .innerbox .info .word .t1 {
  margin: auto;
  width: 63%;
  margin-top: 0.38rem;
  font-size: var(--font28);
  line-height: calc(34/24);
}
@media (max-width:480px) {
  .core-section5 .innerbox .image {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .core-section5 .innerbox .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .core-section5 .innerbox .info {
    position: relative;
    padding: 1.3rem 0;
  }
  .core-section5 .innerbox .info .word {
    width: 100%;
  }
  .core-section5 .innerbox .info .word .t1 {
    width: 100%;
  }
}
.login_wrap {
  padding-top: var(--header-height);
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:  no-repeat;
  background-color: #fff;
  background-size: cover;
}
.login_wrap .innerbox {
  max-width: 500px;
  width: 80%;
  margin: auto;
  margin-top: 1.58rem;
}
.login_wrap .innerbox .title {
  font-weight: 600;
  text-align: center;
  font-size: var(--font36);
}
.login_wrap .innerbox .loginbox {
  margin-top: 0.46rem;
}
.login_wrap .innerbox .loginbox .inputbox {
  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;
  position: relative;
  z-index: 1;
  margin-top: 0.24rem;
  font-size: var(--font16);
  height: 0.55rem;
  min-height: 45px;
  background: #f2f2f2;
  border-radius: 8px;
}
.login_wrap .innerbox .loginbox .inputbox input {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  padding-left: 0.26rem;
}
.login_wrap .innerbox .loginbox .inputbox .phone_area {
  position: relative;
  width: 26%;
  min-width: 92px;
  padding-left: 0.26rem;
  padding-right: 0.26rem;
  font-size: var(--font16);
}
.login_wrap .innerbox .loginbox .inputbox .phone_area::before {
  position: absolute;
  content: '';
  right: 0;
  width: 1px;
  height: 21px;
  background: #cecece;
}
.login_wrap .innerbox .loginbox .inputbox .p_input {
  width: 74%;
}
.login_wrap .innerbox .loginbox .flexbox {
  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.16rem 0.18rem;
  font-size: var(--font14);
}
.login_wrap .innerbox .loginbox .flexbox .forget {
  color: #144ca8;
}
.login_wrap .innerbox .loginbox .loginbtn {
  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: #fff;
  font-size: var(--font20);
  border-radius: 8px;
  background-color: var(--active_color);
  margin-top: 0.37rem;
  width: 100%;
  height: 0.55rem;
  min-height: 45px;
}
.login_wrap .innerbox .loginbox .tips {
  text-align: center;
  margin-top: 0.39rem;
}
.login_wrap .innerbox .loginbox .tips .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.14rem;
}
.login_wrap .innerbox .loginbox .tips .btn a {
  color: #144ca8;
}
.login_wrap .innerbox .loginbox .tips .registerbtn {
  color: #1a1a1a;
}
.about_aidc_banner {
  position: relative;
  padding-top: var(--header-height);
  overflow: hidden;
}
.about_aidc_banner .image {
  height: 7.62rem;
}
.about_aidc_banner .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_aidc_banner .info {
  width: 54%;
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 2;
}
.about_aidc_banner .info .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  margin-top: calc(var(--header-height)   0.99rem);
}
.about_aidc_banner .info .innerbox .t0 {
  font-weight: 600;
  font-size: var(--font36);
}
.about_aidc_banner .info .innerbox .t1 {
  font-weight: 600;
  font-size: var(--font20);
  margin-top: 0.24rem;
}
.about_aidc_banner .info .innerbox .desc {
  margin-top: 0.38rem;
  font-size: var(--font18);
  max-width: 660px;
}
.about_aidc_banner .info .innerbox .img {
  margin-top: 0.43rem;
  height: 4.4rem;
}

.about_aidc_banner.deep .info .innerbox{
    color: #fff;
}

@media (max-width:768px) {
  .about_aidc_banner .image {
    position: absolute;
    height: 100%;
  }
  .about_aidc_banner .info {
    position: relative;
    z-index: 1;
  }
  .about_aidc_banner .info .innerbox {
    margin-top: 1rem;
  }
}
.about_aidc_section2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about_aidc_section2 .image {
  width: 100%;
  height: auto;
}
.about_aidc_section2 .info {
  color: #fff;
  text-align: center;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 0.98rem;
}
.about_aidc_section2 .info .t0 {
  font-weight: 600;
  font-size: var(--font36);
}
.about_aidc_section2 .info .t1 {
  line-height: calc(30/20);
  margin-top: 0.4rem;
}
@media (max-width:480px) {
  .about_aidc_section2 .image {
    position: absolute;
    height: 100%;
  }
  .about_aidc_section2 .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about_aidc_section2 .info {
    position: relative;
    z-index: 1;
    padding: 1.5rem 0 6rem 0;
  }
}
.about_aidc_section3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about_aidc_section3 .image {
  width: 100%;
  height: auto;
}
.about_aidc_section3 .info {
  color: #fff;
  text-align: center;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 0.98rem;
}
.about_aidc_section3 .info .t0 {
  font-weight: 600;
  font-size: var(--font36);
}
.about_aidc_section3 .info .imglist {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.about_aidc_section3 .info .imglist img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_aidc_section3 .info .cardlist {
  gap: 0.2rem;
  margin-top: 0.24rem;
}
.about_aidc_section3 .info .cardlist .item {
  background: linear-gradient(0deg, #1a3860 1%, #285965 100%);
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: 8px;
  border: 1px solid #678b95;
  padding: 0.24rem 0.44rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.about_aidc_section3 .info .cardlist .item:hover{
    -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translatey(10px);
}
.about_aidc_section3 .info .cardlist .item .c_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.18rem;
  padding-bottom: 0.1rem;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
.about_aidc_section3 .info .cardlist .item .c_head .icon {
  width: 0.4rem;
  height: 0.4rem;
}
.about_aidc_section3 .info .cardlist .item .c_head .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about_aidc_section3 .info .cardlist .item .c_head .title {
  font-weight: 600;
  font-size: var(--font20);
}
.about_aidc_section3 .info .cardlist .item .c_body {
  margin-top: 0.4rem;
}
.about_aidc_section3 .info .cardlist .item .c_body ul {
  width: 100%;
  height: auto;
  text-align: left;
}
.about_aidc_section3 .info .cardlist .item .c_body ul li {
  position: relative;
  z-index: 1;
  padding-left: 0.2rem;
  margin: 0.1rem 0;
}
.about_aidc_section3 .info .cardlist .item .c_body ul li:before {
  position: absolute;
  content: '';
  width: 0.07rem;
  height: 0.07rem;
  background-color: #fff;
  border-radius: 50%;
  top: 0.1rem;
  left: 0;
}
@media (max-width:768px) {
  .about_aidc_section3 .image {
    position: absolute;
    height: 100%;
  }
  .about_aidc_section3 .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .about_aidc_section3 .info {
    position: relative;
    z-index: 1;
    padding: 1.5rem 0;
  }
}
@media (max-width:480px) {
  .about_aidc_section3 .info {
    position: relative;
    z-index: 1;
    padding: 1rem 0 1.5rem 0;
  }
  .about_aidc_section3 .info .cardlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about_aidc_section4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0 1.5rem 0;
}
.about_aidc_section4 .innerbox .title {
  font-weight: 600;
  font-size: var(--font36);
}
.about_aidc_section4 .innerbox .info ul {
  width: 100%;
  height: auto;
}
.about_aidc_section4 .innerbox .info ul li {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}
.about_aidc_section4 .innerbox .info ul li .c_head {
  color: #144ca8;
  font-weight: 600;
  font-size: var(--font32);
  position: relative;
  z-index: 1;
  padding-bottom: 0.2rem;
  border-bottom: solid 1px #b9b9b9;
  padding-left: 0.2rem;
}
.about_aidc_section4 .innerbox .info ul li .c_head::before {
  position: absolute;
  left: 0;
  top: 0.15rem;
  content: '';
  width: 0.06rem;
  height: 0.2rem;
  background: #1f4d92;
}
.about_aidc_section4 .innerbox .info ul li .itemlist {
  margin-top: 0.4rem;
  gap: 0.6rem 0.25rem;
}
.about_aidc_section4 .innerbox .info ul li .itemlist .item {
  cursor: pointer;
}
.about_aidc_section4 .innerbox .info ul li .itemlist .item .t0 {
  font-weight: 600;
  font-size: var(--font24);
}
.about_aidc_section4 .innerbox .info ul li .itemlist .item .desc {
  margin-top: 0.23rem;
  font-size: var(--font20);
  padding-right: 0.5rem;
  min-height: 1.6rem;
}
.about_aidc_section4 .innerbox .info ul li .itemlist .item .desc p {
  margin-top: 0.1rem;
}
.about_aidc_section4 .innerbox .info ul li .itemlist .item .desc p:first-child {
  margin-top: 0;
}
.about_aidc_section4 .innerbox .info ul li .itemlist .item .img {
  height: 280px;
  background: #f4f5f7;
  border-radius: 8px;
  padding: 0.1rem;
  margin-top: 0.2rem;
  overflow: hidden;
}
.about_aidc_section4 .innerbox .info ul li .itemlist .item .img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about_aidc_section4 .innerbox .info ul li .itemlist .item .img:hover img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
@media (max-width:768px) {
  .about_aidc_section4 .innerbox .info ul li .itemlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .about_aidc_section4 .innerbox .info ul li .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.server_banner {
  position: relative;
  padding-top: var(--header-height);
}
.server_banner .image {
  height: 5.1rem;
}
.server_banner .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.server_banner .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: #fff;
  font-size: var(--font46);
  padding-top: var(--header-height);
  position: absolute;
  height: 100%;
  top: 0;
  width: 100%;
  z-index: 2;
}
.server_banner .info .innerbox{
    text-align: left;
}
.server_video_center {
      margin-top: var(--header-height);
    padding-top: 1rem;
}
.server_video_center .innerbox {
  width: 100%;
  height: auto;
}
.server_video_center .innerbox .input_box {
  background: #f7f7f7;
  border-radius: 25px;
  padding: 0.13rem 0.3rem;
  max-width: 560px;
  margin: auto;
}
.server_video_center .innerbox .input_box .icon {
  position: absolute;
  width: 0.18rem;
  height: 0.18rem;
}
.server_video_center .innerbox .input_box input {
  width: 90%;
  margin-left: 0.34rem;
  height: 100%;
  border: none;
  background: #f7f7f7;
}
.server_video_center .innerbox .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
 
  margin-top: 0.6rem;
}
.server_video_center .innerbox .info .left {
  width: 23.5%;
  height: fit-content;
  position: sticky;
  top: 1rem;
  padding-bottom: 2rem;
   
}
.server_video_center .innerbox .info .left .t_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-weight: 600;
  font-size: var(--font18);
  padding-right: 0.4rem;
  height: 0.78rem;
  border-top: 1px solid #d6d6d6;
}
.server_video_center .innerbox .info .left .t_head .filterbox {
  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;
}
.server_video_center .innerbox .info .left .t_head .filterbox .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;
}
.server_video_center .innerbox .info .left .t_head .refresh {
  cursor: pointer;
}
.server_video_center .innerbox .info .left .t_body {
  padding: 0.14rem;
  border-top: 1px solid #d6d6d6;
}
.server_video_center .innerbox .info .left .t_body .itemlist .item {
  margin-top: 0.1rem;
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .ft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-weight: 600;
  gap: 0.12rem;
  font-size: var(--font20);
  cursor: pointer;
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .ft .more {
  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;
  filter: brightness(0) invert(0.7);
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
  display: none;
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo .ful {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  line-height: calc(36/16);
  padding-left: 0.2rem;
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo .ful .fli {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo .ful .fli .stitle {
  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;
  cursor: pointer;
  font-size: var(--font18);
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo .ful .fli .stitle .more {
  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;
  transform: rotate(0deg);
  filter: brightness(0) invert(0.7);
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo .ful .fli .sul {
  display: none;
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo .ful .fli .sul .sli {
  cursor: pointer;
  font-size: var(--font16);
  margin-left: 0.18rem;
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo .ful .fli .sul .sli.active{
    color: #144ca8;
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo .ful .fli .sul .sli.active a{
    color: #144ca8;
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo .ful .fli .sul .sli:hover {
  color: #144ca8;
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo .ful .active {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo .ful .active .stitle {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /*color: #144ca8;*/
}
.server_video_center .innerbox .info .left .t_body .itemlist .item .finfo .ful .active .stitle .more {
  transform: rotate(90deg);
  filter: inherit;
}
.server_video_center .innerbox .info .left .t_body .itemlist .active .ft {
  color: #144ca8;
}
.server_video_center .innerbox .info .left .t_body .itemlist .active .ft .more {
  transform: rotate(90deg);
  filter: inherit;
}
.server_video_center .innerbox .info .right {
  width: 76.5%;
  border-left: 1px solid #d6d6d6;
  padding-bottom: 1rem;
   
}
.server_video_center .innerbox .info .right .result_top {
  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;
   border-top: 1px solid #d6d6d6;
  height: 0.78rem;
}
.server_video_center .innerbox .info .right .result_top .t1 {
        font-weight: 600;
    font-size: var(--font18);
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: .2rem;
    width: 75%;
    /*border-top: 1px solid #d6d6d6;*/
  
}

.server_video_center .innerbox .info .right .result_top .time{
        width: 25%;
        min-width: 110px;
    /*border-top: 1px solid #d6d6d6;*/
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: .2rem;
}
.server_video_center .innerbox .info .right .result_top .num {
  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: #fff;
  width: 0.4rem;
  height: 0.4rem;
  background: #144ca8;
  box-shadow: 0px 3px 13px 0px rgba(20, 76, 168, 0.32);
  border-radius: 50%;
  font-size: var(--font16);
}
.server_video_center .innerbox .info .right .result_video {
  padding-left: 0.2rem;
  width: 100%;
  border-top: 1px solid #d6d6d6;
  gap: 0 0.2rem;
}
.server_video_center .innerbox .info .right .result_video .video_item {
  border-radius: 0.08rem;
  border: 1px solid #c6c6c6;
  margin-top: 0.4rem;
}
.server_video_center .innerbox .info .right .result_video .video_item .video_box {
  height: 2.4rem;
  min-height: 200px;
  border-radius: 0.08rem;
}
.server_video_center .innerbox .info .right .result_video .video_item .video_box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.08rem;
}
.server_video_center .innerbox .info .right .result_video .video_item .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.24rem;
}
.server_video_center .innerbox .info .right .result_video .video_item .content .word {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
}
.server_video_center .innerbox .info .right .result_video .video_item .content .word .title {
  font-weight: 600;
  font-size: var(--font20);
}
.server_video_center .innerbox .info .right .result_video .video_item .content .word .time {
  color: #666666;
  font-size: var(--font16);
  margin-top: 0.1rem;
}
.server_video_center .innerbox .info .right .result_video .video_item .content .download_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;
  width: 0.42rem;
  height: 0.42rem;
  background: #eeeeee;
  border-radius: 50%;
  padding: 0.13rem;
}
.server_video_center .innerbox .info .right .result_tools {
  padding-left: 0.2rem;
  width: 100%;
  border-top: 1px solid #d6d6d6;
  gap: 0 0.2rem;
}
.server_video_center .innerbox .info .right .result_tools .item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  height: 3.06rem;
  border-radius: 8px;
  border: 1px solid #c6c6c6;
  margin-top: 0.4rem;
  padding: 0.2rem;
  cursor: pointer;
}
.server_video_center .innerbox .info .right .result_tools .item .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;
  width: 0.4rem;
  height: 0.4rem;
  background: #144ca8;
  border-radius: 0.04rem;
  padding: 0.1rem;
}
.server_video_center .innerbox .info .right .result_tools .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.server_video_center .innerbox .info .right .result_tools .item .t1 {
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font20);
  margin-top: 0.19rem;
}
.server_video_center .innerbox .info .right .result_tools .item .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: absolute;
  width: calc(100% - 0.44rem);
  bottom: 0.22rem;
  left: 0.22rem;
}
.server_video_center .innerbox .info .right .result_tools .item .content .word {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  font-size: var(--font16);
}
.server_video_center .innerbox .info .right .result_tools .item .content .word .time {
  color: #666666;
  margin-top: 0.02rem;
}
.server_video_center .innerbox .info .right .result_tools .item .content .download_icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 0.42rem;
  height: 0.42rem;
  background: #eeeeee;
  border-radius: 50%;
  padding: 0.13rem;
}
.server_video_center .innerbox .info .right .result_tools .item .content .download_icon:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--active_color);
}
.server_video_center .innerbox .info .right .result_tools .item .content .download_icon:hover img {
  filter: brightness(0) invert(1);
}
.server_video_center .innerbox .info .right .result_tools .item:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: solid 1px var(--active_color);
}
.server_video_center .innerbox .info .right .result_tools .item:hover .t1 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.server_video_center .innerbox .info .right .result_document {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  border-top: 1px solid #d6d6d6;
}
.server_video_center .innerbox .info .right .result_document .contentbox {
  width: 75%;
  padding: 0.41rem 0.24rem;
}
.server_video_center .innerbox .info .right .result_document .contentbox div,
.server_video_center .innerbox .info .right .result_document .contentbox p {
  margin-top: 0.2rem;
}
.server_video_center .innerbox .info .right .result_document .contentbox table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.19rem;
}
.server_video_center .innerbox .info .right .result_document .contentbox table,
.server_video_center .innerbox .info .right .result_document .contentbox th,
.server_video_center .innerbox .info .right .result_document .contentbox td {
  border: 1px solid #d6d6d6;
}
.server_video_center .innerbox .info .right .result_document .contentbox th,
.server_video_center .innerbox .info .right .result_document .contentbox td {
  padding: 15px;
  text-align: left;
}
.server_video_center .innerbox .info .right .result_document .titlebox {
  width: 25%;
  min-width: 110px;
  padding: 0.41rem 0.24rem;
  padding: 0.45rem 0;
  border-left: 1px solid #d6d6d6;
      position: sticky;
    top: 1rem;
}
.server_video_center .innerbox .info .right .result_document .titlebox a {
  display: block;
  position: relative;
  padding: 0.02rem 0.33rem;
}
.server_video_center .innerbox .info .right .result_document .titlebox a:before {
  position: absolute;
  content: '';
  width: 2px;
  height: 100%;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
  background: #144ca8;
  display: none;
}
.server_video_center .innerbox .info .right .result_document .titlebox .active {
  color: #144ca8;
}
.server_video_center .innerbox .info .right .result_document .titlebox .active:before {
  display: block;
}
.server_video_center #demo-laypage-normal-2 {
  text-align: center;
  padding-left: 282px;
  margin: 0.9rem 0 1.2rem 0;
}
@media (max-width:990px) {
    .server_video_center{
        padding-top: 0;
    }
  .server_video_center .innerbox .info {
    display: block;
  }
  .server_video_center .innerbox .info .left {
    position: relative;
    top: inherit;
    width: 100%;
   padding-bottom: .5rem;
  }
  .server_video_center .innerbox .info .right {
    width: 100%;
    border-left: 0;
  }
  .server_video_center .innerbox .info .right .result_video {
    grid-template-columns: repeat(1, 1fr);
    padding-left: 0;
  }
  .server_video_center #demo-laypage-normal-2 {
    padding-left: 0;
  }
}
@media (max-width:480px) {
    .server_video_center .innerbox{
        margin-top: 1.8rem;
    }
  .server_video_center .innerbox .info .right .result_tools {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact_section1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
}
.contact_section1 .innerbox .title {
  font-weight: 600;
  text-align: center;
  font-size: var(--font36);
}
.contact_section1 .innerbox .itemlist {
  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;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-top: 0.59rem;
}
.contact_section1 .innerbox .itemlist .item {
  width: calc(25% - 0.2rem);
  height: 2rem;
  min-height: 120px;
  background: #fafafa;
  border-radius: 8px;
  padding: 0.39rem 0.29rem;
}
.contact_section1 .innerbox .itemlist .item .t1 {
  font-weight: 600;
  font-size: var(--font20);
  position: relative;
  z-index: 1;
}
.contact_section1 .innerbox .itemlist .item .t1::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: -0.19rem;
  width: 0.22rem;
  height: 2px;
  background: #666666;
}
.contact_section1 .innerbox .itemlist .item .phone_box {
  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;
  gap: 0.14rem;
  margin-top: 0.74rem;
  font-size: var(--font28);
}
.contact_section1 .innerbox .itemlist .item .phone_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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 0.25rem;
  height: 0.25rem;
  min-width: 18px;
  min-height: 18px;
}
@media (max-width:768px) {
  .contact_section1 .innerbox .itemlist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .contact_section1 .innerbox .itemlist .item {
    width: 100%;
  }
}
@media (max-width:480px) {
  .contact_section1 {
    padding: 0.8rem 0;
  }
  .contact_section1 .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact_section2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
  background: #f7f7f7;
}
.contact_section2 .innerbox .title {
  font-weight: 600;
  text-align: center;
  font-size: var(--font36);
}
.contact_section2 .innerbox .desc {
  text-align: center;
  font-size: var(--font24);
  margin-top: 0.23rem;
  color: #474842;
}
.contact_section2 .innerbox .itemlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  margin-top: 0.6rem;
}
.contact_section2 .innerbox .itemlist .item {
  width: calc(50% - 0.1rem);
  background: #fff;
  border-radius: 8px;
  padding: 0.4rem 0.49rem;
}
.contact_section2 .innerbox .itemlist .item .t1 {
  font-weight: 600;
  font-size: var(--font20);
  position: relative;
  z-index: 1;
}
.contact_section2 .innerbox .itemlist .item .medialist {
  margin-top: 0.1rem;
}
.contact_section2 .innerbox .itemlist .item .medialist .m_box {
  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;
  margin-top: 0.23rem;
}
.contact_section2 .innerbox .itemlist .item .medialist .m_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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 0.23rem;
  height: 0.23rem;
}
.contact_section2 .innerbox .itemlist .item .medialist .m_box .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact_section2 .innerbox .itemlist .item .medialist .m_box .name {
  font-size: var(--font16);
  
}
.contact_section2 .innerbox .itemlist .item:last-child .medialist {
    grid-template-columns: repeat(1, 1fr);
}

@media (max-width:480px) {
  .contact_section2 {
    padding: 0.8rem 0;
  }
  .contact_section2 .innerbox .itemlist {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .contact_section2 .innerbox .itemlist .item {
    width: 100%;
  }
}

.contact_section_aidc {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
  background-color: #f7f7f7;
}
.contact_section_aidc .innerbox .title {
  font-weight: 600;
  text-align: center;
  color: #000;
  font-size: var(--font36);
}
.contact_section_aidc .innerbox .itemlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  z-index: 1;
  gap: 0.33rem;
  margin-top: 0.6rem;
}
.contact_section_aidc .innerbox .itemlist .item {
  width: calc(50% - 0.1rem);
  background: #f7f7f7;
  background-size: contain;
  border-radius: 8px;
  padding: 0.63rem 0.8rem;
}
.contact_section_aidc .innerbox .itemlist .item .t1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
  font-size: var(--font30);
  position: relative;
  z-index: 1;
  width: fit-content;
  color: #000;
}
.contact_section_aidc .innerbox .itemlist .item .t1 .icon {
  width: 0.42rem;
  height: 0.42rem;
}
.contact_section_aidc .innerbox .itemlist .item .t1 .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact_section_aidc .innerbox .itemlist .item .medialist {
  margin-top: 0.1rem;
  gap: 0.5rem;
}
.contact_section_aidc .innerbox .itemlist .item .medialist .m_box {
  margin-top: 0.3rem;
}
.contact_section_aidc .innerbox .itemlist .item .medialist .m_box .area {
  color: #999999;
  font-size: var(--font16);
}
.contact_section_aidc .innerbox .itemlist .item .medialist .m_box .val {
  color: #000;
  font-size: var(--font22);
}
.contact_section_aidc .innerbox .itemlist .item1 {
  background:  no-repeat;
  background-size: contain;
  border-radius: 0.4rem;
  background-position: right bottom;
  background-color: #fff;
}
.contact_section_aidc .innerbox .itemlist .item2 {
  background:  no-repeat;
  background-size: contain;
  border-radius: 0.4rem;
  background-position: right bottom;
  background-color: #fff;
}
.contact_section_aidc .innerbox .addrbox {
  background:  no-repeat;
  padding: 0.4rem 0.49rem;
  margin-top: 0.3rem;
  border-radius: 0.4rem;
  background-size: cover;
  background-position: right;
}
.contact_section_aidc .innerbox .addrbox .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.16rem;
  width: 100%;
  font-size: var(--font30);
}
.contact_section_aidc .innerbox .addrbox .title .icon {
  width: 0.4rem;
  height: 0.4rem;
}
.contact_section_aidc .innerbox .addrbox .title .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact_section_aidc .innerbox .addrbox .word {
  margin-top: 0.27rem;
  font-size: var(--font18);
  color: #000;
}
@media (max-width:480px) {
  .contact_section_aidc {
    padding: 0.8rem 0;
  }
  .contact_section_aidc .innerbox .itemlist {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.4rem;
  }
  .contact_section_aidc .innerbox .itemlist .item {
    width: 100%;
  }
  .contact_section_aidc .innerbox .itemlist:after {
    display: none;
  }
}
.contact_section3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.contact_section3 .image {
  position: absolute;
  width: 100%;
  height: 100%;
}
.contact_section3 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact_section3 .info {
  position: relative;
  padding: 1rem 0;
  z-index: 2;
}
.contact_section3 .info .innerbox {
  color: #fff;
}
.contact_section3 .info .innerbox .title {
  font-weight: 600;
  text-align: center;
  font-size: var(--font36);
}
.contact_section3 .info .innerbox .desc {
  text-align: center;
  font-size: var(--font24);
  margin-top: 0.23rem;
}
.contact_section3 .info .innerbox .itemlist {
  gap: 0.4rem;
  margin-top: 0.8rem;
}
.contact_section3 .info .innerbox .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.57rem;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0.08rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact_section3 .info .innerbox .itemlist .item:hover{
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: translatey(5px);
  
}
.contact_section3 .info .innerbox .itemlist .item .p1 {
  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;
  gap: 0.16rem;
  font-size: var(--font20);
}
.contact_section3 .info .innerbox .itemlist .item .addr {
  text-align: center;
  margin-top: 0.44rem;
  font-size: var(--font18);
}
@media (max-width:480px) {
  .contact_section3 .info .innerbox .itemlist {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact_us_section {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 40px 0;
  border-radius: 12px;
  background-color: #f5f5f5;
}
.contact_us_section .innerbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
.contact_us_section .innerbox .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  flex: 2;
  gap: 0.2rem;
}
.contact_us_section .innerbox .left img {
  border-radius: 12px;
  height: 50%;
  min-height: 100px;
  height: 2.4rem;
  object-fit: cover;
}
.contact_us_section .innerbox .right {
  flex: 1;
}
.contact_us_section .innerbox .right img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.contact_us_section .info {
  margin-top: 0.5rem;
}
.contact_us_section .info .title {
  font-weight: 600;
  font-size: var(--font32);
}
.contact_us_section .info .medialist {
  gap: 0.5rem;
  margin-top: 0.24rem;
}
.contact_us_section .info .medialist .item .t0 {
  font-weight: 600;
}
@media (max-width:480px) {
  .contact_us_section {
    padding: 20px 0px;
  }
  .contact_us_section .info .medialist {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.3rem;
  }
}


.contact_us_section1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
}
.contact_us_section1 .innerbox .toplist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.contact_us_section1 .innerbox .toplist .left {
  width: 42.5%;
}
.contact_us_section1 .innerbox .toplist .left .line {
  width: 24px;
  height: 3px;
  background: #2f5aa0;
  margin-top: 0.59rem;
}
.contact_us_section1 .innerbox .toplist .left .t1 {
  font-weight: 600;
  margin-top: 0.6rem;
  font-size: var(--font46);
}
.contact_us_section1 .innerbox .toplist .left .t2 {
  margin-top: 0.4rem;
  font-size: var(--font18);
}
.contact_us_section1 .innerbox .toplist .image {
  width: 57.5%;
}
.contact_us_section1 .innerbox .toplist .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact_us_section1 .innerbox .medialist {
  gap: 0.3rem;
  margin-top: 0.4rem;
  padding-top: 0.5rem;
  border-top: solid 1px #dbdbdb;
}
.contact_us_section1 .innerbox .medialist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.09rem;
}
.contact_us_section1 .innerbox .medialist .item .icon {
  width: 0.23rem;
}
@media (max-width:768px) {
  .contact_us_section1 .innerbox .toplist {
    display: block;
  }
  .contact_us_section1 .innerbox .toplist .left {
    width: 100%;
  }
  .contact_us_section1 .innerbox .toplist .image {
    width: 100%;
    margin-top: 0.5rem;
  }
  .contact_us_section1 .innerbox .medialist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .contact_us_section1 {
    padding: 0.3rem 0 0.6rem 0;
  }
  .contact_us_section1 .innerbox .medialist {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact_us_section2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: rgba(219, 219, 219, 0.1);
  border-radius: 4px;
}
.contact_us_section2 .innerbox {
  width: 100%;
  height: auto;
}
.contact_us_section2 .innerbox ul {
  width: 100%;
  height: auto;
  column-gap: 1rem;
}
.contact_us_section2 .innerbox ul li {
  width: 100%;
  height: auto;
  padding: 0.8rem 0 0.6rem 0;
  border-bottom: solid 1px #dbdbdb;
}
.contact_us_section2 .innerbox ul li .left {
  font-weight: 600;
  font-size: var(--font32);
}
.contact_us_section2 .innerbox ul li .right {
  padding-top: .3rem;
}
.contact_us_section2 .innerbox ul li .right .t0 {
  font-weight: 600;
  font-size: var(--font20);
}
.contact_us_section2 .innerbox ul li .right .desc {
  margin-top: 0.1rem;
}
.contact_us_section2 .innerbox ul li .right .desc .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.18rem;
  margin-top: 0.2rem;
  font-size: var(--font18);
}
.contact_us_section2 .innerbox ul li .right .desc .item .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;
  width: 0.22rem;
  height: 0.22rem;
}
.contact_us_section2 .innerbox ul li .right .desc .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width:768px) {
  .contact_us_section2 .innerbox ul li .right {
    padding-left: 0;
  }
}
@media (max-width:480px) {
  .contact_us_section2 .innerbox ul li {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact_us_section2 .innerbox ul li .right {
    margin-top: 0.2rem;
  }
}
.server_faq_center {
  padding: 0.6rem 0 1rem 0;
}
.server_faq_center .innerbox {
  width: 52%;
  margin: auto;
}
.server_faq_center .innerbox .input_box {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: auto;
}
.server_faq_center .innerbox .input_box .search_top {
  background: #f7f7f7;
  border-radius: 25px;
  padding: 0.13rem 0.3rem;
}
.server_faq_center .innerbox .input_box .search_top .icon {
  position: absolute;
  width: 0.18rem;
  height: 0.18rem;
}
.server_faq_center .innerbox .input_box .search_top input {
  width: 90%;
  margin-left: 0.34rem;
  height: 100%;
  border: none;
  background: #f7f7f7;
}
.server_faq_center .innerbox .input_box .search_word {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  font-size: var(--font16);
  margin-top: 0.15rem;
}
.server_faq_center .innerbox .input_box .search_word .taglist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
  flex-wrap: wrap;
}
.server_faq_center .innerbox .info {
  padding: 0.14rem;
  width: 100%;
  height: auto;
  margin-top: 0.59rem;
}
.server_faq_center .innerbox .info .itemlist {
  width: 100%;
  height: auto;
}
.server_faq_center .innerbox .info .itemlist .item {
  padding: 0.34rem 0;
  border-top: solid 1px #d6d6d6;
}
.server_faq_center .innerbox .info .itemlist .item .ft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-weight: 600;
  gap: 0.12rem;
  font-size: var(--font18);
  cursor: pointer;
}
.server_faq_center .innerbox .info .itemlist .item .ft .more {
  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.2rem;
  height: 0.12rem;
}
.server_faq_center .innerbox .info .itemlist .item .ft .more img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(180deg);
  filter: brightness(0) invert(0.5);
}
.server_faq_center .innerbox .info .itemlist .item .finfo {
  width: 100%;
  height: auto;
  margin-top: 0.1rem;
  display: none;
}
.server_faq_center .innerbox .info .itemlist .item .finfo .ful {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  line-height: calc(36/16);
}
.server_faq_center .innerbox .info .itemlist .item .finfo .ful .fli {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.server_faq_center .innerbox .info .itemlist .item .finfo .ful .active {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.server_faq_center .innerbox .info .itemlist .item:last-child {
  border-bottom: solid 1px #d6d6d6;
}
.server_faq_center .innerbox .info .itemlist .active .ft {
  color: #144ca8;
}
.server_faq_center .innerbox .info .itemlist .active .ft .more img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(180deg);
  filter: inherit;
}
.server_faq_center #demo-laypage-normal-2 {
  text-align: center;
  margin: 0.9rem 0 1.2rem 0;
}
@media (max-width:1024px) {
  .server_faq_center .innerbox {
    width: 70%;
  }
}
@media (max-width:768px) {
  .server_faq_center .innerbox {
    width: 80%;
  }
}
@media (max-width:480px) {
  .server_faq_center .innerbox {
    width: 100%;
    padding: 20px;
  }
  .server_faq_center .innerbox .input_box .search_word{
      display: flex;
      justify-content: center;
  }
  
}
.application_d_bread {
  position: fixed;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  top: 0;
  padding-top: var(--header-height);
}
.application_d_bread .innerbox {
  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;
}
.application_d_bread .innerbox .left {
  font-weight: 600;
  font-size: var(--font18);
}
.application_d_bread .innerbox .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.48rem;
  color: #333333;
  padding: 0.12rem 0;
}
.application_d_bread .innerbox .right .title {
  display: block;
  font-size: var(--font16);
}
@media (max-width:480px) {
  .application_d_bread .innerbox .left {
    display: none;
  }
}
.application_d_banner {
  margin-top: 0.46rem;
}
.application_d_section1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
  background: #fafafa;
}
.application_d_section1 .title {
  font-weight: 600;
  font-size: var(--font36);
  line-height: calc(60/36);
}
.application_d_section1 .swiperbox {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.application_d_section1 .swiperbox .swiperimg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}
.application_d_section1 .swiperbox .swiperimg ul,
.application_d_section1 .swiperbox .swiperimg li {
  width: 100% !important;
  height: auto;
}
.application_d_section1 .swiperbox .swiperimg .swiper-slide {
  pointer-events: none;
}
.application_d_section1 .swiperbox .swiperimg .swiper-slide.active {
  pointer-events: auto;
}
.application_d_section1 .swiperbox .swiperimg .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-direction: row-reverse;
  z-index: 3;
  position: relative;
  width: 100%;
  margin: auto;
  z-index: 5;
  overflow: hidden;
  background-color: #fff;
}
.application_d_section1 .swiperbox .swiperimg .item .image {
  width: 50%;
  border-radius: 8px;
  cursor: pointer;
  height: 5.5rem;
}
.application_d_section1 .swiperbox .swiperimg .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 8px 8px 0;
}
.application_d_section1 .swiperbox .swiperimg .item .info {
  width: 50%;
  padding: 0.4rem;
  z-index: 2;
  background-color: #fff;
  border-radius: 8px;
}
.application_d_section1 .swiperbox .swiperimg .item .info .t0 {
  font-weight: 600;
  font-size: var(--font24);
}
.application_d_section1 .swiperbox .swiperimg .item .info .t1 {
  font-size: var(--font60);
}
.application_d_section1 .swiperbox .swiperimg .item .info .t2 {
  font-size: var(--font18);
  margin-top: 0.22rem;
  line-height: 1.8;
}
.application_d_section1 .swiperbox .swiperimg .item .info .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;
   padding-top: 0.2rem;
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li {
  width: 100%;
  height: auto;
  padding: 0.2rem 0;
  border-bottom: 1px solid #dddddddd;
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li .top {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #999;
  font-weight: 600;
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.2rem;
  line-height: 1.1;
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li .top i {
  width: 0.35rem;
  height: 0.35rem;
 
  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.3rem;
  border: 1px solid #dddd;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li .top img {
  filter: brightness(0) invert(0.5);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  flex-shrink: 0;
  transform: rotate(180deg);
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li .bot {
  width: 91%;
  font-size: var(--font16);
  height: auto;
  display: none;
 
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li .bot .t2 {
  width: 100%;
  height: auto;
  font-weight: 300;
  color: #000;
  margin-top: 0;
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li .bot .img {
  width: 100%;
  height: auto;
  display: none;
  margin-top: 0.4rem;
  border-radius: 0.08rem;
  overflow: hidden;
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li .bot .img .pb {
  padding-bottom: 62%;
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li .bot .img .pb .ab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li.active .top {
  color: var(--active_color);
  margin-bottom: .1rem;
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li.active .top i {
  background: var(--active_color);
  border-color: var(--active_color);
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li.active .top img {
  filter: brightness(0) invert(1);
  transform: rotate(0deg);
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li:first-child {
  padding-top: 0;
}
.application_d_section1 .swiperbox .swiperimg .item .info .item_box .item_li:last-child {
  border-bottom: none;
}
.application_d_section1 .swiperbox .swiperimg .item::after {
  position: absolute;
  content: '';
  top: -70%;
  right: 0;
  width: 1px;
  height: 70%;
  background: rgba(51, 51, 51, 0.25);
}
.application_d_section1 .swiperbox .pre-next-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  height: 5rem;
  top: 0;
}
.application_d_section1 .swiperbox .pre-next-button .prebtn {
  position: absolute;
  left: -10%;
  z-index: 3;
}
.application_d_section1 .swiperbox .pre-next-button .nextbtn {
  position: absolute;
  right: -10%;
  z-index: 3;
}
@media (max-width:768px) {
    .application_d_section1 .swiperbox .swiperimg .item{
        flex-direction: column;
    }
    .application_d_section1 .swiperbox .swiperimg .item .image{
        width: 100%;
    }
     .application_d_section1 .swiperbox .swiperimg .item .info{
        width: 100%;
    }
}


@media (max-width:480px) {
  .application_d_section1 .swiperbox .pre-next-button .prebtn {
    left: 20px;
  }
  .application_d_section1 .swiperbox .pre-next-button .nextbtn {
    right: 20px;
  }
  /*.application_d_section1 .swiperbox .swiperimg {*/
  /*  padding-left: 20%;*/
  /*}*/
  /*.application_d_section1 .swiperbox .swiperimg .item {*/
  /*  width: 85%;*/
  /*}*/
}
.application_d_section2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.97rem 0 1rem 0;
  background: #fafafa;
}
.application_d_section2 .innerbox .title {
  font-weight: 600;
  text-align: center;
  font-size: var(--font36);
}
.application_d_section2 .innerbox .itemlist {
  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.16rem;
  margin-top: 0.8rem;
  height: 6.56rem;
}
.application_d_section2 .innerbox .itemlist .linebox {
  width: 100%;
  height: auto;
}
.application_d_section2 .innerbox .itemlist .linebox .item .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.application_d_section2 .innerbox .itemlist .linebox .item .info {
  text-align: center;
  padding: 0.27rem;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0.7rem;
}
.application_d_section2 .innerbox .itemlist .linebox .item .info .t0 {
  font-weight: 600;
  font-size: var(--font24);
}
.application_d_section2 .innerbox .itemlist .linebox .item .info .t1 {
  font-size: var(--font18);
  margin-top: 0.1rem;
}
.application_d_section2 .innerbox .itemlist .linebox .item .index-more {
  cursor: pointer;
}
.application_d_section2 .innerbox .itemlist .line1 {
  position: relative;
  z-index: 1;
  background: #fff;
  width: calc(37.5%);
}
.application_d_section2 .innerbox .itemlist .line1 .item {
  padding: 0.7rem;
}
.application_d_section2 .innerbox .itemlist .line1 .item .image {
  height: 3.2rem;
}
.application_d_section2 .innerbox .itemlist .line1 .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.application_d_section2 .innerbox .itemlist .line1 .item .index-more {
  color: #144ca8;
  font-weight: 600;
  z-index: 3;
  gap: 0.11rem;
  border-radius: 3px;
  background-color: #fff;
  padding: 0.11rem 0.2rem;
  background: #ffffff;
  border-radius: 0.23rem;
}
.application_d_section2 .innerbox .itemlist .line1 .item .morebg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.13rem;
  opacity: 0;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(15, 23, 29, 0.8);
}
.application_d_section2 .innerbox .itemlist .line1 .item:hover .item {
  border-radius: 0.16rem;
}
.application_d_section2 .innerbox .itemlist .line1 .item:hover .morebg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.16rem;
  opacity: 1;
}
.application_d_section2 .innerbox .itemlist .line2 {
  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.16rem;
  flex-direction: column;
  width: 28.1%;
}
.application_d_section2 .innerbox .itemlist .line2 .item {
  position: relative;
  z-index: 1;
  width: 100%;
  cursor: pointer;
  background: #fff;
  padding: 0.3rem;
  height: 3.2rem;
}
.application_d_section2 .innerbox .itemlist .line2 .item .image {
  height: 1.28rem;
}
.application_d_section2 .innerbox .itemlist .line2 .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.application_d_section2 .innerbox .itemlist .line2 .item .info {
  bottom: 0;
}
.application_d_section2 .innerbox .itemlist .line2 .item .info .t0 {
  font-weight: 600;
  font-size: var(--font20);
}
.application_d_section2 .innerbox .itemlist .line2 .item .info .t1 {
  font-size: var(--font16);
}
.application_d_section2 .innerbox .itemlist .line2 .item .index-more {
  color: #144ca8;
  font-weight: 600;
  z-index: 3;
  gap: 0.11rem;
  border-radius: 3px;
  background-color: #fff;
  padding: 0.11rem 0.2rem;
  background: #ffffff;
  border-radius: 0.23rem;
}
.application_d_section2 .innerbox .itemlist .line2 .item .morebg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.13rem;
  opacity: 0;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(15, 23, 29, 0.8);
}
.application_d_section2 .innerbox .itemlist .line2 .item:hover .item {
  border-radius: 0.16rem;
}
.application_d_section2 .innerbox .itemlist .line2 .item:hover .morebg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.16rem;
  opacity: 1;
}
.application_d_section2 .innerbox .itemlist .line3 {
  position: relative;
  z-index: 1;
  width: 31.6%;
  background: #fff;
}
.application_d_section2 .innerbox .itemlist .line3 .item {
  padding: 0.7rem;
  width: 100%;
}
.application_d_section2 .innerbox .itemlist .line3 .item .image {
  height: 3.6rem;
}
.application_d_section2 .innerbox .itemlist .line3 .item .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.application_d_section2 .innerbox .itemlist .line3 .item .index-more {
  color: #144ca8;
  font-weight: 600;
  z-index: 3;
  gap: 0.11rem;
  border-radius: 3px;
  background-color: #fff;
  padding: 0.11rem 0.2rem;
  background: #ffffff;
  border-radius: 0.23rem;
}
.application_d_section2 .innerbox .itemlist .line3 .item .morebg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 0.13rem;
  opacity: 0;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(15, 23, 29, 0.8);
}
.application_d_section2 .innerbox .itemlist .line3 .item:hover .item {
  border-radius: 0.16rem;
}
.application_d_section2 .innerbox .itemlist .line3 .item:hover .morebg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 0.16rem;
  opacity: 1;
}
@media (max-width:480px) {
    .application_d_section2{
        padding: 0;
    }
  .application_d_section2 .innerbox .itemlist {
    display: block;
    height: inherit;
  }
  .application_d_section2 .innerbox .itemlist .line1 {
    width: 100%;
    height: 6rem;
  }
  .application_d_section2 .innerbox .itemlist .line2 {
    width: 100%;
    margin-top: 0.16rem;
  }
  .application_d_section2 .innerbox .itemlist .line3 {
    width: 100%;
    margin-top: 0.16rem;
    height: 6rem;
  }
}
.application_d_section3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
  background: #fafafa;
}
.application_d_section3 .title {
  font-weight: 600;
  text-align: center;
  font-size: var(--font36);
}
.application_d_section3 .swiperbox {
  margin-top: 0.75rem;
}
.application_d_section3 .swiperbox .cooplist {
  margin-bottom: 0.28rem;
}
.application_d_section3 .swiperbox .cooplist .image {
  background: #ffffff;
  height: 2.8rem;
}
.application_d_section3 .swiperbox .cooplist .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.application_d_section4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
}
.application_d_section4 .title {
  font-weight: 600;
  text-align: center;
  font-size: var(--font36);
}
.application_d_section4 .innerbox .itemlist {
  margin-top: 0.75rem;
  overflow: hidden;
}
.application_d_section4 .innerbox .itemlist .item {
  position: relative;
  z-index: 1;
 
  cursor: pointer;
  display: block;
}
.application_d_section4 .innerbox .itemlist .item .image {
  overflow: hidden;
  background: #ffffff;
  height: 2rem;
  min-height: 200px;
}
.application_d_section4 .innerbox .itemlist .item .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application_d_section4 .innerbox .itemlist .item .info{
    width: 100%;
    height: auto;
    background: #fafafa;
    padding: 0.2rem 0.2rem 0.4rem 0.2rem;
}
.application_d_section4 .innerbox .itemlist .item .info .word{
        font-size: var(--font18);
        font-weight: bold;
}
.application_d_section4 .innerbox .itemlist .item .info .desc{
    font-size: var(--font16);
    /*    display: -webkit-box;*/
    /*-webkit-box-orient: vertical;*/
    /*-webkit-line-clamp: 2;*/
    /*overflow: hidden;*/
    margin-top: 0.1rem;
    /*height: .48rem;*/
    /*min-height: 40px;*/
}

.application_d_section4 .innerbox .itemlist .item .word {
  
}
.application_d_section4 .innerbox .itemlist .item:hover .image img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  scale: 1.05;
}
.application_d_section4 .innerbox .itemlist .item:hover .word {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}





.public_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.public_title .title {
  font-weight: 600;
  font-size: var(--font36);
}
.public_title .more {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #144ca8;
}
.investor-section1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fafafa;
  padding: 1rem 0;
}
.investor-section1 .innerbox .top_box {
  position: relative;
}
.investor-section1 .innerbox .top_box .image {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.investor-section1 .innerbox .top_box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.investor-section1 .innerbox .top_box .info {
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 0.58rem 0.65rem;
}
.investor-section1 .innerbox .top_box .info .t0 {
  font-weight: 600;
  font-size: var(--font36);
}
.investor-section1 .innerbox .top_box .info .t1 {
  margin-top: 0.2rem;
  font-size: var(--font24);
}
.investor-section1 .innerbox .bottom_box {
  margin-top: 0.4rem;
  background: #ffffff;
  box-shadow: 0px 6px 21px 0px rgba(236, 236, 236, 0.84);
  border-radius: 8px;
  padding: 0.6rem;
}
.investor-section1 .innerbox .bottom_box .linewow .itemlist {
  gap: 0.44rem;
}
.investor-section1 .innerbox .bottom_box .linewow .item .title {
  color: #666666;
  font-size: var(--font16);
}
.investor-section1 .innerbox .bottom_box .linewow .item .name {
  font-size: var(--font20);
}
.investor-section1 .innerbox .bottom_box .linewow .itemone {
  margin-top: 0.38rem;
}

@media (max-width:768px) {
    .investor-section1 .innerbox .bottom_box .flexbox {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width:480px) {
    .investor-section1{
        padding: .8rem 0 0 0;
    }
    .investor-section1 .innerbox .bottom_box .linewow .itemlist{
         grid-template-columns: repeat(1, 1fr);
    }
}
.investor-section2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.98rem 0 1rem 0;
  background: #fafafa;
}
.investor-section2 .innerbox .title {
  font-weight: 600;
  font-size: var(--font36);
}
.investor-section2 .innerbox .itemlist {
  margin-top: 0.6rem;
  gap: 0.18rem;
}
.investor-section2 .innerbox .itemlist .item {
  position: relative;
  margin-top: 0.6rem;
  cursor: pointer;
  height: 4.8rem;
}
.investor-section2 .innerbox .itemlist .item .image {
  position: relative;
  width: 100%;
  height: 100%;
}
.investor-section2 .innerbox .itemlist .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.investor-section2 .innerbox .itemlist .item .info {
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 0;
  top: 0;
  padding: 0.21rem 0.26rem;
}
.investor-section2 .innerbox .itemlist .item .info .a_logo {
  width: 74px;
  line-height: 1;
}
.investor-section2 .innerbox .itemlist .item .info .a_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.investor-section2 .innerbox .itemlist .item .info .word {
  font-weight: 600;
  position: absolute;
  bottom: 0.5rem;
  font-size: var(--font24);
}
@media (max-width:480px) {
    .investor-section2 .innerbox .itemlist{
         grid-template-columns: repeat(2, 1fr);
    }
    .investor-section2 .innerbox .itemlist .item{
        margin-top: 0;
    }
}


.investor-section3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.98rem 0 1.4rem 0;
}
.investor-section3 .innerbox .itemlist {
  margin-top: 0.6rem;
  gap: 0.18rem;
  gap: 0.4rem;
}
.investor-section3 .innerbox .itemlist .item {
  background: #ffffff;
  border-radius: 2px;
  border: 1px solid #dbdbdb;
  padding: 0 0.2rem;
}
.investor-section3 .innerbox .itemlist .item .t0 {
  font-weight: 600;
  text-align: center;
  font-size: var(--font20);
  padding: 0.255rem 0;
}
.investor-section3 .innerbox .itemlist .item .item_ul .item_li {
  position: relative;
  border-top: solid 1px #e0e0e0;
  padding: 0.255rem 0;
  cursor: pointer;
}
.investor-section3 .innerbox .itemlist .item .item_ul .item_li .title {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font18);
}
.investor-section3 .innerbox .itemlist .item .item_ul .item_li .time {
  color: #666666;
  margin-top: 0.1rem;
  font-size: var(--font14);
}
.investor-section3 .innerbox .itemlist .item .item_ul .item_li:last-child {
  border-bottom: solid 1px #e0e0e0;
}
.investor-section3 .innerbox .itemlist .item .item_ul .item_li:after {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  content: '';
  width: 0;
  height: 1px;
  background-color: var(--active_color);
  left: 0;
  bottom: -1px;
  z-index: 2;
}
.investor-section3 .innerbox .itemlist .item .item_ul .item_li:hover .title {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #144ca8;
}
.investor-section3 .innerbox .itemlist .item .item_ul .item_li:hover:after {
  width: 100%;
}
.investor-section3 .innerbox .itemlist .item .more {
  text-align: center;
  padding: 0.38rem 0;
}
.investor-section3 .innerbox .itemlist .item .more a {
  color: #144ca8;
}
.investor-section4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.98rem 0 1rem 0;
  background: #fafafa;
}
.investor-section4 .innerbox .title {
  font-weight: 600;
  font-size: var(--font36);
}
.investor-section4 .innerbox .itemlist {
  margin-top: 0.6rem;
  gap: 0.18rem;
}
.investor-section4 .innerbox .itemlist .item {
  position: relative;
  margin-top: 0.6rem;
  cursor: pointer;
}
.investor-section4 .innerbox .itemlist .item .top_box {
  height: 2.3rem;
  min-height: 200px;
}
.investor-section4 .innerbox .itemlist .item .top_box .image {
  position: relative;
  width: 100%;
  height: 100%;
}
.investor-section4 .innerbox .itemlist .item .top_box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.investor-section4 .innerbox .itemlist .item .top_box .info {
  color: #fff;
  position: absolute;
  width: 100%;
  z-index: 2;
  left: 0;
  top: 0;
  padding: 0.21rem 0.26rem;
}
.investor-section4 .innerbox .itemlist .item .top_box .info .a_logo {
  width: 74px;
  line-height: 1;
}
.investor-section4 .innerbox .itemlist .item .top_box .info .a_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.investor-section4 .innerbox .itemlist .item .top_box .info .word {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: var(--font24);
}
.investor-section4 .innerbox .itemlist .item .bottom_box {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0.2rem;
  border: 1px solid #dbdbdb;
  height: 2.13rem;
  min-height: 180px;
  padding-top: 0.18rem;
}
.investor-section4 .innerbox .itemlist .item .bottom_box .newst {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: var(--font18);
}
.investor-section4 .innerbox .itemlist .item .bottom_box .time {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  padding: 0.24rem 0;
  width: calc(100% - 0.48rem);
  left: 0.24rem;
}
.investor-section4 .innerbox .itemlist .item .bottom_box .time .t0 {
  color: #666666;
  font-size: var(--font14);
}
.investor-section4 .innerbox .itemlist .item .bottom_box .time .more {
  width: 0.15rem;
}
.investor-section4 .innerbox .itemlist .item:hover .bottom_box {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: var(--active_color);
  border: solid 1px var(--active_color);
}
.investor-section4 .innerbox .itemlist .item:hover .bottom_box .newst {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}
.investor-section4 .innerbox .itemlist .item:hover .bottom_box .time {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
}
.investor-section4 .innerbox .itemlist .item:hover .bottom_box .time .t0 {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}
.investor-section4 .innerbox .itemlist .item:hover .bottom_box .time .more {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
}
.investor-section4 .innerbox .itemlist .item:hover .bottom_box .time .more img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}
@media (max-width:480px) {
    .investor-section4 .innerbox .itemlist{
        grid-template-columns: repeat(2, 1fr);
    }
}

.investor-section5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.98rem 0 1.4rem 0;
}
.investor-section5 .innerbox .title {
  font-weight: 600;
  font-size: var(--font36);
}
.investor-section5 .innerbox .itemlist {
  margin-top: 0.6rem;
  gap: 0.18rem;
}
.investor-section5 .innerbox .itemlist .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
  height: 2.2rem;
  background: #ffffff;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
  padding: 0.25rem 0.36rem 0.36rem 0.36rem;
}
.investor-section5 .innerbox .itemlist .item .icon {
  width: 0.77rem;
  height: 0.77rem;
}
.investor-section5 .innerbox .itemlist .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.investor-section5 .innerbox .itemlist .item .t0 {
  color: #666666;
  margin-top: 0.1rem;
  font-size: var(--font18);
}
.investor-section5 .innerbox .itemlist .item .t1 {
  font-weight: 600;
  margin-top: 0.1rem;
  font-size: var(--font32);
  line-height: 1;
}
.investor-section5 .innerbox .itemlist .item .more {
  margin-top: 0.3rem;
}
.investor-section5 .innerbox .itemlist .item .more a {
  color: #144ca8;
}

@media (max-width:480px) {
    .investor-section5 .innerbox .itemlist{
        grid-template-columns: repeat(2, 1fr);
    }
}
.ue-table-interlace-color-double {
    background-color: #f7faff;
}

.ue-table-interlace-color-single {
    background-color: #fcfcfc;
}





.fccontent img{
    height: auto!important;
    object-fit: contain;
}





.header_nav a.hl{
  color: #f27703!important;
}








