@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -moz-outline: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::after,
*::before {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  font-size: 16px !important;
  overflow-x: hidden;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}
img {
  max-width: 100%;
  max-height: 100%;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.dh {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
/* 动画延迟 */
/* 图片放大 */
/* 旋转 */
.xzx {
  transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.xzy {
  transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
}
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  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.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
/* 侧边条 */
/* 媒体查询 缩写 */
/* 布局 */
.w1920 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.w1800 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
}
.w1720 {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
}
.w1680 {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}
.w1640 {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
}
.w1600 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.w1560 {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
}
.w1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.w1400 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.w1360 {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
.w1350 {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}
.w1280 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.w1240 {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.w1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.w1150 {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:1840px) {
  .w1720 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1800px) {
  .w1680 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1760px) {
  .w1640 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1720px) {
  .w1600 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1680px) {
  .w1560 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1560px) {
  .w1440 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1520px) {
  .w1400 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1470px) {
  .w1350 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1400px) {
  .w1280 {
    padding: 0 60px;
  }
}
@media (max-width:1360px) {
  .w1240 {
    padding: 0 60px;
  }
}
@media (max-width:1320px) {
  .w1200 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1270px) {
  .w1150 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1024px) {
  .w1800,
  .w1720,
  .w1680,
  .w1640,
  .w1560,
  .w1440,
  .w1400,
  .w1350,
  .w1280,
  .w1240,
  .w1200,
  .w1150 {
    padding: 0 30px;
  }
}
@media (max-width:990px) {
  .w1800,
  .w1720,
  .w1680,
  .w1640,
  .w1600,
  .w1560,
  .w1440,
  .w1400,
  .w1350,
  .w1280,
  .w1240,
  .w1200,
  .w1150 {
    padding: 0 20px;
  }
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
/* 常用 CSS3 动画 */
/* 360 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes run2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes tran_run {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tran_run2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
/* 大 => 小 */
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* 透明度  1 => 0 */
@keyframes bgfd {
  0% {
    width: 0%;
    height: 0%;
    opacity: 1;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
/* 默认 空标签 */
.cle {
  clear: both;
  width: 0;
  height: 0;
  display: block;
  overflow: hidden;
  font-size: 0px;
}
/* 图片 垂直居中 */
.imgmid {
  display: inline-block;
  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;
}
.w100 {
  width: 100%;
}
.h100 {
  height: 100%;
}
.center_box {
  position: relative;
  z-index: 5;
}
.m1px {
  margin-bottom: -1px;
}
/* 移动端不兼容 暂不推荐使用 */
.ratio {
  -webkit-aspect-ratio: 1 / 1;
  aspect-ratio: 1 / 1;
}
:root {
  /* 导航高度 */
  --header-top-height: 35px;
  --header-nav-height: 70px;
  /* 动画 */
  --ani: 0.25s ease;
  /* 颜色 */
  --text-color: #333333;
  --active-color: #0392FF;
  --active-color-60: #7285D6;
  /* 字号 */
  /* 32px ~ 48px */
  --font48: clamp(2rem, calc(-0.462rem + 3.08vw), 3rem);
  /* 31px ~ 46px */
  --font46: clamp(1.938rem, calc(-0.37rem + 2.88vw), 2.875rem);
  /* 29px ~ 44px */
  --font44: clamp(1.813rem, calc(-0.495rem + 2.88vw), 2.75rem);
  /* 28px ~ 42px */
  --font42: clamp(1.75rem, calc(-0.404rem + 2.69vw), 2.625rem);
  /* 27px ~ 40px */
  --font40: clamp(1.688rem, calc(-0.313rem + 2.5vw), 2.5rem);
  /* 25px ~ 38px */
  --font38: clamp(1.563rem, calc(-0.438rem + 2.5vw), 2.375rem);
  /* 24px ~ 36px */
  --font36: clamp(1.5rem, calc(-0.346rem + 2.31vw), 2.25rem);
  /* 23px ~ 34px */
  --font34: clamp(1.438rem, calc(-0.255rem + 2.12vw), 2.125rem);
  /* 21px ~ 32px */
  --font32: clamp(1.313rem, calc(-0.38rem + 2.12vw), 2rem);
  /* 20px ~ 30px */
  --font30: clamp(1.25rem, calc(-0.288rem + 1.92vw), 1.875rem);
  /* 19px ~ 28px */
  --font28: clamp(1.188rem, calc(-0.197rem + 1.73vw), 1.75rem);
  /* 18px ~ 26px */
  --font26: clamp(1.125rem, calc(-0.106rem + 1.54vw), 1.625rem);
  /* 17px ~ 24px */
  --font24: clamp(1.063rem, calc(-0.014rem + 1.35vw), 1.5rem);
  /* 16px ~ 22px */
  --font22: clamp(1rem, calc(0.077rem + 1.15vw), 1.375rem);
  /* 15px ~ 20px */
  --font20: clamp(0.938rem, calc(0.168rem + 0.96vw), 1.25rem);
  /* 14px ~ 18px */
  --font18: clamp(0.875rem, calc(0.26rem + 0.77vw), 1.125rem);
  /* 13px ~ 16px */
  --font16: clamp(0.813rem, calc(0.351rem + 0.58vw), 1rem);
  /* 12px ~ 14px */
  --font14: clamp(0.75rem, calc(0.442rem + 0.38vw), 0.875rem);
  /* 间距 */
  --spacing-160: clamp(6.25rem, calc(-2.981rem + 11.54vw), 10rem);
  --spacing-140: clamp(5.625rem, calc(-0.625rem + 7.81vw), 8.75rem);
  --spacing-120: clamp(5rem, calc(-1.154rem + 7.69vw), 7.5rem);
  --spacing-100: clamp(4.125rem, calc(-1.106rem + 6.54vw), 6.25rem);
  --spacing-80: clamp(2.5rem, calc(-3.654rem + 7.69vw), 5rem);
  --spacing-70: clamp(2.25rem, calc(-2.981rem + 6.54vw), 4.375rem);
  --spacing-60: clamp(1.875rem, calc(-2.74rem + 5.77vw), 3.75rem);
  --spacing-50: clamp(1.625rem, calc(-2.067rem + 4.62vw), 3.125rem);
  --spacing-40: clamp(1.25rem, calc(-1.827rem + 3.85vw), 2.5rem);
  --spacing-30: clamp(1.25rem, calc(-0.288rem + 1.92vw), 1.875rem);
  --spacing-20: clamp(0.875rem, calc(-0.048rem + 1.15vw), 1.25rem);
  /* 圆角 */
  --border-radius20: clamp(0.625rem, calc(-0.089rem + 1.12vw), 1.25rem);
  --border-radius18: clamp(0.625rem, calc(0.054rem + 0.89vw), 1.125rem);
  --border-radius16: clamp(0.5rem, calc(-0.071rem + 0.89vw), 1rem);
  --border-radius14: clamp(0.313rem, calc(-0.33rem + 1vw), 0.875rem);
  --border-radius12: clamp(0.313rem, calc(-0.188rem + 0.78vw), 0.75rem);
  --border-radius10: clamp(0.313rem, calc(-0.045rem + 0.56vw), 0.625rem);
}
@media (max-width:1024px) {
  :root {
    --spacing-160: 80px;
    --spacing-140: 70px;
    --spacing-120: 60px;
    --spacing-100: 50px;
  }
}
@media (max-width:990px) {
  :root {
    --header-height: 60px;
  }
}
@media (max-width:768px) {
  :root {
    --font48: 32px;
    --font46: 31px;
    --font44: 29px;
    --font42: 28px;
    --font40: 27px;
    --font38: 25px;
    --font36: 24px;
    --font34: 23px;
    --font32: 21px;
    --font30: 20px;
    --font28: 19px;
    --font26: 18px;
    --font24: 17px;
    --font22: 16px;
    --font20: 15px;
    --font18: 14px;
    --font16: 13px;
    --font14: 12px;
  }
}
/* 字体大小 */
/* 间距 */
/* 点扩散 */
.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-family: 'Microsoft YaHei', 'HelveticaNeue', 'Helvetica', 'Droid Sans', 'Segoe', 'Heiti SC', 'Droidsansfallback', 'Dengxian';
  /*color: #333333;*/
}
.layui-btn {
  height: 100%;
  background: #1753c3;
}
/* Placeholder style */
/* 视频弹窗 */
.bullet_box {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.bullet_box .bullet_main {
  width: 96%;
  max-width: 1200px;
  height: auto;
  position: relative;
  z-index: 1;
  transform: translateY(-10vh);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.bullet_box .bullet_main .close {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  transform: translate(50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 0;
  border-radius: 50%;
  background: #0733E3;
  cursor: pointer;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.bullet_box .bullet_main .close i {
  font-size: 14px;
  color: #FFF;
}
.bullet_box .bullet_main .close:hover {
  transform: translate(50%, -50%) rotate(90deg);
}
.bullet_box .bullet_main .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #282828;
  overflow: hidden;
}
.bullet_box .bullet_main .content .pb {
  padding-bottom: 56.25%;
}
.bullet_box .bullet_main .content img,
.bullet_box .bullet_main .content video,
.bullet_box .bullet_main .content iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bullet_box .bullet_main .content iframe {
  object-fit: fill;
}
.bullet_box.active {
  pointer-events: initial;
  opacity: 1;
  visibility: visible;
}
.bullet_box.active .bullet_main {
  transform: translateY(0);
}
/* --------------------------- */
/* --------------------------- */
/* 头部 */
header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  background: #FFFFFF;
  /* PC */
  /* Mobile version header */
}
header .header_top {
  width: 100%;
  height: var(--header-top-height);
  background: #F5F9FF;
}
header .header_top .center_main {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
header .header_top .center_main .welcome {
  width: auto;
  height: auto;
  font-size: 12px;
  color: #171717;
}
header .header_top .center_main .language {
  width: auto;
  height: 100%;
  position: relative;
  z-index: 1;
}
header .header_top .center_main .language .lang_head {
  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: 6px;
  font-size: 0;
  cursor: pointer;
  overflow: hidden;
}
header .header_top .center_main .language .lang_head .icon {
  width: 12px;
  height: 12px;
  font-size: 0;
}
header .header_top .center_main .language .lang_head .word {
  width: auto;
  height: auto;
  font-size: 12px;
  color: #171717;
  overflow: hidden;
}
header .header_top .center_main .language .lang_head .arrow {
  width: 7px;
  height: 4px;
  background: url('../images/icon_arrow.png') no-repeat center;
}
header .header_top .center_main .language .lang_body {
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  top: 100%;
  padding: 5px 0;
  background: #FFFFFF;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transform: translateY(5px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_top .center_main .language .lang_body .one {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 12px;
  color: #333;
  overflow: hidden;
}
header .header_top .center_main .language .lang_body .one a {
  width: 100%;
  height: auto;
  display: block;
  padding: 5px 15px;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
header .header_top .center_main .language .lang_body .one a:hover {
  color: #0733E3;
}
header .header_top .center_main .language:hover .lang_body {
  transform: translateY(0);
  opacity: 1;
  pointer-events: initial;
  visibility: visible;
}
header .header_box {
  width: 100%;
  height: var(--header-nav-height);
  position: relative;
  z-index: 1;
  transition: all 0.1s ease;
}
header .header_box .header_main {
  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;
  -webkit-box-pack: justify; -ms-flex-pack: justify; -webkit-justify-content: space-between; justify-content: space-between; grid-gap: 10%;
}
header .header_box .header_main .logo {
  width: 15.5%; min-width: 180px; max-width: 217px; height: 80%; font-size: 0;
  display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center;
}
header .header_box .header_main .logo a { width: 100%; height: 100%; }
header .header_box .header_main .nav {
  width: auto;
  height: 100%;
}
header .header_box .header_main .nav ul {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: var(--spacing-80);
  overflow: hidden;
}
header .header_box .header_main .nav ul li {
  width: auto;
  height: 100%;
  overflow: hidden;
}
header .header_box .header_main .nav ul li .headline {
  width: auto;
  height: 100%;
  overflow: hidden;
}
header .header_box .header_main .nav ul li .headline a {
  width: auto;
  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;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
}
header .header_box .header_main .nav ul li .headline a::after {
  content: '';
  width: 0;
  height: 4px;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
  background: #0733E3;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
header .header_box .header_main .nav ul li .subnav_product {
  width: 100vw;
  height: auto;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: #FFFFFF;
  display: none;
}
header .header_box .header_main .nav ul li .subnav_product::after {
  content: '';
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  transform: translateX(-50%);
  background: #FFFFFF;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_head {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  overflow: hidden;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_head .item {
  width: 100%;
  height: 60px;
  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;
  overflow: hidden;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_head .item .icon {
  width: 20px;
  height: auto;
  font-size: 0;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_head .item .title {
  width: 100%;
  height: auto;
  margin-left: 10px;
  flex: 1;
  font-size: var(--font16);
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  overflow: hidden;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .nav_title {
  width: 25%;
  height: 60px;
  padding: 0 40px;
  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;
  overflow: hidden;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .nav_title .icon {
  width: 20px;
  height: auto;
  font-size: 0;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .nav_title .word {
  width: 100%;
  height: auto;
  margin-left: 10px;
  flex: 1;
  font-size: var(--font16);
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  overflow: hidden;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body {
  width: 100%;
  height: auto;
  min-height: 400px;
  padding-bottom: 20px;
  position: relative;
  z-index: 5;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item {
  width: 100%;
  height: auto;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .title {
  width: 25%;
  height: auto;
  padding-left: 20px;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .title a {
  width: 100%;
  height: auto;
  padding: 10px 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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .title a .word {
  width: 100%;
  height: auto;
  padding-left: 30px;
  flex: 1;
  font-size: var(--font16);
  color: #333333;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .title a::before {
  content: '';
  width: 4px;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  background: #1650BC;
  opacity: 0;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .title a::after {
  content: '';
  width: 8px;
  height: 15px;
  background: url('../images/icon_subnav_arrow.png') no-repeat center;
  filter: brightness(0) opacity(0.2);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box {
  width: 25%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 25%;
  top: 0;
  padding-bottom: 20px;
  display: none;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .nav_title {
  width: 100%;
  padding: 0 20px;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  transform: translateY(-100%);
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1650BC transparent;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  background-color: #FAFAFA;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main::-webkit-scrollbar-thumb {
  background-color: #1650BC;
  border-radius: 5px;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item {
  width: 100%;
  height: auto;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .title {
  width: 100%;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .title a {
  padding: 10px 20px 10px 0;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .title.active {
  background: #FFFFFF;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .title.active a::before {
  opacity: 0;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .three_box {
  width: 200%;
  height: 100%;
  position: absolute;
  left: 100%;
  top: 0;
  padding: 0 0 20px 20px;
  display: none;
}
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .three_box .three_main { width: 100%; height: auto; max-height: 100%; padding-left: 30px; overflow: hidden; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #1650BC transparent; display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; grid-gap: 20px 10px; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .three_box .three_main::-webkit-scrollbar { width: 2px; height: 2px; background-color: #FAFAFA; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .three_box .three_main::-webkit-scrollbar-thumb { background-color: #1650BC; border-radius: 5px; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .three_box .three_main .item { width: 100%; height: auto; padding: 1px 0; overflow: hidden; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .three_box .three_main .item .classify { font-size: var(--font14); font-weight: 700; color: #333333; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .three_box .three_main .item .menu { width: 100%; height: auto; margin-top: 15px; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .three_box .three_main .item .menu .one { width: 100%; height: auto; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .three_box .three_main .item .menu .one a { font-size: var(--font14); color: #7D7D7D; -webkit-transition: all 0.45s ease; -o-transition: all 0.45s ease; transition: all 0.45s ease; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .three_box .three_main .item .menu .one a:hover { color: #1650BC; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .two_box .two_main .two_item .title.active + .three_box { display: block; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .title.active a { background: #FFFFFF; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .title.active a .word { color: #1650BC; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .title.active a::before { opacity: 1; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .title.active a::after { filter: none; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_body .subnav_item .title.active + .two_box { display: block; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_bg { width: 50%; height: 100%; position: absolute; z-index: 1; left: 0; top: 0; background: #FAFAFA; overflow: hidden; }
header .header_box .header_main .nav ul li .subnav_product .subnav_box .subnav_bg::before { content: ''; width: 50%; height: 100%; position: absolute; left: 0; top: 0; z-index: 1; background: #F5F5F5; }
.btn_building{ cursor:pointer; }
header .header_box .header_main .nav ul li:hover > .headline a,
header .header_box .header_main .nav ul li .headline a.active { color: #0733E3; }
header .header_box .header_main .nav ul li:hover > .headline a::after,
header .header_box .header_main .nav ul li .headline a.active::after { width: 100%; }
header .header_box::after { content: ''; width: 100%; height: 1px; position: absolute; bottom: 0; left: 0; z-index: 1; background: #000; opacity: 0; }
header .m_header_box { width: 100%; height: auto; 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: 223px;
  height: 50%;
  position: relative;
  z-index: 5;
  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_title .logo a {
  width: 100%;
  height: 100%;
}
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;
}
header .m_header_box .header_title .column .menu_link {
  width: auto;
  height: 20px;
  margin-top: 1px;
  overflow: hidden;
  color: #fff;
  border-radius: 4px;
  background: #1650BC;
  padding: 0 5px;
  margin-right: 10px;
  font-size: 14px;
  line-height: 20px;
}
header .m_header_box .header_title .column .menu_link a{
  color: #fff;
}
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: #1650BC;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -50%;
  transform-origin: center;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s 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.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s 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.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s 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.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s 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);
}
header .m_header_box .header_body .menu_nav ul li a {
  width: 100%;
  height: auto;
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
}
header .m_header_box .header_body .menu_nav ul li a::after {
  content: '';
  width: 6px;
  height: 14px;
  margin-left: 10px;
  background: url('../images/icon_subnav_arrow.png') no-repeat center / 100% auto;
  filter: brightness(0);
  opacity: 0.5;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
header .m_header_box .header_body .menu_nav ul li ul {
  padding-bottom: 15px;
}
header .m_header_box .header_body .menu_nav ul li ul li {
  border: 0;
}
header .m_header_box .header_body .menu_nav ul li ul li a {
  padding: 10px 0;
  font-size: 14px;
  color: #666666;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
header .m_header_box .header_body .menu_nav ul li ul li a::before {
  content: '';
  width: 5px;
  height: 10px;
  margin-right: 10px;
  background: url('../images/icon_subnav_arrow.png') no-repeat left / 100% auto;
  filter: brightness(0);
  opacity: 0.2;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
header .m_header_box .header_body .menu_nav ul li ul li a::after {
  display: none;
}
header .m_header_box .header_body .menu_nav ul li ul li ul {
  padding: 0;
}
header .m_header_box .header_body .menu_nav ul li ul li ul li {
  padding-left: 20px;
}
header .m_header_box .header_body .menu_nav ul li ul li ul li a {
  padding: 5px 0;
  font-size: 13px;
  font-weight: 400;
}
header .m_header_box .header_body .menu_nav ul li ul li ul li ul li a {
  padding: 5px 0;
  font-size: 12px;
  font-weight: 400;
  color: #999999;
}
header .m_header_box .header_body .menu_nav ul li ul li ul li ul li a::before,
header .m_header_box .header_body .menu_nav ul li ul li ul li ul li a::after {
  display: none;
}
header .m_header_box .header_body .menu_nav ul li a.active {
  color: #1650BC;
}
header .m_header_box .header_body .menu_nav ul li a.active::before,
header .m_header_box .header_body .menu_nav ul li a.active::after {
  filter: none;
  opacity: 1;
}
header .m_header_box .header_body .menu_nav ul li a.active.is_active::before,
header .m_header_box .header_body .menu_nav ul li a.active.is_active::after {
  transform: rotate(90deg);
}
header .m_header_box .header_body .menu_nav ul li a + ul {
  display: none;
}
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: #1650BC;
  color: #fff;
}
@media (max-width:1024px) {
  header .header_top,
  header .header_box {
    display: none;
  }
  header .m_header_box {
    display: block;
  }
}
/* 导航高度 占位 */
.header_nbsp {
  width: 100%;
  height: calc(var(--header-top-height) + var(--header-nav-height));
  position: relative;
  z-index: 5;
  background: #FFFFFF;
}
@media (max-width:1024px) {
  .header_nbsp {
    height: 60px;
  }
}
/* --------------------------- */
/* --------------------------- */
/* 底部 */
footer {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  background: #1753c3;
  overflow: hidden;
}
footer .footer_box {
  width: 100%;
  height: auto;
  padding: clamp(60px, 4.6vw, 90px) 0 var(--spacing-60);
  background: url('../images/f_logo_bg.png') no-repeat center;
}
footer .footer_box .foot_head {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
footer .footer_box .foot_head .logo {
  width: 35%;
  max-width: 250px;
  height: auto;
}
footer .footer_box .foot_head .share {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 15px;
}
footer .footer_box .foot_head .share a {
  width: var(--size);
  height: var(--size);
  --size: var(--font48);
  border-radius: 50%;
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 0;
}
footer .footer_box .foot_head .share a img {
  max-width: 50%;
  max-height: 50%;
}
footer .footer_box .foot_body {
  width: 100%;
  height: auto;
  margin-top: 15px;
  padding-top: 26px;
  border-top: 1px solid #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 10%;
  overflow: hidden;
}
footer .footer_box .foot_body .foot_nav {
  width: 60%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 30px;
}
footer .footer_box .foot_body .foot_nav .item {
  width: auto;
  height: auto;
}
footer .footer_box .foot_body .foot_nav .item .headline {
  width: 100%;
  height: auto;
}
footer .footer_box .foot_body .foot_nav .item .headline a {
  font-weight: 700;
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  transition: color var(--ani);
}
footer .footer_box .foot_body .foot_nav .item .headline a:hover {
  color: var(--active-color);
}
footer .footer_box .foot_body .foot_nav .item .menu {
  width: 100%;
  height: auto;
  margin-top: 15px;
}
footer .footer_box .foot_body .foot_nav .item .menu .one {
  width: 100%;
  height: auto;
}
footer .footer_box .foot_body .foot_nav .item .menu .one a {
  font-size: 14px;
  color: #FFFFFF;
  transition: color var(--ani);
}
footer .footer_box .foot_body .foot_nav .item .menu .one a:hover {
  color: var(--active-color);
}
footer .footer_box .foot_body .foot_nav .item .menu .one + .one {
  margin-top: 10px;
}
footer .footer_box .foot_body .foot_contact {
  width: 100%;
  height: auto;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  overflow: hidden;
}
footer .footer_box .foot_body .foot_contact .content {
  width: 100%;
  height: auto;
  overflow: hidden;
}
footer .footer_box .foot_body .foot_contact .content .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  overflow: hidden;
  margin-bottom: 10px;
}
footer .footer_box .foot_body .foot_contact .content .item .icon {
  width: 12px;
  height: auto;
  font-size: var(--font14);
  margin-right: 7px;
}
footer .footer_box .foot_body .foot_contact .content .item .word {
  width: 100%;
  height: auto;
  flex: 1;
  font-size: var(--font14);
  color: #FFFFFF;
  line-height: 1.42;
  overflow: hidden;
}
footer .footer_box .foot_body .foot_contact .qrcode {
  width: 100%;
  height: auto;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 10px;
}
footer .footer_box .foot_body .foot_contact .qrcode .item {
  width: auto;
  max-width: 69px;
  height: auto;
  overflow: hidden;
}
footer .footer_box .foot_body .foot_contact .qrcode .item .img {
  width: 100%;
  height: auto;
  font-size: 0;
}
footer .footer_box .foot_body .foot_contact .qrcode .item .img img {
  width: 100%;
}
footer .footer_box .foot_body .foot_contact .qrcode .item .word {
  width: 100%;
  height: auto;
  margin-top: 0.6em;
  text-align: center;
  font-size: 12px;
  color: #FFFFFF;
}
footer .foot_copy {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background-color: #07327f;
  overflow: hidden;
}
footer .foot_copy .copy_box {
  width: 100%;
  height: auto;
  padding: 14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  overflow: hidden;
}
footer .foot_copy .copy_box .copy {
  width: auto;
  height: auto;
  flex: 1;
  font-size: 12px;
  line-height: 1.37;
  color: #FFFFFF;
}
footer .foot_copy .copy_box .copy a {
  color: #FFFFFF;
  transition: color var(--ani);
}
footer .foot_copy .copy_box .copy a:hover {
  color: var(--active-color);
}
footer .foot_copy .copy_box .links {
  width: auto;
  height: auto;
  margin-left: 10%;
  font-size: 12px;
  color: #FFFFFF;
}
footer .foot_copy .copy_box .links a {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 1.37;
  transition: color var(--ani);
}
footer .foot_copy .copy_box .links a:hover {
  color: var(--active-color);
}
@media (max-width:1024px) {
  footer .footer_box .foot_body {
    display: block;
  }
  footer .footer_box .foot_body .foot_nav {
    width: 100%;
  }
  footer .footer_box .foot_body .foot_nav .item .headline a {
    font-size: 14px;
  }
  footer .footer_box .foot_body .foot_nav .item .menu {
    display: none;
  }
  footer .footer_box .foot_body .foot_contact {
    width: 100%;
    margin-top: 30px;
    display: block;
  }
  footer .footer_box .foot_body .foot_contact .qrcode {
    margin-top: 30px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width:768px) {
  footer .footer_box .foot_head {
    display: block;
  }
  footer .footer_box .foot_head .share {
    margin-top: 20px;
  }
  footer .footer_box .foot_body .foot_nav {
    display: none;
  }
  footer .footer_box .foot_body .foot_contact {
    margin: 0;
  }
  footer .foot_copy .copy_box {
    display: block;
  }
  footer .foot_copy .copy_box .links {
    margin: 10px 0 0;
  }
}
/* --------------------------- */
/* --------------------------- */
/* 标题 */
.idx_title {
  width: 100%;
  height: auto;
  text-align: center;
}
.idx_title .title {
  font-weight: 500;
  font-size: var(--font40);
  color: var(--text-color);
  line-height: 1.2;
}
.idx_title .subtitle {
  margin-top: 0.8em;
  font-size: var(--font18);
  letter-spacing: 1px;
  line-height: 1.33;
  color: #333333;
}
/* 按钮 */
.idx_more {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.idx_more a {
  width: auto;
  min-width: 180px;
  height: 50px;
  padding: 0 var(--spacing-30);
  display: -webkit-box;
  display: -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: 10px;
  background: #C70000;
  border-radius: 50px;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.idx_more a .word {
  font-size: var(--font16);
  color: #FFFFFF;
  white-space: nowrap;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.idx_more a .icon {
  font-size: 0;
}
.idx_more a:hover {
  background: #ed2d2d;
}
.idx_more a:hover .word {
  flex: 1;
}
@media (max-width:1440px) {
  .idx_more a {
    min-width: 160px;
    height: 44px;
  }
  .idx_more a .icon {
    width: 10px;
  }
}
@media (max-width:1024px) {
  .idx_more a {
    min-width: 140px;
    height: 40px;
    padding: 0 12px;
  }
  .idx_more a .icon {
    width: 8px;
  }
}
/* ------------------------- */
/* ------------------------- */
/* Banner */
.idx_banner {
  width: 100%;
  height: calc(100vh - var(--header-top-height) - var(--header-nav-height));
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_banner .swiper_box {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
}
.idx_banner .swiper_box ul {
  width: 100%;
  height: 100%;
}
.idx_banner .swiper_box ul li {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_banner .swiper_box ul li .center_box { height: 100%; }
.idx_banner .swiper_box ul li .content {
  width: 100%;
  height: 100%;
  padding-bottom: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.idx_banner .swiper_box ul li .content .title {
  width: 100%;
  height: auto;
  font-size: clamp(calc(40 / 16 * 1rem), calc((40 / 16 * 1rem) + ((60 - 40) * ((100vw - 1280 / 16 * 1rem) / (1920 - 1280)))), calc(60 / 16 * 1rem));
  font-weight: 700;
  color: #FFFFFF;
}
.idx_banner .swiper_box ul li .content .subtitle {
  width: 80%; max-width: 1024px;
  height: auto;
  margin-top: 0.5em;
  grid-gap: 3em;
  font-size: var(--font28);
  color: #FFFFFF;
}
.idx_banner .swiper_box ul li .content .more {
  width: 100%; height: auto; margin-top: var(--spacing-50); display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; overflow: hidden;
}
.idx_banner .swiper_box ul li .content .more a {
  width: auto; min-width: 180px; height: 50px; padding: 0 var(--spacing-30);
  display: -webkit-box; display: -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: 10px; background: #C70000; border-radius: 50px; font-size: var(--font16); color: #FFFFFF;
  -webkit-transition: all 0.45s ease; -o-transition: all 0.45s ease; transition: all 0.45s ease; overflow: hidden;
}
.idx_banner .swiper_box ul li .content .more a:hover { background: #C70000; color: #FFFFFF; }
.idx_banner .swiper_box ul li .images {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-size: 0;
  overflow: hidden;
}
.idx_banner .swiper_box ul li .images picture {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.idx_banner .swiper_box ul li .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_banner .pager_box {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 5;
  overflow: hidden;
}
.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: var(--spacing-30);
}
.idx_banner .pager_box .pager * {
  width: 35px;
  height: 5px;
  border-radius: 1px;
  background: #004285;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.idx_banner .pager_box .pager *.active {
  background: #FFFFFF;
}
@media (max-width:1024px) {
  .idx_banner {
    height: 70vh;
  }
}
@media (max-width:768px) {
  .idx_banner .swiper_box ul li .content .title {
    font-size: 36px;
  }
  .idx_banner .swiper_box ul li .content .subtitle { width: 100%; }
  .idx_banner .pager_box .pager * {
    width: 24px;
    height: 4px;
  }
}
/* --------------------------- */
/* ------------------------- */
/* 产品中心 */
.idx_product {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  background-color: #FFFFFF;
  overflow: hidden;
}
.idx_product .product_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0;
}
.idx_product .product_box .classify_box {
  width: 100%;
  height: auto;
  margin-top: 40px;
  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;
  overflow: hidden;
}
.idx_product .product_box .classify_box .one { width: 15%; height: auto; padding-top: 20px; position: relative; z-index: 1; cursor: pointer; -webkit-transition: all 0.45s ease; -o-transition: all 0.45s ease; transition: all 0.45s ease; overflow: hidden; }
.idx_product .product_box .classify_box .one a { width: 100%; height: 100%; display: block; position: absolute; z-index: 10; left: 0; top: 0; visibility: hidden; overflow: hidden; }
.idx_product .product_box .classify_box .one .icon_box { width: 80%; height: 1em; margin: 0 auto; font-size: var(--font48); position: relative; z-index: 5; overflow: hidden; }
.idx_product .product_box .classify_box .one .icon_box .icon {
  width: 100%; height: 100%; position: absolute; z-index: 1; left: 0; top: 0;
  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: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center;
  -webkit-transition: all 0.45s ease; -o-transition: all 0.45s ease; transition: all 0.45s ease; overflow: hidden;
}
.idx_product .product_box .classify_box .one .icon_box .icon:last-child { z-index: 5; opacity: 0; }
.idx_product .product_box .classify_box .one .title { width: 100%; height: calc(2em * 1.5); margin-top: var(--spacing-30); text-align: center; font-size: var(--font16); color: var(--text-color); overflow: hidden; }
.idx_product .product_box .classify_box .one::before,
.idx_product .product_box .classify_box .one::after { content: ''; position: absolute; z-index: 2; left: 50%; bottom: 0; transform: translateX(-50%); pointer-events: none; }
.idx_product .product_box .classify_box .one::before { width: 100%; height: 1px; background: #E8E8E8; }
.idx_product .product_box .classify_box .one::after { width: 0; height: 5px; z-index: 1; background: var(--active-color); -webkit-transition: all 0.45s ease; -o-transition: all 0.45s ease; transition: all 0.45s ease; }
.idx_product .product_box .classify_box .one:hover { background: #F5F5F5; }
.idx_product .product_box .classify_box .one.active .icon_box .icon:first-child { opacity: 0; }
.idx_product .product_box .classify_box .one.active .icon_box .icon:last-child { opacity: 1; }
.idx_product .product_box .classify_box .one.active .title { color: var(--active-color); }
.idx_product .product_box .classify_box .one.active::after { width: 100%; }
.idx_product .product_box .product_swiper { width: 100%; height: auto; position: relative; z-index: 1; margin-top: var(--spacing-80); }
.idx_product .product_box .product_swiper .swiper_box { width: 100%; height: auto; }
.idx_product .product_box .product_swiper .swiper_box div.swiper-slide { position: relative; z-index: 1; pointer-events: none; }
.idx_product .product_box .product_swiper .swiper_box div.swiper-slide.swiper-slide-active { z-index: 5; pointer-events: initial; }
.idx_product .product_box .product_swiper .swiper_box .swiper_item { width: 100%; height: auto; }
.idx_product .product_box .product_swiper .swiper_box .swiper_item li.swiper-slide {
  width: 25%;
  height: auto;
  pointer-events: initial;
}
.idx_product .product_box .product_swiper .swiper_box .swiper_item li.swiper-slide a {
  width: 100%;
  height: auto;
  padding: 28px 16px 0;
  display: block;
  background: rgba(230, 246, 255, 0.2) url('../images/idx_pro_bg.png') no-repeat center / 100% 100%;
  border-radius: 3px;
  border: 1px solid rgba(79, 186, 255, 0.15);
  box-shadow: -11px 10px 37px rgba(73, 184, 255, 0.09);
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.idx_product .product_box .product_swiper .swiper_box .swiper_item li.swiper-slide a .title_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_product .product_box .product_swiper .swiper_box .swiper_item li.swiper-slide a .title_box .title {
  width: 100%;
  height: calc(2em * 1.33);
  font-size: var(--font18);
  color: var(--text-color);
  line-height: 1.33;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.idx_product .product_box .product_swiper .swiper_box .swiper_item li.swiper-slide a .title_box .details {
  width: 100%;
  height: calc(2em * 1.57);
  margin-top: 10px;
  font-size: var(--font14);
  color: #5C5C5C;
  line-height: 1.57;
  overflow: hidden;
}
.idx_product .product_box .product_swiper .swiper_box .swiper_item li.swiper-slide a .images {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_product .product_box .product_swiper .swiper_box .swiper_item li.swiper-slide a .images .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.idx_product .product_box .product_swiper .swiper_box .swiper_item li.swiper-slide a:hover .images .ab {
  transform: scale(1.05);
}
.idx_product .product_box .product_swiper .swiper_box .swiper_item li.swiper-slide.active a {
  visibility: visible;
  opacity: 1;
}
.idx_product .product_box .product_swiper .swiper_box .pager_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-30);
  display: none;
  overflow: hidden;
}
.idx_product .product_box .product_swiper .swiper_box .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;
  overflow: hidden;
}
.idx_product .product_box .product_swiper .swiper_box .pager_box .pager * {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.2;
  cursor: pointer;
}
.idx_product .product_box .product_swiper .swiper_box .pager_box .pager * + * {
  margin-left: 7px;
}
.idx_product .product_box .product_swiper .swiper_box .pager_box .pager .active {
  background: #d90202;
  opacity: 1;
}
.idx_product .product_box .product_swiper .swiper_btn {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  z-index: 10;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 13px 10px 41px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.idx_product .product_box .product_swiper .swiper_btn.prev {
  left: 0;
  transform: translate(-200%, -50%);
}
.idx_product .product_box .product_swiper .swiper_btn.prev::after {
  content: '';
  width: 20%;
  height: 20%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%) rotate(45deg);
  border-radius: 2px;
  border: 1px solid #ed2d2d;
  border-right: 0;
  border-top: 0;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.idx_product .product_box .product_swiper .swiper_btn.next {
  right: 0;
  transform: translate(200%, -50%);
}
.idx_product .product_box .product_swiper .swiper_btn.next::after {
  content: '';
  width: 20%;
  height: 20%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-60%, -50%) rotate(45deg);
  border-radius: 2px;
  border: 1px solid #ed2d2d;
  border-left: 0;
  border-bottom: 0;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.idx_product .product_box .product_swiper .swiper_btn:hover {
  background: #ed2d2d;
}
.idx_product .product_box .product_swiper .swiper_btn:hover::after {
  border-color: #FFFFFF;
}
.idx_product .product_box .product_swiper .swiper_btn.active {
  opacity: 0;
}
.idx_product .product_box .idx_more {
  margin-top: var(--spacing-100);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
@media (max-width:1800px) {
  .idx_product .product_box .product_swiper .swiper_btn.prev {
    transform: translate(-150%, -50%);
  }
  .idx_product .product_box .product_swiper .swiper_btn.next {
    transform: translate(150%, -50%);
  }
}
@media (max-width:1680px) {
  .idx_product .product_box .product_swiper .swiper_btn {
    width: 48px;
    height: 48px;
  }
  .idx_product .product_box .product_swiper .swiper_btn.prev {
    transform: translate(-50%, -50%);
  }
  .idx_product .product_box .product_swiper .swiper_btn.next {
    transform: translate(50%, -50%);
  }
}
@media (max-width:1024px) {
  .idx_product .product_box .classify_box .one {
    width: 100%;
  }
  .idx_product .product_box .product_swiper .swiper_box .pager_box {
    display: block;
  }
  .idx_product .product_box .product_swiper .swiper_btn {
    display: none;
  }
}
@media (max-width:768px) {
  .idx_product .product_box .classify_box {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
  }
  .idx_product .product_box .classify_box .one {
    width: 100%;
    padding: 24px 10px;
    border: 1px solid #F5F5F5;
  }
  .idx_product .product_box .classify_box .one a {
    visibility: visible;
  }
  .idx_product .product_box .classify_box .one .icon_box {
    width: 70%;
    height: 30px;
  }
  .idx_product .product_box .classify_box .one .icon_box .icon {
    opacity: 1 !important;
  }
  .idx_product .product_box .classify_box .one .icon_box .icon:last-child {
    opacity: 0 !important;
  }
  .idx_product .product_box .classify_box .one .title {
    height: auto;
    margin-top: 15px;
    color: #333333 !important;
  }
  .idx_product .product_box .classify_box .one::before,
  .idx_product .product_box .classify_box .one::after {
    display: none;
  }
  .idx_product .product_box .product_swiper {
    display: none;
  }
}
@media (max-width:480px) {
  .idx_product .product_box .classify_box {
    grid-template-columns: repeat(2, 1fr);
  }
  .idx_product .product_box .product_swiper {
    margin-top: 20px;
  }
}
/* --------------------------- */
/* ------------------------- */
/* 解决方案 */
.idx_solution {
  width: 100%;
  height: auto;
  min-height: 100vh;
  overflow: hidden;
}
.idx_solution .solution_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-160) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.idx_solution .solution_box .solution_head {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-160);
  overflow: hidden;
}
.idx_solution .solution_box .solution_head .title {
  width: 100%;
  height: auto;
  font-size: var(--font40);
  color: #FFFFFF;
  line-height: 1.375;
  overflow: hidden;
}
.idx_solution .solution_box .solution_head .line {
  width: var(--spacing-80);
  height: auto;
  margin-top: var(--spacing-50);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  grid-gap: 25px;
  --after-color: #FFFFFF;
}
.idx_solution .solution_box .solution_head .line::before,
.idx_solution .solution_box .solution_head .line::after,
.idx_solution .solution_box .solution_head .line i {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--after-color);
}
.idx_solution .solution_box .solution_head .line i {
  width: 66%;
}
.idx_solution .solution_box .solution_head .line::after {
  width: 30%;
}
.idx_solution .solution_box .solution_head .idx_more {
  margin: var(--spacing-50) 0 0 var(--spacing-60);
}
.idx_solution .solution_box .solution_body {
  width: 65%;
  height: auto;
}
.idx_solution .solution_box .solution_body .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--spacing-140) var(--spacing-70);
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box .img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box .menu {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  padding: var(--spacing-30);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 18px;
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box .menu .one {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box .menu .one a {
  width: 100%;
  height: auto;
  padding: 12px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-radius: var(--border-radius10);
  border: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box .menu .one a .word {
  width: 100%;
  height: auto;
  flex: 1;
  font-size: var(--font16);
  font-weight: 700;
  line-height: 1.3125;
  color: #FFFFFF;
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box .menu .one a .icon {
  width: 5px;
  margin-left: 10px;
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box .menu .one a:hover {
  background: rgba(255, 255, 255, 0.4);
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .details_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-30);
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .details_box .title {
  width: 100%;
  height: auto;
  font-size: var(--font30);
  font-weight: 700;
  color: #FFFFFF;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .details_box .details {
  width: 100%;
  height: auto;
  margin-top: 1em;
  font-size: var(--font16);
  line-height: 1.3125;
  color: #FFFFFF;
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide:nth-child(even) {
  transform: translateY(25vh);
}
.idx_solution .solution_box .solution_body .swiper-wrapper::after {
  content: '';
  width: 100%;
  height: calc(25vh - 140px);
  display: block;
  pointer-events: none;
}
.idx_solution .solution_box .solution_body .pager_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-30);
  display: none;
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .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;
  overflow: hidden;
}
.idx_solution .solution_box .solution_body .pager_box .pager * {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFFFFF;
  opacity: 0.2;
  cursor: pointer;
}
.idx_solution .solution_box .solution_body .pager_box .pager * + * {
  margin-left: 7px;
}
.idx_solution .solution_box .solution_body .pager_box .pager .active {
  background: #FFFFFF;
  opacity: 1;
}
@media (max-width:1024px) {
  .idx_solution .solution_box {
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
  .idx_solution .solution_box .solution_head {
    width: 100%;
    margin-top: 0;
  }
  .idx_solution .solution_box .solution_head .idx_more {
    margin-left: 0;
  }
  .idx_solution .solution_box .solution_body {
    width: 100%;
    flex: 1;
    margin-top: 60px;
  }
  .idx_solution .solution_box .solution_body .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box {
    flex: 1;
  }
  .idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box .img {
    display: none;
  }
  .idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box .menu {
    padding: 0;
    position: relative;
    grid-gap: 10px;
  }
  .idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .details_box {
    margin: 0 0 30px;
  }
  .idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide:nth-child(even) {
    transform: translateY(0);
  }
  .idx_solution .solution_box .solution_body .swiper-wrapper::after {
    display: none;
  }
  .idx_solution .solution_box .solution_body .pager_box {
    display: block;
  }
}
@media (max-width:480px) {
  .idx_solution .solution_box .solution_body .swiper-wrapper .swiper-slide .images_box .menu {
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_solution .swiper_box {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}
.idx_solution .swiper_box ul,
.idx_solution .swiper_box li {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.idx_solution .swiper_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:1024px) {
  .idx_solution {
    height: 60vh;
    background-color: #FAFAFA;
  }
  .idx_solution .center_box {
    height: 100%;
  }
}
/* ------------------------- */
/* ------------------------- */
/* 关于我们 */
.idx_about {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
}
.idx_about .about_head {
  width: 100%;
  height: auto;
  background: #FFFFFF;
}
.idx_about .about_head .about_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-160) 0 var(--spacing-60);
}
.idx_about .about_head .about_box .logo_box {
  width: 100%;
  height: 75px;
  position: relative;
  z-index: 1;
  background: #000;
  transform: scale(5);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.87, 0.11, 0.33, 0.87);
}
.idx_about .about_head .about_box .logo_box .active {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  text-align: center;
}
.idx_about .about_head .about_box .logo_box .active .img {
  width: 100%;
  height: 105%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  font-size: 0;
  background: #FFFFFF;
  mix-blend-mode: screen;
  overflow: hidden;
}
.idx_about .about_head .about_box .logo_box .active .video {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 0;
  background-color: #000000;
  overflow: hidden;
}
.idx_about .about_head .about_box .logo_box .active .video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_about .about_head .about_box .idx_title {
  margin-top: var(--spacing-40);
}
.idx_about .about_head .about_box .idx_more {
  margin-top: var(--spacing-70);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_about .about_head.active .about_box .logo_box {
  transform: scale(1);
  opacity: 1;
}
.idx_about .about_body {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_about .about_body .about_box {
  width: 100%;
  height: auto;
  padding: 25vh 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--spacing-160);
  overflow: hidden;
}
.idx_about .about_body .about_box .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_about .about_body .about_box .item .number {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.idx_about .about_body .about_box .item .number .beat {
  font-size: clamp(calc(40 / 16 * 1rem), calc((40 / 16 * 1rem) + ((60 - 40) * ((100vw - 1280 / 16 * 1rem) / (1920 - 1280)))), calc(60 / 16 * 1rem));
  font-weight: 700;
  color: #FFFFFF;
}
.idx_about .about_body .about_box .item .number .unit {
  font-size: var(--font16);
  color: #FFFFFF;
}
.idx_about .about_body .about_box .item .title {
  width: 100%;
  height: auto;
  padding-top: 1em;
  border-top: 1px solid #FFFFFF;
  text-align: center;
  font-weight: 200;
  font-size: var(--font18);
  color: #FFFFFF;
  overflow: hidden;
}
.idx_about .about_body .about_bgimg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  overflow: hidden;
}
.idx_about .about_body .about_bgimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:1440px) {
  .idx_about .about_body .about_box {
    padding: 15vh 0;
  }
}
@media (max-width:1024px) {
  .idx_about .about_head .about_box .logo_box {
    height: 48px;
  }
}
@media (max-width:768px) {
  .idx_about .about_head .about_box .logo_box {
    height: 36px;
  }
  .idx_about .about_body .about_box {
    padding: 60px 0;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
  .idx_about .about_body .about_box .item .number .beat {
    font-size: 34px;
  }
}
/* ------------------------- */
/* ------------------------- */
/* 新闻中心 */
.idx_news {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  background: #FFFFFF;
  overflow: hidden;
}
.idx_news .news_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-120) 0 var(--spacing-80);
  overflow: hidden;
}
.idx_news .news_box .news_swiper {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
  overflow: hidden;
}
.idx_news .news_box .news_swiper .swiper_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_news .news_box .news_swiper .swiper_box li {
  width: 25%;
  height: auto;
}
.idx_news .news_box .news_swiper .swiper_box li a {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
}
.idx_news .news_box .news_swiper .swiper_box li a .title_box {
  width: 100%;
  height: auto;
  padding-top: var(--spacing-30);
  border-top: 2px solid #6F6F6F;
  overflow: hidden;
}
.idx_news .news_box .news_swiper .swiper_box li a .title_box .title {
  width: 100%;
  height: calc(2em * 1.3);
  font-size: var(--font24);
  font-weight: 500;
  color: #333333;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.idx_news .news_box .news_swiper .swiper_box li a .title_box .time {
  width: 100%;
  height: auto;
  margin-top: 1em;
  font-size: var(--font16);
  color: #B0B0B0;
  line-height: 1.3125;
  overflow: hidden;
}
.idx_news .news_box .news_swiper .swiper_box li a .details_box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  padding: var(--spacing-20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background-color: #1753C3;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.idx_news .news_box .news_swiper .swiper_box li a .details_box .title {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.3;
  overflow: hidden;
}
.idx_news .news_box .news_swiper .swiper_box li a .details_box .icon {
  width: auto;
  height: auto;
  font-size: 0;
  transform: translateX(-50%);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.idx_news .news_box .news_swiper .swiper_box li a .img {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-30);
  overflow: hidden;
}
.idx_news .news_box .news_swiper .swiper_box li a .img .pb {
  padding-bottom: 54.48916409%;
}
.idx_news .news_box .news_swiper .swiper_box li a .img .ab {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.idx_news .news_box .news_swiper .swiper_box li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_news .news_box .news_swiper .swiper_box li a:hover .details_box {
  opacity: 1;
}
.idx_news .news_box .news_swiper .swiper_box li a:hover .details_box .icon {
  transform: translateX(0);
}
.idx_news .news_box .news_swiper .pager_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-30);
  overflow: hidden;
}
.idx_news .news_box .news_swiper .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;
  overflow: hidden;
}
.idx_news .news_box .news_swiper .pager_box .pager * {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.2;
  cursor: pointer;
}
.idx_news .news_box .news_swiper .pager_box .pager * + * {
  margin-left: 7px;
}
.idx_news .news_box .news_swiper .pager_box .pager .active {
  background: #d90202;
  opacity: 1;
}
.idx_news .news_box .idx_more {
  margin-top: var(--spacing-100);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
/* ------------------------- */
/* ------------------------- */
/* 内页Banner */
.inner_banner {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_banner .banner_box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: -webkit-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;
}
.inner_banner .banner_box .title {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: var(--font40);
  color: #FFFFFF;
  overflow: hidden;
}
.inner_banner .banner_box .subtitle {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 5px;
  font-size: var(--font18);
  color: #FFFFFF;
  overflow: hidden;
}
.inner_banner .banner_box .more {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-40);
  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;
  overflow: hidden;
}
.inner_banner .banner_box .more span.btn_v_play {
  width: auto;
  height: 60px;
  padding: 0 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font18);
  border-radius: 3px;
  background: #C70000;
  color: #FFFFFF;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  cursor: pointer;
}
.inner_banner .banner_box .more span.btn_v_play:hover {
  background: #E90549;
}
.inner_banner .banner_box .more a {
  width: auto;
  height: 60px;
  padding: 0 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: var(--font18);
  border-radius: 3px;
  background: #001466;
  color: #FFFFFF;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_banner .banner_box .more a:hover {
  background: #0733E3;
}
.inner_banner .images {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
.inner_banner .images.active::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  background: #000000;
  opacity: 0.21;
}
.inner_banner .images img, .inner_banner .images video {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: calc(100vh - var(--header-top-height) - var(--header-nav-height));
  object-fit: cover;
}
@media (max-width:1024px) {
  .inner_banner .banner_box .more a {
    height: 48px;
    padding: 0 3em;
  }
  .inner_banner .images img {
    min-height: 300px;
  }
}
@media (max-width:768px) {
  .inner_banner .images img {
    min-height: 240px;
  }
}
/* 标题 */
.inner_title {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: var(--font40);
  color: #333333;
  overflow: hidden;
}
.inner_subtitle {
  width: 100%;
  height: auto;
  margin-top: 0.5em;
  text-align: center;
  font-size: var(--font22);
  color: #333333;
  line-height: 1.33;
  overflow: hidden;
}
/* 面包屑导航 */
.breadcrumb_nav {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.breadcrumb_nav .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-40) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 10px;
  overflow: hidden;
}
.breadcrumb_nav .main_box i {
  font-size: 0;
}
.breadcrumb_nav .main_box,
.breadcrumb_nav .main_box a,
.breadcrumb_nav .main_box span {
  font-size: 12px;
  color: #666666;
}
.breadcrumb_nav .main_box a {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.breadcrumb_nav .main_box a:hover {
  color: #0733e3;
}
/* 分页 */
.paging_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 10px;
  overflow: hidden;
}
.paging_box * {
  width: auto;
  min-width: 3em;
  height: 36px;
  padding: 0 1.5em;
  display: -webkit-box;
  display: -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: 1px solid #adadad;
  font-size: var(--font14);
  color: #adadad;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  line-height: 1;
  vertical-align: top;
  overflow: hidden;
}
.paging_box a.active,
.paging_box a:hover {
  border-color: #1753c3;
  background: #1753c3;
  color: #FFFFFF;
}
@media (max-width:768px) {
  .paging_box {
    grid-gap: 5px;
  }
  .paging_box * {
    padding: 0 1em;
  }
}
/* 文案详情 */
.text_details {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.875;
  text-align: justify;
  overflow: hidden;
}
.text_details a {
  color: #333333;
}
.text_details a:hover {
  color: #0733E3;
}
.text_details > *:last-child {
  margin-bottom: 0;
}
.text_details table {
  font-size: var(--font16);
  width: 100%;
  color: #333333;
  border-width: 1px;
  border-color: #D9D9D9;
  border-collapse: collapse;
}
.text_details table tr:hover {
  background: #f5f5f5;
}
.text_details table th {
  border-width: 1px;
  padding: 8px;
  border-style: solid;
  border-color: #D9D9D9;
}
.text_details table td {
  border-width: 1px;
  padding: 6px 10px;
  border-style: solid;
  border-color: #D9D9D9;
}
/* 二级菜单 */
.subnav_box {
  width: 100%;
  height: auto;
  background: #F5F7FF;
  overflow: hidden;
}
.subnav_box .subnav {
  width: 100%;
  height: auto;
  min-height: 60px;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: var(--spacing-60);
  overflow: hidden;
}
.subnav_box .subnav a {
  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;
  font-size: var(--font16);
  color: #333333;
  overflow: hidden;
}
.subnav_box .subnav a:hover,
.subnav_box .subnav a.active {
  color: #0733E3;
}
/* ------------------------- */
/* ------------------------- */
/* 内页 - 产品中心 */
/* 产品中心 */
.inner_product { width: 100%; height: auto; overflow: hidden; }
.inner_product .product_box { width: 100%; height: auto; padding: var(--spacing-100) 0; display: grid; grid-template-columns: repeat(1, 1fr); grid-gap: var(--spacing-100); overflow: hidden; }
.inner_product .product_box .product_classify { width: 100%; height: auto; overflow: hidden; }
.inner_product .product_box .product_classify .menu_box { width: 100%; height: auto; margin-top: var(--spacing-70); display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: var(--spacing-30); overflow: hidden; }
.inner_product .product_box .product_classify .menu_box .one { width: 100%; height: auto; overflow: hidden; }
.inner_product .product_box .product_classify .menu_box .one a { width: 100%; height: auto; display: block; position: relative; z-index: 1; background: #f0f0f0; overflow: hidden; }
.inner_product .product_box .product_classify .menu_box .one a .details { width: 100%; height: auto; padding: var(--spacing-60) var(--spacing-30); text-align: center; overflow: hidden; }
.inner_product .product_box .product_classify .menu_box .one a .details .icon { width: 100%; height: 48px; overflow: hidden; }
.inner_product .product_box .product_classify .menu_box .one a .details .title { width: 100%; height: auto; margin-top: 10px; font-size: var(--font16); color: #000; overflow: hidden; }
.inner_product .product_box .product_classify .menu_box .one a .more {
  width: 100%;
  height: auto;
  padding: 15px 10px;
  text-align: center;
  background-color: #38A7F4;
  font-size: 12px;
  color: #FFFFFF;
  opacity: 0;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_product .product_box .product_classify .menu_box .one a::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border: 1px solid #38A7F4;
  opacity: 0;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_product .product_box .product_classify .menu_box .one a:hover .more,
.inner_product .product_box .product_classify .menu_box .one a:hover::after {
  opacity: 1;
}
@media (max-width:768px) {
  .inner_product .product_box .product_classify .menu_box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5px;
  }
  .inner_product .product_box .product_classify .menu_box .one a .details {
    padding: 30px 15px;
  }
  .inner_product .product_box .product_classify .menu_box .one a .details .icon {
    height: 30px;
  }
  .inner_product .product_box .product_classify .menu_box .one a .more {
    display: none;
  }
}
.inner_product .product_box .product_menu {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_product .product_box .product_menu .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-70);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--spacing-30);
}
.inner_product .product_box .product_menu .menu_box .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_product .product_box .product_menu .menu_box .item a {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_product .product_box .product_menu .menu_box .item a .img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_product .product_box .product_menu .menu_box .item a .img .pb {
  padding-bottom: 75.19552575%;
}
.inner_product .product_box .product_menu .menu_box .item a .img .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_product .product_box .product_menu .menu_box .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_product .product_box .product_menu .menu_box .item a .title {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.74);
  padding: 1em 10px;
  font-size: var(--font16);
  color: #333333;
  text-align: center;
  overflow: hidden;
}
.inner_product .product_box .product_menu .menu_box .item a:hover .img .ab {
  transform: scale(1.05);
}
@media (max-width:1024px) {
  .inner_product .product_box .product_menu .menu_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5%;
  }
  .inner_product .product_box .product_menu .menu_box .item {
    width: 100%;
  }
}
@media (max-width:480px) {
  .inner_product .product_box .product_menu .menu_box {
    display: block;
  }
  .inner_product .product_box .product_menu .menu_box .item + .item {
    margin-top: 20px;
  }
}

/* 筛选列表 */
.inner_product_filter { width: 100%; height: auto; background: #F6F6F6; overflow: hidden; }
.inner_product_filter .product_box { width: 100%; height: auto; padding: 30px 0 60px; overflow: hidden; }
.inner_product_filter .product_box .filter_box { width: 100%; height: auto; padding: 20px; background: #FFFFFF; overflow: hidden; }
.inner_product_filter .product_box .filter_box .item { width: 100%; height: auto; max-width: 1400px; margin: 0 auto; padding: 20px 0;
  display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex;
  grid-gap: 10px 20px; overflow: hidden;
}
.inner_product_filter .product_box .filter_box .item .label { min-width: 5em; font-size: var(--font14); color: #333333; line-height:var(--font48);}
.inner_product_filter .product_box .filter_box .item .menu { width: 100%; flex: 1; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; flex-wrap: wrap; -ms-flex-wrap: wrap; grid-gap: 10px;
  -webkit-box-self: center; -ms-align-self: center; -webkit-align-self: center; align-self: center;
}
.inner_product_filter .product_box .filter_box .item .menu a { width: auto; height: auto; padding: 5px 10px; border-radius: 5px; font-size: var(--font14); color: #666666; overflow: hidden; }
.inner_product_filter .product_box .filter_box .item .menu a.active { background: #0733E3; color: #FFFFFF; }
.inner_product_filter .product_box .filter_box .item + .item { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.inner_product_filter .product_box .filter_text { width: 100%; height: auto; margin-top: 50px; overflow: hidden; }
.inner_product_filter .product_box .filter_text .headline { width: 100%; height: auto; padding-bottom: 10px; border-bottom: 1px solid rgba(0, 0, 0, 0.1); font-size: var(--font28); color: #000000; overflow: hidden; }
.inner_product_filter .product_box .filter_text .details { width: 100%; height: auto; margin-top: 20px; font-size: var(--font16); color: #666666; line-height: 1.875; overflow: hidden; }
.inner_product_filter .product_box .menu_box { width: 100%; height: auto; margin-top: 60px; display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 20px; overflow: hidden; }
.inner_product_filter .product_box .menu_box .swiper_item { width: 100%; height: auto; background: #FFFFFF; overflow: hidden; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_box { width: 100%; height: auto; position: relative; z-index: 1; overflow: hidden; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_box .swiper-slide { width: 100%; height: auto; overflow: hidden; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_box .swiper-slide a { pointer-events: initial; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_box .swiper-slide .pb { padding-bottom: 100%; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_box .swiper-slide .ab { display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_box .swiper-slide img { max-width: 100%; max-height: 100%; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_box .pager_box { width: 100%; height: auto; position: absolute; z-index: 1; left: 0; bottom: 10px; display: none; overflow: hidden; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_box .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: 6px; overflow: hidden; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_box .pager_box .pager * { width: 8px; height: 8px; border-radius: 50%; background: #000000; opacity: 0.2; -webkit-transition: all 0.25s ease; -o-transition: all 0.25s ease; transition: all 0.25s ease; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_box .pager_box .pager .active { opacity: 1; background: #0733E3; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_pager { width: 100%; height: auto; padding: 0 30px; display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; grid-gap: 20px; overflow: hidden; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_pager .swiper-btn { width: 30px; height: 30px; line-height:26px; border-radius: 50%; background: #C4C4C4; cursor: pointer; -webkit-transition: all 0.25s ease; -o-transition: all 0.25s ease; transition: all 0.25s ease;  text-align: center;}
.inner_product_filter .product_box .menu_box .swiper_item .swiper_pager .swiper-btn:hover { background: #0733E3; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_pager .swiper-btn img {max-width:50%; max-height:50%;}
.inner_product_filter .product_box .menu_box .swiper_item .swiper_pager .swiper_tabs { width: 100%; height: auto; flex: 1; overflow: hidden; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_pager .swiper_tabs .swiper-slide { width: 20%; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_pager .swiper_tabs .swiper-slide .img { width: 100%; height: auto; border: 1px solid rgba(0, 0, 0, 0.1); -webkit-transition: all 0.25s ease; -o-transition: all 0.25s ease; transition: all 0.25s ease; cursor: pointer; overflow: hidden; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_pager .swiper_tabs .swiper-slide .img .pb { padding-bottom: 100%; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_pager .swiper_tabs .swiper-slide .img .ab { display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_pager .swiper_tabs .swiper-slide .img img { max-width: 100%; max-height: 100%; }
.inner_product_filter .product_box .menu_box .swiper_item .swiper_pager .swiper_tabs .swiper-slide.active .img { border-color: #0733E3; }
.inner_product_filter .product_box .menu_box .swiper_item .info_box { width: 100%; height: auto; margin-top: 20px; padding: 10px 20px 30px; text-align: center; overflow: hidden; }
.inner_product_filter .product_box .menu_box .swiper_item .info_box .title { width: 100%; height: auto; font-size: var(--font20); color: #000000; overflow: hidden; }
.inner_product_filter .product_box .menu_box .swiper_item .info_box .details { width: 100%; height: calc(2em * 1.4); margin-top: 0.5em; font-size: var(--font16); color: #999999; line-height: 1.4; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
.inner_product_filter .product_box .paging_box { margin-top: 60px; }
@media (max-width:1440px) {
  .inner_product_filter .product_box .menu_box { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width:1024px) {
  .inner_product_filter .product_box .menu_box { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:991px) {
  .inner_product_filter .product_box .menu_box .swiper_item .swiper_box .pager_box { display: block; }
  .inner_product_filter .product_box .menu_box .swiper_item .swiper_pager { display: none; }
}
@media (max-width:768px) {
  .inner_product_filter .product_box .menu_box { grid-template-columns: 100%; }
}
/* -------------- */


/* 详情 */
.inner_product_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_product_box .product_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0;
}
.inner_product_box .product_box > div + div {
  margin-top: var(--spacing-100);
}
.inner_product_box .product_box .product_swiper { width: 100%; height: auto; }
.inner_product_box .product_box .product_swiper .classify_box {
  width: 100%;
  height: auto;
  margin-top: 40px;
  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;
  overflow: hidden;
}
.inner_product_box .product_box .product_swiper .classify_box .one {
  width: 15%;
  height: auto;
  position: relative;
  z-index: 1;
  cursor: pointer;
  overflow: hidden;
}
.inner_product_box .product_box .product_swiper .classify_box .one a {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.inner_product_box .product_box .product_swiper .classify_box .one a .icon {
  width: 100%;
  height: 48px;
  background-color: #FFFFFF;
  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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
  display:none;
}
.inner_product_box .product_box .product_swiper .classify_box .one a .title {
  width: 100%;
  height: calc(2em * 1.5);
  /*margin-top: var(--spacing-20);*/
  text-align: center;
  font-size: var(--font16);
  color: #333333;
  overflow: hidden;
}
.inner_product_box .product_box .product_swiper .classify_box .one a::before,
.inner_product_box .product_box .product_swiper .classify_box .one a::after {
  content: '';
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  pointer-events: none;
}
.inner_product_box .product_box .product_swiper .classify_box .one a::before {
  width: 100%;
  height: 1px;
  background: #333333;
}
.inner_product_box .product_box .product_swiper .classify_box .one a::after {
  width: 0;
  height: 5px;
  z-index: 1;
  background: #0733E3;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_product_box .product_box .product_swiper .classify_box .one.active a .title,
.inner_product_box .product_box .product_swiper .classify_box .one:hover a .title { color: #0733E3; }
.inner_product_box .product_box .product_swiper .classify_box .one.active a::after,
.inner_product_box .product_box .product_swiper .classify_box .one:hover a::after { width: 100%; }
.inner_product_box .product_box .product_swiper .details_product { width: 100%; height: auto; margin-top: var(--spacing-100); display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; overflow: hidden; }
.inner_product_box .product_box .product_swiper .details_product .img { width: 40%; height: auto; margin: 0 5%; text-align: center; overflow: hidden; }
.inner_product_box .product_box .product_swiper .details_product .img .pb { padding-bottom: 70%; }
.inner_product_box .product_box .product_swiper .details_product .img .ab { display: -webkit-box; display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-box-align: center; -ms-flex-align: center; -webkit-align-items: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; -webkit-justify-content: center; justify-content: center; }
.inner_product_box .product_box .product_swiper .details_product .content { width: 100%; height: auto; flex: 1; overflow: hidden; }
.inner_product_box .product_box .product_swiper .details_product .content .title { width: 100%; height: auto; overflow: hidden; }
.inner_product_box .product_box .product_swiper .details_product .content .title,
.inner_product_box .product_box .product_swiper .details_product .content .title h1,
.inner_product_box .product_box .product_swiper .details_product .content .title h2 { font-size: var(--font28); font-weight: 400; color: #333333; }
.inner_product_box .product_box .product_swiper .details_product .content .text_details { margin-top: 20px; color: #999999; }
.inner_product_box .product_box .product_swiper .details_product .content .text_details > * + * { margin-top: 1em; }
.inner_product_box .product_box .product_swiper .swiper_box { width: 100%; height: auto; position: relative; z-index: 1; margin-top: var(--spacing-80); }
.inner_product_box .product_box .product_swiper .swiper_box .swiper-slide { width: 33.33%; height: auto; pointer-events: none; }
.inner_product_box .product_box .product_swiper .swiper_box .swiper-slide .product_subnav { width: 100%; height: auto;  padding: 28px 16px var(--spacing-50); display: block; background: rgba(230, 246, 255, 0.2) url('../images/inner_pro_bg.png') no-repeat center / 100% 100%; border-radius: 3px; border: 1px solid rgba(79, 186, 255, 0.15); box-shadow: -11px 10px 37px rgba(73, 184, 255, 0.09); visibility: hidden; opacity: 0; -webkit-transition: all 0.45s ease; -o-transition: all 0.45s ease; transition: all 0.45s ease; }
.inner_product_box .product_box .product_swiper .swiper_box .swiper-slide .product_subnav .headline { width: 100%; height: auto; font-size: var(--font28); color: #000000; }
.inner_product_box .product_box .product_swiper .swiper_box .swiper-slide .product_subnav .headline a { font-size: var(--font28); color: #000000; -webkit-transition: all 0.45s ease; -o-transition: all 0.45s ease; transition: all 0.45s ease;  }
.inner_product_box .product_box .product_swiper .swiper_box .swiper-slide .product_subnav .headline a:hover { color: #0733E3; }
.inner_product_box .product_box .product_swiper .swiper_box .swiper-slide .product_subnav .menu { width: 100%; height: auto; margin-top: 20px; }
.inner_product_box .product_box .product_swiper .swiper_box .swiper-slide .product_subnav .menu .one { width: 100%; height: auto; }
.inner_product_box .product_box .product_swiper .swiper_box .swiper-slide .product_subnav .menu .one + .one { margin-top: 10px; }
.inner_product_box .product_box .product_swiper .swiper_box .swiper-slide .product_subnav .menu .one a { width: 100%; height: auto; font-size: var(--font16); color: #7C7C7C; overflow: hidden; -webkit-transition: all 0.45s ease; -o-transition: all 0.45s ease; transition: all 0.45s ease; }
.inner_product_box .product_box .product_swiper .swiper_box .swiper-slide .product_subnav .menu .one a:hover { color: #0733E3; }
.inner_product_box .product_box .product_swiper .swiper_box .swiper-slide.active { pointer-events: initial; }
.inner_product_box .product_box .product_swiper .swiper_box .swiper-slide.active .product_subnav { visibility: visible; opacity: 1; }
.inner_product_box .product_box .product_swiper .swiper_box .pager_box { width: 100%; height: auto; margin-top: var(--spacing-30); display: none; overflow: hidden; }
.inner_product_box .product_box .product_swiper .swiper_box .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; overflow: hidden; }
.inner_product_box .product_box .product_swiper .swiper_box .pager_box .pager * {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.2;
  cursor: pointer;
}
.inner_product_box .product_box .product_swiper .swiper_box .pager_box .pager * + * {
  margin-left: 7px;
}
.inner_product_box .product_box .product_swiper .swiper_box .pager_box .pager .active {
  background: #d90202;
  opacity: 1;
}
.inner_product_box .product_box .product_swiper .swiper_box .swiper_btn {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  z-index: 10;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 13px 10px 41px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_product_box .product_box .product_swiper .swiper_box .swiper_btn.prev {
  left: 0;
  transform: translate(-200%, -50%);
}
.inner_product_box .product_box .product_swiper .swiper_box .swiper_btn.prev::after {
  content: '';
  width: 20%;
  height: 20%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%) rotate(45deg);
  border-radius: 2px;
  border: 1px solid #ed2d2d;
  border-right: 0;
  border-top: 0;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_product_box .product_box .product_swiper .swiper_box .swiper_btn.next {
  right: 0;
  transform: translate(200%, -50%);
}
.inner_product_box .product_box .product_swiper .swiper_box .swiper_btn.next::after {
  content: '';
  width: 20%;
  height: 20%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-60%, -50%) rotate(45deg);
  border-radius: 2px;
  border: 1px solid #ed2d2d;
  border-left: 0;
  border-bottom: 0;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_product_box .product_box .product_swiper .swiper_box .swiper_btn:hover {
  background: #ed2d2d;
}
.inner_product_box .product_box .product_swiper .swiper_box .swiper_btn:hover::after {
  border-color: #FFFFFF;
}
.inner_product_box .product_box .product_swiper .swiper_box .swiper_btn.active {
  opacity: 0;
}
@media (max-width:1800px) {
  .inner_product_box .product_box .product_swiper .swiper_box .swiper_btn.prev {
    transform: translate(-150%, -50%);
  }
  .inner_product_box .product_box .product_swiper .swiper_box .swiper_btn.next {
    transform: translate(150%, -50%);
  }
}
@media (max-width:1680px) {
  .inner_product_box .product_box .product_swiper .swiper_box .swiper_btn {
    width: 48px;
    height: 48px;
  }
  .inner_product_box .product_box .product_swiper .swiper_box .swiper_btn.prev {
    transform: translate(-50%, -50%);
  }
  .inner_product_box .product_box .product_swiper .swiper_box .swiper_btn.next {
    transform: translate(50%, -50%);
  }
}
@media (max-width:1024px) {
  .inner_product_box .product_box .product_swiper .classify_box .one {
    width: 100%;
  }
  .inner_product_box .product_box .product_swiper .details_product .img {
    width: 50%;
    margin: 0;
  }
  .inner_product_box .product_box .product_swiper .swiper_box .pager_box {
    display: block;
  }
  .inner_product_box .product_box .product_swiper .swiper_box .swiper_btn {
    display: none;
  }
}
@media (max-width:768px) {
  .inner_product_box .product_box .product_swiper .classify_box {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5px;
  }
  .inner_product_box .product_box .product_swiper .classify_box .one {
    width: 100%;
    padding: 24px 10px;
    border: 1px solid #F5F5F5;
  }
  .inner_product_box .product_box .product_swiper .classify_box .one a .icon {
    width: 70%;
    height: 30px;
    margin: 0 auto;
  }
  .inner_product_box .product_box .product_swiper .classify_box .one a .title {
    height: auto;
    /*margin-top: 15px;*/
    color: #333333;
  }
  .inner_product_box .product_box .product_swiper .classify_box .one a::before,
  .inner_product_box .product_box .product_swiper .classify_box .one a::after {
    display: none;
  }
  .inner_product_box .product_box .product_swiper .details_product {
    display: block;
  }
  .inner_product_box .product_box .product_swiper .details_product .img {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .inner_product_box .product_box .product_swiper .details_product .content {
    margin-top: 30px;
  }
}
@media (max-width:480px) {
  .inner_product_box .product_box .product_swiper .classify_box {
    grid-template-columns: repeat(2, 1fr);
  }
  .inner_product_box .product_box .product_swiper .swiper_box {
    margin-top: 20px;
  }
}
.inner_product_box .product_box .product_menu {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_product_box .product_box .product_menu .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--spacing-20);
  overflow: hidden;
}
.inner_product_box .product_box .product_menu .menu_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #FAFBFF;
  overflow: hidden;
}
.inner_product_box .product_box .product_menu .menu_box .item .hot {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
.inner_product_box .product_box .product_menu .menu_box .item .hot .word {
  width: auto;
  height: auto;
  padding: 15px 2em;
  border-radius: 0 0 20px 0;
  background: rgba(0, 81, 255, 0.52);
  font-size: 12px;
  color: #FFFFFF;
  overflow: hidden;
}
.inner_product_box .product_box .product_menu .menu_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.inner_product_box .product_box .product_menu .menu_box .item .img .pb {
  padding-bottom: 68.42637363%;
}
.inner_product_box .product_box .product_menu .menu_box .item .img .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_product_box .product_box .product_menu .menu_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_product_box .product_box .product_menu .menu_box .item .details_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 20px var(--spacing-30);
  overflow: hidden;
}
.inner_product_box .product_box .product_menu .menu_box .item .details_box .title {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #333333;
  overflow: hidden;
}
.inner_product_box .product_box .product_menu .menu_box .item .details_box .details {
  width: 100%;
  height: calc(2em * 1.33);
  margin-top: 10px;
  font-size: var(--font16);
  color: #5C5C5C;
  line-height: 1.33;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.inner_product_box .product_box .product_menu .menu_box .item .details_box .more {
  width: 100%;
  height: auto;
  margin-top: 10px;
  text-align: right;
  font-size: 12px;
  color: #BFBFBF;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_product_box .product_box .product_menu .menu_box .item::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  border: 1px solid #0733E3;
  opacity: 0;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_product_box .product_box .product_menu .menu_box .item:hover .img .ab {
  transform: scale(1.05);
}
.inner_product_box .product_box .product_menu .menu_box .item:hover .details_box .more {
  color: #0733E3;
}
.inner_product_box .product_box .product_menu .menu_box .item:hover::after {
  opacity: 1;
}
@media (max-width:1024px) {
  .inner_product_box .product_box .product_menu .menu_box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .inner_product_box .product_box .product_menu .menu_box {
    display: block;
  }
  .inner_product_box .product_box .product_menu .menu_box .item + .item {
    margin-top: 20px;
  }
  .inner_product_box .product_box .product_menu .list_box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}
/* 详情 */
.inner_product_details {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_product_details .product_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0;
}
.inner_product_details .product_box .product_head {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner_product_details .product_box .product_head .product_swiper {
  width: 50%;
  max-width: 650px;
  height: 100%;
  position: relative;
  z-index: 1;
}
.inner_product_details .product_box .product_head .product_swiper .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .product_swiper .swiper_box::before {
    content: ''; width: 100%; height: 0; position: absolute; left: 0; top: 0; z-index: 10; padding-bottom: 93.07692308%;
}
.inner_product_details .product_box .product_head .product_swiper .swiper_box .swiper-wrapper { height: auto; }
.inner_product_details .product_box .product_head .product_swiper .swiper_box .pb { padding-bottom: 93.07692308%; }
.inner_product_details .product_box .product_head .product_swiper .swiper_box .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inner_product_details .product_box .product_head .product_swiper .swiper_box:hover ~ .big_img {
  opacity: 1;
}
.inner_product_details .product_box .product_head .product_swiper .big_img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 10;
  border: 1px solid #e0e0e0;
  background: #FFFFFF;
  opacity: 0;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  pointer-events: none;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .product_swiper .big_img .pb {
  padding-bottom: 93.07692308%;
}
.inner_product_details .product_box .product_head .product_swiper .big_img .img {
  width: 200%;
  height: 200%;
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .product_swiper .thumbnail_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-40);
  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;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .product_swiper .thumbnail_box .swiper_thumbnail {
  width: 100%;
  height: auto;
  margin: 0 var(--spacing-20);
  order: 2;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .product_swiper .thumbnail_box .swiper_thumbnail .swiper-slide {
  width: 20%;
  height: auto;
  border: 1px solid #e0e0e0;
  transition: border var(--ani);
}
.inner_product_details .product_box .product_head .product_swiper .thumbnail_box .swiper_thumbnail .swiper-slide .pb {
  padding-bottom: 93.07692308%;
}
.inner_product_details .product_box .product_head .product_swiper .thumbnail_box .swiper_thumbnail .swiper-slide .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inner_product_details .product_box .product_head .product_swiper .thumbnail_box .swiper_thumbnail .swiper-slide.active {
  border-color: #1753c3;
}
.inner_product_details .product_box .product_head .product_swiper .thumbnail_box .swiper_btn {
  width: 30px;
  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;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_product_details .product_box .product_head .product_swiper .thumbnail_box .swiper_btn svg {
  height: 30%;
}
.inner_product_details .product_box .product_head .product_swiper .thumbnail_box .swiper_btn svg path {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_product_details .product_box .product_head .product_swiper .thumbnail_box .swiper_btn.prev {
  order: 1;
}
.inner_product_details .product_box .product_head .product_swiper .thumbnail_box .swiper_btn.next {
  order: 3;
}
.inner_product_details .product_box .product_head .product_swiper .thumbnail_box .swiper_btn:hover svg path {
  stroke: #1753c3;
}
.inner_product_details .product_box .product_head .product_swiper .pager_box {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 10;
  display: none;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .product_swiper .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;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .product_swiper .pager_box .pager * {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.2;
  cursor: pointer;
}
.inner_product_details .product_box .product_head .product_swiper .pager_box .pager * + * {
  margin-left: 7px;
}
.inner_product_details .product_box .product_head .product_swiper .pager_box .pager .active {
  background: #d90202;
  opacity: 1;
}
.inner_product_details .product_box .product_head .content {
  width: 100%;
  height: auto;
  margin-left: var(--spacing-60);
  flex: 1;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .content .title {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .content .title,
.inner_product_details .product_box .product_head .content .title h1 {
  font-size: var(--font28);
  font-weight: blod;
  line-height: 135.71428571%;
  color: #333333;
}
.inner_product_details .product_box .product_head .content .details_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-30);
  display: table;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .content .details_box .item {
  width: 100%;
  height: auto;
  display: table-row;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .content .details_box .item .label {
  width: auto;
  height: auto;
  padding: 10px;
  display: table-cell;
  text-align: right;
  font-size: var(--font16);
  color: #333333;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .content .details_box .item .details {
  width: 100%;
  height: auto;
  display: table-cell;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 5px var(--spacing-20);
  font-size: var(--font16);
  color: #333333;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .content .details_box .item .details .word {
  width: auto;
  height: auto;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .content .details_box .item .details .word::before {
  content: '';
  width: 17px;
  height: 17px;
  display: inline-block;
  background: url('../images/icon_yes.png') no-repeat center;
  vertical-align: middle;
  margin-right: 5px;
}
.inner_product_details .product_box .product_head .content .details_box .item + .item {
  margin-top: 10px;
}
.inner_product_details .product_box .product_head .content .more_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-70);
  display: -webkit-box;
  display: -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: 20px;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .content .more_box a {
  width: 50%;
  max-width: 220px;
  height: 60px;
  padding: 0 3em;
  display: -webkit-box;
  display: -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: #1753c3;
  border-radius: 3px;
  font-size: var(--font16);
  color: #FFFFFF;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_product_details .product_box .product_head .content .more_box a:last-child {
  background: transparent;
  border: 1px solid #1753c3;
  color: #1753c3;
}
.inner_product_details .product_box .product_head .content .more_box a:hover {
  filter: brightness(1.2);
}
@media (max-width:1024px) {
  .inner_product_details .product_box .product_head .content .more_box a {
    max-width: 140px;
    height: 48px;
    padding: 0 2em;
  }
}
@media (max-width:768px) {
  .inner_product_details .product_box .product_head {
    display: block;
  }
  .inner_product_details .product_box .product_head .product_swiper {
    width: 100%; max-width: 100%; height: auto;
  }
  .inner_product_details .product_box .product_head .product_swiper .thumbnail_box,
  .inner_product_details .product_box .product_head .product_swiper .big_img {
    display: none;
  }
  .inner_product_details .product_box .product_head .product_swiper .pager_box {
    display: block;
  }
  .inner_product_details .product_box .product_head .content {
    margin: 30px 0 0;
  }
}
.inner_product_details .product_box .product_body {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-120);
  overflow: hidden;
}
.inner_product_details .product_box .product_body .pro_subnav {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_product_details .product_box .product_body .pro_subnav .one {
  padding: 0 2em 1em;
  position: relative;
  z-index: 5;
  font-size: var(--font16);
  color: #333333;
  cursor: pointer;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_product_details .product_box .product_body .pro_subnav .one::after {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
  background: #1753C3;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_product_details .product_box .product_body .pro_subnav .one.active {
  color: #1753C3;
}
.inner_product_details .product_box .product_body .pro_subnav .one.active::after {
  width: 100%;
}
.inner_product_details .product_box .product_body .pro_subnav::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: #000;
  opacity: 0.1;
}
.inner_product_details .product_box .product_body .pro_swiper { width: 100%; height: auto; margin-top: 30px; overflow: hidden; }
.inner_product_details .product_box .product_body .pro_swiper .text_details { display: none; }
.inner_product_details .product_box .product_body .pro_swiper .text_details:first-child { display: block; }
@media (max-width:768px) {
  .inner_product_details .product_box .product_body .pro_subnav {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    grid-gap: 20px;
  }
  .inner_product_details .product_box .product_body .pro_subnav .one {
    padding: 0 0 1em;
  }
  .inner_product_details .product_box .product_body .pro_subnav::after {
    display: none;
  }
}
/* ------------------------- */
/* ------------------------- */
/* 内页 - 解决方案 */
/* 解决方案 */
.inner_solution_box {
  width: 100%;
  height: auto;
  background: #F4F7FA;
  overflow: hidden;
}
.inner_solution_box .solution_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0;
  overflow: hidden;
}
.inner_solution_box .solution_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--spacing-60) var(--spacing-40);
  overflow: hidden;
}
.inner_solution_box .solution_box .menu_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  overflow: hidden;
}
.inner_solution_box .solution_box .menu_box .item .img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_solution_box .solution_box .menu_box .item .img .pb {
  padding-bottom: 41.74041298%;
}
.inner_solution_box .solution_box .menu_box .item .img .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_solution_box .solution_box .menu_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_solution_box .solution_box .menu_box .item .details_box {
  width: 100%;
  height: auto;
  padding: 20px var(--spacing-30);
  overflow: hidden;
}
.inner_solution_box .solution_box .menu_box .item .details_box .title {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #333333;
  overflow: hidden;
}
.inner_solution_box .solution_box .menu_box .item .details_box .details {
  width: 100%;
  height: calc(2em * 1.33);
  margin-top: 10px;
  font-size: var(--font16);
  color: #5C5C5C;
  line-height: 1.33;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.inner_solution_box .solution_box .menu_box .item .details_box .more {
  width: 100%;
  height: auto;
  margin-top: 10px;
  text-align: right;
  font-size: 12px;
  color: #BFBFBF;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_solution_box .solution_box .menu_box .item::after {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: #0733E3;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_solution_box .solution_box .menu_box .item:hover .img .ab {
  transform: scale(1.05);
}
.inner_solution_box .solution_box .menu_box .item:hover .details_box .more {
  color: #0733E3;
}
.inner_solution_box .solution_box .menu_box .item:hover::after {
  width: 100%;
  left: 0;
}
.inner_solution_box .solution_box .list_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--spacing-30);
  overflow: hidden;
}
.inner_solution_box .solution_box .list_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 3px;
  overflow: hidden;
}
.inner_solution_box .solution_box .list_box .item a {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_solution_box .solution_box .list_box .item a .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 3px;
  overflow: hidden;
}
.inner_solution_box .solution_box .list_box .item a .img .pb {
  padding-bottom: 113.63636364%;
}
.inner_solution_box .solution_box .list_box .item a .img .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_solution_box .solution_box .list_box .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_solution_box .solution_box .list_box .item a .title {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  padding: 10px 20px;
  text-align: center;
  font-size: var(--font16);
  color: #FFFFFF;
  overflow: hidden;
}
.inner_solution_box .solution_box .list_box .item a::after {
  content: '';
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, #000, transparent);
  opacity: 0.8;
}
.inner_solution_box .solution_box .list_box .item a:hover .img .ab {
  transform: scale(1.05);
}
@media (max-width:768px) {
  .inner_solution_box .solution_box .menu_box {
    display: block;
  }
  .inner_solution_box .solution_box .menu_box .item + .item {
    margin-top: 20px;
  }
  .inner_solution_box .solution_box .list_box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}
/* 成功案列 */
.inner_case {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_case .case_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0;
  overflow: hidden;
}
.inner_case .case_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--spacing-60) var(--spacing-40);
  overflow: hidden;
}
.inner_case .case_box .menu_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_case .case_box .menu_box .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.inner_case .case_box .menu_box .item .img .pb {
  padding-bottom: 41.74041298%;
}
.inner_case .case_box .menu_box .item .img .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_case .case_box .menu_box .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_case .case_box .menu_box .item .details_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  padding: 20px var(--spacing-30);
  overflow: hidden;
}
.inner_case .case_box .menu_box .item .details_box .title {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #333333;
  overflow: hidden;
}
.inner_case .case_box .menu_box .item .details_box .details {
  width: 100%;
  height: calc(2em * 1.33);
  margin-top: 10px;
  font-size: var(--font16);
  color: #5C5C5C;
  line-height: 1.33;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.inner_case .case_box .menu_box .item .details_box .more {
  width: 100%;
  height: auto;
  margin-top: 10px;
  text-align: right;
  font-size: 12px;
  color: #BFBFBF;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_case .case_box .menu_box .item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border: 1px solid #BFBFBF;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_case .case_box .menu_box .item::after {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  background: #0733E3;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_case .case_box .menu_box .item:hover .img .ab {
  transform: scale(1.05);
}
.inner_case .case_box .menu_box .item:hover .details_box .more {
  color: #0733E3;
}
.inner_case .case_box .menu_box .item:hover::before {
  opacity: 0;
}
.inner_case .case_box .menu_box .item:hover::after {
  width: 100%;
  left: 0;
}
@media (max-width:768px) {
  .inner_case .case_box .menu_box {
    display: block;
  }
  .inner_case .case_box .menu_box .item + .item {
    margin-top: 20px;
  }
}
.inner_solution {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_solution .solution_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-60) 0 var(--spacing-100);
  overflow: hidden;
}
.inner_solution .solution_box .solution_details {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_solution .solution_box .solution_menu {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-100);
  overflow: hidden;
}
.inner_solution .solution_box .solution_menu .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-40);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--spacing-30);
  overflow: hidden;
}
.inner_solution .solution_box .solution_menu .menu_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 3px;
  overflow: hidden;
}
.inner_solution .solution_box .solution_menu .menu_box .item a {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_solution .solution_box .solution_menu .menu_box .item a .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 3px;
  overflow: hidden;
}
.inner_solution .solution_box .solution_menu .menu_box .item a .img .pb {
  padding-bottom: 77.47747748%;
}
.inner_solution .solution_box .solution_menu .menu_box .item a .img .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_solution .solution_box .solution_menu .menu_box .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_solution .solution_box .solution_menu .menu_box .item a .title {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  padding: 10px var(--spacing-20);
  text-align: center;
  font-size: var(--font16);
  color: #FFFFFF;
  overflow: hidden;
}
.inner_solution .solution_box .solution_menu .menu_box .item a::after {
  content: '';
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, #000, transparent);
  opacity: 0.8;
}
.inner_solution .solution_box .solution_menu .menu_box .item a:hover .img .ab {
  transform: scale(1.05);
}
@media (max-width:768px) {
  .inner_solution .solution_box .solution_menu .menu_box {
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 10px;
  }
  .inner_solution .solution_box .solution_menu .menu_box .item a .title {
    margin-top: 10px;
    padding: 0;
    position: relative;
    z-index: 1;
    color: #333333;
  }
  .inner_solution .solution_box .solution_menu .menu_box .item a::after {
    display: none;
  }
}
.inner_solution_details {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_solution_details .solution_details {
  width: 100%;
  height: auto;
  padding: var(--spacing-60) 0 var(--spacing-100);
  border-top: 1px solid #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: var(--spacing-80);
  overflow: hidden;
}
.inner_solution_details .solution_details .content_box {
  width: 75%;
  height: auto;
  flex: 1;
  overflow: hidden;
}
.inner_solution_details .solution_details .content_box .title_details {
  width: 100%;
  height: auto;
  text-align: center;
  overflow: hidden;
}
.inner_solution_details .solution_details .content_box .title_details .title {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_solution_details .solution_details .content_box .title_details .title,
.inner_solution_details .solution_details .content_box .title_details .title h1 {
  font-size: var(--font40);
  font-weight: 400;
  color: #333333;
}
.inner_solution_details .solution_details .content_box .title_details .menu {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 20px 10%;
  overflow: hidden;
}
.inner_solution_details .solution_details .content_box .title_details .menu .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;
}
.inner_solution_details .solution_details .content_box .title_details .menu .one .icon {
  width: auto;
  height: auto;
  font-size: 0;
}
.inner_solution_details .solution_details .content_box .title_details .menu .one .word {
  margin-left: 0.5em;
  font-size: 12px;
  color: #BDBDBD;
}
.inner_solution_details .solution_details .content_box .pager_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  padding: var(--spacing-40) 0;
  border-top: 1px solid #333333;
  overflow: hidden;
}
.inner_solution_details .solution_details .content_box .pager_box .one {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_solution_details .solution_details .content_box .pager_box .one a {
  font-size: var(--font14);
  color: #bdbdbd;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_solution_details .solution_details .content_box .pager_box .one a:hover {
  color: #1753c3;
}
.inner_solution_details .solution_details .sidebar_box {
  width: 25%;
  max-width: 355px;
  height: auto;
  overflow: hidden;
}
.inner_solution_details .solution_details .sidebar_box .headline {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  color: #333333;
  overflow: hidden;
}
.inner_solution_details .solution_details .sidebar_box .s_cooperation {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_solution_details .solution_details .sidebar_box .s_cooperation .item {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-20);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_solution_details .solution_details .sidebar_box .s_cooperation .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 3px;
  overflow: hidden;
}
.inner_solution_details .solution_details .sidebar_box .s_cooperation .item .img .pb {
  padding-bottom: 66.66%;
}
.inner_solution_details .solution_details .sidebar_box .s_cooperation .item .img .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_solution_details .solution_details .sidebar_box .s_cooperation .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_solution_details .solution_details .sidebar_box .s_cooperation .item .title {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  padding: 10px 20px;
  font-size: var(--font16);
  color: #FFFFFF;
  overflow: hidden;
}
.inner_solution_details .solution_details .sidebar_box .s_cooperation .item::after {
  content: '';
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, #000, transparent);
  opacity: 0.8;
}
.inner_solution_details .solution_details .sidebar_box .s_cooperation .item:hover .img .ab {
  transform: scale(1.05);
}
.inner_solution_details .solution_details .sidebar_box .s_case {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-40);
  overflow: hidden;
}
.inner_solution_details .solution_details .sidebar_box .s_case .menu {
  width: 100%;
  height: auto;
  margin-top: 10px;
  overflow: hidden;
}
.inner_solution_details .solution_details .sidebar_box .s_case .menu .one {
  width: 100%;
  height: auto;
  padding: 10px 0;
  border-bottom: 1px solid #8C8C8C;
  overflow: hidden;
}
.inner_solution_details .solution_details .sidebar_box .s_case .menu .one a {
  font-size: var(--font16);
  color: #333333;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_solution_details .solution_details .sidebar_box .s_case .menu .one a:hover {
  color: #0733E3;
}
.inner_solution_details .solution_details .sidebar_box .s_case .more {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-30);
  text-align: right;
  overflow: hidden;
}
.inner_solution_details .solution_details .sidebar_box .s_case .more a {
  font-size: 12px;
  color: #333333;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_solution_details .solution_details .sidebar_box .s_case .more a:hover {
  color: #0733E3;
}
@media (max-width:768px) {
  .inner_solution_details .solution_details {
    display: block;
  }
  .inner_solution_details .solution_details .content_box {
    width: 100%;
  }
  .inner_solution_details .solution_details .sidebar_box {
    display: none;
  }
}
.inner_case_hot {
  width: 100%;
  height: auto;
  background-color: #FAFBFF;
  overflow: hidden;
}
.inner_case_hot .case_box {
  width: 100%;
  height: auto;
  padding: 60px 0 var(--spacing-120);
}
.inner_case_hot .case_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-40);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--spacing-30);
}
.inner_case_hot .case_box .menu_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 3px;
  overflow: hidden;
}
.inner_case_hot .case_box .menu_box .item a {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_case_hot .case_box .menu_box .item a .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 3px;
  overflow: hidden;
}
.inner_case_hot .case_box .menu_box .item a .img .pb {
  padding-bottom: 77.47747748%;
}
.inner_case_hot .case_box .menu_box .item a .img .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_case_hot .case_box .menu_box .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_case_hot .case_box .menu_box .item a .title {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  padding: 10px var(--spacing-20);
  text-align: center;
  font-size: var(--font16);
  color: #FFFFFF;
  overflow: hidden;
}
.inner_case_hot .case_box .menu_box .item a::after {
  content: '';
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, #000, transparent);
  opacity: 0.8;
}
.inner_case_hot .case_box .menu_box .item a:hover .img .ab {
  transform: scale(1.05);
}
@media (max-width:768px) {
  .inner_case_hot .case_box .menu_box {
    margin-top: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 10px;
  }
  .inner_case_hot .case_box .menu_box .item a .title {
    margin-top: 10px;
    padding: 0;
    position: relative;
    z-index: 1;
    color: #333333;
  }
  .inner_case_hot .case_box .menu_box .item a::after {
    display: none;
  }
}
/* ------------------------- */
/* ------------------------- */
/* 内页 - 下载 */
/* 下载 */
.inner_file {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #eef3ff;
  padding-bottom: var(--spacing-60);
}
.inner_file .file_t_box {
  width: 100%;
  height: auto;
  text-align: center;
  box-sizing: border-box;
  padding: var(--spacing-60) 0;
  font-size: 38px;
}
.inner_file .file_box {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: var(--spacing-60);
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
}
.inner_file .file_box .half_list{
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding: 6px var(--spacing-20);
}
.inner_file .file_box .half_list a{
  font-size: 18px;
  line-height: 18px;
  margin: 0;
  padding: 0;
  color: #333;
}
.inner_file .file_box .half_list a img{
  height: 16px;
  margin-left: 5px;
  position: relative;
  top: -2px;
}
.inner_file .file_box .half_list a svg{
  width: 18px;
  height: 18px;
  fill: #999;
  position: relative;
  top: 2px;
  margin-right: 5px;
}
.inner_file .file_box .half_list a:hover{
  color: #0733E3;
  text-decoration: underline;
}
.inner_file .file_box .half_list a:hover svg{
  fill: #0733E3;
}
@media (max-width:768px) {
  .inner_file .file_box .half_list{
    width: 100%;
  }
}
/* ------------------------- */
/* ------------------------- */
/* 内页 - 合作专区 */
/* 合作专区 */
.inner_cooperation {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_cooperation .cooperation_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0;
  overflow: hidden;
}
.inner_cooperation .cooperation_box .menu {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-70);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--spacing-30);
}
.inner_cooperation .cooperation_box .menu .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_cooperation .cooperation_box .menu .item a {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_cooperation .cooperation_box .menu .item a .img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_cooperation .cooperation_box .menu .item a .img .pb {
  padding-bottom: 54.44%;
}
.inner_cooperation .cooperation_box .menu .item a .img .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_cooperation .cooperation_box .menu .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_cooperation .cooperation_box .menu .item a .title {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.74);
  padding: 10px;
  font-size: var(--font16);
  color: #333333;
  text-align: center;
  overflow: hidden;
}
.inner_cooperation .cooperation_box .menu .item a:hover .img .ab {
  transform: scale(1.05);
}
@media (max-width:1024px) {
  .inner_cooperation .cooperation_box .menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5%;
  }
  .inner_cooperation .cooperation_box .menu .item {
    width: 100%;
  }
}
@media (max-width:480px) {
  .inner_cooperation .cooperation_box .menu {
    display: block;
  }
  .inner_cooperation .cooperation_box .menu .item + .item {
    margin-top: 20px;
  }
}
/* 中科德能合作伙伴最新动态 */
.inner_news_hot {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_news_hot .news_box {
  width: 100%;
  height: auto;
  padding: 0 0 var(--spacing-100);
  overflow: hidden;
}
.inner_news_hot .news_box .news_main {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
  display: grid;
  grid-template-columns: 34.86% 1fr;
  grid-gap: var(--spacing-50);
  overflow: hidden;
}
.inner_news_hot .news_box .news_main .news_big {
  width: 100%;
  height: auto;
  font-size: 0;
  overflow: hidden;
}
.inner_news_hot .news_box .news_main .news_menu {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_news_hot .news_box .news_main .news_menu .news_more {
  width: 100%;
  height: auto;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e8e8e8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}
.inner_news_hot .news_box .news_main .news_menu .news_more a {
  font-size: var(--font18);
  color: #333333;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_news_hot .news_box .news_main .news_menu .news_more a:hover {
  color: #0733e3;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box {
  width: 100%;
  height: auto;
  margin-top: 10px;
  overflow: hidden;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item {
  width: 100%;
  height: auto;
  padding: 10px 0;
  border-bottom: 1px dashed #FFFFFF;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .headline {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  display: grid;
  grid-template-columns: 5px 1fr auto;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  grid-gap: 10px;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .headline::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333333;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .headline .title {
  font-size: var(--font16);
  color: #333333;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .headline .time {
  font-size: 12px;
  color: #adadad;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .content {
  width: 100%;
  height: auto;
  max-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .content .images {
  width: 40%;
  max-width: 300px;
  height: 100%;
  font-size: 0;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .content .images .pb {
  padding-bottom: 41.667%;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .content .images .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .content .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .content .details_box {
  width: 100%;
  height: auto;
  flex: 1;
  margin-left: 15px;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .content .details_box .title {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .content .details_box .details {
  width: 100%;
  height: calc(3em * 1.33);
  margin: 5px 0;
  font-size: var(--font16);
  color: #8c8c8c;
  line-height: 1.33;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item a .content .details_box .more {
  width: 100%;
  height: auto;
  text-align: right;
  font-size: 12px;
  color: #0733e3;
  overflow: hidden;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item:hover {
  border-color: #e8e8e8;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item:hover a .headline {
  margin-top: -1.5em;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item:hover a .content {
  max-height: 150px;
}
.inner_news_hot .news_box .news_main .news_menu .menu_box .item:hover a .details_box .title {
  color: #0733e3;
}
@media (max-width:1024px) {
  .inner_news_hot .news_box .news_main {
    display: block;
  }
  .inner_news_hot .news_box .news_main .news_big {
    display: none;
  }
}
@media (max-width:768px) {
  .inner_news_hot .news_box .news_main .news_menu .menu_box .item a .content {
    display: none;
  }
  .inner_news_hot .news_box .news_main .news_menu .menu_box .item:hover a .headline {
    margin: 0;
  }
}
/* 联系我们 */
.inner_contact {
  width: 100%;
  height: auto;
  background: url('../images/contact_bg.png') no-repeat center / cover;
  overflow: hidden;
}
.inner_contact .contact_box {
  width: 100%;
  height: auto;
  padding-top: var(--spacing-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
.inner_contact .contact_box .contact_main {
  width: 100%;
  height: auto;
  padding-bottom: var(--spacing-80);
  flex: 1;
  overflow: hidden;
}
.inner_contact .contact_box .contact_main .headline {
  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;
  position: relative;
  overflow: hidden;
}
.inner_contact .contact_box .contact_main .headline .icon {
  width: 30px;
  height: 100%;
  max-height: 30px;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translate(-170%, -50%) skewX(-30deg);
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 0 20%;
}
.inner_contact .contact_box .contact_main .headline .icon::before,
.inner_contact .contact_box .contact_main .headline .icon::after {
  content: '';
  width: 100%;
  height: 100%;
}
.inner_contact .contact_box .contact_main .headline .icon::before {
  background: #0733e3;
}
.inner_contact .contact_box .contact_main .headline .icon::after {
  background: #db1600;
}
.inner_contact .contact_box .contact_main .headline .inner_title {
  width: auto;
  position: relative;
  z-index: 1;
  line-height: 1.2;
  overflow: visible;
}
.inner_contact .contact_box .contact_main .subtitle {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-40);
  text-align: center;
  font-size: var(--font28);
  color: #666666;
  overflow: hidden;
}
.inner_contact .contact_box .contact_main .menu {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--spacing-40) var(--spacing-20);
  overflow: hidden;
}
.inner_contact .contact_box .contact_main .menu .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;
  overflow: hidden;
}
.inner_contact .contact_box .contact_main .menu .item .icon {
  width: var(--font34);
  text-align: center;
  font-size: 0;
}
.inner_contact .contact_box .contact_main .menu .item .title {
  margin-left: 10px;
  font-size: var(--font18);
  color: #333333;
}
.inner_contact .contact_box .contact_main .menu .item:nth-child(odd) {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.inner_contact .contact_box .contact_main .more_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  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;
  -ms-flex-wrap: wrap;
  grid-gap: var(--spacing-30) var(--spacing-20);
  overflow: hidden;
}
.inner_contact .contact_box .contact_main .more_box .item {
  width: auto;
  height: auto;
  border-radius: 3px;
  background: #404040;
  overflow: hidden;
}
.inner_contact .contact_box .contact_main .more_box .item a {
  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;
  grid-gap: var(--spacing-20);
  padding: 10px var(--spacing-30);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_contact .contact_box .contact_main .more_box .item a .icon {
  width: var(--font32);
  height: auto;
  font-size: 0;
  overflow: hidden;
}
.inner_contact .contact_box .contact_main .more_box .item a .details {
  width: auto;
  height: auto;
  overflow: hidden;
}
.inner_contact .contact_box .contact_main .more_box .item a .details .title,
.inner_contact .contact_box .contact_main .more_box .item a .details .number {
  font-size: var(--font18);
  color: #FFFFFF;
}
.inner_contact .contact_box .contact_main .more_box .item a:hover {
  background: #C70000;
}
.inner_contact .contact_box .images {
  width: 52%;
  max-width: 740px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  font-size: 0;
}
@media (max-width:1024px) {
  .inner_contact .contact_box {
    display: block;
  }
  .inner_contact .contact_box .images {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}
/* ------------------------- */
/* ------------------------- */
/* 内页 - 新闻中心 */
.inner_news_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_news_box .news_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-80) 0 var(--spacing-120);
  overflow: hidden;
}
.inner_news_box .news_box .news_list {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  overflow: hidden;
}
.inner_news_box .news_box .news_list .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_news_box .news_box .news_list .item a {
  width: 100%;
  height: auto;
  padding: var(--spacing-40) 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
.inner_news_box .news_box .news_list .item a .images {
  width: 40%;
  max-width: 335px;
  height: 100%;
  font-size: 0;
  border-radius: 3px;
  overflow: hidden;
}
.inner_news_box .news_box .news_list .item a .images .pb {
  padding-bottom: 66.66%;
}
.inner_news_box .news_box .news_list .item a .images .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_news_box .news_box .news_list .item a .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_news_box .news_box .news_list .item a .details_box {
  width: 100%;
  height: auto;
  flex: 1;
  margin-left: var(--spacing-20);
  overflow: hidden;
}
.inner_news_box .news_box .news_list .item a .details_box .title {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inner_news_box .news_box .news_list .item a .details_box .details {
  width: 100%;
  height: calc(4em * 1.875);
  margin-top: 1em;
  font-size: var(--font16);
  color: #8c8c8c;
  line-height: 1.875;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.inner_news_box .news_box .news_list .item a .details_box .more {
  width: 100%;
  height: auto;
  text-align: right;
  font-size: 12px;
  color: #0733e3;
  overflow: hidden;
}
.inner_news_box .news_box .news_list .item a::before {
  content: '';
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  border-top: 1px dashed #adadad;
}
.inner_news_box .news_box .news_list .item a::after {
  content: '';
  width: 0;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: #1753c3;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_news_box .news_box .news_list .item a:hover .images .ab {
  transform: scale(1.05);
}
.inner_news_box .news_box .news_list .item a:hover .details_box .title {
  color: #0733e3;
}
.inner_news_box .news_box .news_list .item a:hover::after {
  width: 100%;
  left: 0;
}
.inner_news_box .news_box .paging_box {
  margin-top: var(--spacing-80);
}
@media (max-width:768px) {
  .inner_news_box .news_box .news_list .item a .details_box .details {
    height: calc(3em * 1.875);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
@media (max-width:480px) {
  .inner_news_box .news_box .news_list .item a .images {
    width: 50%;
  }
}
.inner_news_box .news_details {
  width: 100%;
  height: auto;
  padding: var(--spacing-60) 0 var(--spacing-100);
  border-top: 1px solid #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: var(--spacing-80);
  overflow: hidden;
}
.inner_news_box .news_details .content_box {
  width: 75%;
  height: auto;
  flex: 1;
  overflow: hidden;
}
.inner_news_box .news_details .content_box .title_details {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_news_box .news_details .content_box .title_details .title {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_news_box .news_details .content_box .title_details .title,
.inner_news_box .news_details .content_box .title_details .title h1 {
  font-size: var(--font40);
  font-weight: 400;
  color: #333333;
}
.inner_news_box .news_details .content_box .title_details .menu {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 20px 10%;
  overflow: hidden;
}
.inner_news_box .news_details .content_box .title_details .menu .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;
}
.inner_news_box .news_details .content_box .title_details .menu .one .icon {
  width: auto;
  height: auto;
  font-size: 0;
}
.inner_news_box .news_details .content_box .title_details .menu .one .word {
  margin-left: 0.5em;
  font-size: 12px;
  color: #BDBDBD;
}
.inner_news_box .news_details .content_box .pager_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  padding: var(--spacing-40) 0;
  border-top: 1px solid #333333;
  overflow: hidden;
}
.inner_news_box .news_details .content_box .pager_box .one {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_news_box .news_details .content_box .pager_box .one a {
  font-size: var(--font14);
  color: #bdbdbd;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_news_box .news_details .content_box .pager_box .one a:hover {
  color: #1753c3;
}
.inner_news_box .news_details .sidebar_box {
  width: 25%;
  max-width: 355px;
  height: auto;
  overflow: hidden;
}
.inner_news_box .news_details .sidebar_box .headline {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  color: #333333;
  overflow: hidden;
}
.inner_news_box .news_details .sidebar_box .s_cooperation {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_news_box .news_details .sidebar_box .s_cooperation .item {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-20);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_news_box .news_details .sidebar_box .s_cooperation .item .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 3px;
  overflow: hidden;
}
.inner_news_box .news_details .sidebar_box .s_cooperation .item .img .pb {
  padding-bottom: 66.66%;
}
.inner_news_box .news_details .sidebar_box .s_cooperation .item .img .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_news_box .news_details .sidebar_box .s_cooperation .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_news_box .news_details .sidebar_box .s_cooperation .item .title {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  padding: 10px 20px;
  font-size: var(--font16);
  color: #FFFFFF;
  overflow: hidden;
}
.inner_news_box .news_details .sidebar_box .s_cooperation .item::after {
  content: '';
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, #000, transparent);
  opacity: 0.8;
}
.inner_news_box .news_details .sidebar_box .s_cooperation .item:hover .img .ab {
  transform: scale(1.05);
}
.inner_news_box .news_details .sidebar_box .s_case {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-40);
  overflow: hidden;
}
.inner_news_box .news_details .sidebar_box .s_case .menu {
  width: 100%;
  height: auto;
  margin-top: 10px;
  overflow: hidden;
}
.inner_news_box .news_details .sidebar_box .s_case .menu .one {
  width: 100%;
  height: auto;
  padding: 10px 0;
  border-bottom: 1px solid #8C8C8C;
  overflow: hidden;
}
.inner_news_box .news_details .sidebar_box .s_case .menu .one a {
  font-size: var(--font16);
  color: #333333;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_news_box .news_details .sidebar_box .s_case .menu .one a:hover {
  color: #0733E3;
}
.inner_news_box .news_details .sidebar_box .s_case .more {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-30);
  text-align: right;
  overflow: hidden;
}
.inner_news_box .news_details .sidebar_box .s_case .more a {
  font-size: 12px;
  color: #333333;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_news_box .news_details .sidebar_box .s_case .more a:hover {
  color: #0733E3;
}
@media (max-width:768px) {
  .inner_news_box .news_details {
    display: block;
  }
  .inner_news_box .news_details .content_box {
    width: 100%;
  }
  .inner_news_box .news_details .sidebar_box {
    display: none;
  }
}
/* ------------------------- */
/* ------------------------- */
/* 内页 - 服务支持 */
/* 服务支持 */
.inner_service_link {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}
.inner_service_link .one {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_service_link .one .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.inner_service_link .one .img::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  background: #000000;
  opacity: 0.4;
}
.inner_service_link .one .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_service_link .one .content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  left: 0;
  top: 0;
  z-index: 5;
  padding: var(--spacing-160) 20px;
  text-align: center;
  overflow: hidden;
}
.inner_service_link .one .content .title {
  width: 100%;
  height: auto;
  font-size: var(--font30);
  color: #FFFFFF;
  overflow: hidden;
}
.inner_service_link .one .content .details {
  width: 100%;
  height: auto;
  margin-top: 0.5em;
  font-size: var(--font22);
  color: #FFFFFF;
  overflow: hidden;
}
.inner_service_link .one .content .details * {
  font-size: var(--font22);
  color: #FFFFFF;
}
.inner_service_link .one .content .more {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-30);
  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: var(--spacing-30);
  overflow: hidden;
}
.inner_service_link .one .content .more a {
  width: auto;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 var(--spacing-40);
  border-radius: 3px;
  background: #D90202;
  font-size: var(--font16);
  color: #FFFFFF;
  overflow: hidden;
}
.inner_service_link .one:hover .img img {
  transform: scale(1.05);
}
@media (max-width:1440px) {
  .inner_service_link .one .content .more a {
    height: 54px;
  }
}
@media (max-width:1024px) {
  .inner_service_link .one .content .more a {
    height: 48px;
  }
}
@media (max-width:768px) {
  .inner_service_link {
    display: block;
  }
}
/* 自助服务专区 */
.inner_service_auto {
  width: 100%;
  height: auto;
  background: #F4F7FA;
  overflow: hidden;
}
.inner_service_auto .service_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0;
  overflow: hidden;
}
.inner_service_auto .service_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--spacing-20);
  overflow: hidden;
}
.inner_service_auto .service_box .menu_box .item {
  width: 100%;
  height: auto;
  border-radius: 3px;
  background: linear-gradient(45deg, var(--color-a), var(--color-b));
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_service_auto .service_box .menu_box .item a {
  width: 100%;
  height: auto;
  display: block;
  padding: var(--spacing-80) var(--spacing-20);
  text-align: center;
  overflow: hidden;
}
.inner_service_auto .service_box .menu_box .item a .title {
  width: 100%;
  height: auto;
  font-size: var(--font28);
  color: #FFFFFF;
  overflow: hidden;
}
.inner_service_auto .service_box .menu_box .item a .subtitle {
  width: 100%;
  height: auto;
  margin-top: 6px;
  font-size: var(--font20);
  color: #FFFFFF;
  overflow: hidden;
}
.inner_service_auto .service_box .menu_box .item:hover {
  filter: brightness(1.2);
}
@media (max-width:1024px) {
  .inner_service_auto .service_box .menu_box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width:768px) {
  .inner_service_auto .service_box .menu_box {
    grid-template-columns: repeat(2, 1fr);
  }
}
.inner_service_news {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_service_news .service_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--spacing-80) var(--spacing-30);
}
.inner_service_news .service_box .service_news {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_service_news .service_box .service_news .headline {
  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;
  overflow: hidden;
}
.inner_service_news .service_box .service_news .headline .inner_title {
  flex: 1;
  text-align: left;
}
.inner_service_news .service_box .service_news .headline .more a {
  font-size: var(--font18);
  color: #333333;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_service_news .service_box .service_news .headline .more a:hover {
  color: #0733E3;
}
.inner_service_news .service_box .service_news .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-30);
  padding: var(--spacing-20);
  background-color: #FAFAFA;
  overflow: hidden;
}
.inner_service_news .service_box .service_news .menu_box .item {
  width: 100%;
  height: auto;
  padding: 10px 0;
  border-bottom: 1px dashed #FFFFFF;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_service_news .service_box .service_news .menu_box .item a {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
}
.inner_service_news .service_box .service_news .menu_box .item a .headline {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  display: grid;
  grid-template-columns: 5px 1fr auto;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  grid-gap: 10px;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_service_news .service_box .service_news .menu_box .item a .headline::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333333;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_service_news .service_box .service_news .menu_box .item a .headline .title {
  font-size: var(--font16);
  color: #333333;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_service_news .service_box .service_news .menu_box .item a .headline .time {
  font-size: 12px;
  color: #adadad;
}
.inner_service_news .service_box .service_news .menu_box .item a .content {
  width: 100%;
  height: auto;
  max-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  overflow: hidden;
}
.inner_service_news .service_box .service_news .menu_box .item a .content .images {
  width: 40%;
  max-width: 300px;
  height: 100%;
  font-size: 0;
}
.inner_service_news .service_box .service_news .menu_box .item a .content .images .pb {
  padding-bottom: 41.667%;
}
.inner_service_news .service_box .service_news .menu_box .item a .content .images .ab {
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_service_news .service_box .service_news .menu_box .item a .content .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_service_news .service_box .service_news .menu_box .item a .content .details_box {
  width: 100%;
  height: auto;
  flex: 1;
  margin-left: 15px;
}
.inner_service_news .service_box .service_news .menu_box .item a .content .details_box .title {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inner_service_news .service_box .service_news .menu_box .item a .content .details_box .details {
  width: 100%;
  height: calc(3em * 1.33);
  margin: 5px 0;
  font-size: var(--font16);
  color: #8c8c8c;
  line-height: 1.33;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.inner_service_news .service_box .service_news .menu_box .item a .content .details_box .more {
  width: 100%;
  height: auto;
  text-align: right;
  font-size: 12px;
  color: #0733e3;
  overflow: hidden;
}
.inner_service_news .service_box .service_news .menu_box .item:hover {
  border-color: #e8e8e8;
}
.inner_service_news .service_box .service_news .menu_box .item:hover a .headline {
  margin-top: -1.5em;
}
.inner_service_news .service_box .service_news .menu_box .item:hover a .content {
  max-height: 150px;
}
.inner_service_news .service_box .service_news .menu_box .item:hover a .details_box .title {
  color: #0733e3;
}
.inner_service_news .service_box .service_hot {
  width: 100%;
  height: auto;
  grid-column: span 2;
}
.inner_service_news .service_box .service_hot .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: var(--spacing-20);
}
.inner_service_news .service_box .service_hot .menu_box .item {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  box-shadow: 0 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  border: 1px solid #FFFFFF;
  -webkit-transition: all 0.45s ease; -o-transition: all 0.45s ease; transition: all 0.45s ease;
  overflow: hidden;
}
.inner_service_news .service_box .service_hot .menu_box .item a {
  width: 100%;
  height: auto;
  padding: var(--spacing-40) var(--spacing-30);
  display: block;
  overflow: hidden;
}
.inner_service_news .service_box .service_hot .menu_box .item a .icon {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.45s ease; -o-transition: all 0.45s ease; transition: all 0.45s ease;
  overflow: hidden;
}
.inner_service_news .service_box .service_hot .menu_box .item a .title_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-20);
  text-align: center;
  overflow: hidden;
}
.inner_service_news .service_box .service_hot .menu_box .item a .title_box .title {
  width: 100%; height: auto; font-size: var(--font28); color: #333333; -webkit-transition: all 0.45s ease; -o-transition: all 0.45s ease; transition: all 0.45s ease;
  overflow: hidden;
}
.inner_service_news .service_box .service_hot .menu_box .item a .title_box .details {
  width: 100%; height: auto; margin-top: 10px; font-size: var(--font20); color: #333333; line-height: 1.33;
  -webkit-transition: all 0.45s ease; -o-transition: all 0.45s ease; transition: all 0.45s ease;
  overflow: hidden;
}
.inner_service_news .service_box .service_hot .menu_box .item:hover { background: var(--active-color); }
.inner_service_news .service_box .service_hot .menu_box .item:hover a .icon { filter: brightness(0) invert(1); }
.inner_service_news .service_box .service_hot .menu_box .item:hover a .title_box .title { color: #FFFFFF; }
.inner_service_news .service_box .service_hot .menu_box .item:hover a .title_box .details { color: #FFFFFF; }
@media (max-width:1024px) {
  .inner_service_news .service_box {
    display: block;
  }
  .inner_service_news .service_box .service_news + .service_news {
    margin-top: 30px;
  }
  .inner_service_news .service_box .service_hot {
    margin-top: 50px;
  }
  .inner_service_news .service_box .service_hot .menu_box {
    grid-template-columns: repeat(3, 1fr);
  }
  .inner_service_news .service_box .service_hot .menu_box .item a {
    padding: 30px 20px;
  }
  .inner_service_news .service_box .service_hot .menu_box .item a .icon {
    height: 48px;
  }
}
@media (max-width:768px) {
  .inner_service_news .service_box .service_news .menu_box .item a .content {
    display: none;
  }
  .inner_service_news .service_box .service_news .menu_box .item:hover a .headline {
    margin: 0;
  }
  .inner_service_news .service_box .service_hot .menu_box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .inner_service_news .service_box .service_hot .menu_box {
    display: block;
  }
  .inner_service_news .service_box .service_hot .menu_box .item + .item {
    margin-top: 10px;
  }
  .inner_service_news .service_box .service_hot .menu_box .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .inner_service_news .service_box .service_hot .menu_box .item a .icon {
    width: 48px;
    height: 48px;
  }
  .inner_service_news .service_box .service_hot .menu_box .item a .title_box {
    margin: 0 0 0 20px;
    flex: 1;
    text-align: left;
  }
}
/* 客户服务 */
.inner_customer_service {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_customer_service .service_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0;
  overflow: hidden;
}
.inner_customer_service .service_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
  overflow: hidden;
}
.inner_customer_service .service_box .menu_box .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_customer_service .service_box .menu_box .item .headline {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: #F0F5FF;
  overflow: hidden;
}
.inner_customer_service .service_box .menu_box .item .headline .number {
  width: 65px;
  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;
  padding: 15px 0;
  background-color: #1753C3;
  font-size: var(--font24);
  font-weight: 700;
  color: #FFFFFF;
  overflow: hidden;
}
.inner_customer_service .service_box .menu_box .item .headline .title {
  width: 100%;
  height: auto;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
  padding: 10px var(--spacing-30);
  flex: 1;
  font-size: var(--font30);
  color: #333333;
  overflow: hidden;
}
.inner_customer_service .service_box .menu_box .item .details_box {
  width: 100%;
  height: auto;
  padding: 30px 0 30px 15px;
  overflow: hidden;
}
.inner_customer_service .service_box .menu_box .item .details_box .details_text {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  color: #8C8C8C;
  line-height: 2;
  overflow: hidden;
}
.inner_customer_service .service_box .menu_box .item .details_box .details_text > * {
  margin: 0.5em 0;
}
.inner_customer_service .service_box .menu_box .item .details_box .details_text * {
  font-size: var(--font16);
  color: #8C8C8C;
}
.inner_customer_service .service_box .menu_box .item .details_box .details_text p {
  margin: 0.5em 0;
}
.inner_customer_service .service_box .menu_box .item .details_box .active_title {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  color: #333333;
  line-height: 1.5;
  overflow: hidden;
}
.inner_customer_service .service_box .menu_box .item .details_box .active_title * {
  font-size: var(--font24);
  color: #333333;
}
.inner_customer_service .service_box .menu_box .item .details_box .active_title::before {
  content: '';
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  margin-right: 0.5em;
  background-color: #333333;
  font-size: var(--font24);
}
.inner_customer_service .service_box .menu_box .item .details_box .text_menu {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-30);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  grid-gap: var(--spacing-30);
  overflow: hidden;
}
.inner_customer_service .service_box .menu_box .item .details_box .text_menu .one {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_customer_service .service_box .menu_box .item .details_box .text_menu .one .title {
  width: 100%;
  height: auto;
  font-size: var(--font20);
  color: #333333;
  overflow: hidden;
}
.inner_customer_service .service_box .menu_box .item .details_box .text_menu .one .details_text {
  margin-top: 0.5em;
  padding-left: 1em;
}
@media (max-width:1024px) {
  .inner_customer_service .service_box .menu_box .item .details_box .text_menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:1024px) {
  .inner_customer_service .service_box .menu_box .item .details_box .text_menu {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ------------------------- */
/* ------------------------- */
/* 产品保修服务与保修期查询 */
.inner_inquiry {
  width: 100%;
  height: auto;
  padding-bottom: 60px;
  background: #F5F7FF;
  overflow: hidden;
}
.inner_inquiry .inquiry_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-80) var(--spacing-70);
  background: #FFFFFF;
}
.inner_inquiry .inquiry_box .inquiry_main {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-120);
  overflow: hidden;
}
.inner_inquiry .inquiry_box .inquiry_main .headline {
  width: 100%;
  height: auto;
  font-size: var(--font30);
  color: #333333;
  line-height: 1.5;
  overflow: hidden;
}
.inner_inquiry .inquiry_box .inquiry_main .details {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-20);
  padding: 0 var(--spacing-50);
  overflow: hidden;
}
.inner_inquiry .inquiry_box .inquiry_main .details .title {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  color: #262626;
  line-height: 1.33;
  overflow: hidden;
}
.inner_inquiry .inquiry_box .inquiry_main .details .one {
  width: 100%;
  height: auto;
  font-size: var(--font16);
  color: #8C8C8C;
  line-height: 1.875;
}
.inner_inquiry .inquiry_box .inquiry_main .details .one::before {
  content: '';
  width: 3em;
  height: 1px;
  margin-right: 1em;
  display: inline-block;
  background: #8C8C8C;
  vertical-align: middle;
}
.inner_inquiry .inquiry_box .inquiry_main .details .one {
  margin-top: 1em;
}
.inner_inquiry .inquiry_box .inquiry_main .details .img {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-50);
  text-align: center;
  font-size: 0;
  overflow: hidden;
}
.inner_inquiry .inquiry_box .form_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
}
.inner_inquiry .inquiry_box .form_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.inner_inquiry .inquiry_box .form_box .item .label {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  color: #262626;
  line-height: 1.33;
}
.inner_inquiry .inquiry_box .form_box .item .input {
  width: 100%;
  height: 60px;
  margin-top: var(--spacing-20);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  grid-gap: 10px;
}
.inner_inquiry .inquiry_box .form_box .item .input input {
  width: 30%;
  max-width: 315px;
  height: 100%;
  padding: 0 15px;
  border-radius: 3px;
  border: 1px solid #ABABAB;
  transition: border 0.3s ease;
}
.inner_inquiry .inquiry_box .form_box .item .input img {
  max-width: 180px;
  height: 100%;
}
.inner_inquiry .inquiry_box .form_box .item .input span {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
  font-size: 12px;
  color: #8C8C8C;
  cursor: pointer;
}
.inner_inquiry .inquiry_box .form_box .item .texta {
  width: 100%;
  height: auto;
  margin-top: 20px;
}
.inner_inquiry .inquiry_box .form_box .item .texta textarea {
  width: 100%;
  min-height: 240px;
  padding: 18px 15px;
  border-radius: 3px;
  border: 1px solid #ABABAB;
  font-size: var(--font16);
  color: #333333;
  transition: border 0.3s ease;
}
.inner_inquiry .inquiry_box .form_box .item.black {
  grid-column: span 3;
}
.inner_inquiry .inquiry_box .form_box .item.active .input input,
.inner_inquiry .inquiry_box .form_box .item.active .texta textarea {
  border-color: #333333;
}
.inner_inquiry .inquiry_box .form_box .item + .item {
  margin-top: var(--spacing-40);
}
.inner_inquiry .inquiry_box .form_box .submit {
  width: 100%;
  height: 60px;
  margin-top: var(--spacing-80);
  display: -webkit-box;
  display: -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: 20px;
}
.inner_inquiry .inquiry_box .form_box .submit * {
  width: 40%;
  max-width: 320px;
  height: 100%;
  border-radius: 3px;
  font-size: var(--font16);
  cursor: pointer;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_inquiry .inquiry_box .form_box .submit button {
  background: #1753c3;
  border: 0;
  color: #FFFFFF;
}
.inner_inquiry .inquiry_box .form_box .submit a {
  text-align:center;
  line-height:60px;
  background: transparent;
  border: 1px solid #1753c3;
  color: #1753c3;
}
.inner_inquiry .inquiry_box .form_box .submit button:hover {
  filter: brightness(1.2);
}
.inner_inquiry .inquiry_box .form_box .submit a:hover {
  background: #1753c3;
  color:#fff;
}
@media (max-width:1024px) {
  .inner_inquiry .inquiry_box .form_box .item .input {
    height: 48px;
  }
  .inner_inquiry .inquiry_box .form_box .item .texta textarea {
    min-height: 160px;
  }
  .inner_inquiry .inquiry_box .form_box .submit * {
    height: 48px;
  }
}
@media (max-width:768px) {
  .inner_inquiry .inquiry_box {
    padding: 40px 20px;
  }
  .inner_inquiry .inquiry_box .inquiry_main .details {
    padding: 0;
  }
}
@media (max-width:480px) {
  .inner_inquiry .inquiry_box .form_box .item .input {
    height: auto;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .inner_inquiry .inquiry_box .form_box .item .input input {
    width: 100%;
    max-width: 100%;
    height: 48px;
  }
  .inner_inquiry .inquiry_box .form_box .item .input img {
    height: 48px;
  }
}
/* 移动查询更便捷 */
.inner_inquiry_mobile {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_inquiry_mobile .inquiry_box {
  width: 100%;
  height: auto;
  padding: 60px 0;
  overflow: hidden;
}
.inner_inquiry_mobile .inquiry_box .inner_subtitle {
  width: 100%;
  height: auto;
  margin-top: 10px;
  text-align: center;
  font-size: var(--font16);
  color: #333333;
  line-height: 1.33;
  overflow: hidden;
}
.inner_inquiry_mobile .inquiry_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-70);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--spacing-60);
  overflow: hidden;
}
.inner_inquiry_mobile .inquiry_box .menu_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_inquiry_mobile .inquiry_box .menu_box .item a {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_inquiry_mobile .inquiry_box .menu_box .item a .img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_inquiry_mobile .inquiry_box .menu_box .item a .img .pb {
  padding-bottom: 47.76119403%;
}
.inner_inquiry_mobile .inquiry_box .menu_box .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_inquiry_mobile .inquiry_box .menu_box .item a .title {
  width: 100%;
  height: 100%;
  padding: 0 var(--spacing-100);
  position: absolute;
  z-index: 5;
  left: 0;
  top: 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;
  font-size: var(--font40);
  color: #FFFFFF;
  line-height: 1.45;
  overflow: hidden;
}
@media (max-width:768px) {
  .inner_inquiry_mobile .inquiry_box .menu_box {
    display: block;
  }
  .inner_inquiry_mobile .inquiry_box .menu_box .item + .item {
    margin-top: 20px;
  }
}
@media (max-width:480px) {
  .inner_inquiry_mobile .inquiry_box .menu_box .item a .title {
    padding: 0 20px;
    font-size: 24px;
  }
}
/* ------------------------- */
/* ------------------------- */
/* 内页 - 关于我们 */
/* 关于我们 */
.inner_about {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_about .about_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-120) 0 var(--spacing-100);
  position: relative;
  z-index: 1;
}
.inner_about .about_box .inner_title {
  text-align: left;
  color: #FFFFFF;
}
.inner_about .about_box .about_main {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-40);
  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;
  overflow: hidden;
}
.inner_about .about_box .about_main .about_img {
  width: 50%;
  height: 100%;
  font-size: 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.13);
}
.inner_about .about_box .about_main .details_box {
  width: 100%;
  height: auto;
  flex: 1;
  margin-left: var(--spacing-70);
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.inner_about .about_box .about_main .details_box .title {
  width: 100%;
  height: auto;
  font-size: var(--font28);
  font-weight: 700;
  overflow: hidden;
}
.inner_about .about_box .about_main .details_box .details {
  width: 100%;
  height: auto;
  margin-top: 1em;
  font-size: var(--font20);
  color: #8C8C8C;
  line-height: 1.75;
  overflow: hidden;
}
.inner_about .about_box .about_number {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-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;
  overflow: hidden;
}
.inner_about .about_box .about_number .item {
  width: auto;
  height: auto;
  overflow: hidden;
  --this-text-color: #333333;
}
.inner_about .about_box .about_number .item .number {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.inner_about .about_box .about_number .item .number .beat {
  font-size: clamp(calc(40 / 16 * 1rem), calc((40 / 16 * 1rem) + ((60 - 40) * ((100vw - 1280 / 16 * 1rem) / (1920 - 1280)))), calc(60 / 16 * 1rem));
  font-weight: 700;
  color: var(--this-text-color);
  line-height: 1.2;
}
.inner_about .about_box .about_number .item .number .unit {
  margin-left: 0.5em;
  font-size: var(--font16);
  color: var(--this-text-color);
}
.inner_about .about_box .about_number .item .title {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: var(--font16);
  color: var(--this-text-color);
  overflow: hidden;
}
.inner_about .about_box .about_number .item:first-child,
.inner_about .about_box .about_number .item:nth-child(2) {
  --this-text-color: #FFFFFF;
}
.inner_about .about_box .about_bg {
  width: calc((100vw - 100%) / 2 + 40%);
  height: 100%;
  position: absolute;
  right: 60%;
  top: 0;
  z-index: -1;
  background-position: left !important;
  background-repeat: no-repeat !important;
  background-size: 50% auto !important;
  background-attachment: fixed !important;
}
.inner_about .about_box .about_bg::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  background: rgba(16, 135, 232, 0.75);
}
.inner_about .about_box .about_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:1024px) {
  .inner_about .about_box .inner_title {
    display: none;
  }
  .inner_about .about_box .about_main {
    margin: 0;
    display: block;
  }
  .inner_about .about_box .about_main .about_img {
    width: 100%;
    height: auto;
  }
  .inner_about .about_box .about_main .details_box {
    margin: 30px 0 0;
  }
  .inner_about .about_box .about_number .item:first-child,
  .inner_about .about_box .about_number .item:nth-child(2) {
    --this-text-color: #333333;
  }
  .inner_about .about_box .about_bg {
    display: none;
  }
}
@media (max-width:768px) {
  .inner_about .about_box .about_number {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 20px;
  }
  .inner_about .about_box .about_number .item {
    padding-bottom: 20px;
    border-bottom: 1px solid #F5F5F5;
  }
  .inner_about .about_box .about_number .item .number {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .inner_about .about_box .about_number .item .number .beat {
    font-size: 30px;
  }
  .inner_about .about_box .about_number .item .title {
    text-align: left;
  }
}
/* 发展历程 */
.inner_history {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_history .history_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0 var(--spacing-160);
  position: relative;
  z-index: 1;
}
.inner_history .history_box .history_main {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_history .history_box .history_main .inner_title {
  color: #FFFFFF;
}
.inner_history .history_box .history_main .icon_feiji {
  width: 40%;
  height: auto;
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: var(--spacing-40);
}
.inner_history .history_box .history_main .icon_feiji .icon {
  width: auto;
  height: auto;
  transform: translateX(50%);
  font-size: 0;
  position: relative;
  z-index: 5;
}
.inner_history .history_box .history_main .icon_feiji .dot {
  width: 1em;
  height: 1em;
  font-size: var(--font16);
  border-radius: 50%;
  background: #002de3;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translate(50%, -50%);
  overflow: hidden;
}
.inner_history .history_box .history_main .icon_feiji .dot::before,
.inner_history .history_box .history_main .icon_feiji .dot::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  border-radius: 50%;
}
.inner_history .history_box .history_main .icon_feiji .dot::before {
  transform: scale(0.9);
  background-color: #FFFFFF;
}
.inner_history .history_box .history_main .icon_feiji .dot::after {
  z-index: 5;
  transform: scale(0.6);
  background-color: #002de3;
}
.inner_history .history_box .history_main .icon_feiji::after {
  content: '';
  width: 2px;
  height: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  transform: translateX(50%);
  background: #1650BC;
}
.inner_history .history_box .history_main .menu_box {
  width: 100%;
  height: auto;
  padding-top: var(--spacing-40);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_history .history_box .history_main .menu_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  z-index: 5;
  overflow: hidden;
  --item-color: #007dff;
}
.inner_history .history_box .history_main .menu_box .item .headline {
  width: 40%;
  height: 100%;
  padding-top: 1.875em;
  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;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  grid-gap: var(--spacing-20);
  font-size: var(--font16);
}
.inner_history .history_box .history_main .menu_box .item .headline .year {
  font-size: clamp(calc(40 / 16 * 1rem), calc((40 / 16 * 1rem) + ((60 - 40) * ((100vw - 1280 / 16 * 1rem) / (1920 - 1280)))), calc(60 / 16 * 1rem));
  font-weight: 700;
  line-height: 1;
  color: var(--item-color);
}
.inner_history .history_box .history_main .menu_box .item .headline .word {
  font-size: var(--font28);
  color: var(--item-color);
}
.inner_history .history_box .history_main .menu_box .item .headline .line {
  width: 30px;
  height: 1px;
  background: #002de3;
}
.inner_history .history_box .history_main .menu_box .item .headline .dot {
  width: 1em;
  height: 1em;
  font-size: var(--font16);
  border-radius: 50%;
  background: #002de3;
  display: block;
  transform: translate(50%, 0);
  overflow: hidden;
}
.inner_history .history_box .history_main .menu_box .item .headline .dot::before,
.inner_history .history_box .history_main .menu_box .item .headline .dot::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  border-radius: 50%;
}
.inner_history .history_box .history_main .menu_box .item .headline .dot::before {
  transform: scale(0.9);
  background-color: #FFFFFF;
}
.inner_history .history_box .history_main .menu_box .item .headline .dot::after {
  z-index: 5;
  transform: scale(0.6);
  background-color: #002de3;
}
.inner_history .history_box .history_main .menu_box .item .details {
  width: 60%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 40px 0 40px var(--spacing-40);
  font-size: var(--font16);
  color: #FFFFFF;
  line-height: 1.875;
}
.inner_history .history_box .history_main .menu_box .item .details * {
  font-size: var(--font16);
  color: #FFFFFF;
}
.inner_history .history_box .history_main .menu_box .item + .item .details::before {
  content: '';
  width: clamp(calc(40 / 16 * 1rem), calc((40 / 16 * 1rem) + ((60 - 40) * ((100vw - 1280 / 16 * 1rem) / (1920 - 1280)))), calc(60 / 16 * 1rem));
  height: 1px;
  position: absolute;
  left: var(--spacing-40);
  top: 0;
  z-index: 1;
  background: #FFFFFF;
}
.inner_history .history_box .history_main .menu_box .item:nth-child(2) {
  --item-color: #f47c34;
}
.inner_history .history_box .history_main .menu_box .item:nth-child(3) {
  --item-color: #590ae0;
}
.inner_history .history_box .history_main .menu_box .item:nth-child(4) {
  --item-color: #008fbb;
}
.inner_history .history_box .history_main .menu_box .item:nth-child(5) {
  --item-color: #19ac8a;
}
.inner_history .history_box .history_main .menu_box::after {
  content: '';
  width: 2px;
  height: 100%;
  position: absolute;
  left: 40%;
  top: 0;
  z-index: 1;
  transform: translateX(-50%);
  background: #1650BC;
}
.inner_history .history_box .history_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.inner_history .history_box .history_bg .bg_left {
  width: calc((100vw - 100%) / 2 + 40%);
  height: 100%;
  position: absolute;
  left: 40%;
  top: 0;
  transform: translateX(-100%);
}
.inner_history .history_box .history_bg .bg_left img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: translate(-50%, -15%);
}
.inner_history .history_box .history_bg .bg_right {
  width: calc((100vw - 100%) / 2 + 60%);
  height: 100%;
  position: absolute;
  left: 40%;
  top: 0;
  background-position: right !important;
  background-repeat: no-repeat !important;
  background-size: 60% auto !important;
  background-attachment: fixed !important;
}
.inner_history .history_box .history_bg .bg_right::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  background: rgba(16, 135, 232, 0.75);
}
@media (max-width:768px) {
  .inner_history .center_box {
    padding: 0;
  }
  .inner_history .history_box .history_main {
    padding: 0 20px;
  }
  .inner_history .history_box .history_main .icon_feiji {
    display: none;
  }
  .inner_history .history_box .history_main .menu_box {
    margin-top: 30px;
  }
  .inner_history .history_box .history_main .menu_box .item {
    display: block;
    --item-color: #FFFFFF !important;
  }
  .inner_history .history_box .history_main .menu_box .item .headline {
    width: 100%;
    padding: 0 0 0 50px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .inner_history .history_box .history_main .menu_box .item .headline .year {
    font-size: 30px;
  }
  .inner_history .history_box .history_main .menu_box .item .headline .line {
    display: none;
  }
  .inner_history .history_box .history_main .menu_box .item .headline .dot {
    position: absolute;
    left: 0;
  }
  .inner_history .history_box .history_main .menu_box .item .details {
    width: 100%;
    margin-top: 20px;
    padding: 20px 0 50px 50px;
  }
  .inner_history .history_box .history_main .menu_box .item .details::before {
    content: '';
    width: clamp(calc(40 / 16 * 1rem), calc((40 / 16 * 1rem) + ((60 - 40) * ((100vw - 1280 / 16 * 1rem) / (1920 - 1280)))), calc(60 / 16 * 1rem));
    height: 1px;
    position: absolute;
    left: 50px;
    top: 0;
    z-index: 1;
    background: #FFFFFF;
  }
  .inner_history .history_box .history_main .menu_box .item + .item .details::before {
    left: 50px;
  }
  .inner_history .history_box .history_main .menu_box::after {
    left: 12px;
    transform: translate(0);
    background: #FFFFFF;
  }
  .inner_history .history_box .history_bg .bg_left {
    display: none;
  }
  .inner_history .history_box .history_bg .bg_right {
    width: 100%;
    left: 0;
    background-size: cover !important;
  }
}
/* 企业文化 */
.go_grey_bg{background: #f2f2f2;}
.inner_culture {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_culture .culture_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-120) 0 var(--spacing-120) 0;
  overflow: hidden;
}
.inner_culture .culture_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--spacing-100);
  overflow: hidden;
}
.inner_culture .culture_box .menu_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
  box-sizing: border-box;
  border-radius: 0px;
  padding: 120px 50px;
}
.inner_culture .culture_box .menu_box .item .img {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px auto;
}
.inner_culture .culture_box .menu_box .item .img img {
  max-width: 100%;
  max-height: 100%;
}
.inner_culture .culture_box .menu_box .item .img_1 {
  width: 60px;
  height: 60px;
  margin: 0 auto 30px auto;
  display: none;
}
.inner_culture .culture_box .menu_box .item .img_1 img {
  max-width: 100%;
  max-height: 100%;
}
.inner_culture .culture_box .menu_box .item .title {
  width: 100%;
  height: auto;
  z-index: 1;
  z-index: 10;
  text-align: center;
  font-size: var(--font36);
  color: #333;
  overflow: hidden;
}
.inner_culture .culture_box .menu_box .item .title b{
  display: block;
  width: 50px;
  margin: 5px auto 40px auto;
  height: 2px;
  background: #0066cc;
}
.inner_culture .culture_box .menu_box .item .title span{
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: auto;
  font-size: 16px;
  text-align: center;
  min-height: 60px;
  color: #666;
}
.inner_culture .culture_box .menu_box .item:hover{
  background: #0066cc;
}
.inner_culture .culture_box .menu_box .item:hover .img{
  display: none;
}
.inner_culture .culture_box .menu_box .item:hover .img_1{
  display: block;
}
.inner_culture .culture_box .menu_box .item:hover .title{
  color: #fff;
}
.inner_culture .culture_box .menu_box .item:hover .title b{
  background: #fff;
}
.inner_culture .culture_box .menu_box .item:hover .title span{
  color: #fff;
}
.inner_culture .culture_box .video_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: var(--spacing-30);
  overflow: hidden;
}
.inner_culture .culture_box .video_box .pb {
  padding-bottom: 50.36231884%;
}
.inner_culture .culture_box .video_box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:1024px) {
  .inner_culture .culture_box .menu_box .item{
    padding: 100px 40px;
  }
  .inner_culture .culture_box .menu_box .item .title {
    bottom: 1.5em;
    font-size: 20px;
    grid-gap: var(--spacing-30);
  }
}
@media (max-width:960px) {
  .inner_culture .culture_box .menu_box {
    grid-gap: var(--spacing-20);
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
  }
  .inner_culture .culture_box .menu_box .item{
    padding: 80px 20px;
  }
  .inner_culture .culture_box .menu_box .item1 {
    grid-column: 1 / 3; /* 占据第一行的全部列 */
  }
   
  .inner_culture .culture_box .menu_box .item2 {
    grid-column: 1; /* 占据第二行的第一列 */
  }
   
  .inner_culture .culture_box .menu_box .item3 {
    grid-column: 2; /* 占据第二行的第二列 */
  }
}
@media (max-width:768px) {
  .inner_culture .culture_box .menu_box {
    grid-gap: 10px;
  }
}
/* 咨询留言 */
.inner_feedback {
  width: 100%;
  height: auto;
  background: #f5f7ff;
  overflow: hidden;
}
.inner_feedback .feedback_box {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: var(--spacing-100) 0 var(--spacing-120);
}
.inner_feedback .feedback_box .form_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-80);
}
.inner_feedback .feedback_box .form_box form {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--spacing-50) var(--spacing-20);
}
.inner_feedback .feedback_box .form_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner_feedback .feedback_box .form_box .item .label {
  width: 5em;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  font-size: var(--font16);
  color: #333333;
}
.inner_feedback .feedback_box .form_box .item .label span {
  color: #F00;
}
.inner_feedback .feedback_box .form_box .item .input {
  width: 100%;
  height: 64px;
  flex: 1;
  margin-left: 10px;
}
.inner_feedback .feedback_box .form_box .item .input input {
  width: 100%;
  height: 100%;
  padding: 0 15px;
  border-radius: 3px;
  border: 1px solid #ebebeb;
  transition: border 0.3s ease;
}
.inner_feedback .feedback_box .form_box .item .texta {
  width: 100%;
  height: auto;
  margin-left: 10px;
  flex: 1;
}
.inner_feedback .feedback_box .form_box .item .texta textarea {
  width: 100%;
  min-height: 180px;
  padding: 18px 15px;
  border-radius: 3px;
  border: 1px solid #ebebeb;
  transition: border 0.3s ease;
}
.inner_feedback .feedback_box .form_box .item.black {
  grid-column: span 3;
}
.inner_feedback .feedback_box .form_box .item.active .input input,
.inner_feedback .feedback_box .form_box .item.active .texta textarea {
  border-color: #333333;
}
.inner_feedback .feedback_box .form_box .submit {
  width: 100%;
  margin-top: var(--spacing-80);
  grid-column: span 3;
}
.inner_feedback .feedback_box .form_box .submit input {
  width: 80%;
  max-width: 320px;
  height: 60px;
  display: block;
  margin: 0 auto;
  background: #1753c3;
  border: 0;
  font-size: var(--font16);
  color: #FFFFFF;
  cursor: pointer;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_feedback .feedback_box .form_box .submit button {
  width: 80%;
  max-width: 320px;
  height: 60px;
  display: block;
  margin: 0 auto;
  background: #1753c3;
  border: 0;
  font-size: var(--font16);
  color: #FFFFFF;
  cursor: pointer;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}
.inner_feedback .feedback_box .form_box .submit input:hover {
  filter: brightness(1.2);
}
.inner_feedback .feedback_box .form_box .submit button:hover {
  filter: brightness(1.2);
}
@media (max-width:1024px) {
  .inner_feedback .feedback_box .form_box .item .label,
  .inner_feedback .feedback_box .form_box .item .input {
    height: 54px;
  }
  .inner_feedback .feedback_box .form_box .submit input {
    max-width: 240px;
    height: 48px;
  }
  .inner_feedback .feedback_box .form_box .submit button {
    max-width: 240px;
    height: 48px;
  }
}
@media (max-width:768px) {
  .inner_feedback .feedback_box .form_box form {
    display: block;
  }
  .inner_feedback .feedback_box .form_box .item + .item {
    margin-top: 10px;
  }
}
/* 链接 */
.inner_links {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_links .links_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 8%;
}
.inner_links .links_box .item {
  width: 30.5%;
  height: auto;
  overflow: hidden;
  box-shadow: 0 2px 36px rgba(0, 0, 0, 0.16);
}
.inner_links .links_box .item a {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.inner_links .links_box .item a .img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_links .links_box .item a .img .pb {
  padding-bottom: 66.81818182%;
}
.inner_links .links_box .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_links .links_box .item a .title {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.26);
  padding: 10px;
  font-size: var(--font16);
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}
@media (max-width:1024px) {
  .inner_links .links_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5%;
  }
  .inner_links .links_box .item {
    width: 100%;
  }
}
@media (max-width:480px) {
  .inner_links .links_box {
    display: block;
  }
  .inner_links .links_box .item + .item {
    margin-top: 30px;
  }
}
.no_top{margin-top:0px !important;}
.same_level_box{width:100%; height:auto; margin-bottom:10px; padding:15px 0; display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 10px; overflow: hidden; }
.same_level_box .level_box{width:100%; height:auto; overflow:hidden;}
.same_level_box .level_box a{width:100%; height:auto; border-radius: 5px; border:solid 1px #d9d9d9; box-sizing:border-box; padding:10px;  display: grid; grid-template-columns: 50px 1fr; grid-gap: 15px; }
.same_level_box .level_box.active a{border: solid 1px var(--active-color-60);}
.same_level_box .level_box:hover a{border: solid 1px var(--active-color-60);}
.same_level_box .level_box .level_img{height:50px; width:50px; text-align:center; }
.same_level_box .level_box .level_img img{max-width:100%; max-height:100%; vertical-align:middle;}
.same_level_box .level_box .level_txt{height:auto; padding:5px 0; width:100%; }
.same_level_box .level_box .level_txt_1{height:auto; width:100%; font-size:16px; color:#333; line-height: 1.2;}
.same_level_box .level_box .level_txt_2{height:auto; width:100%; font-size:12px; color:#666; line-height:20px;}

.pro_file_box{width:100%; height:auto; border-bottom:dotted 1px #d9d9d9; float:left; padding:10px 0px;}
.pro_file_box .pro_file_title{width:calc(100% - 120px); height:32px; line-height:32px; font-size:14px; color:#333; float:left; overflow:hidden; box-sizing:border-box; padding-left:35px; background:url(../images/ico_pdf.png) no-repeat left center; background-size:24px;}
.pro_file_box a.pro_file_btn{display:inline-block; float:right; width:80px; height:32px; background:#1753c3; text-align:center; line-height:32px; color:#fff; font-size:12px; border-radius:3px;}
.pro_file_box a.pro_file_btn:hover{filter: brightness(1.2);}

/*自荐*/
.inner_sup {width: 100%;height: auto;}
.inner_sup .sup_box{width: 100%;height: auto;padding: 60px 0;}
.inner_sup .sup_form_box{width: 100%;height: auto; padding-bottom:60px;}
.sup_title_box{width:100%; height:40px; line-height:40px; position:relative; box-sizing:border-box; margin-bottom:30px; float:left;}
.sup_title_box .title{width:auto; height:40px; line-height:40px; border-bottom:solid 2px #1753c3; position:absolute; left:0px; bottom:0px; padding:0 10px; color:#333; font-size:18px; font-weight:bold;}
.sup_title_box .line{width:100%; height:2px; background:#d9d9d9; position:absolute; bottom:0; left:0;}
.sup_item_box{width:100%; height:auto; float:left; margin-bottom:40px;}
.sup_item_box .item{width:calc(50% - 10px); float:left; margin:0 0 15px 10px;}
.sup_item_box .item img{max-height:38px; max-width:100%; border-radius:3px; float:left; margin-left:10px;}
.sup_item_box .item:nth-child(2n+1){width:calc(50% - 10px); float:left; margin:0 10px 15px 0;}

/*成为合作伙伴*/
.inner_age {width: 100%;height: auto;}
.inner_age .age_box{width: 100%;height: auto;padding: 60px 0;}
.inner_age .age_form_box{width: 100%;height: auto; padding-bottom:60px;}
.inner_age .age_img{width: 40%;height: auto; float:left;}
.inner_age .age_img img{width:100%;}
.inner_age .age_form{width: 60%;height: auto; float:left; box-sizing:border-box; padding-left:30px; margin-bottom:30px;}
.inner_age .age_form .layui-form-label{width: 120px; text-align:left;}
.inner_age .age_form .layui-form-label span{float:right; color:#f00; padding-top:3px;}
.inner_age .age_form .layui-input-block{margin-left: 130px;}
.for_short{width:120px; float:left;}
.for_long{width:100%;}
.inner_age .age_form .layui-input-block img{max-height:38px; max-width:100%; border-radius:3px; float:left; margin-left:10px;}
.inner_age .age_form .layui-input-block a{color:#1753c3;}
@media (max-width:1024px) {
  .inner_age .age_img{display:none;}
  .inner_age .age_form{width: 100%; padding-left:0;}
}
@media (max-width:576px) {
  .sup_item_box .item{width:100%; margin:0 0 15px 0;}
  .sup_item_box .item:nth-child(2n+1){width:100%; margin:0 0 15px 0;}
}
/* ------------------------- */
/* ------------------------- */
/* ------------------------- */
/* ------------------------- */