@charset "UTF-8";
/* 华汉互联 https://www.huahanlink.com/ */
* {
  margin: 0;
  padding: 0;
  -moz-outline: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::after,
*::before {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
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;
}
.white-space {
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .white-space {
    white-space: inherit;
  }
}
/* 动画 */
.dh {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s 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.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
/* 侧边条 */
::-webkit-scrollbar {
  width: 0;
}
/* 媒体查询 缩写 */
/* 布局 */
.w1920 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.w1800 {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
}
.w1720 {
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
}
.w1680 {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}
.w1640 {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
}
.w1600 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.w1560 {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
}
.w1440 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.w1400 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.w1360 {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}
.w1350 {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
}
.w1280 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.w1240 {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.w1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.w1150 {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:1840px) {
  .w1720 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1800px) {
  .w1680 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1760px) {
  .w1640 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1720px) {
  .w1600 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1680px) {
  .w1560 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1560px) {
  .w1440 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1520px) {
  .w1400 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1470px) {
  .w1350 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1400px) {
  .w1280 {
    padding: 0 60px;
  }
}
@media (max-width:1360px) {
  .w1240 {
    padding: 0 60px;
  }
}
@media (max-width:1320px) {
  .w1200 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1270px) {
  .w1150 {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width:1024px) {
  .w1800,
  .w1720,
  .w1680,
  .w1640,
  .w1560,
  .w1440,
  .w1400,
  .w1350,
  .w1280,
  .w1240,
  .w1200,
  .w1150 {
    padding: 0 30px;
  }
}
@media (max-width:990px) {
  .w1800,
  .w1720,
  .w1680,
  .w1640,
  .w1600,
  .w1560,
  .w1440,
  .w1400,
  .w1350,
  .w1280,
  .w1240,
  .w1200,
  .w1150 {
    padding: 0 20px;
  }
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
/* 常用 CSS3 动画 */
/* 360 旋转 */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes run2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes tran_run {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tran_run2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
/* 大 => 小 */
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* 透明度  1 => 0 */
@keyframes bgfd {
  0% {
    width: 0%;
    height: 0%;
    opacity: 1;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
/* 默认 空标签 */
.cle {
  clear: both;
  width: 0;
  height: 0;
  display: block;
  overflow: hidden;
  font-size: 0px;
}
/* 图片 垂直居中 */
.imgmid {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  height: 100%;
  width: 1px;
  margin-left: -1px;
  vertical-align: middle;
  font-size: 0px;
}
.block_a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  overflow: hidden;
}
.none {
  display: none;
}
/* 移动端不兼容 暂不推荐使用 */
.ratio {
  -webkit-aspect-ratio: 1 / 1;
  aspect-ratio: 1 / 1;
}
.center_box {
  position: relative;
  z-index: 5;
}
.m1px {
  margin-bottom: -1px;
}
/* Placeholder style */
:root {
  /* 导航高度 */
  --header-height: 80px;
  /* 动画 */
  --ani: 0.5s ease;
  /* 颜色 */
  --dark-orange: #EE7700;
  --dark-blue: #0D7FD7;
  --dark-green: #23ac38;
  --share-green: #1AAD19;
  --share-yellow: #ff9933;
  --share-blue: #1772f6;
  --share-red: #ff2742;
  --share-black: #1b1c16;
  --share-orange: #f65744;
  /* 栅格 */
  --grid-column: 32;
  /* 字号 1280px ~ 1800px */
  /* 40px ~ 60px */
  --font60: clamp(2.5rem, calc(-0.577rem + 3.85vw), 3.75rem);
  /* 36px ~ 50px */
  --font50: clamp(2.25rem, calc(0.096rem + 2.69vw), 3.125rem);
  /* 32px ~ 48px */
  --font48: clamp(2rem, calc(-0.462rem + 3.08vw), 3rem);
  /* 31px ~ 46px */
  --font46: clamp(1.938rem, calc(-0.37rem + 2.88vw), 2.875rem);
  /* 29px ~ 44px */
  --font44: clamp(1.813rem, calc(-0.495rem + 2.88vw), 2.75rem);
  /* 28px ~ 42px */
  --font42: clamp(1.75rem, calc(-0.404rem + 2.69vw), 2.625rem);
  /* 27px ~ 40px */
  --font40: clamp(1.688rem, calc(-0.313rem + 2.5vw), 2.5rem);
  /* 25px ~ 38px */
  --font38: clamp(1.563rem, calc(-0.438rem + 2.5vw), 2.375rem);
  /* 24px ~ 36px */
  --font36: clamp(1.5rem, calc(-0.346rem + 2.31vw), 2.25rem);
  /* 23px ~ 34px */
  --font34: clamp(1.438rem, calc(-0.255rem + 2.12vw), 2.125rem);
  /* 21px ~ 32px */
  --font32: clamp(1.313rem, calc(-0.38rem + 2.12vw), 2rem);
  /* 20px ~ 30px */
  --font30: clamp(1.25rem, calc(-0.288rem + 1.92vw), 1.875rem);
  /* 19px ~ 28px */
  --font28: clamp(1.188rem, calc(-0.197rem + 1.73vw), 1.75rem);
  /* 18px ~ 26px */
  --font26: clamp(1.125rem, calc(-0.106rem + 1.54vw), 1.625rem);
  /* 17px ~ 24px */
  --font24: clamp(1.063rem, calc(-0.014rem + 1.35vw), 1.5rem);
  /* 16px ~ 22px */
  --font22: clamp(1rem, calc(0.077rem + 1.15vw), 1.375rem);
  /* 15px ~ 20px */
  --font20: clamp(0.938rem, calc(0.168rem + 0.96vw), 1.25rem);
  /* 14px ~ 18px */
  --font18: clamp(0.875rem, calc(0.26rem + 0.77vw), 1.125rem);
  /* 14px ~ 17px */
  --font17: clamp(0.875rem, calc(0.413rem + 0.58vw), 1.063rem);
  /* 13px ~ 16px */
  --font16: clamp(0.813rem, calc(0.351rem + 0.58vw), 1rem);
  /* 12px ~ 14px */
  --font14: clamp(0.75rem, calc(0.442rem + 0.38vw), 0.875rem);
  /* 间距 */
  --spacing-190: clamp(8rem, calc(-1.538rem + 11.92vw), 11.875rem);
  --spacing-180: clamp(7.5rem, calc(-1.731rem + 11.54vw), 11.25rem);
  --spacing-170: clamp(6.875rem, calc(-2.356rem + 11.54vw), 10.625rem);
  --spacing-160: clamp(6.625rem, calc(-1.683rem + 10.38vw), 10rem);
  --spacing-150: clamp(6.25rem, calc(-1.442rem + 9.62vw), 9.375rem);
  --spacing-140: clamp(5.625rem, calc(-0.625rem + 7.81vw), 8.75rem);
  --spacing-120: clamp(5rem, calc(-1.154rem + 7.69vw), 7.5rem);
  --spacing-110: clamp(4.75rem, calc(-0.481rem + 6.54vw), 6.875rem);
  --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 {
    --grid-column: 16;
  }
}
@media (max-width:990px) {
  :root {
    /* 导航高度 */
    --header-height: 60px;
  }
}
@media (max-width:768px) {
  :root {
    --font60: 30px;
    --font50: 26px;
    --font48: 26px;
    --font46: 24px;
    --font44: 24px;
    --font42: 22px;
    --font40: 22px;
    --font38: 21px;
    --font36: 20px;
    --font34: 20px;
    --font32: 20px;
    --font30: 18px;
    --font28: 18px;
    --font26: 16px;
    --font24: 16px;
    --font22: 15px;
    --spacing-190: 60px;
    --spacing-180: 60px;
    --spacing-170: 60px;
    --spacing-160: 60px;
    --spacing-150: 60px;
    --spacing-140: 60px;
  }
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.otf');
  font-weight: 300;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-regular.otf');
  font-weight: normal;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-bold.otf');
  font-weight: 700;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Black.ttf');
  font-weight: 900;
}
@font-face {
  font-family: 'AvantGardeDemiBT';
  src: url('../fonts/AvantGardeDemiBT.ttf');
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../fonts/SourceHanSansCN-ExtraLight.ttf');
  font-weight: 100;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../fonts/SourceHanSansCN-Light.ttf');
  font-weight: 200;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../fonts/SourceHanSansCN-Normal.ttf');
  font-weight: 300;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../fonts/SourceHanSansCN-Regular.ttf');
  font-weight: normal;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../fonts/SourceHanSansCN-Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'SourceHanSansCN';
  src: url('../fonts/SourceHanSansCN-Bold.ttf');
  font-weight: 700;
}
* {
  font-family: 'Gilroy', 'SourceHanSansCN';
  color: #232323;
}
@-webkit-keyframes scrollToTop {
  0% {
    transform: translateY(10px) scale(0.99);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes scrollToTop {
  0% {
    transform: translateY(10px) scale(0.99);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes scrollFade {
  0% {
    transform: translateY(2px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scrollFade {
  0% {
    transform: translateY(2px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.scrollToTop {
  -webkit-animation-name: scrollToTop;
  animation-name: scrollToTop;
}
.scrollFade {
  -webkit-animation-name: scrollFade;
  animation-name: scrollFade;
}
/* 视频弹窗 */
.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.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s 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.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s 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: var(--dark-orange);
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s 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);
}
.grid-box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(var(--grid-column), 1fr);
}
.grid-main {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  grid-area: 1 / 5 / 1 / -5;
}
@media (max-width:1440px) {
  .grid-box {
    padding: 0 60px;
  }
  .grid-main {
    /*grid-area: 1 / 4 / 1 / -4;*/
    grid-area: none;
  }
}
@media (max-width:1024px) {
  .grid-box {
    padding: 0 30px;
  }
  .grid-main {
    /*grid-area: 1 / 2 / 1 / -2;*/
  }
}
@media (max-width:990px) {
  .grid-box {
    padding: 0 20px;
    display: block;
  }
}
/* -------------------- */
/* 头部 */
header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  /* Mobile version header */
}
header .header_box {
  width: 100%;
  height: var(--header-height);
  padding: 0 40px;
  background: #FFFFFF;
}
header .header_box .main_box {
  width: 100%;
  height: 100%;
  position: relative;
  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;
}
header .header_box .main_box .logo {
  width: 18%;
  max-width: 310px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
header .header_box .main_box .logo a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 0;
}
header .header_box .main_box .nav {
  width: auto;
  height: 100%;
}
header .header_box .main_box .nav ul {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: clamp(1.25rem, calc(-1.827rem + 3.85vw), 2.5rem);
}
header .header_box .main_box .nav ul li {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
header .header_box .main_box .nav ul li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  white-space: nowrap;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
header .header_box .main_box .nav ul li ul {
  width: 120px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  display: block;
  border-radius: 0 0 5px 5px;
  background: #FFFFFF;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
header .header_box .main_box .nav ul li ul li {
  width: 100%;
  height: auto;
}
header .header_box .main_box .nav ul li ul li a {
  width: 100%;
  height: auto;
  padding: 10px;
  display: block;
  text-align: center;
  font-size: 14px;
}
header .header_box .main_box .nav ul li > a.active {
  color: var(--dark-orange);
}
header .header_box .main_box .nav ul li:hover > a {
  color: var(--dark-orange);
}
header .header_box .main_box .nav ul li:hover ul {
  visibility: visible;
  opacity: 1;
  pointer-events: initial;
}
header .header_box .main_box .cloumn {
  width: auto;
  height: 100%;
  position: absolute;
  right: 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;
  gap: clamp(1.25rem, calc(-0.288rem + 1.92vw), 1.875rem);
}
header .header_box .main_box .cloumn .search {
  width: auto;
  height: 100%;
}
header .header_box .main_box .cloumn .search .head_btn {
  width: 22px;
  height: 100%;
  font-size: 0;
  cursor: pointer;
}
header .header_box .main_box .cloumn .search .head_btn svg {
  width: 100%;
  height: 100%;
}
header .header_box .main_box .cloumn .search .head_btn svg path {
  fill: #232323;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
header .header_box .main_box .cloumn .search:hover .head_btn svg path {
  fill: var(--dark-orange);
}
header .header_box .main_box .cloumn .language {
  width: auto;
  height: 100%;
  position: relative;
}
header .header_box .main_box .cloumn .language .head_btn {
  width: auto;
  height: 100%;
  position: relative;
  cursor: pointer;
}
header .header_box .main_box .cloumn .language .head_btn .icon {
  width: auto;
  height: 100%;
  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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #FFFFFF;
  font-size: 0;
  mix-blend-mode: screen;
}
header .header_box .main_box .cloumn .language .head_btn::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: #232323;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
header .header_box .main_box .cloumn .language:hover .head_btn::after {
  background: var(--dark-orange);
}
header .header_box .main_box .cloumn .language:hover .language-con {
  opacity: 1;
  visibility: visible;
}
header .header_box .main_box .cloumn .language .language-con {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100px;
  background-color: white;
  border-radius: 10px;
  padding: 0.24rem 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
header .header_box .main_box .cloumn .language .language-con a {
  font-size: 14px;
  color: #041d2c;
  font-weight: 500;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
header .header_box .main_box .cloumn .language .language-con a:hover,
header .header_box .main_box .cloumn .language .language-con a.active {
  color: var(--dark-orange);
}
header .header_box .main_box .cloumn .more {
  width: auto;
  height: auto;
}
header .header_box .main_box .cloumn .more a {
  width: auto;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 clamp(1.25rem, calc(-0.288rem + 1.92vw), 1.875rem);
  border-radius: 50px;
  background: #F5F5F5;
  font-size: 14px;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
header .header_box .main_box .cloumn .more a:hover {
  background: var(--dark-orange);
  color: #FFFFFF;
}
@media (max-width:990px) {
  header .header_box {
    display: none;
  }
}
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_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: #232323;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -50%;
  transform-origin: center;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s 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;
  background: var(--dark-orange);
}
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;
  background: var(--dark-orange);
}
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.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s 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.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s 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.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s 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;
  padding: 20px 20px 0;
  overflow: hidden;
  overflow-y: auto;
}
header .m_header_box .header_body .menu_nav > ul {
  width: 100%;
  height: auto;
}
header .m_header_box .header_body .menu_nav > ul > li {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
header .m_header_box .header_body .menu_nav > ul > li > a {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 20px 0;
}
header .m_header_box .header_body .menu_nav > ul > li > a .title {
  width: 100%;
  height: auto;
  flex: 1;
  font-size: 16px;
  line-height: 1.2;
  color: #232323;
}
header .m_header_box .header_body .menu_nav > ul > li > a .icon {
  width: 10px;
  height: 8px;
  font-size: 0;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
header .m_header_box .header_body .menu_nav > ul > li > a .icon svg {
  width: 100%;
  height: 100%;
}
header .m_header_box .header_body .menu_nav > ul > li > a .icon svg use {
  fill: #232323;
}
header .m_header_box .header_body .menu_nav > ul > li ul {
  padding: 0 0 15px 15px;
  display: none;
}
header .m_header_box .header_body .menu_nav > ul > li ul li a {
  font-size: 14px;
  color: rgba(35, 35, 35, 0.9);
}
header .m_header_box .header_body .menu_nav > ul > li ul li a.active {
  color: var(--dark-orange);
}
header .m_header_box .header_body .menu_nav > ul > li ul li ul li a {
  font-size: 12px;
  color: rgba(35, 35, 35, 0.4);
}
header .m_header_box .header_body .menu_nav > ul > li ul li ul li a.active {
  color: var(--dark-orange);
}
header .m_header_box .header_body .menu_nav > ul > li a.active .title {
  color: var(--dark-orange);
}
header .m_header_box .header_body .menu_nav > ul > li a.active .icon svg use {
  fill: var(--dark-orange);
}
header .m_header_box .header_body .menu_form {
  width: 100%;
  height: auto;
  margin-top: 20px;
  padding: 0 20px;
  overflow: hidden;
}
header .m_header_box .header_body .menu_form .center {
  width: 100%;
  height: 44px;
  background: #F8F8F8;
  overflow: hidden;
}
header .m_header_box .header_body .menu_form .center form {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
header .m_header_box .header_body .menu_form .center form input {
  flex: 1;
  height: 100%;
  padding: 0 15px;
  background: transparent;
  font-size: 14px;
  color: #282f36;
  border: 0;
}
header .m_header_box .header_body .menu_form .center form button {
  width: 50px;
  padding: 0;
}
header .m_header_box .header_body .menu_form .center form button i {
  font-size: 18px;
  color: #FFF;
}
header .m_header_box .header_body .menu_lang {
  width: 100%;
  height: auto;
  margin-top: 40px;
  padding: 0 20px;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
header .m_header_box .header_body .menu_lang .one {
  width: auto;
  height: 36px;
  margin-right: 10px;
  overflow: hidden;
}
header .m_header_box .header_body .menu_lang .one a {
  width: 100%;
  height: 100%;
  padding: 0 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #fff;
  border-radius: 50px;
  font-size: 12px;
  color: #282f36;
}
header .m_header_box .header_body .menu_lang .one a.active {
  background: var(--dark-orange);
  color: #fff;
}
@media (max-width:990px) {
  header .m_header_box {
    display: block;
  }
}
header .m_header_nbsp {
  width: 100%;
  height: var(--header-height);
  display: none;
  overflow: hidden;
}
@media (max-width:990px) {
  header .m_header_nbsp {
    display: block;
  }
}
.search-popup {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: white;
  padding: 60px 0 80px;
  display: none;
}
.search-popup .w1200 {
  position: relative;
}
.search-popup .searchform {
  position: relative;
  width: 100%;
}
.search-popup .searchform .input {
  font-size: var(--font16);
  color: #000;
  font-weight: 500;
  width: 100%;
  height: 60px;
  padding-right: 55px;
  padding-left: 20px;
  border: 2px solid rgba(4, 29, 44, 0.07);
  border-radius: 16px;
  background: white;
}
.search-popup .searchform .input::-webkit-input-placeholder {
  color: #a1acb2;
}
.search-popup .searchform .input:-moz-placeholder {
  color: #a1acb2;
}
.search-popup .searchform .input::-moz-placeholder {
  color: #a1acb2;
}
.search-popup .searchform .input:-ms-input-placeholder {
  color: #a1acb2;
}
.search-popup .searchform .searchsubmit {
  height: 100%;
  position: absolute;
  right: 30px;
  top: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #041d2c;
}
.search-popup .recommend_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  font-size: 14px;
  color: #a1acb2;
  line-height: 1.4;
  padding-left: 20px;
  margin-top: 20px;
}
.search-popup .recommend_list * {
  color: #a1acb2;
  font-weight: 500;
}
.search-popup .recommend_list dd {
  position: relative;
  padding-right: 19px;
  margin-right: 17px;
}
.search-popup .recommend_list dd::before {
  content: '';
  width: 2px;
  height: 2px;
  background-color: #a1acb2;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.search-popup .recommend_list dd:last-child {
  padding: 0;
  margin: 0;
}
.search-popup .recommend_list dd:last-child::before {
  display: none;
}
@media (max-width:1366px) {
  .search-popup .search_close {
    display: none;
  }
}
/* -------------------- */
/* -------------------- */
/* 底部 */
.f_share {
  width: auto;
  height: auto;
}
.f_share .f_title {
  text-align: right;
}
.f_share .share {
  width: auto;
  height: auto;
  margin-top: clamp(1rem, calc(-0.231rem + 1.54vw), 1.5rem);
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.f_share .share .item {
  width: var(--item-size);
  height: var(--item-size);
  margin-left: 10px;
  position: relative;
  z-index: 1;
  --item-size: clamp(2.25rem, calc(1.635rem + 0.77vw), 2.5rem);
}
.f_share .share .item .icon {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: rgba(241, 243, 244, 0.8);
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: hidden;
}
.f_share .share .item .icon i {
  font-size: var(--font18);
  line-height: 1;
  color: rgba(35, 35, 35, 0.34);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.f_share .share .item .icon i::before {
  display: none;
}
.f_share .share .item .icon i img {
  height: 18px;
}
.f_share .share .item .icon::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 100%;
  opacity: 0;
  transform: translate(0, 100%);
  transition: opacity 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), border-radius 0s 0.45s, transform 0s 0.45s;
}
.f_share .share .item .qrcode {
  width: 90px;
  height: auto;
  margin: 0 0 10px;
  padding-bottom: 10px;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.f_share .share .item .qrcode .img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
  background: #FFF;
  font-size: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.f_share .share .item .qrcode::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #FFFFFF transparent transparent transparent;
}
.f_share .share .item.weixin .icon::after {
  background: var(--share-green);
}
.f_share .share .item.weibo .icon::after {
  background: var(--share-yellow);
}
.f_share .share .item.zhihu .icon::after {
  background: var(--share-blue);
}
.f_share .share .item.xiaohongshu .icon::after {
  background: var(--share-red);
}
.f_share .share .item.douyin .icon::after {
  background: var(--share-black);
}
.f_share .share .item.douyin .icon i {
  font-weight: bold;
}
.f_share .share .item.linkedin .icon::after {
  background: var(--share-orange);
}
.f_share .share .item:hover .icon i {
  color: #FFF;
}
.f_share .share .item:hover .icon i img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.f_share .share .item:hover .icon::after {
  opacity: 1;
  border-radius: 0;
  transform: translate(0);
  transition: border-radius 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.f_share .share .item:hover .qrcode {
  margin: 0;
  opacity: 1;
  pointer-events: initial;
  visibility: visible;
}
.f_share .share .item:first-child {
  margin: 0;
}
@media (max-width:990px) {
  .f_share {
    width: 100%;
    margin: 30px 0 0;
  }
  .f_share .f_title {
    text-align: left;
  }
}
footer {
  width: 100%;
  height: auto;
  background: #FFFFFF;
  overflow: hidden;
}
footer .footer_box {
  width: 100%;
  height: auto;
  overflow: hidden;
}
footer .footer_box .f_title {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font16);
  line-height: 1.2;
}
footer .footer_box .footer_top {
  width: 100%;
  height: auto;
  padding: 30px 0;
  border-bottom: 1px solid #F0F0F0;
}
footer .footer_box .footer_top .content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 30px;
}
footer .footer_box .footer_top .content .subscribe_to {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 15px;
}
footer .footer_box .footer_top .content .subscribe_to .icon {
  width: 52px;
  height: auto;
  font-size: 0;
}
footer .footer_box .footer_top .content .subscribe_to .title_box {
  width: auto;
  height: auto;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
footer .footer_box .footer_top .content .subscribe_to .title_box .title {
  width: 100%;
  height: auto;
  font-weight: 700;
  font-size: var(--font24);
  color: #B5D1B3;
}
footer .footer_box .footer_top .content .subscribe_to .title_box .details {
  width: 100%;
  height: auto;
  font-size: var(--font14);
  color: #232323;
}
footer .footer_box .footer_top .content .form_box {
  width: 25.6%;
  min-width: 260px;
  max-width: 336px;
  height: 48px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
footer .footer_box .footer_top .content .form_box form {
  width: 100%;
  height: 100%;
  background: #F2F4F5;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
footer .footer_box .footer_top .content .form_box form input[type="text"] {
  width: 100%;
  height: 100%;
  flex: 1;
  padding: 0 15px;
  border: 0;
  background: transparent;
  font-size: var(--font14);
  color: #232323;
}
footer .footer_box .footer_top .content .form_box form input[type="submit"] {
  width: auto;
  height: 100%;
  padding: 0 30px;
  border: 0;
  background: var(--dark-orange);
  border-radius: 50px;
  font-size: 14px;
  color: #FFFFFF;
  cursor: pointer;
}
footer .footer_box .footer_bottom {
  width: 100%;
  height: auto;
  padding: var(--spacing-60) 0 var(--spacing-70);
}
footer .footer_box .footer_bottom .footer_content {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
footer .footer_box .footer_bottom .footer_content .f_nav {
  width: auto;
  height: auto;
}
footer .footer_box .footer_bottom .footer_content .f_nav .menu_box {
  width: 100%;
  height: auto;
  margin-top: clamp(1rem, calc(-0.231rem + 1.54vw), 1.5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 50px;
}
footer .footer_box .footer_bottom .footer_content .f_nav .menu_box .item {
  width: 100%;
  height: auto;
}
footer .footer_box .footer_bottom .footer_content .f_nav .menu_box .item .one {
  width: 100%;
  height: auto;
  font-size: 0;
}
footer .footer_box .footer_bottom .footer_content .f_nav .menu_box .item .one a {
  font-size: var(--font16);
  color: rgba(35, 35, 35, 0.4);
  line-height: 1.2;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
footer .footer_box .footer_bottom .footer_content .f_nav .menu_box .item .one a:hover {
  color: var(--dark-orange);
}
footer .footer_box .footer_bottom .footer_content .f_nav .menu_box .item .one + .one {
  margin-top: 5px;
}
footer .footer_box .footer_bottom .footer_content .f_contact {
  width: 50%;
  height: auto;
  padding: 0 30px;
}
footer .footer_box .footer_bottom .footer_content .f_contact .details {
  width: 100%;
  height: auto;
  margin-top: clamp(1rem, calc(-0.231rem + 1.54vw), 1.5rem);
  font-size: var(--font16);
  color: #232323;
}
footer .footer_box .footer_bottom .footer_content .f_contact .details p {
  min-height: 0.8em;
}
footer .footer_box .footer_bottom .footer_copy {
  width: 100%;
  height: auto;
  margin: var(--spacing-120) 0 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;
}
footer .footer_box .footer_bottom .footer_copy .copy {
  width: 100%;
  height: auto;
  flex: 1;
  font-size: var(--font14);
  color: rgba(35, 35, 35, 0.6);
}
footer .footer_box .footer_bottom .footer_copy .copy a {
  font-size: var(--font14);
  color: rgba(35, 35, 35, 0.6);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
footer .footer_box .footer_bottom .footer_copy .copy a:hover {
  color: var(--dark-orange);
}
footer .footer_box .footer_bottom .footer_copy .links {
  width: auto;
  height: auto;
  margin-left: 5.2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 5px 24px;
}
footer .footer_box .footer_bottom .footer_copy .links a {
  width: auto;
  height: auto;
  font-size: var(--font14);
  color: rgba(35, 35, 35, 0.6);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
footer .footer_box .footer_bottom .footer_copy .links a:hover {
  color: var(--dark-orange);
}
@media (max-width:1280px) {
  footer .footer_box .footer_top .content .form_box {
    height: 44px;
  }
}
@media (max-width:1024px) {
  footer .footer_box .footer_top .content .form_box {
    height: 40px;
  }
}
@media (max-width:990px) {
  footer .footer_box .footer_bottom .footer_content {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  footer .footer_box .footer_bottom .footer_content .f_nav {
    width: 40%;
  }
  footer .footer_box .footer_bottom .footer_content .f_nav .menu_box {
    grid-gap: 30px;
  }
  footer .footer_box .footer_bottom .footer_content .f_contact {
    padding: 0;
  }
  footer .footer_box .footer_bottom .footer_copy {
    margin: 30px 0 0;
    display: block;
  }
  footer .footer_box .footer_bottom .footer_copy .links {
    margin: 10px 0 0;
  }
}
@media (max-width:768px) {
  footer .footer_box .footer_bottom .footer_content {
    display: block;
  }
  footer .footer_box .footer_bottom .footer_content .f_nav {
    width: 100%;
  }
  footer .footer_box .footer_bottom .footer_content .f_nav .menu_box {
    grid-template-columns: repeat(2, 1fr);
  }
  footer .footer_box .footer_bottom .footer_content .f_contact {
    width: 100%;
    margin: 20px 0 0;
  }
}
@media (max-width:480px) {
  footer .footer_box .footer_top .content {
    display: block;
  }
  footer .footer_box .footer_top .content .form_box {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    margin: 20px 0 0;
  }
  footer .footer_box .footer_bottom .footer_content .f_contact .details {
    font-size: 12px;
  }
}
/* -------------------- */
/* -------------------- */
/* 公共样式 */
/* 标题 */
.idx_title {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.idx_title .classify {
  width: 100%;
  height: auto;
  padding: 0 0 1em;
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: var(--font18);
  color: #232323;
  line-height: 1.2;
}
.idx_title .classify::after {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #BDCDD5;
}
.idx_title .classify + .title {
  margin: 1.5em 0 0;
}
.idx_title .title {
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: var(--font30);
  color: #232323;
  line-height: 1.2;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .idx_title .title {
    white-space: inherit;
  }
}
@media (max-width:1280px) {
  .idx_title .classify::after {
    height: 1px;
  }
}
/* 按钮 */
.idx_more {
  width: auto;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_more a,
.idx_more .more {
  width: auto;
  height: 100%;
  position: relative;
  z-index: 1;
  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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 30px;
  border-radius: 50px;
  background: #232323;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: hidden;
}
.idx_more a .word,
.idx_more .more .word {
  font-size: var(--font14);
  color: #FFFFFF;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_more a .icon,
.idx_more .more .icon {
  width: 16px;
  height: 12px;
  font-size: 0;
}
.idx_more a .icon svg,
.idx_more .more .icon svg {
  width: 100%;
  height: 100%;
}
.idx_more a .icon use,
.idx_more .more .icon use {
  fill: #FFFFFF;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_more a.active,
.idx_more .more.active {
  background: #FFFFFF;
}
.idx_more a.active .word,
.idx_more .more.active .word {
  color: #232323;
}
.idx_more a.active .icon use,
.idx_more .more.active .icon use {
  fill: var(--dark-orange);
}
.idx_more a:hover,
.idx_more .more:hover {
  background: var(--dark-orange);
}
.idx_more a:hover .word,
.idx_more .more:hover .word {
  color: #FFFFFF;
}
.idx_more a:hover .icon use,
.idx_more .more:hover .icon use {
  fill: #FFFFFF;
}
@media (max-width:1280px) {
  .idx_more {
    height: 44px;
  }
  .idx_more a,
  .idx_more .more {
    padding: 0 25px;
    gap: 25px;
  }
  .idx_more a .icon,
  .idx_more .more .icon {
    width: 10px;
    height: 8px;
  }
}
@media (max-width:1024px) {
  .idx_more {
    height: 40px;
  }
  .idx_more a,
  .idx_more .more {
    padding: 0 20px;
  }
}
@media (max-width:990px) {
  .idx_more a,
  .idx_more a.active,
  .idx_more .more,
  .idx_more .more.active {
    background: var(--dark-orange);
  }
  .idx_more a .word,
  .idx_more a.active .word,
  .idx_more .more .word,
  .idx_more .more.active .word {
    color: #FFFFFF;
  }
  .idx_more a .icon use,
  .idx_more a.active .icon use,
  .idx_more .more .icon use,
  .idx_more .more.active .icon use {
    fill: #FFFFFF;
  }
}
@media (max-width:768px) {
  .idx_more a,
  .idx_more .more {
    padding: 0 15px;
  }
}
.alaya-consulting-box {
  width: 100%;
  height: 0;
  position: relative;
  top: -80px;
}
@media (max-width:990px) {
  .alaya-consulting-box {
    top: -60px;
  }
}
/* --------------------------- */
/* --------------------------- */
/* ----- 客服挂件 ----- */
.pendant_box {
  width: clamp(2.75rem, calc(1.519rem + 1.54vw), 3.25rem);
  height: auto;
  position: fixed;
  right: 20px;
  bottom: 30vh;
  z-index: 19;
  pointer-events: none;
}
.pendant_box .pendant_menu {
  width: 100%;
  height: auto;
  background: #FFF;
  border-radius: 50px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
  pointer-events: initial;
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.08);
}
.pendant_box .pendant_menu .item {
  width: 100%;
  height: auto;
  padding: 5px;
  position: relative;
  z-index: 1;
}
.pendant_box .pendant_menu .item:not(:last-child) .one a svg {
  width: 60%;
  height: 60%;
}
.pendant_box .pendant_menu .item:last-child .one .icon {
  background: var(--dark-orange);
  color: white;
  font-size: 12px;
}
.pendant_box .pendant_menu .item:last-child .one .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.pendant_box .pendant_menu .item .one {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.pendant_box .pendant_menu .item .one::after {
  content: '';
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  display: block;
}
.pendant_box .pendant_menu .item .one .icon {
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  color: #3C475C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  transition: background 0.3s ease;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: hidden;
}
.pendant_box .pendant_menu .item .one .icon::before {
  display: none;
}
.pendant_box .pendant_menu .item .one .icon img {
  height: 18px;
}
.pendant_box .pendant_menu .item .text_box {
  width: auto;
  height: auto;
  position: absolute;
  right: 100%;
  top: 0;
  margin-right: 15px;
  padding: 5px 10px 5px 0;
  opacity: 0;
  pointer-events: none;
  visibility: visible;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.pendant_box .pendant_menu .item .text_box a {
  width: 100%;
  height: auto;
  min-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 5px 20px;
  border-radius: 50px;
  background: #FFF;
  font-size: 16px;
  white-space: nowrap;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.pendant_box .pendant_menu .item .qrcode_box {
  width: auto;
  height: auto;
  position: absolute;
  right: 100%;
  top: 0;
  z-index: 10;
  margin-right: 15px;
  transform: translateX(-10px);
  box-shadow: 0px 15px 60px 0px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  visibility: visible;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.pendant_box .pendant_menu .item .qrcode_box .content {
  width: clamp(8.375rem, calc(2.221rem + 7.69vw), 10.875rem);
  height: auto;
  border-radius: var(--border-radius10) var(--border-radius10) 0 0;
  padding: 20px clamp(1rem, calc(-0.231rem + 1.54vw), 1.5rem);
  background: var(--dark-orange);
  text-align: center;
}
.pendant_box .pendant_menu .item .qrcode_box .content .title {
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: var(--font14);
  color: #FFFFFF;
}
.pendant_box .pendant_menu .item .qrcode_box .content .subtitle {
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: var(--font18);
  color: #FFFFFF;
}
.pendant_box .pendant_menu .item .qrcode_box .info {
  width: clamp(8.375rem, calc(2.221rem + 7.69vw), 10.875rem);
  height: auto;
  padding: clamp(1rem, calc(-0.231rem + 1.54vw), 1.5rem) clamp(1rem, calc(-0.231rem + 1.54vw), 1.5rem) 10px;
  border-radius: 0 0 var(--border-radius10) var(--border-radius10);
  background: #FFF;
}
.pendant_box .pendant_menu .item .qrcode_box .info .img {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 0;
  border-radius: var(--border-radius10);
  border: 1px solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.pendant_box .pendant_menu .item .qrcode_box .info .word {
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 5px;
  font-weight: 300;
  font-size: var(--font14);
  color: var(--text-color);
}
.pendant_box .pendant_menu .item:hover .one .icon {
  background: var(--dark-orange);
  color: white;
}
.pendant_box .pendant_menu .item:hover .one .icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.pendant_box .pendant_menu .item:hover .one + * {
  margin-right: 0;
  opacity: 1;
  pointer-events: initial;
}
@media (max-width:990px) {
  .pendant_box {
    display: none;
  }
}
/* 公共样式 - 结束 */
/* -------------------- */
/* -------------------- */
.swiper {
  position: relative;
  overflow: hidden;
}
.swiper .swiper-slide .ani {
  display: none;
}
.swiper .swiper-slide.active .ani,
.swiper .swiper-slide.swiper-slide-active .ani {
  display: block;
}
/* Banner */
.idx_banner {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.idx_banner .banner_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_banner .banner_box .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.idx_banner .banner_box .slide .center_box {
  width: 100%;
  height: auto;
  padding: 90px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.idx_banner .banner_box .slide .center_box .content {
  width: auto;
  height: auto;
}
.idx_banner .banner_box .slide .center_box .content .title_box {
  width: 100%;
  height: auto;
}
.idx_banner .banner_box .slide .center_box .content .title_box .one {
  font-size: clamp(5rem, calc(-2.5rem + 9.38vw), 8.75rem);
  line-height: 1;
}
.idx_banner .banner_box .slide .center_box .content .title_box .first {
  font-weight: 900;
  color: var(--dark-orange);
}
.idx_banner .banner_box .slide .center_box .content .title_box .last {
  margin: -0.5em 0 0;
  width: 500;
  text-indent: 0.5em;
  color: #0054C5;
}
.idx_banner .banner_box .slide .center_box .content .details {
  width: 100%;
  height: auto;
  margin: 10px 0 0;
  font-weight: 100;
  font-size: var(--font36);
  color: #FFFFFF;
  line-height: 1.33;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .idx_banner .banner_box .slide .center_box .content .details {
    white-space: inherit;
  }
}
.idx_banner .banner_box .images {
  width: 100%;
  height: 100%;
}
.idx_banner .banner_box .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
@media (max-width:1560px) {
  .idx_banner .banner_box .slide .center_box {
    padding: 80px 60px;
  }
}
@media (max-width:1024px) {
  .idx_banner .banner_box .slide .center_box {
    padding: 50px 30px;
  }
}
@media (max-width:990px) {
  .idx_banner {
    height: 70vh;
    margin-top: var(--header-height);
  }
  .idx_banner .banner_box .slide .center_box {
    padding: 40px 20px;
  }
}
@media (max-width:480px) {
  .idx_banner .banner_box .slide .center_box .content .title_box .one {
    font-size: 60px;
  }
  .idx_banner .banner_box .slide .center_box .content .details {
    font-size: 16px;
  }
}
/* -------------------- */
/* -------------------- */
/* We are Alaya */
.idx_about {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: linear-gradient(#E2E8F0, #ECECED);
  overflow: hidden;
}
.idx_about .about_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-120) 0 var(--spacing-80);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_about .about_box .about_content {
  width: 100%;
  height: auto;
  flex: 1;
  position: relative;
  z-index: 5;
}
.idx_about .about_box .about_content .title_box {
  width: 100%;
  height: auto;
}
.idx_about .about_box .about_content .title_box .classify {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font48);
  color: var(--dark-orange);
  line-height: 1;
}
.idx_about .about_box .about_content .title_box .title {
  width: 100%;
  height: auto;
  margin: 12px 0 0;
  font-size: var(--font48);
  color: #005496;
  line-height: 1.2;
}
.idx_about .about_box .about_content .title_box .title span {
  color: #005496;
  display: block;
}
.idx_about .about_box .about_content .title_box .title span:nth-child(2) {
  text-indent: 3em;
}
.idx_about .about_box .about_content .menu {
  width: 100%;
  height: auto;
  margin: 50px 0 0;
}
.idx_about .about_box .about_content .menu .one {
  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;
}
.idx_about .about_box .about_content .menu .one .label {
  width: auto;
  height: auto;
  font-weight: 700;
  font-size: var(--font24);
  line-height: 1.2;
}
.idx_about .about_box .about_content .menu .one .word {
  width: 100%;
  height: auto;
  flex: 1;
  font-weight: 200;
  font-size: var(--font24);
  line-height: 1.2;
}
.idx_about .about_box .about_content .menu .one + .one {
  margin-top: 5px;
}
.idx_about .about_box .about_content .info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
  margin-top: var(--spacing-50);
}
.idx_about .about_box .about_content .info .img {
  width: clamp(3.75rem, calc(0.673rem + 3.85vw), 5rem);
  height: 100%;
  border-radius: 10px;
  font-size: 0;
  overflow: hidden;
}
.idx_about .about_box .about_content .info .details {
  width: 100%;
  height: auto;
  flex: 1;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
  font-size: var(--font16);
  line-height: 1.5;
}
.idx_about .about_box .about_content .idx_more {
  margin: var(--spacing-80) 0 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.idx_about .about_box .about_main {
  width: var(--r);
  height: 100%;
  margin-left: 50px;
  position: relative;
  z-index: 1;
  --r: clamp(23.125rem, calc(-5.183rem + 35.38vw), 34.625rem);
}
.idx_about .about_box .about_main .about_line {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.idx_about .about_box .about_main .about_line .one {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(172, 197, 211, 0.3);
}
.idx_about .about_box .about_main .about_line .first {
  width: 224%;
  height: 224%;
}
.idx_about .about_box .about_main .about_line .middle {
  width: 160%;
  height: 160%;
}
.idx_about .about_box .about_main .about_line .last {
  width: 120%;
  height: 120%;
}
.idx_about .about_box .about_main .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.idx_about .about_box .about_main .swiper_box .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0;
}
.idx_about .about_box .about_main .swiper_box .swiper-slide .images {
  width: 100%;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
}
.idx_about .about_box .about_main .swiper_box .swiper-slide .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_about .about_box .about_main .swiper_box .swiper-slide .info_box {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  pointer-events: initial;
}
.idx_about .about_box .about_main .swiper_box .swiper-slide .info_box .info {
  width: 100%;
  height: auto;
  text-align: center;
  visibility: hidden;
}
.idx_about .about_box .about_main .swiper_box .swiper-slide .info_box .info .number {
  font-size: var(--font50);
  color: #FFFFFF;
  line-height: 1;
}
.idx_about .about_box .about_main .swiper_box .swiper-slide .info_box .info .details {
  width: 100%;
  height: auto;
  font-size: 12px;
  color: #FFFFFF;
}
.idx_about .about_box .about_main .swiper_box .swiper-slide .info_box .play_box {
  display: none;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: rotate(240deg) translateY(calc(-1 * (var(--r) / 2))) rotate(-240deg);
  cursor: pointer;
  pointer-events: initial;
}
.idx_about .about_box .about_main .swiper_box .swiper-slide .info_box .play_box .play_main {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  --play-r: clamp(4.25rem, calc(-0.673rem + 6.15vw), 6.25rem);
}
.idx_about .about_box .about_main .swiper_box .swiper-slide .info_box .play_box .play_main .play {
  width: var(--play-r);
  height: var(--play-r);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: var(--border-radius10) solid #FF984D;
  border-radius: 50%;
  background: #F47920;
  box-shadow: 0 0 0 var(--border-radius10) rgba(255, 255, 255, 0.2);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_about .about_box .about_main .swiper_box .swiper-slide .info_box .play_box .play_main .play img {
  max-width: 80%;
  max-height: 80%;
}
.idx_about .about_box .about_main .swiper_box .swiper-slide .info_box .play_box .play_main .word {
  width: auto;
  height: auto;
  position: absolute;
  left: 50%;
  top: calc(var(--play-r) / 1.5);
  transform: translateX(-50%);
  font-weight: 500;
  font-size: var(--font14);
  white-space: nowrap;
}
.idx_about .about_box .about_main .swiper_box .pager_box {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 5;
  visibility: hidden;
  overflow: hidden;
}
.idx_about .about_box .about_main .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;
}
.idx_about .about_box .about_main .swiper_box .pager_box .pager span {
  width: 8px;
  height: 8px;
  margin: 0 3px;
  border-radius: 50%;
  background: var(--dark-orange);
  opacity: 0.14;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_about .about_box .about_main .swiper_box .pager_box .pager span:nth-child(2n) {
  opacity: 0.4;
}
.idx_about .about_box .about_main .swiper_box .pager_box .pager span.active,
.idx_about .about_box .about_main .swiper_box .pager_box .pager span:hover {
  opacity: 1;
}
.idx_about .about_box .about_main .swiper_text {
  width: clamp(10rem, calc(-2.308rem + 15.38vw), 15rem);
  height: clamp(10rem, calc(-2.308rem + 15.38vw), 15rem);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
  transform: translate(30%, -20%);
  border-radius: 50%;
  background: #FFF url('../images/icon_about.png') no-repeat center / cover;
  overflow: hidden;
}
.idx_about .about_box .about_main .swiper_text .swiper-slide {
  width: 100%;
  height: 100%;
  padding: 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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
}
.idx_about .about_box .about_main .swiper_text .swiper-slide .number {
  transform: none !important;
  width: 100%;
  height: auto;
  /* margin: 0 0 -.3em; */
  font-size: clamp(2.4rem, calc(-0.673rem + 4vw), 4rem);
  font-family: "DaunPenh";
  color: #6288B2;
  line-height: 1;
}
.idx_about .about_box .about_main .swiper_text .swiper-slide .details {
  transform: none !important;
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font14);
  color: #595959;
  line-height: 1.33;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .idx_about .about_box .about_main .swiper_text .swiper-slide .details {
    white-space: inherit;
  }
}
.idx_about .about_box .about_main .swiper_text .pager_box {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 5;
  overflow: hidden;
}
.idx_about .about_box .about_main .swiper_text .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;
}
.idx_about .about_box .about_main .swiper_text .pager_box .pager span {
  width: 8px;
  height: 8px;
  margin: 0 3px;
  border-radius: 50%;
  background: var(--dark-orange);
  opacity: 0.14;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_about .about_box .about_main .swiper_text .pager_box .pager span:nth-child(2n) {
  opacity: 0.4;
}
.idx_about .about_box .about_main .swiper_text .pager_box .pager span.active,
.idx_about .about_box .about_main .swiper_text .pager_box .pager span:hover {
  opacity: 1;
}
@media (max-width:1024px) {
  .idx_about .about_box .about_main .swiper_text {
    transform: translate(20%, -15%);
  }
}
@media (max-width:990px) {
  .idx_about .about_box {
    display: block;
  }
  .idx_about .about_box .about_content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
  }
  .idx_about .about_box .about_content .menu {
    margin: 0;
  }
  .idx_about .about_box .about_main {
    margin: 50px auto 0;
  }
  .idx_about .about_box .about_main .swiper_text {
    transform: translate(40%, -15%);
  }
}
@media (max-width:768px) {
  .idx_about .about_box .about_content {
    display: block;
  }
  .idx_about .about_box .about_content .menu {
    margin-top: 30px;
  }
  .idx_about .about_box .about_main .swiper_box .swiper-slide .info_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .idx_about .about_box .about_main .swiper_box .swiper-slide .info_box .info {
    visibility: visible;
  }
  .idx_about .about_box .about_main .swiper_box .swiper-slide .info_box .play_box {
    width: auto;
    height: auto;
    margin: 20px 0 0;
    position: relative;
    left: 0;
    top: 0;
    transform: none;
  }
  .idx_about .about_box .about_main .swiper_box .swiper-slide .info_box .play_box .play_main .play {
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0);
  }
  .idx_about .about_box .about_main .swiper_box .swiper-slide .info_box .play_box .play_main .word {
    width: 100%;
    height: auto;
    margin-top: 15px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0);
  }
  .idx_about .about_box .about_main .swiper_box .pager_box {
    visibility: visible;
  }
  .idx_about .about_box .about_main .swiper_text {
    display: none;
  }
}
@media (max-width:480px) {
  .idx_about .about_box .about_main {
    width: 100%;
  }
}
/* -------------------- */
/* -------------------- */
/* 专业服务 */
.idx_whattodo {
  width: 100%;
  height: auto;
  background: #C7D8E0;
  overflow: hidden;
}
.idx_whattodo .whattodo_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding: var(--spacing-100) 0 var(--spacing-120);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_whattodo .whattodo_box .content {
  width: 44.44%;
  height: auto;
}
.idx_whattodo .whattodo_box .content .menu_box {
  width: 100%;
  height: auto;
  margin: var(--spacing-60) 0 0;
  overflow: hidden;
}
.idx_whattodo .whattodo_box .content .menu_box .item {
  width: 100%;
  height: auto;
  margin: 10px 0 0;
  padding: 0 var(--spacing-30);
  background: rgba(189, 207, 215, 0.7);
  border-radius: var(--border-radius20);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: hidden;
}
.idx_whattodo .whattodo_box .content .menu_box .item .headline {
  width: 100%;
  height: auto;
  padding: 25px 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;
  cursor: pointer;
}
.idx_whattodo .whattodo_box .content .menu_box .item .headline .word {
  width: 100%;
  height: auto;
  margin: 0 20px 0 0;
  flex: 1;
  line-height: 1.2;
  font-size: var(--font24);
  color: #232323;
}
.idx_whattodo .whattodo_box .content .menu_box .item .headline .icon {
  width: 12px;
  height: 1.2em;
  display: -webkit-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(--font24);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_whattodo .whattodo_box .content .menu_box .item .info_box {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: none;
}
.idx_whattodo .whattodo_box .content .menu_box .item .info_box::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background: #ABBDC4;
}
.idx_whattodo .whattodo_box .content .menu_box .item .info_box .menu {
  width: 100%;
  height: auto;
  padding: 20px 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.idx_whattodo .whattodo_box .content .menu_box .item .info_box .menu .one {
  width: 100%;
  height: auto;
  font-size: var(--font14);
  color: #232323;
}
.idx_whattodo .whattodo_box .content .menu_box .item:first-child {
  margin: 0;
}
.idx_whattodo .whattodo_box .content .menu_box .item.active {
  background: rgba(184, 202, 209, 0.8);
}
.idx_whattodo .whattodo_box .content .menu_box .item.active .headline .icon {
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.idx_whattodo .whattodo_box .canvas_box {
  width: 50%;
  height: 100%;
  position: relative;
  right: 0;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.idx_whattodo .whattodo_box .canvas_box::after {
  content: '';
  width: 100%;
  height: 0;
  padding-bottom: 80%;
  display: block;
  pointer-events: none;
}
.idx_whattodo .whattodo_box .canvas_box canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}
@media (max-width:768px) {
  .idx_whattodo .whattodo_box {
    display: block;
  }
  .idx_whattodo .whattodo_box .content {
    width: 100%;
    position: relative;
    z-index: 5;
  }
  .idx_whattodo .whattodo_box .canvas_box {
    display: none;
  }
}
/* -------------------- */
/* -------------------- */
/* 我们有何不同 */
.idx_difference {
  width: 100%;
  height: auto;
  background: #141B4D url('../images/difference_bg.jpg') no-repeat center / cover;
  overflow: hidden;
}
.idx_difference .difference_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-80) 0 var(--spacing-170);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_difference .difference_box .difference_tabs {
  width: 41.667%;
  max-width: 600px;
  height: auto;
}
.idx_difference .difference_box .difference_tabs .title_box {
  width: 100%;
  height: auto;
  text-align: center;
}
.idx_difference .difference_box .difference_tabs .title_box .word {
  width: auto;
  height: auto;
  font-weight: 200;
  font-size: var(--font30);
  color: #FFFFFF;
  line-height: 1.5;
}
.idx_difference .difference_box .difference_tabs .title_box .word span {
  color: #79BDEA;
}
.idx_difference .difference_box .difference_tabs .tabs_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin: 40px 0 0;
  --gap-y: 190px;
  --gap-x: 60px;
  --more-h: 80px;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--gap-y) var(--gap-x);
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item .info_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item .info_box::after {
  content: '';
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  display: block;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item .info_box .info {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: hidden;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item .info_box .info .icon {
  width: 100%;
  height: auto;
  text-align: center;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item .info_box .info .word {
  width: 100%;
  height: 3em;
  margin: 5px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  font-size: var(--font16);
  line-height: 1.2;
  white-space: break-spaces;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media (max-width:1840px) {
  .idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item .info_box .info .word {
    white-space: inherit;
  }
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item::after {
  content: '';
  width: calc(100% + var(--gap-x));
  height: calc(50% + (var(--gap-y) - var(--more-h)) / 2 + var(--more-h) / 2 + var(--more-h) * 0.1);
  position: absolute;
  opacity: 0.2;
  pointer-events: none;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item:nth-child(1)::after {
  left: 50%;
  top: 50%;
  background: url('../images/icon_line_lt.png') no-repeat left bottom / cover;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item:nth-child(2)::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 50%;
  background: url('../images/icon_line_c.png') no-repeat center;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item:nth-child(3)::after {
  right: 50%;
  top: 50%;
  background: url('../images/icon_line_rt.png') no-repeat right bottom / cover;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item:nth-child(4)::after {
  left: 50%;
  bottom: 50%;
  background: url('../images/icon_line_lb.png') no-repeat left top / cover;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item:nth-child(5)::after {
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 50%;
  background: url('../images/icon_line_c.png') no-repeat center;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item:nth-child(6)::after {
  right: 50%;
  bottom: 50%;
  background: url('../images/icon_line_rb.png') no-repeat right top / cover;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item.active .info_box {
  box-shadow: 0 0 0 6px #2A3F75;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item.active .info_box .info {
  background: #79BDEA;
  box-shadow: 0 0 0 6px #67A0D3 inset;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item.active .info_box .info .icon {
  filter: brightness(0) invert(1);
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item.active .info_box .info .word {
  color: #FFF;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_menu .item.active::after {
  opacity: 1;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_more {
  width: auto;
  height: var(--more-h);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
  background: #141B4D;
  font-size: var(--font18);
  color: #FFF;
}
.idx_difference .difference_box .difference_tabs .tabs_box .tabs_more span {
  color: var(--dark-orange);
}
.idx_difference .difference_box .difference_main {
  width: 44.444%;
  height: auto;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.idx_difference .difference_box .difference_main .idx_title .classify {
  color: #FFFFFF;
}
.idx_difference .difference_box .difference_main .idx_title .classify::after {
  background: #FFF;
}
.idx_difference .difference_box .difference_main .swiper_box {
  width: 100%;
  height: auto;
  margin: var(--spacing-60) 0 0;
}
.idx_difference .difference_box .difference_main .swiper_box .swiper-slide {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0;
}
.idx_difference .difference_box .difference_main .swiper_box .swiper-slide.active {
  z-index: 5;
  pointer-events: initial;
}
.idx_difference .difference_box .difference_main .swiper_box .swiper-slide .title_box {
  width: 100%;
  height: auto;
}
.idx_difference .difference_box .difference_main .swiper_box .swiper-slide .title_box .title {
  width: 100%;
  height: auto;
  font-weight: 200;
  font-size: var(--font30);
  color: #FFFFFF;
  pointer-events: initial;
}
.idx_difference .difference_box .difference_main .swiper_box .swiper-slide .title_box .subtitle {
  width: 100%;
  height: auto;
  font-size: var(--font36);
  color: var(--dark-orange);
  pointer-events: initial;
}
.idx_difference .difference_box .difference_main .swiper_box .swiper-slide .details {
  width: 100%;
  height: auto;
  margin: var(--spacing-50) 0 0;
  font-weight: 200;
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  white-space: break-spaces;
  pointer-events: initial;
}
@media (max-width:1840px) {
  .idx_difference .difference_box .difference_main .swiper_box .swiper-slide .details {
    white-space: inherit;
  }
}
.idx_difference .difference_box .difference_main .swiper_box .swiper-slide .idx_more {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin: var(--spacing-50) 0 0;
}
.idx_difference .difference_box .difference_main .swiper_box .swiper-slide .idx_more a:hover {
  --bg-color: var(--dark-orange);
}
.idx_difference .difference_box .difference_main .swiper_box .swiper-slide .idx_more a:hover .icon {
  filter: brightness(0) invert(1);
}
.idx_difference .difference_box .difference_main .pager_box {
  width: 100%;
  height: auto;
  margin: 40px 0 0;
  display: none;
}
.idx_difference .difference_box .difference_main .pager_box .pager {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 6px;
}
.idx_difference .difference_box .difference_main .pager_box .pager span {
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: var(--dark-orange);
  opacity: 0.2;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_difference .difference_box .difference_main .pager_box .pager .active {
  opacity: 1;
}
@media (max-width:1024px) {
  .idx_difference .difference_box .difference_main .swiper_box .swiper-slide .details {
    white-space: normal;
  }
}
@media (max-width:990px) {
  .idx_difference .difference_box {
    padding: 60px 0;
    display: block;
  }
  .idx_difference .difference_box .difference_tabs {
    display: none;
  }
  .idx_difference .difference_box .difference_main {
    width: 100%;
  }
  .idx_difference .difference_box .difference_main .idx_title .classify {
    width: 50%;
  }
  .idx_difference .difference_box .difference_main .swiper_box .swiper-slide .idx_more a {
    --bg-color: var(--dark-orange);
  }
  .idx_difference .difference_box .difference_main .pager_box {
    display: block;
  }
}
/* -------------------- */
/* -------------------- */
/* 他们为什么要选择本识 */
.idx_good_select {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_good_select .good_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0 60px;
}
.idx_good_select .good_box .idx_title {
  width: 50%;
}
.idx_good_select .good_box .idx_title .classify::after {
  background: #ECF1F3;
}
.idx_good_select .good_box .good_main {
  width: 66.66%;
  height: auto;
  padding: var(--spacing-60) 0 0;
}
.idx_good_select .good_box .good_main .swiper_box {
  width: 100%;
  height: auto;
}
.idx_good_select .good_box .good_main .swiper_box .swiper-slide {
  width: 100%;
  height: auto;
  opacity: 0;
}
.idx_good_select .good_box .good_main .swiper_box .swiper-slide .title_box {
  width: 100%;
  height: auto;
}
.idx_good_select .good_box .good_main .swiper_box .swiper-slide .title_box .icon {
  width: 100%;
  max-width: 580px;
  height: clamp(1.375rem, calc(-0.317rem + 2.12vw), 2.063rem);
  font-size: 0;
}
.idx_good_select .good_box .good_main .swiper_box .swiper-slide .title_box .icon.last {
  text-align: right;
}
.idx_good_select .good_box .good_main .swiper_box .swiper-slide .title_box .title {
  width: 100%;
  height: calc(4em * 1.33);
  margin: 1em 0 10px;
  font-weight: 200;
  font-size: var(--font24);
  line-height: 1.33;
  white-space: break-spaces;
  overflow: hidden;
}
@media (max-width:1840px) {
  .idx_good_select .good_box .good_main .swiper_box .swiper-slide .title_box .title {
    white-space: inherit;
  }
}
.idx_good_select .good_box .good_main .swiper_box .swiper-slide .content {
  width: 100%;
  height: auto;
  margin: 50px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  overflow: hidden;
}
.idx_good_select .good_box .good_main .swiper_box .swiper-slide .content .icon {
  width: auto;
  height: auto;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
  font-size: 0;
}
.idx_good_select .good_box .good_main .swiper_box .swiper-slide .content .line {
  width: 1px;
  height: auto;
  margin: 0 10px;
  background: #232323;
}
.idx_good_select .good_box .good_main .swiper_box .swiper-slide .content .info {
  width: auto;
  height: auto;
}
.idx_good_select .good_box .good_main .swiper_box .swiper-slide .content .info .word {
  width: 100%;
  height: auto;
  font-size: var(--font14);
  color: #232323;
  line-height: 1.5;
}
.idx_good_select .good_box .good_main .swiper_box .swiper-slide .content .info .word.active {
  font-weight: 700;
}
.idx_good_select .good_box .good_main .pager_box {
  width: 100%;
  height: auto;
  margin: clamp(5rem, calc(-0.581rem + 11.63vw), 12.5rem) 0 0;
}
.idx_good_select .good_box .good_main .pager_box .pager {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 10px;
  --item-size: 72px;
}
.idx_good_select .good_box .good_main .pager_box .pager .item {
  width: var(--item-size);
  height: var(--item-size);
  border-radius: 50%;
  background: #F1F1F1;
  opacity: 1;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: hidden;
}
.idx_good_select .good_box .good_main .pager_box .pager .item .icon {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_good_select .good_box .good_main .pager_box .pager .item .icon img {
  max-width: 70%;
  max-height: 70%;
  object-fit: cover;
}
.idx_good_select .good_box .good_main .pager_box .pager .item.active {
  background: #FFF;
  box-shadow: 0 0 0 3px #a8d1fd inset;
}
.idx_good_select .good_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.idx_good_select .good_bg .svg_box {
  width: 49.6875%;
  height: auto;
  position: relative;
  z-index: 10;
  --stroke-width: 40px;
  --translate: calc(var(--stroke-width) / 2);
}
.idx_good_select .good_bg .svg_box svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  transform: translateY(-10%);
}
.idx_good_select .good_bg .svg_box svg .path_border {
  transform: translate(var(--translate), 20px);
  stroke: #F1F1F1;
  stroke-width: var(--stroke-width);
  fill: none;
}
.idx_good_select .good_bg .images {
  width: 100%;
  height: 120%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  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;
  -webkit-mask: url('../images/logo_bg.png') no-repeat right 10% / 49.6875% auto;
  mask: url('../images/logo_bg.png') no-repeat right 10% / 49.6875% auto;
}
.idx_good_select .good_bg .images .img {
  width: 56.5625%;
  height: 100%;
  overflow: hidden;
}
.idx_good_select .good_bg .images .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:1280px) {
  .idx_good_select .good_box .good_main .pager_box .pager .item.active {
    box-shadow: 0 0 0 2px var(--dark-orange) inset;
  }
}
@media (max-width:990px) {
  .idx_good_select .good_box .good_main .swiper_box .swiper-slide .title {
    height: auto ;
    white-space: normal;
  }
  .idx_good_select .good_box .good_main .pager_box .pager {
    grid-gap: 5px;
  }
  .idx_good_select .good_box .good_main .pager_box .pager .item.active {
    box-shadow: 0 0 0 1px var(--dark-orange) inset;
  }
  .idx_good_select .good_bg .svg_box {
    width: 70%;
  }
  .idx_good_select .good_bg .svg_box svg .path_border {
    transform: translate(8px, 8px);
    stroke-width: 16px;
  }
  .idx_good_select .good_bg .images {
    -webkit-mask-size: 70% auto;
    mask-size: 70% auto;
  }
  .idx_good_select .good_bg .images .img {
    width: 100%;
  }
}
@media (max-width:768px) {
  .idx_good_select .good_box .idx_title {
    width: 100%;
  }
  .idx_good_select .good_box .good_main {
    width: 100%;
  }
  .idx_good_select .good_bg {
    height: auto;
    margin: -35vh 0 -25vh;
    position: relative;
    z-index: 1;
  }
  .idx_good_select .good_bg .svg_box {
    width: 100%;
  }
  .idx_good_select .good_bg .svg_box svg {
    transform: translateY(0);
  }
  .idx_good_select .good_bg .images {
    -webkit-mask-position: right center;
    mask-position: right center;
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
  }
}
/* -------------------- */
/* -------------------- */
/* 新闻 */
.idx_news {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_news::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(#D7E3EC, #F6F9FC);
  opacity: 0.4;
  pointer-events: none;
}
.idx_news .news_box {
  width: 100%;
  height: auto;
  padding: clamp(3.75rem, calc(0.494rem + 6.78vw), 8.125rem) 0;
  overflow: hidden;
}
.idx_news .news_box .news_classify {
  width: 100%;
  height: auto;
  font-weight: 700;
  font-size: var(--font18);
  color: #232323;
}
.idx_news .news_box .news_head {
  width: 100%;
  height: auto;
  padding: 0 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_news .news_box .news_head .classify {
  width: auto;
  height: auto;
  font-weight: 700;
  font-size: var(--font18);
  color: #232323;
}
.idx_news .news_box .news_head .more {
  width: auto;
  height: auto;
}
.idx_news .news_box .news_head .more a {
  width: auto;
  height: auto;
  padding: 2px 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_news .news_box .news_head .more a .word {
  font-size: var(--font14);
  color: var(--dark-orange);
  line-height: 1;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_news .news_box .news_head .more a .icon {
  width: auto;
  height: auto;
  margin-left: 5px;
  font-size: 0;
}
.idx_news .news_box .news_head .more a::after {
  content: '';
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: var(--dark-orange);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_news .news_box .news_head .more a:hover::after {
  width: 100%;
}
.idx_news .news_box .news_main {
  width: 100%;
  height: auto;
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}
.idx_news .news_box .news_main .news_active {
  width: 100%;
  height: auto;
  grid-column: span 3;
}
.idx_news .news_box .news_main .news_active a {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
}
.idx_news .news_box .news_main .news_active a .content {
  width: 100%;
  height: auto;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.idx_news .news_box .news_main .news_active a .content .classify {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.idx_news .news_box .news_main .news_active a .content .classify .word {
  width: auto;
  height: auto;
  padding: 0 10px;
  border-radius: 50px;
  background: #E6EEF3;
  font-size: 12px;
  color: #232323;
  line-height: 2;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_news .news_box .news_main .news_active a .content .title {
  width: 100%;
  height: auto;
  margin: 1em 0 0;
  font-weight: 500;
  font-size: var(--font24);
  color: #232323;
  line-height: 1.33;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_news .news_box .news_main .news_active a .content .time {
  width: 100%;
  height: auto;
  margin: 3em 0 0;
  font-weight: 500;
  font-size: var(--font14);
  color: #232323;
}
.idx_news .news_box .news_main .news_active a .images {
  width: 100%;
  height: auto;
  grid-column: span 2;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.idx_news .news_box .news_main .news_active a .images .pb {
  padding-bottom: 64.97175141%;
}
.idx_news .news_box .news_main .news_active a .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_news .news_box .news_main .news_active a:hover .content .classify .word {
  background: #232323;
  color: #FFFFFF;
}
.idx_news .news_box .news_main .news_active a:hover .content .title {
  color: var(--dark-orange);
}
.idx_news .news_box .news_main .news_list {
  width: 100%;
  height: auto;
  padding: 20px;
  border-radius: var(--border-radius20);
  background: #FFF;
}
.idx_news .news_box .news_main .news_list .menu_box {
  width: 100%;
  height: auto;
}
.idx_news .news_box .news_main .news_list .menu_box .one {
  width: 100%;
  height: auto;
  border-top: 1px solid #EFEFEF;
  overflow: hidden;
}
.idx_news .news_box .news_main .news_list .menu_box .one a {
  width: 100%;
  height: auto;
  padding: 15px 0;
  display: block;
}
.idx_news .news_box .news_main .news_list .menu_box .one a .time {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font14);
  color: #232323;
  opacity: 0.4;
}
.idx_news .news_box .news_main .news_list .menu_box .one a .title {
  width: 100%;
  height: auto;
  margin: 2px 0 0;
  font-weight: 500;
  font-size: var(--font16);
  color: #232323;
  line-height: 1.2;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_news .news_box .news_main .news_list .menu_box .one a:hover .title {
  color: var(--dark-orange);
}
.idx_news .news_box .news_main .news_menu {
  width: 100%;
  height: auto;
  grid-column: span 4;
}
.idx_news .news_box .news_main .news_menu .news_head {
  display: none;
}
.idx_news .news_box .news_main .news_menu .menu_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}
.idx_news .news_box .news_main .news_menu .menu_box .item {
  width: 100%;
  height: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.idx_news .news_box .news_main .news_menu .menu_box .item a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.idx_news .news_box .news_main .news_menu .menu_box .item a .info {
  width: 100%;
  height: auto;
}
.idx_news .news_box .news_main .news_menu .menu_box .item a .info .classify {
  width: 100%;
  height: auto;
  padding: 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.idx_news .news_box .news_main .news_menu .menu_box .item a .info .classify .word {
  width: auto;
  height: auto;
  padding: 0 10px;
  border-radius: 50px;
  background: #E6EEF3;
  font-size: 12px;
  color: #232323;
  line-height: 2;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_news .news_box .news_main .news_menu .menu_box .item a .info .title {
  width: 85%;
  height: auto;
  margin: 1em 0 0;
  font-weight: 500;
  font-size: var(--font20);
  color: #232323;
  line-height: 1.33;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.idx_news .news_box .news_main .news_menu .menu_box .item a .time {
  width: 100%;
  height: auto;
  margin: 3em 0 0;
  font-weight: 500;
  font-size: var(--font14);
  color: #232323;
}
.idx_news .news_box .news_main .news_menu .menu_box .item a:hover .info .classify .word {
  background: #232323;
  color: #FFFFFF;
}
.idx_news .news_box .news_main .news_menu .menu_box .item a:hover .info .title {
  color: var(--dark-orange);
}
@media (max-width:990px) {
  .idx_news .news_box {
    padding-bottom: 30px;
  }
  .idx_news .news_box .news_head {
    border-bottom: 1px solid #EFEFEF;
  }
  .idx_news .news_box .news_main {
    display: block;
  }
  .idx_news .news_box .news_main .news_active a {
    display: block;
    position: relative;
    z-index: 1;
  }
  .idx_news .news_box .news_main .news_active a .content {
    padding: 20px 15px;
    border: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
  }
  .idx_news .news_box .news_main .news_active a .content .classify .word {
    background: #FFFFFF;
  }
  .idx_news .news_box .news_main .news_list {
    margin: 20px 0 0;
    padding: 20px 15px;
  }
  .idx_news .news_box .news_main .news_list .menu_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 20px;
  }
  .idx_news .news_box .news_main .news_list .menu_box .one {
    border-top: 0;
    border-bottom: 1px solid #EFEFEF;
  }
  .idx_news .news_box .news_main .news_list .menu_box .one a .title {
    margin: 5px 0 0;
    font-size: var(--font20);
  }
  .idx_news .news_box .news_main .news_menu {
    margin: 20px 0 0;
    padding: 20px 15px;
    border-radius: var(--border-radius20);
    background: #FFFFFF;
  }
  .idx_news .news_box .news_main .news_menu .news_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .idx_news .news_box .news_main .news_menu .menu_box {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 20px;
  }
  .idx_news .news_box .news_main .news_menu .menu_box .item {
    border-top: 0;
    border-bottom: 1px solid #EFEFEF;
  }
  .idx_news .news_box .news_main .news_menu .menu_box .item a {
    padding: 15px 0;
  }
  .idx_news .news_box .news_main .news_menu .menu_box .item a .info .classify {
    display: none;
  }
  .idx_news .news_box .news_main .news_menu .menu_box .item a .info .title {
    width: 100%;
    margin: 0;
  }
  .idx_news .news_box .news_main .news_menu .menu_box .item a .time {
    margin: 5px 0;
    color: #999999;
  }
}
@media (max-width:768px) {
  .idx_news .news_box .news_main .news_list .menu_box {
    grid-template-columns: 100%;
  }
  .idx_news .news_box .news_main .news_menu .menu_box {
    grid-template-columns: 100%;
  }
}
/* -------------------- */
/* -------------------- */
/* 即刻咨询 */
.idx_consult {
  width: 100%;
  height: auto;
  min-height: clamp(7.5rem, calc(-0.872rem + 17.44vw), 18.75rem);
  padding: 60px 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.idx_consult .consult_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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
}
.idx_consult .consult_box .details {
  width: 100%;
  height: auto;
  flex: 1;
  margin-right: 5.2vw;
  font-family: 'Euclid Square', 'Source Han Sans CN', 'PingFang SC', 'Microsoft YaHei', 'HelveticaNeue', 'Helvetica', 'Droid Sans', 'Segoe', 'Heiti SC', 'Droidsansfallback', 'Dengxian';
  font-weight: 100;
  font-size: var(--font30);
  color: #FFFFFF;
  line-height: 1.2;
  white-space: break-spaces;
  overflow: hidden;
}
@media (max-width:1840px) {
  .idx_consult .consult_box .details {
    white-space: inherit;
  }
}
.idx_consult .images {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  font-size: 0;
  overflow: hidden;
}
.idx_consult .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:768px) {
  .idx_consult .consult_box {
    display: block;
  }
  .idx_consult .consult_box .details {
    white-space: normal;
  }
  .idx_consult .consult_box .idx_more {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-top: 20px;
  }
}
/* -------------------- */
/* -------------------- */
/* -------------------- */
/* -------------------- */
/* -------------------- */
/* 内页 - 默认样式 */
/* 背景 */
.block-bg {
  background: #F3F8F6 linear-gradient(rgba(215, 227, 236, 0.4), rgba(246, 249, 252, 0.4));
}
.resources-bg {
  background: #dfeaee;
}
.training-bg {
  background: #d7e4df;
}
.climate-bg {
  background: #f3f8f6;
}
/* 标题 */
.inner_title {
  width: 100%;
  height: auto;
}
.inner_title .classify {
  width: 44.44%;
  max-width: 750px;
  height: auto;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  font-size: var(--font18);
  color: #232323;
  line-height: 1.2;
}
.inner_title .title {
  width: 55%;
  height: auto;
  font-weight: 300;
  font-size: var(--font30);
  color: #232323;
  line-height: 1.25;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_title .title {
    white-space: inherit;
  }
}
.inner_title .details {
  width: 62%;
  height: auto;
  font-size: var(--font16);
  color: #232323;
  line-height: 1.5;
}
.inner_title > * + * {
  margin-top: var(--spacing-50);
}
@media (max-width:1024px) {
  .inner_title .title {
    width: 100%;
  }
  .inner_title .details {
    width: 100%;
  }
}
@media (max-width:768px) {
  .inner_title .classify {
    width: 100%;
  }
}
/* -------------------- */
/* -------------------- */
/* ----- 资源中心 ----- */
/* 战略制定及体系搭建 */
.inner_esg-1 {
  width: 100%;
  height: auto;
  margin-top: var(--header-height);
  background: #E4F1EC;
  overflow: hidden;
}
.inner_esg-1 .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0 var(--spacing-100);
}
.inner_esg-1 .main_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.inner_esg-1 .main_box .menu_box .item {
  width: 100%;
  height: auto;
  padding: 20px 0 var(--spacing-60);
  border-radius: var(--spacing-20);
  background: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 6.5%;
  overflow: hidden;
}
.inner_esg-1 .main_box .menu_box .item .img {
  width: 39.54%;
  max-width: 280px;
  height: auto;
  font-size: 0;
}
.inner_esg-1 .main_box .menu_box .item .content {
  width: 100%;
  height: auto;
  flex: 1;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.inner_esg-1 .main_box .menu_box .item .content .title {
  width: 100%;
  height: auto;
  padding: 1em 0 0.8em;
  border-bottom: 1px solid #EEEEEE;
  font-size: var(--font24);
  line-height: 1.2;
}
.inner_esg-1 .main_box .menu_box .item .content .details {
  width: 100%;
  height: auto;
  flex: 1;
  margin-top: 20px;
}
.inner_esg-1 .main_box .menu_box .item .content .details .one {
  width: 100%;
  height: auto;
  padding-left: 16px;
  position: relative;
  font-size: var(--font16);
  line-height: 1.5;
  color: #232323;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_esg-1 .main_box .menu_box .item .content .details .one {
    white-space: inherit;
  }
}
.inner_esg-1 .main_box .menu_box .item .content .details .one::after {
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  top: 0.75em;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--dark-orange);
}
.inner_esg-1 .main_box .menu_box .item .content .details .one + .one {
  margin-top: 1em;
}
.inner_esg-1 .main_box .menu_box .item .content .idx_more {
  margin-top: var(--spacing-50);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.inner_esg-1 .main_box .menu_box .item .content .idx_more a,
.inner_esg-1 .main_box .menu_box .item .content .idx_more .more {
  background: #F5F5F5;
}
.inner_esg-1 .main_box .menu_box .item .content .idx_more a .word,
.inner_esg-1 .main_box .menu_box .item .content .idx_more .more .word {
  color: #232323;
}
.inner_esg-1 .main_box .menu_box .item .content .idx_more a .icon use,
.inner_esg-1 .main_box .menu_box .item .content .idx_more .more .icon use {
  fill: var(--dark-orange);
}
.inner_esg-1 .main_box .menu_box .item .content .idx_more a:hover,
.inner_esg-1 .main_box .menu_box .item .content .idx_more .more:hover {
  background: var(--dark-orange);
}
.inner_esg-1 .main_box .menu_box .item .content .idx_more a:hover .word,
.inner_esg-1 .main_box .menu_box .item .content .idx_more .more:hover .word {
  color: #FFFFFF;
}
.inner_esg-1 .main_box .menu_box .item .content .idx_more a:hover .icon use,
.inner_esg-1 .main_box .menu_box .item .content .idx_more .more:hover .icon use {
  fill: #FFFFFF;
}
.inner_esg-1 .main_box .menu_box .item:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.inner_esg-1 .main_box .menu_box .item:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@media (max-width:1024px) {
  .inner_esg-1 .main_box .menu_box {
    grid-gap: 20px;
  }
  .inner_esg-1 .main_box .menu_box .item {
    display: block;
  }
  .inner_esg-1 .main_box .menu_box .item .content {
    padding: 0 20px;
  }
}
@media (max-width:768px) {
  .inner_esg-1 .main_box .menu_box {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* 评级及评分提升 */
.inner_esg-2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #F3F8F6;
  overflow: hidden;
}
.inner_esg-2::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/inner_esg-2-bg.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.inner_esg-2 .main_box {
  width: 100%;
  height: auto;
  padding-top: var(--spacing-140);
}
.inner_esg-2 .main_box .idx_more {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.inner_esg-2 .main_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.inner_esg-2 .main_box .menu_box .item {
  width: 100%;
  height: auto;
  position: relative;
  padding: 30px;
  border-radius: var(--spacing-20);
  overflow: hidden;
}
.inner_esg-2 .main_box .menu_box .item::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  background: #EE7700;
}
.inner_esg-2 .main_box .menu_box .item::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 8px;
  z-index: -1;
  border-radius: var(--border-radius20);
  background: #FFFFFF;
}
.inner_esg-2 .main_box .menu_box .item .title {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  color: #232323;
}
.inner_esg-2 .main_box .menu_box .item .icon img {
  max-width: 80px;
}
.inner_esg-2 .main_box .menu_box .item .content {
  width: 100%;
  height: auto;
  margin-top: 50px;
}
.inner_esg-2 .main_box .menu_box .item .content .details {
  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: 24px;
  margin-top: 22px;
}
.inner_esg-2 .main_box .menu_box .item .content .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 10px;
}
.inner_esg-2 .main_box .menu_box .item .content .one .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dark-green);
  overflow: hidden;
  position: relative;
}
.inner_esg-2 .main_box .menu_box .item .content .one .icon svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.inner_esg-2 .main_box .menu_box .item .content .one .icon use {
  fill: #FFFFFF;
}
.inner_esg-2 .main_box .menu_box .item .content .one .word {
  width: 100%;
  height: auto;
  flex: 1;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
  font-size: var(--font18);
  color: #232323;
  line-height: 1.33333;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_esg-2 .main_box .menu_box .item .content .one .word {
    white-space: inherit;
  }
}
.inner_esg-2 .main_box .menu_box .item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.inner_esg-2 .main_box .menu_box .item:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.inner_esg-2::after {
  content: '';
  width: 100%;
  height: var(--spacing-140);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: #003138;
  pointer-events: none;
}
@media (max-width:1024px) {
  .inner_esg-2 .main_box .menu_box {
    grid-gap: 20px;
  }
  .inner_esg-2 .main_box .menu_box .item {
    padding: 20px;
  }
  .inner_esg-2 .main_box .menu_box .item .content .one .icon {
    width: 14px;
    height: 14px;
  }
}
@media (max-width:768px) {
  .inner_esg-2 .main_box .menu_box {
    grid-template-columns: repeat(1, 1fr);
  }
  .inner_esg-2 .main_box .menu_box .item .icon img {
    max-width: 45px;
  }
  .inner_esg-2 .main_box .menu_box .item .content {
    margin-top: 20px;
  }
}
/* ESG披露 */
.inner_esg-3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #003138;
  overflow: hidden;
}
.inner_esg-3::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/inner_esg-3-bg.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.1;
}
.inner_esg-3 .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0 var(--spacing-140);
  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;
}
.inner_esg-3 .main_box .inner_title {
  width: 43.44444%;
}
.inner_esg-3 .main_box .inner_title .classify {
  color: white;
  border-color: white;
  width: 100%;
}
.inner_esg-3 .main_box .inner_title .title {
  color: white;
  width: 100%;
}
.inner_esg-3 .main_box .inner_title .details {
  width: 100%;
}
.inner_esg-3 .main_box .inner_title .details * {
  color: white;
  opacity: 0.6;
}
.inner_esg-3 .main_box .menu_box {
  width: 44.44444%;
  height: auto;
}
.inner_esg-3 .main_box .menu_box .item {
  width: 100%;
  height: auto;
  padding: 0 var(--spacing-30);
  border-radius: var(--border-radius20);
  background: rgba(51, 90, 96, 0.2);
  cursor: pointer;
}
.inner_esg-3 .main_box .menu_box .item .headline {
  width: 100%;
  height: auto;
  padding: 18px 0;
  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;
  grid-gap: 20px;
}
.inner_esg-3 .main_box .menu_box .item .headline .icon {
  width: 48px;
  height: 48px;
  border-radius: 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: var(--dark-orange);
  font-size: var(--font24);
  color: #FFFFFF;
}
.inner_esg-3 .main_box .menu_box .item .headline .title {
  width: 100%;
  height: auto;
  flex: 1;
  font-weight: 200;
  font-size: var(--font24);
  color: white;
}
.inner_esg-3 .main_box .menu_box .item .headline .down {
  width: 12px;
  height: 7px;
}
.inner_esg-3 .main_box .menu_box .item .headline .down svg {
  width: 100%;
  height: 100%;
  fill: white;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_esg-3 .main_box .menu_box .item .details_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: none;
}
.inner_esg-3 .main_box .menu_box .item .details_box .info {
  width: 100%;
  height: auto;
  padding: 28px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 20px;
  overflow: hidden;
}
.inner_esg-3 .main_box .menu_box .item .details_box .info .icon {
  width: 48px;
  height: 48px;
  border-radius: 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: #004E97;
  font-size: var(--font24);
  color: #FFFFFF;
}
.inner_esg-3 .main_box .menu_box .item .details_box .info .details {
  width: 100%;
  height: auto;
  flex: 1;
  font-weight: 200;
  font-size: var(--font16);
  line-height: 1.875;
}
.inner_esg-3 .main_box .menu_box .item .details_box .info .details * {
  color: white;
  opacity: 0.6;
}
.inner_esg-3 .main_box .menu_box .item .details_box .info .details > * + * {
  margin-top: 10px;
}
.inner_esg-3 .main_box .menu_box .item.active {
  background: rgba(51, 90, 96, 0.4);
}
.inner_esg-3 .main_box .menu_box .item.active .headline .down svg {
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.inner_esg-3 .main_box .menu_box .item + .item {
  margin-top: 2px;
}
@media (max-width:1024px) {
  .inner_esg-3 .grid-box {
    display: block;
  }
  .inner_esg-3 .main_box {
    display: block;
  }
  .inner_esg-3 .main_box .inner_title {
    width: 100%;
  }
  .inner_esg-3 .main_box .menu_box {
    width: 100%;
    margin-top: 40px;
  }
  .inner_esg-3 .main_box .menu_box .item .details_box .info {
    padding: 20px 0 40px;
  }
}
/* 数据核查及流程审验 */
.inner_esg-4 {
  width: 100%;
  height: auto;
  background: #e4f1ec;
  overflow: hidden;
  position: relative;
}
.inner_esg-4::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/inner_esg-4-bg.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}
.inner_esg-4 .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0 var(--spacing-140);
}
.inner_esg-4 .main_box .classify {
  font-size: var(--font30);
  line-height: 1.1;
}
.inner_esg-4 .main_box .title {
  font-size: var(--font18);
  line-height: 1.666667;
}
.inner_esg-4 .main_box .idx_more {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.inner_esg-4 .main_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.inner_esg-4 .main_box .menu_box .item {
  width: 100%;
  height: auto;
  padding: 30px 30px var(--spacing-60);
  border-radius: var(--spacing-20);
  background: #dbece6;
  border: 1px solid #cfe1da;
  overflow: hidden;
}
.inner_esg-4 .main_box .menu_box .item .icon {
  width: 80px;
  height: 80px;
  background-color: #cee0d9;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner_esg-4 .main_box .menu_box .item .icon img {
  max-width: 35%;
  max-height: 35%;
}
.inner_esg-4 .main_box .menu_box .item .content {
  width: 100%;
  height: auto;
}
.inner_esg-4 .main_box .menu_box .item .content .title {
  width: 100%;
  height: auto;
  padding: 2.5em 0 0.5em;
  font-size: var(--font24);
  line-height: 1.2;
}
.inner_esg-4 .main_box .menu_box .item .content .details {
  width: 100%;
  height: auto;
}
.inner_esg-4 .main_box .menu_box .item .content .details * {
  line-height: 1.875;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_esg-4 .main_box .menu_box .item .content .details * {
    white-space: inherit;
  }
}
.inner_esg-4 .main_box .menu_box .item .content .idx_more {
  margin-top: var(--spacing-50);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.inner_esg-4 .main_box .menu_box .item .content .idx_more a,
.inner_esg-4 .main_box .menu_box .item .content .idx_more .more {
  background: #F5F5F5;
}
.inner_esg-4 .main_box .menu_box .item .content .idx_more a .word,
.inner_esg-4 .main_box .menu_box .item .content .idx_more .more .word {
  color: #232323;
}
.inner_esg-4 .main_box .menu_box .item .content .idx_more a .icon use,
.inner_esg-4 .main_box .menu_box .item .content .idx_more .more .icon use {
  fill: var(--dark-orange);
}
.inner_esg-4 .main_box .menu_box .item .content .idx_more a:hover,
.inner_esg-4 .main_box .menu_box .item .content .idx_more .more:hover {
  background: var(--dark-orange);
}
.inner_esg-4 .main_box .menu_box .item .content .idx_more a:hover .word,
.inner_esg-4 .main_box .menu_box .item .content .idx_more .more:hover .word {
  color: #FFFFFF;
}
.inner_esg-4 .main_box .menu_box .item .content .idx_more a:hover .icon use,
.inner_esg-4 .main_box .menu_box .item .content .idx_more .more:hover .icon use {
  fill: #FFFFFF;
}
.inner_esg-4 .main_box .menu_box .item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.inner_esg-4 .main_box .menu_box .item:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@media (max-width:1024px) {
  .inner_esg-4 .main_box .menu_box {
    grid-gap: 20px;
  }
  .inner_esg-4 .main_box .menu_box .item {
    padding: 20px;
  }
  .inner_esg-4 .main_box .menu_box .item .content .details * {
    font-size: 14px;
  }
}
@media (max-width:768px) {
  .inner_esg-4 .main_box .menu_box {
    grid-template-columns: repeat(1, 1fr);
  }
  .inner_esg-4 .main_box .menu_box .item .icon {
    width: 45px;
    height: 45px;
  }
  .inner_esg-4 .main_box .menu_box .item .content .title {
    padding-top: 20px;
  }
}
/* ESG与税务稽查 */
.inner_esg-5 {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
}
.inner_esg-5::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/inner_esg-5-bg.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
}
.inner_esg-5 .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0 var(--spacing-140);
}
.inner_esg-5 .main_box .details * {
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_esg-5 .main_box .details * {
    white-space: inherit;
  }
}
.inner_esg-5 .main_box .idx_more {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.inner_esg-5 .main_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.inner_esg-5 .main_box .menu_box .item {
  width: 100%;
  height: auto;
  padding: 30px 30px var(--spacing-60);
  border-radius: var(--spacing-20);
  background: #ebf2f1;
  overflow: hidden;
}
.inner_esg-5 .main_box .menu_box .item .icon {
  width: 80px;
  height: 80px;
  background-color: #dde7e5;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner_esg-5 .main_box .menu_box .item .icon img {
  max-width: 40%;
  max-height: 40%;
}
.inner_esg-5 .main_box .menu_box .item .content {
  width: 100%;
  height: auto;
}
.inner_esg-5 .main_box .menu_box .item .content .title {
  width: 100%;
  height: auto;
  padding: 2.5em 0 0.5em;
  font-size: var(--font24);
  line-height: 1.2;
}
.inner_esg-5 .main_box .menu_box .item .content .details {
  width: 100%;
  height: auto;
  flex: 1;
  margin-top: 20px;
}
.inner_esg-5 .main_box .menu_box .item .content .details .one {
  width: 100%;
  height: auto;
  padding-left: 16px;
  position: relative;
  font-size: var(--font16);
  line-height: 1.5;
  color: #232323;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_esg-5 .main_box .menu_box .item .content .details .one {
    white-space: inherit;
  }
}
.inner_esg-5 .main_box .menu_box .item .content .details .one::after {
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  top: 0.75em;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--dark-orange);
}
.inner_esg-5 .main_box .menu_box .item .content .details .one + .one {
  margin-top: 1em;
}
.inner_esg-5 .main_box .menu_box .item .content .idx_more {
  margin-top: var(--spacing-50);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.inner_esg-5 .main_box .menu_box .item .content .idx_more a,
.inner_esg-5 .main_box .menu_box .item .content .idx_more .more {
  background: #F5F5F5;
}
.inner_esg-5 .main_box .menu_box .item .content .idx_more a .word,
.inner_esg-5 .main_box .menu_box .item .content .idx_more .more .word {
  color: #232323;
}
.inner_esg-5 .main_box .menu_box .item .content .idx_more a .icon use,
.inner_esg-5 .main_box .menu_box .item .content .idx_more .more .icon use {
  fill: var(--dark-orange);
}
.inner_esg-5 .main_box .menu_box .item .content .idx_more a:hover,
.inner_esg-5 .main_box .menu_box .item .content .idx_more .more:hover {
  background: var(--dark-orange);
}
.inner_esg-5 .main_box .menu_box .item .content .idx_more a:hover .word,
.inner_esg-5 .main_box .menu_box .item .content .idx_more .more:hover .word {
  color: #FFFFFF;
}
.inner_esg-5 .main_box .menu_box .item .content .idx_more a:hover .icon use,
.inner_esg-5 .main_box .menu_box .item .content .idx_more .more:hover .icon use {
  fill: #FFFFFF;
}
.inner_esg-5 .main_box .menu_box .item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.inner_esg-5 .main_box .menu_box .item:nth-child(3) {
  -webkit-animation-delay: 0.13s;
  animation-delay: 0.13s;
}
.inner_esg-5 .main_box .menu_box .item:nth-child(4) {
  -webkit-animation-delay: 0.16s;
  animation-delay: 0.16s;
}
@media (max-width:1024px) {
  .inner_esg-5 .main_box .menu_box {
    grid-gap: 20px;
  }
  .inner_esg-5 .main_box .menu_box .item {
    padding: 20px;
  }
}
@media (max-width:768px) {
  .inner_esg-5 .main_box .menu_box {
    grid-template-columns: repeat(1, 1fr);
  }
  .inner_esg-5 .main_box .menu_box .item .icon {
    width: 45px;
    height: 45px;
  }
  .inner_esg-5 .main_box .menu_box .item .content .title {
    padding-top: 20px;
  }
  .inner_esg-5 .main_box .menu_box .item .content .details {
    margin-top: 0;
  }
}
/* -------------------- */
/* -------------------- */
/* ----- 资源中心 ----- */
.inner_resources_box {
  width: 100%;
  height: auto;
  margin-top: var(--header-height);
  overflow: hidden;
}
.inner_resources_box .resources_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-160) 0 var(--spacing-140);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 30px;
}
.inner_resources_box .resources_box .content {
  width: 100%;
  height: auto;
  flex: 1;
}
.inner_resources_box .resources_box .content .headline {
  width: 100%;
  height: auto;
}
.inner_resources_box .resources_box .content .headline .word {
  width: 100%;
  height: auto;
  margin: -0.125em 0;
  padding-bottom: 20px;
  font-weight: 500;
  font-size: var(--font18);
  line-height: 1.25;
}
.inner_resources_box .resources_box .content .headline::after {
  content: '';
  width: 100%;
  height: 2px;
  display: block;
  background: #D0DFE5;
}
.inner_resources_box .resources_box .content .title {
  width: 100%;
  height: auto;
  margin: -0.1em 0 0;
  padding: 60px 0 0;
  font-weight: 200;
  font-size: var(--font30);
  line-height: 1.2;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_resources_box .resources_box .content .title {
    white-space: inherit;
  }
}
.inner_resources_box .resources_box .content .details {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-50);
}
.inner_resources_box .resources_box .content .details p {
  font-size: var(--font16);
  line-height: 1.875;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_resources_box .resources_box .content .details p {
    white-space: inherit;
  }
}
.inner_resources_box .resources_box .content .idx_more {
  margin-top: var(--spacing-60);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.inner_resources_box .resources_box .images {
  width: 48.61%;
  max-width: 700px;
  height: auto;
  font-size: 0;
}
@media (max-width:768px) {
  .inner_resources_box .resources_box {
    display: block;
  }
  .inner_resources_box .resources_box .images {
    width: 100%;
    margin: auto;
    margin-top: 40px;
  }
}
/* -------------------- */
/* -------------------- */
/* ----- 培训 ----- */
.training-box .resources_box {
  padding: var(--spacing-140) 0 40px;
  grid-gap: 70px;
}
.training-box .resources_box .content .headline::after {
  background: #c8d8d2;
}
.training-box .resources_box .content .details {
  margin-top: var(--spacing-50);
}
.training-box .resources_box .content .details p {
  line-height: 1.5;
  margin-bottom: var(--spacing-20);
}
.training-box .resources_box .content .idx_more {
  margin-top: var(--spacing-60);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.training-box .resources_box .images {
  width: 49.1%;
  max-width: 708px;
  height: auto;
  font-size: 0;
  margin-top: -40px;
}
.training-box .resources_box .images .icon {
  width: 67.7%;
  margin: auto;
  background-color: #004e97;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.training-box .resources_box .images .icon::before {
  content: '';
  width: 87.5%;
  height: 87.5%;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.training-box .resources_box .images .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.training-box .resources_box .images .img {
  max-width: 56%;
  max-height: 30%;
  width: auto;
  height: auto;
  object-fit: inherit;
}
.training-box .resources_box .images img {
  width: auto;
  height: auto;
  object-fit: inherit;
}
@media (max-width:768px) {
  .training-box .resources_box {
    display: block;
  }
  .training-box .resources_box .images {
    margin: auto;
    margin-top: 40px;
  }
  .training-box .resources_box .images .icon::before {
    width: 94%;
    height: 94%;
  }
}
.training-box .down {
  padding-bottom: var(--spacing-120);
}
.training-box .down .title-icon {
  max-width: 298px;
}
.training-box .down .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  margin-top: 40px;
}
.training-box .down .list .item .item-box {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius20);
}
.training-box .down .list .item .item-box .img .pb {
  padding-bottom: 70.1%;
}
.training-box .down .list .item .item-box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:1024px) {
  .training-box .down .list {
    grid-gap: 20px;
  }
}
@media (max-width:768px) {
  .training-box .down .title-icon {
    max-width: 50%;
  }
  .training-box .down .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* -------------------- */
/* -------------------- */
/* ----- 气候相关披露 ----- */
.climate-box .resources_box {
  padding: var(--spacing-140) 0 40px;
  grid-gap: 70px;
}
.climate-box .resources_box .content .headline::after {
  background: #c8d8d2;
}
.climate-box .resources_box .content .details {
  margin-top: var(--spacing-50);
}
.climate-box .resources_box .content .details p {
  line-height: 1.5;
  margin-bottom: var(--spacing-20);
}
.climate-box .resources_box .content .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  grid-gap: 30px;
  margin-top: var(--spacing-50);
}
.climate-box .resources_box .content .img-box img {
  max-height: 64px;
}
.climate-box .resources_box .content .idx_more {
  margin-top: var(--spacing-80);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.climate-box .resources_box .images {
  width: 41.666667%;
  max-width: 600px;
  height: auto;
  font-size: 0;
}
.climate-box .resources_box .images .images-box {
  padding: var(--spacing-60) 30px 30px;
  background-color: #e4eff0;
  border-radius: var(--border-radius20);
  position: relative;
}
.climate-box .resources_box .images .img-float {
  width: 33.33%;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 15px;
  margin-right: var(--spacing-30);
}
.climate-box .resources_box .images .title {
  font-family: 'Arial';
  font-size: var(--font24);
  line-height: 1.25;
  font-weight: bold;
}
.climate-box .resources_box .images .img {
  overflow: hidden;
  border-radius: var(--border-radius20);
  margin-top: 48px;
}
.climate-box .resources_box .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:1024px) {
  .climate-box .resources_box {
    grid-gap: 40px;
  }
  .climate-box .resources_box .content .img-box img {
    max-height: 40px;
  }
}
@media (max-width:768px) {
  .climate-box .resources_box {
    display: block;
  }
  .climate-box .resources_box .images {
    width: 100%;
    margin: auto;
    margin-top: 40px;
  }
}
/* -------------------- */
/* -------------------- */
/* ----- 科学基础碳减排目标设定 ----- */
.SBT {
  width: 100%;
  height: auto;
  background: url(../images/SBT-bg.jpg) no-repeat center;
  background-size: cover;
  overflow: hidden;
}
.SBT .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0 var(--spacing-110);
}
.SBT .main_box .inner_title {
  width: 71.44444%;
}
.SBT .main_box .inner_title .classify {
  color: white;
  border-color: white;
  width: 60%;
}
.SBT .main_box .inner_title .title {
  color: white;
  width: 100%;
  line-height: 1.2;
}
.SBT .main_box .inner_title .details {
  width: 100%;
}
.SBT .main_box .inner_title .details * {
  color: white;
  line-height: 1.875;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .SBT .main_box .inner_title .details * {
    white-space: inherit;
  }
}
.SBT .main_box .inner_title .idx_more {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  grid-gap: 20px;
}
.SBT .main_box .images {
  text-align: center;
  max-width: 90.5%;
  margin: auto;
  margin-top: var(--spacing-80);
}
@media (max-width:1024px) {
  .SBT .main_box .inner_title {
    width: 100%;
  }
}
@media (max-width:768px) {
  .SBT .main_box .inner_title .classify {
    width: 100%;
  }
}
/* -------------------- */
/* -------------------- */
/* ----- 碳排放审计 ----- */
.SBT-auditing {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: #F3F8F6;
  overflow: hidden;
}
.SBT-auditing::before {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/SBT-auditing-bg.png) no-repeat center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.SBT-auditing .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0 var(--spacing-100);
}
.SBT-auditing .main_box .inner_title .classify {
  border-color: #d4e5de;
}
.SBT-auditing .main_box .inner_title .title {
  width: 67%;
}
.SBT-auditing .main_box .idx_more {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: var(--spacing-80);
}
.SBT-auditing .main_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.SBT-auditing .main_box .menu_box .item {
  width: 100%;
  height: auto;
  position: relative;
  padding: var(--spacing-60) 30px 30px;
  border-radius: var(--spacing-20);
  overflow: hidden;
  background: #e4eff0;
  border: 1px solid #deebec;
}
.SBT-auditing .main_box .menu_box .item .title {
  width: 100%;
  height: auto;
  font-size: var(--font24);
  color: #232323;
  padding-left: 16px;
  position: relative;
}
.SBT-auditing .main_box .menu_box .item .title::after {
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  top: 0.75em;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--dark-orange);
}
.SBT-auditing .main_box .menu_box .item .content {
  width: 100%;
  height: auto;
}
.SBT-auditing .main_box .menu_box .item .content .details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 6px;
  margin-left: -10px;
  margin-right: -10px;
}
.SBT-auditing .main_box .menu_box .item .content .one {
  width: 25%;
  padding: 0 10px;
  margin-top: 20px;
  text-align: center;
}
.SBT-auditing .main_box .menu_box .item .content .one .one-box {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius20);
  background: white;
  overflow: hidden;
  padding: 22px 0 20px;
}
.SBT-auditing .main_box .menu_box .item .content .one .icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: auto;
}
.SBT-auditing .main_box .menu_box .item .content .one .word {
  font-size: var(--font16);
  color: #232323;
  line-height: 1.25;
  white-space: break-spaces;
  margin-top: 16px;
}
@media (max-width:1840px) {
  .SBT-auditing .main_box .menu_box .item .content .one .word {
    white-space: inherit;
  }
}
.SBT-auditing .main_box .menu_box .item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
@media (max-width:1840px) {
  .SBT-auditing .main_box .menu_box .item .content .one .word {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width:1440px) {
  .SBT-auditing .main_box .menu_box .item .content .one {
    width: 33.33333%;
  }
}
@media (max-width:1024px) {
  .SBT-auditing .main_box .inner_title .title {
    width: 100%;
  }
  .SBT-auditing .main_box .menu_box {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
  .SBT-auditing .main_box .menu_box .item {
    padding: 20px;
  }
  .SBT-auditing .main_box .menu_box .item .content .one {
    width: 25%;
  }
}
@media (max-width:768px) {
  .SBT-auditing .main_box .menu_box .item .content .details {
    margin-left: -5px;
    margin-right: -5px;
  }
  .SBT-auditing .main_box .menu_box .item .content .one {
    padding: 0 5px;
    margin-top: 10px;
    width: 50%;
  }
  .SBT-auditing .main_box .menu_box .item .content .one .one-box .icon {
    width: 40px;
    height: 40px;
  }
}
/* -------------------- */
/* -------------------- */
/* ----- FAQ ----- */
.inner_faq_box {
  width: 100%;
  height: auto;
  margin-top: var(--header-height);
  background: #C7D8E0;
  overflow: hidden;
}
.inner_faq_box .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-160) 0 var(--spacing-140);
}
.inner_faq_box .main_box .block_title {
  width: 100%;
  height: auto;
}
.inner_faq_box .main_box .block_title .word {
  width: 100%;
  height: auto;
  margin: -0.125em 0;
  padding-bottom: 12px;
  font-weight: 500;
  font-size: var(--font30);
  color: #004E97;
  line-height: 1.25;
}
.inner_faq_box .main_box .block_title::after {
  content: '';
  width: 100%;
  height: 2px;
  display: block;
  background: #A0B6C0;
}
.inner_faq_box .main_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
}
.inner_faq_box .main_box .menu_box .item {
  width: 100%;
  height: auto;
  padding: 0 var(--spacing-30);
  border-radius: var(--border-radius20);
  background: #C0D2DA;
  cursor: pointer;
}
.inner_faq_box .main_box .menu_box .item .headline {
  width: 100%;
  height: auto;
  padding: 18px 0;
  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;
  grid-gap: 20px;
}
.inner_faq_box .main_box .menu_box .item .headline .icon {
  width: 48px;
  height: 48px;
  border-radius: 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: var(--dark-orange);
  font-size: var(--font24);
  color: #FFFFFF;
}
.inner_faq_box .main_box .menu_box .item .headline .title {
  width: 100%;
  height: auto;
  flex: 1;
  font-weight: 200;
  font-size: var(--font24);
}
.inner_faq_box .main_box .menu_box .item .headline .down {
  width: 12px;
  height: 7px;
}
.inner_faq_box .main_box .menu_box .item .headline .down svg {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_faq_box .main_box .menu_box .item .details_box {
  width: 100%;
  height: auto;
  overflow: hidden;
  display: none;
}
.inner_faq_box .main_box .menu_box .item .details_box .info {
  width: 100%;
  height: auto;
  padding: 20px 0;
  border-top: 1px solid #ABBDC4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 20px;
  overflow: hidden;
}
.inner_faq_box .main_box .menu_box .item .details_box .info .icon {
  width: 48px;
  height: 48px;
  border-radius: 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: #004E97;
  font-size: var(--font24);
  color: #FFFFFF;
}
.inner_faq_box .main_box .menu_box .item .details_box .info .details {
  width: 100%;
  height: auto;
  flex: 1;
  font-weight: 200;
  font-size: var(--font16);
  line-height: 1.875;
}
.inner_faq_box .main_box .menu_box .item .details_box .info .details > * + * {
  margin-top: 10px;
}
.inner_faq_box .main_box .menu_box .item.active {
  background: #BBCDD4;
}
.inner_faq_box .main_box .menu_box .item.active .headline .down svg {
  transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.inner_faq_box .main_box .menu_box .item + .item {
  margin-top: 2px;
}
@media (max-width:768px) {
  .inner_faq_box .main_box .menu_box .item .headline {
    grid-gap: 10px;
  }
  .inner_faq_box .main_box .menu_box .item .headline .icon {
    width: 34px;
    height: 34px;
  }
  .inner_faq_box .main_box .menu_box .item .details_box .info {
    grid-gap: 10px;
  }
  .inner_faq_box .main_box .menu_box .item .details_box .info .icon {
    width: 34px;
    height: 34px;
  }
}
/* -------------------- */
/* -------------------- */
/* ----- Video ----- */
/* Video - Block */
.inner_video_block {
  width: 100%;
  height: auto;
  margin-top: var(--header-height);
  background: linear-gradient(#DFEAEE, #EBF3F4);
  overflow: hidden;
}
.inner_video_block .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 0 var(--spacing-140);
}
.inner_video_block .main_box .block_title {
  width: 100%;
  height: auto;
}
.inner_video_block .main_box .block_title .word {
  width: 100%;
  height: auto;
  margin: -0.125em 0;
  padding-bottom: 12px;
  font-weight: 500;
  font-size: var(--font30);
  color: #004E97;
  line-height: 1.25;
}
.inner_video_block .main_box .block_title::after {
  content: '';
  width: 100%;
  height: 1px;
  display: block;
  background: #D0DFE5;
}
.inner_video_block .main_box .swiper_box {
  margin-top: var(--spacing-60);
}
.inner_video_block .main_box .swiper_box .swiper-slide {
  cursor: pointer;
  pointer-events: inherit;
}
.inner_video_block .main_box .swiper_box .swiper-slide .item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
}
.inner_video_block .main_box .swiper_box .swiper-slide .content {
  width: 41.6%;
  height: auto;
  padding-bottom: 30px;
}
.inner_video_block .main_box .swiper_box .swiper-slide .content .title {
  font-weight: 500;
  font-size: var(--font36);
  color: #232323;
  line-height: 1.33;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.inner_video_block .main_box .swiper_box .swiper-slide .content .time {
  margin-top: var(--spacing-60);
  font-weight: 500;
  font-size: var(--font14);
  color: rgba(35, 35, 35, 0.4);
}
.inner_video_block .main_box .swiper_box .swiper-slide .video_box {
  width: 44.4%;
  height: auto;
  padding-right: 20px;
  position: relative;
  z-index: 1;
  --r: 68px;
}
.inner_video_block .main_box .swiper_box .swiper-slide .video_box .placeholder {
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 50%;
  z-index: 5;
  transform: translateY(-34px);
}
.inner_video_block .main_box .swiper_box .swiper-slide .video_box .placeholder .word {
  width: 100%;
  height: auto;
  padding: 20px 26px;
  border-radius: var(--border-radius20);
  background: #004E97;
  font-size: var(--font16);
  color: #FFFFFF;
  line-height: 1.75;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_video_block .main_box .swiper_box .swiper-slide .video_box .placeholder .word {
    white-space: inherit;
  }
}
.inner_video_block .main_box .swiper_box .swiper-slide .video_box .placeholder::after {
  content: '';
  width: 20px;
  height: 17px;
  margin-top: -4px;
  display: block;
  transform: translateX(26px);
  background: #004E97;
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 0);
}
.inner_video_block .main_box .swiper_box .swiper-slide .video_box .video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius20);
  cursor: pointer;
  overflow: hidden;
}
.inner_video_block .main_box .swiper_box .swiper-slide .video_box .video .play {
  width: var(--r);
  height: var(--r);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.36);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_video_block .main_box .swiper_box .swiper-slide .video_box .video .play svg {
  width: 100%;
  height: 100%;
}
.inner_video_block .main_box .swiper_box .swiper-slide .video_box .video .play use {
  fill: #FFFFFF;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_video_block .main_box .swiper_box .swiper-slide .video_box .video .pb {
  padding-bottom: 56.25%;
}
.inner_video_block .main_box .swiper_box .swiper-slide .video_box .video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_video_block .main_box .swiper_box .swiper-slide .video_box:hover .video .play {
  border-color: #FFFFFF;
  background: #FFFFFF;
}
.inner_video_block .main_box .swiper_box .swiper-slide .video_box:hover .video .play use {
  fill: var(--dark-orange);
}
.inner_video_block .main_box .pager_box {
  width: 100%;
  height: 9px;
  margin-top: -9px;
  position: relative;
  z-index: 10;
}
.inner_video_block .main_box .pager_box .pager {
  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;
  grid-gap: 4px;
}
.inner_video_block .main_box .pager_box .pager span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D0DFE5;
  cursor: pointer;
  opacity: 1;
}
.inner_video_block .main_box .pager_box .pager span.active {
  background: var(--dark-orange);
}
@media (max-width:1440px) {
  .inner_video_block .grid-box {
    display: block;
  }
}
@media (max-width:1024px) {
  .inner_video_block .main_box .swiper_box .swiper-slide .content {
    width: 47%;
  }
  .inner_video_block .main_box .swiper_box .swiper-slide .video_box {
    width: 50%;
  }
}
@media (max-width:768px) {
  .inner_video_block .main_box .swiper_box .swiper-slide .item-box {
    display: block;
  }
  .inner_video_block .main_box .swiper_box .swiper-slide .item-box .content {
    width: 100%;
  }
  .inner_video_block .main_box .swiper_box .swiper-slide .item-box .video_box {
    width: 100%;
  }
}
.inner_video_block .main_box .pager_box {
  margin-top: 10px;
}
/* Video - List */
.inner_video_list {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_video_list .main_box {
  width: 100%;
  height: auto;
  margin: 40px 0 var(--spacing-140);
}
.inner_video_list .main_box .subnav {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 24px;
}
.inner_video_list .main_box .subnav .one {
  width: auto;
  height: 34px;
}
.inner_video_list .main_box .subnav .one a {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font16);
  color: rgba(35, 35, 35, 0.4);
  line-height: 1;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_video_list .main_box .subnav .one a.active,
.inner_video_list .main_box .subnav .one a.active:hover {
  padding: 0 15px;
  border-radius: 100vw;
  background: var(--dark-orange);
  color: #FFFFFF;
}
.inner_video_list .main_box .subnav .one a:hover {
  color: var(--dark-orange);
}
.inner_video_list .main_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--spacing-60) 24px;
}
.inner_video_list .main_box .menu_box .item {
  width: 100%;
  height: auto;
  cursor: pointer;
  overflow: hidden;
}
.inner_video_list .main_box .menu_box .item .video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius20);
  --r: 48px;
  overflow: hidden;
}
.inner_video_list .main_box .menu_box .item .video .play {
  width: var(--r);
  height: var(--r);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.36);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_video_list .main_box .menu_box .item .video .play svg {
  width: 100%;
  height: 100%;
}
.inner_video_list .main_box .menu_box .item .video .play use {
  fill: #FFFFFF;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_video_list .main_box .menu_box .item .video .pb {
  padding-bottom: 56.25%;
}
.inner_video_list .main_box .menu_box .item .video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_video_list .main_box .menu_box .item .info {
  width: 100%;
  height: auto;
  padding-top: 24px;
  padding-right: var(--spacing-120);
}
.inner_video_list .main_box .menu_box .item .info .title {
  width: 100%;
  height: calc(2em * 1.2);
  margin: -0.1em 0;
  font-weight: 500;
  font-size: var(--font20);
  line-height: 1.2;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.inner_video_list .main_box .menu_box .item .info .time {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  font-weight: 500;
  font-size: var(--font14);
  color: rgba(35, 35, 35, 0.4);
  line-height: 1.2;
}
.inner_video_list .main_box .menu_box .item:hover .video .play {
  border-color: #FFFFFF;
  background: #FFFFFF;
}
.inner_video_list .main_box .menu_box .item:hover .video .play use {
  fill: var(--dark-orange);
}
.inner_video_list .main_box .menu_box .item:hover .info .title {
  color: var(--dark-orange);
}
@media (max-width:1024px) {
  .inner_video_list .main_box .menu_box {
    grid-gap: 20px;
  }
  .inner_video_list .main_box .menu_box .item .info {
    padding-right: 0;
  }
}
@media (max-width:768px) {
  .inner_video_list .main_box .menu_box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width:480px) {
  .inner_video_list .main_box .menu_box {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* -------------------- */
/* -------------------- */
/* ----- 新闻中心 ----- */
/* 列表 */
.inner_news {
  width: 100%;
  height: auto;
  margin-top: var(--header-height);
  overflow: hidden;
}
@media (max-width:1440px) {
  .inner_news .grid-box {
    display: block;
  }
}
.inner_news .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-160) 0 clamp(3.75rem, calc(-2.762rem + 13.57vw), 12.5rem);
}
.inner_news .main_box .news_head {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.inner_news .main_box .news_head .headline {
  width: calc(100% - var(--spacing-80));
  height: auto;
  grid-area: 1 / 1 / 1 / 3;
  font-size: var(--font36);
  line-height: 1;
}
.inner_news .main_box .news_head .subnav {
  width: 100%;
  height: auto;
  grid-area: 1 / -2 / 1 / -1;
  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: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 24px;
}
.inner_news .main_box .news_head .subnav .one {
  width: auto;
  height: 100%;
}
.inner_news .main_box .news_head .subnav .one a {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: var(--font16);
  color: rgba(35, 35, 35, 0.4);
  line-height: 1;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_news .main_box .news_head .subnav .one a.active,
.inner_news .main_box .news_head .subnav .one a.active:hover {
  padding: 0 15px;
  border-radius: 100vw;
  background: var(--dark-orange);
  color: #FFFFFF;
}
.inner_news .main_box .news_head .subnav .one a:hover {
  color: var(--dark-orange);
}
@media (max-width:1024px) {
  .inner_news .main_box .news_head {
    display: block;
  }
  .inner_news .main_box .news_head .subnav {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    height: 30px;
    margin-bottom: 30px;
  }
}
.inner_news .main_box .news_main {
  width: 100%;
  height: auto;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.inner_news .main_box .news_main .latest_news {
  width: calc(100% - var(--spacing-80));
  height: auto;
  grid-column: 1 / 3;
}
.inner_news .main_box .news_main .latest_news .menu_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.inner_news .main_box .news_main .latest_news .menu_box .item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_news .main_box .news_main .latest_news .menu_box .item a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-radius: var(--border-radius20);
  background: #FFFFFF;
  --gap: 24px;
  overflow: hidden;
}
.inner_news .main_box .news_main .latest_news .menu_box .item a .images {
  width: 100%;
  height: auto;
  border-radius: 0 0 var(--border-radius20) var(--border-radius20);
  overflow: hidden;
}
.inner_news .main_box .news_main .latest_news .menu_box .item a .images .pb {
  padding-bottom: 65%;
}
.inner_news .main_box .news_main .latest_news .menu_box .item a .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_news .main_box .news_main .latest_news .menu_box .item a .content {
  width: 100%;
  height: auto;
  flex: 1;
  padding: var(--gap);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inner_news .main_box .news_main .latest_news .menu_box .item a .content .classify {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner_news .main_box .news_main .latest_news .menu_box .item a .content .classify .word {
  width: auto;
  height: auto;
  padding: 0 10px;
  border-radius: 50px;
  background: #E6EEF3;
  font-size: 12px;
  color: #232323;
  line-height: 1.75;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_news .main_box .news_main .latest_news .menu_box .item a .content .title {
  width: 100%;
  height: auto;
  margin-top: calc(var(--spacing-30) - 0.1em);
  font-weight: 500;
  font-size: var(--font20);
  color: #232323;
  line-height: 1.2;
  min-height: calc(3em * 1.2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  white-space: break-spaces;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media (max-width:1840px) {
  .inner_news .main_box .news_main .latest_news .menu_box .item a .content .title {
    white-space: inherit;
  }
}
.inner_news .main_box .news_main .latest_news .menu_box .item a .content .time {
  width: 100%;
  height: auto;
  margin: calc(var(--spacing-30) - var(--font20) * 0.1) 0 0;
  font-weight: 500;
  font-size: var(--font14);
  color: #232323;
  line-height: 1;
}
.inner_news .main_box .news_main .latest_news .menu_box .item a:hover .content .classify .word {
  background: #232323;
  color: #FFFFFF;
}
.inner_news .main_box .news_main .latest_news .menu_box .item a:hover .content .title {
  color: var(--dark-orange);
}
.inner_news .main_box .news_main .latest_news .menu_box .item:first-child {
  grid-column: 1 / -1;
}
.inner_news .main_box .news_main .latest_news .menu_box .item:first-child a {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--gap);
}
.inner_news .main_box .news_main .latest_news .menu_box .item:first-child a .images {
  width: calc(100% + var(--gap));
  border-radius: 0 var(--border-radius20) var(--border-radius20) 0;
}
.inner_news .main_box .news_main .latest_news .menu_box .item:first-child a .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inner_news .main_box .news_main .latest_news .menu_box .item:first-child a .content .title {
  flex: 1;
  margin-top: calc(var(--spacing-40) - 0.125em);
  font-size: var(--font24);
  line-height: 1.25;
}
.inner_news .main_box .news_main .latest_news .menu_box .item:first-child a .content .time {
  padding-bottom: var(--spacing-30);
}
.inner_news .main_box .news_main .latest_news .menu_esg {
  width: 100%;
  height: auto;
}
.inner_news .main_box .news_main .latest_news .menu_esg .item {
  width: 100%;
  height: auto;
}
.inner_news .main_box .news_main .latest_news .menu_esg .item a {
  width: 100%;
  height: auto;
  display: block;
  padding: 24px 30px 30px;
  border-radius: var(--border-radius20);
  background: #DCE7EA;
  border: 1px solid #D1DEE2;
  overflow: hidden;
}
.inner_news .main_box .news_main .latest_news .menu_esg .item a .classify {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner_news .main_box .news_main .latest_news .menu_esg .item a .classify .word {
  width: auto;
  height: auto;
  padding: 0 10px;
  border-radius: 50px;
  background: #C8D9E1;
  font-size: 12px;
  color: #232323;
  line-height: 1.75;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_news .main_box .news_main .latest_news .menu_esg .item a .title {
  width: 100%;
  height: auto;
  margin-top: calc(var(--spacing-30) - 0.1em);
  font-weight: 500;
  font-size: var(--font20);
  color: #232323;
  line-height: 1.2;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_news .main_box .news_main .latest_news .menu_esg .item a .details {
  width: 100%;
  height: auto;
  max-height: calc(2em * 1.71);
  margin: calc(24px - 0.355em - var(--font16) * 0.125) 0 calc(60px - 0.355em);
  font-size: var(--font14);
  line-height: 1.71;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_news .main_box .news_main .latest_news .menu_esg .item a .details {
    white-space: inherit;
  }
}
.inner_news .main_box .news_main .latest_news .menu_esg .item a .time {
  width: 100%;
  height: auto;
  margin: calc(var(--spacing-60) - var(--font20) * 0.1) 0 0;
  font-weight: 500;
  font-size: var(--font14);
  color: #232323;
  line-height: 1;
}
.inner_news .main_box .news_main .latest_news .menu_esg .item a:hover .classify .word {
  background: #232323;
  color: #FFFFFF;
}
.inner_news .main_box .news_main .latest_news .menu_esg .item a:hover .title {
  color: var(--dark-orange);
}
.inner_news .main_box .news_main .latest_news .menu_esg .item + .item {
  margin-top: 24px;
}
@media (max-width:1024px) {
  .inner_news .main_box .news_main .latest_news .menu_esg .item a {
    padding: 20px;
  }
}
.inner_news .main_box .news_main .sidebar_news {
  width: 100%;
  height: auto;
  grid-column: -2 / -1;
  --gap: 24px;
  border-top: 2px solid #D2DBE0;
}
.inner_news .main_box .news_main .sidebar_news .headline {
  width: 100%;
  height: auto;
  padding: 20px var(--gap) 0;
  font-weight: 500;
  font-size: var(--font18);
  color: #232323;
  line-height: 1;
}
.inner_news .main_box .news_main .sidebar_news .menu_box {
  width: 100%;
  height: auto;
  padding: 36px 0 0;
}
.inner_news .main_box .news_main .sidebar_news .menu_box .item {
  width: 100%;
  height: auto;
}
.inner_news .main_box .news_main .sidebar_news .menu_box .item a {
  width: 100%;
  height: auto;
  display: block;
  padding: var(--gap);
}
.inner_news .main_box .news_main .sidebar_news .menu_box .item a .content {
  width: 100%;
  height: auto;
}
.inner_news .main_box .news_main .sidebar_news .menu_box .item a .content .classify {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner_news .main_box .news_main .sidebar_news .menu_box .item a .content .classify .word {
  width: auto;
  height: auto;
  padding: 0 10px;
  border-radius: 50px;
  background: #D3E2E9;
  font-size: 12px;
  color: #232323;
  line-height: 1.75;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_news .main_box .news_main .sidebar_news .menu_box .item a .content .title {
  width: 100%;
  height: auto;
  margin-top: calc(20px - 0.125em);
  font-weight: 500;
  font-size: var(--font16);
  color: #232323;
  line-height: 1.25;
  min-height: calc(2em * 1.25);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: break-spaces;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media (max-width:1840px) {
  .inner_news .main_box .news_main .sidebar_news .menu_box .item a .content .title {
    white-space: inherit;
  }
}
.inner_news .main_box .news_main .sidebar_news .menu_box .item a .content .details {
  width: 100%;
  height: auto;
  max-height: calc(2em * 1.71);
  margin: calc(24px - 0.355em - var(--font16) * 0.125) 0 calc(60px - 0.355em);
  font-size: var(--font14);
  line-height: 1.71;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_news .main_box .news_main .sidebar_news .menu_box .item a .content .details {
    white-space: inherit;
  }
}
.inner_news .main_box .news_main .sidebar_news .menu_box .item a .time {
  width: 100%;
  height: auto;
  margin: 3em 0 0;
  font-weight: 500;
  font-size: var(--font14);
  color: #232323;
  line-height: 1;
}
.inner_news .main_box .news_main .sidebar_news .menu_box .item a:hover .content .classify .word {
  background: #232323;
  color: #FFFFFF;
}
.inner_news .main_box .news_main .sidebar_news .menu_box .item a:hover .content .title {
  color: var(--dark-orange);
}
.inner_news .main_box .news_main .sidebar_news .menu_box .item::after {
  content: '';
  width: 100%;
  height: 1px;
  display: block;
  background: #D2DBE0;
}
@media (max-width:1024px) {
  .inner_news .main_box .news_main {
    display: block;
  }
  .inner_news .main_box .news_main .latest_news {
    width: 100%;
    margin-bottom: 40px;
  }
  .inner_news .main_box .news_main .latest_news .menu_box .item a .content {
    padding: 20px;
  }
  .inner_news .main_box .news_main .sidebar_news .headline {
    padding: 20px 0 0;
  }
  .inner_news .main_box .news_main .sidebar_news .menu_box .item a {
    padding: var(--gap) 0;
  }
  .inner_news .main_box .news_main .sidebar_news .menu_box .item a .content .title {
    min-height: auto;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .inner_news .main_box .news_main .sidebar_news .menu_box .item a .content .details {
    margin: 10px 0 30px;
  }
}
@media (max-width:768px) {
  .inner_news .main_box .news_main .latest_news .menu_box {
    grid-template-columns: repeat(1, 1fr);
  }
  .inner_news .main_box .news_main .latest_news .menu_box .item:first-child {
    grid-column: inherit;
  }
  .inner_news .main_box .news_main .latest_news .menu_box .item:first-child a {
    display: block;
  }
}
/* -------------------- */
/* -------------------- */
/* 详情 */
.inner_news_details {
  width: 100%;
  height: auto;
  margin-top: var(--header-height);
  /*overflow: hidden;*/
}
@media (max-width:1440px) {
  .inner_news_details .grid-box {
    display: block;
  }
}
.inner_news_details .details_head {
  width: 100%;
  height: auto;
  padding: var(--spacing-160) 0 var(--spacing-80);
  background: #E8F0F2;
  overflow: hidden;
}
.inner_news_details .details_head .main_box {
  width: 100%;
  height: auto;
  text-align: center;
}
.inner_news_details .details_head .main_box .classify {
  width: 100%;
  height: auto;
  margin: -0.125em 0;
  font-size: var(--font16);
  line-height: 1.25;
}
.inner_news_details .details_head .main_box .title {
  width: 100%;
  height: auto;
  margin: 10px 0 -0.125em;
  font-size: var(--font36);
  line-height: 1.25;
}
.inner_news_details .details_head .main_box .title * {
  font-weight: 500;
  font-size: var(--font36);
  line-height: 1.25;
}
.inner_news_details .details_head .main_box .info {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  display: -webkit-box;
  display: -ms-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: 40px;
}
.inner_news_details .details_head .main_box .info .one {
  width: auto;
  height: auto;
  font-weight: 500;
  font-size: var(--font14);
  color: rgba(35, 35, 35, 0.4);
  line-height: 1;
}
.inner_news_details .details_head .main_box .info .line {
  width: 1px;
  height: 1em;
  font-size: var(--font14);
  background: #232323;
  opacity: 0.2;
}
@media (max-width:1024px) {
  .inner_news_details .details_head .main_box .info {
    grid-gap: 10px;
  }
}
.inner_news_details .details_main {
  width: 100%;
  height: auto;
  /*overflow: hidden;*/
}
.inner_news_details .details_main .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-80) 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;
}
.inner_news_details .details_main .main_box .sidebar_box {
  width: 27.78%;
  max-width: 400px;
  height: auto;
  /*overflow: hidden;*/
}
.inner_news_details .details_main .main_box .sidebar_box .sidebar_main {
  position: sticky;
  top: 100px;
  left: 0;
  z-index: 9;
}
.inner_news_details .details_main .main_box .sidebar_box .headline {
  width: 100%;
  height: auto;
}
.inner_news_details .details_main .main_box .sidebar_box .headline .word {
  width: 100%;
  height: auto;
  margin: -0.125em 0;
  padding-bottom: 1em;
  font-weight: 500;
  font-size: var(--font24);
  line-height: 1.25;
}
.inner_news_details .details_main .main_box .sidebar_box .headline::after {
  content: '';
  width: 100%;
  height: 2px;
  display: block;
  background: #D2DBE0;
}
.inner_news_details .details_main .main_box .sidebar_box .menu_box {
  width: 100%;
  height: auto;
}
.inner_news_details .details_main .main_box .sidebar_box .menu_box .item {
  width: 100%;
  height: auto;
  --gap: 24px;
}
.inner_news_details .details_main .main_box .sidebar_box .menu_box .item a {
  width: 100%;
  height: auto;
  display: block;
  padding: var(--gap) 0;
}
.inner_news_details .details_main .main_box .sidebar_box .menu_box .item a .content {
  width: 100%;
  height: auto;
}
.inner_news_details .details_main .main_box .sidebar_box .menu_box .item a .content .classify {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner_news_details .details_main .main_box .sidebar_box .menu_box .item a .content .classify .word {
  width: auto;
  height: auto;
  padding: 0 10px;
  border-radius: 50px;
  background: #D3E2E9;
  font-size: 12px;
  color: #232323;
  line-height: 1.75;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_news_details .details_main .main_box .sidebar_box .menu_box .item a .content .title {
  width: 100%;
  height: auto;
  margin: calc(20px - 0.125em) 0 -0.125em;
  font-weight: 500;
  font-size: var(--font16);
  color: #232323;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  white-space: break-spaces;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media (max-width:1840px) {
  .inner_news_details .details_main .main_box .sidebar_box .menu_box .item a .content .title {
    white-space: inherit;
  }
}
.inner_news_details .details_main .main_box .sidebar_box .menu_box .item a .time {
  width: 100%;
  height: auto;
  margin: var(--spacing-50) 0 0;
  font-weight: 500;
  font-size: var(--font14);
  color: #232323;
  line-height: 1;
  opacity: 0.4;
}
.inner_news_details .details_main .main_box .sidebar_box .menu_box .item a:hover .content .classify .word {
  background: #232323;
  color: #FFFFFF;
}
.inner_news_details .details_main .main_box .sidebar_box .menu_box .item a:hover .content .title {
  color: var(--dark-orange);
}
.inner_news_details .details_main .main_box .sidebar_box .menu_box .item::after {
  content: '';
  width: 100%;
  height: 1px;
  display: block;
  background: #D2DBE0;
}
.inner_news_details .details_main .main_box .news_box {
  width: 65.278%;
  max-width: 940px;
  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: 76px;
  order: 2;
}
.inner_news_details .details_main .main_box .news_box .news_main {
  width: 88.89%;
  flex: 1;
  height: auto;
  overflow: hidden;
}
.inner_news_details .details_main .main_box .news_box .news_main .text_details {
  width: 100%;
  height: auto;
  font-size: var(--font14);
  color: #000000;
  line-height: 1.71;
}
.inner_news_details .details_main .main_box .news_box .news_main .text_details * {
  font-size: var(--font14);
  color: #000000;
  line-height: 1.71;
}
.inner_news_details .details_main .main_box .news_box .news_main .text_details > * + * {
  margin-top: 10px;
}
.inner_news_details .details_main .main_box .news_box .news_main .text_details h2 {
  font-weight: 500;
  font-size: var(--font36);
}
.inner_news_details .details_main .main_box .news_box .news_main .text_details h3 {
  font-weight: 500;
  font-size: var(--font30);
}
.inner_news_details .details_main .main_box .news_box .news_main .text_details h4 {
  font-weight: 500;
  font-size: var(--font24);
}
.inner_news_details .details_main .main_box .news_box .news_main .text_details h5 {
  font-weight: 500;
  font-size: var(--font18);
}
.inner_news_details .details_main .main_box .news_box .news_main .text_details h6 {
  font-weight: 500;
  font-size: var(--font16);
}
.inner_news_details .details_main .main_box .news_box .news_main .text_details p {
  min-height: 5px;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  padding-top: var(--spacing-40);
  border-top: 1px solid #EFEFEF;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item {
  width: 100%;
  height: auto;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item a {
  width: 100%;
  height: auto;
  display: block;
  padding: 24px;
  border-radius: var(--border-radius20);
  border: 1px solid #EFEFEF;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item a .return_button {
  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: 10px;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item a .return_button .icon {
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #CBD5E1;
  background: #F1F5F9;
  overflow: hidden;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item a .return_button .icon svg {
  width: 12px;
  height: 10px;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item a .return_button .icon use {
  fill: #232323;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item a .return_button .word {
  width: 100%;
  height: auto;
  flex: 1;
  font-size: var(--font14);
  color: #888888;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item a .info_box {
  width: 100%;
  height: auto;
  margin-top: 24px;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item a .info_box .title {
  width: 100%;
  height: calc(2em * 1.25);
  margin: -0.125em 0;
  font-weight: 500;
  font-size: var(--font16);
  color: #232323;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item a .info_box .time {
  width: 100%;
  height: auto;
  margin-top: 24px;
  font-size: var(--font14);
  color: #232323;
  line-height: 1;
  opacity: 0.4;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item a:hover .return_button .icon use {
  fill: var(--dark-orange);
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item a:hover .return_button .word {
  color: var(--dark-orange);
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item a:hover .info_box .title {
  color: var(--dark-orange);
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item:first-child a .info_box {
  padding-right: var(--spacing-60);
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item:last-child a .return_button {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  text-align: right;
}
.inner_news_details .details_main .main_box .news_box .news_main .inner_return .item:last-child a .info_box {
  text-align: right;
  padding-left: var(--spacing-60);
}
@media (max-width:1024px) {
  .inner_news_details .details_main .main_box .news_box .news_main .inner_return {
    display: none;
  }
}
.inner_news_details .details_main .main_box .news_box .share_box {
  width: 64px;
  height: auto;
  overflow: hidden;
}
.inner_news_details .details_main .main_box .news_box .share_box .share_main {
  width: 100%;
  height: auto;
}
.inner_news_details .details_main .main_box .news_box .share_box .share_main .return {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.inner_news_details .details_main .main_box .news_box .share_box .share_main .return a {
  width: 100%;
  height: auto;
  display: block;
}
.inner_news_details .details_main .main_box .news_box .share_box .share_main .return a .icon {
  width: 100%;
  height: auto;
  padding-bottom: 100%;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid #CBD5E1;
  background: #F1F5F9;
}
.inner_news_details .details_main .main_box .news_box .share_box .share_main .return a .icon svg {
  width: 16px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.inner_news_details .details_main .main_box .news_box .share_box .share_main .return a .word {
  width: 100%;
  height: auto;
  margin-top: 10px;
  text-align: center;
  font-size: var(--font14);
  color: #888888;
}
.inner_news_details .details_main .main_box .news_box .share_box .share_main .menu {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-40);
  padding: 10px 0;
  border-radius: 50vw;
  border: 1px solid #EFEFEF;
  background: #FFFFFF;
}
.inner_news_details .details_main .main_box .news_box .share_box .share_main .menu .item {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 1;
}
.inner_news_details .details_main .main_box .news_box .share_box .share_main .menu .item a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  filter: brightness(0);
  opacity: 0.4;
  font-size: 0;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_news_details .details_main .main_box .news_box .share_box .share_main .menu .item a:hover {
  filter: none;
  opacity: 1;
}
@media (max-width:1024px) {
  .inner_news_details .details_main .main_box .news_box .share_box {
    display: none;
  }
}
@media (max-width:1024px) {
  .inner_news_details .details_main .main_box {
    display: block;
  }
  .inner_news_details .details_main .main_box .sidebar_box {
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
  }
  .inner_news_details .details_main .main_box .news_box {
    width: 100%;
  }
}
.privacy-policy .details_head .main_box .info {
  grid-gap: 0;
}
.privacy-policy .details_main .main_box .news_box {
  width: 100%;
  max-width: 100%;
}
.privacy-policy .details_main .main_box .news_box .news_main {
  width: 100%;
}
/* -------------------- */
/* -------------------- */
/* ----- 案例展示 - 列表 ----- */
/* 如何为客户增值？ */
.inner_case_block {
  width: 100%;
  height: auto;
  margin-top: var(--header-height);
  background: #C7D8E0;
  overflow: hidden;
}
.inner_case_block .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-120) 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;
}
.inner_case_block .main_box .content {
  width: 49.44%;
  height: auto;
}
.inner_case_block .main_box .content .block_title {
  width: 100%;
  height: auto;
}
.inner_case_block .main_box .content .block_title .word {
  width: 100%;
  height: auto;
  margin: -0.125em 0;
  padding-bottom: 12px;
  font-weight: 500;
  font-size: var(--font18);
  color: #232323;
  line-height: 1.25;
}
.inner_case_block .main_box .content .block_title::after {
  content: '';
  width: 100%;
  height: 2px;
  display: block;
  background: #BDCDD5;
}
.inner_case_block .main_box .content .info {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
}
.inner_case_block .main_box .content .info .title {
  width: 100%;
  height: auto;
  font-size: var(--font30);
  color: #232323;
  line-height: 1.2;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_case_block .main_box .content .info .title {
    white-space: inherit;
  }
}
.inner_case_block .main_box .content .info .details {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  font-size: var(--font16);
  color: #232323;
  line-height: 1.875;
}
.inner_case_block .main_box .content .info .details * {
  font-size: var(--font16);
  color: #232323;
  line-height: 1.875;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_case_block .main_box .content .info .details * {
    white-space: inherit;
  }
}
.inner_case_block .main_box .content .more_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-70);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner_case_block .main_box .content .more_box .more {
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  padding: 30px 48px;
  border-radius: var(--border-radius20);
  background: url(../images/more-bg.jpg) no-repeat center #deecf2;
  background-size: cover;
}
.inner_case_block .main_box .content .more_box .more::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  box-sizing: content-box;
  padding: 10px;
  border: 1px dashed #9EB0B9;
  border-radius: var(--border-radius20);
  pointer-events: none;
}
.inner_case_block .main_box .content .more_box .more .title {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: var(--font20);
  color: #014F97;
  line-height: 1.2;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_case_block .main_box .content .more_box .more .title {
    white-space: inherit;
  }
}
.inner_case_block .main_box .content .more_box .more .icon {
  width: 56px;
  height: auto;
  margin: 20px auto 10px;
  border-radius: 50%;
  font-size: 0;
  overflow: hidden;
}
.inner_case_block .main_box .content .more_box .more .word {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: var(--font14);
  color: #232323;
}
.inner_case_block .main_box .images {
  width: 39.5%;
  max-width: 568px;
  height: auto;
  font-size: 0;
  text-align: center;
}
@media (max-width:768px) {
  .inner_case_block .main_box {
    display: block;
  }
  .inner_case_block .main_box .content {
    width: 100%;
  }
  .inner_case_block .main_box .content .more_box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .inner_case_block .main_box .content .more_box .more {
    padding: 20px;
  }
  .inner_case_block .main_box .content .more_box .more .icon {
    width: 30px;
  }
  .inner_case_block .main_box .images {
    width: 100%;
    margin: auto;
    margin-top: 40px;
  }
}
.inner_case-box {
  padding-bottom: var(--spacing-60);
}
.inner_case-box .inner_case_item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_case-box .inner_case_item .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-100) 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;
  grid-gap: 0 50px;
}
.inner_case-box .inner_case_item .main_box .images {
  width: 100%;
  max-width: 530px;
  height: auto;
}
.inner_case-box .inner_case_item .main_box .content {
  width: 100%;
  height: auto;
  max-width: 672px;
  display: -webkit-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_case-box .inner_case_item .main_box .content .headline {
  width: 100%;
  height: auto;
  padding-bottom: 12px;
  border-bottom: 2px solid #ECF2F3;
  font-weight: 500;
  font-size: var(--font24);
  color: #232323;
  line-height: 1.25;
}
.inner_case-box .inner_case_item .main_box .content .details {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-50);
}
.inner_case-box .inner_case_item .main_box .content .details * {
  font-size: var(--font16);
  color: #232323;
  line-height: 1.875;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_case-box .inner_case_item .main_box .content .details * {
    white-space: inherit;
  }
}
.inner_case-box .inner_case_item .main_box .content .idx_more {
  margin-top: var(--spacing-50);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.inner_case-box .inner_case_item .main_box .content .idx_more a,
.inner_case-box .inner_case_item .main_box .content .idx_more .more {
  background: #F5F5F5;
}
.inner_case-box .inner_case_item .main_box .content .idx_more a .word,
.inner_case-box .inner_case_item .main_box .content .idx_more .more .word {
  color: #232323;
}
.inner_case-box .inner_case_item .main_box .content .idx_more a .icon use,
.inner_case-box .inner_case_item .main_box .content .idx_more .more .icon use {
  fill: var(--dark-orange);
}
.inner_case-box .inner_case_item .main_box .content .idx_more a:hover,
.inner_case-box .inner_case_item .main_box .content .idx_more .more:hover {
  background: var(--dark-orange);
}
.inner_case-box .inner_case_item .main_box .content .idx_more a:hover .word,
.inner_case-box .inner_case_item .main_box .content .idx_more .more:hover .word {
  color: #FFFFFF;
}
.inner_case-box .inner_case_item .main_box .content .idx_more a:hover .icon use,
.inner_case-box .inner_case_item .main_box .content .idx_more .more:hover .icon use {
  fill: #FFFFFF;
}
.inner_case-box .inner_case_item:nth-child(2n) {
  background: #F2F5F9;
}
.inner_case-box .inner_case_item:nth-child(2n) .main_box .images {
  order: 2;
}
.inner_case-box .inner_case_item:nth-child(2n) .main_box .content .headline {
  border-color: #E0E4EA;
}
.inner_case-box .inner_case_item:nth-child(2n) .main_box .content .idx_more a,
.inner_case-box .inner_case_item:nth-child(2n) .main_box .content .idx_more .more {
  background: #FFFFFF;
}
.inner_case-box .inner_case_item:nth-child(2n) .main_box .content .idx_more a:hover,
.inner_case-box .inner_case_item:nth-child(2n) .main_box .content .idx_more .more:hover {
  background: var(--dark-orange);
}
@media (max-width:768px) {
  .inner_case-box .inner_case_item .main_box {
    display: block;
  }
  .inner_case-box .inner_case_item .main_box .images {
    margin: auto;
    margin-bottom: 40px;
  }
}
/* ----- 案例展示 - 详情 ----- */
.details_case_block {
  width: 100%;
  height: auto;
  margin-top: var(--header-height);
  background: #E9EBE7 url('../images/case_d_bg_line.png') no-repeat bottom / 100% auto;
  overflow: hidden;
}
.details_case_block .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-190) 0 var(--spacing-140);
  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;
}
.details_case_block .main_box .content {
  width: 100%;
  max-width: 650px;
  height: auto;
}
.details_case_block .main_box .content .title_box {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 2px solid #D9DCD6;
}
.details_case_block .main_box .content .title_box .icon {
  width: 15.4%;
  border-radius: var(--border-radius20);
  font-size: 0;
  overflow: hidden;
}
.details_case_block .main_box .content .title_box .title {
  width: 100%;
  height: auto;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
  flex: 1;
  font-size: var(--font48);
  line-height: 1.2;
  margin-left: var(--spacing-40);
}
.details_case_block .main_box .content .details {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-50);
  font-weight: 300;
  font-size: var(--font24);
  color: #232323;
  line-height: 1.25;
}
.details_case_block .main_box .menu_box {
  width: 100%;
  max-width: 640px;
  height: auto;
  padding: 0 55px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.details_case_block .main_box .menu_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.details_case_block .main_box .menu_box .item .info {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  border-radius: 50%;
  background: #47A488;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.details_case_block .main_box .menu_box .item .info .title {
  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;
  gap: 10px;
}
.details_case_block .main_box .menu_box .item .info .title .number {
  font-weight: 700;
  font-size: 60px;
  color: #FFFFFF;
  line-height: 1;
}
.details_case_block .main_box .menu_box .item .info .title .add {
  width: 29px;
  height: 29px;
  background: #FFFFFF;
  -webkit-clip-path: polygon(0 37.93103448%, 0 62.06896552%, 37.93103448% 62.06896552%, 37.93103448% 100%, 62.06896552% 100%, 62.06896552% 62.06896552%, 100% 62.06896552%, 100% 37.93103448%, 62.06896552% 37.93103448%, 62.06896552% 0, 37.93103448% 0, 37.93103448% 37.93103448%, 0 37.93103448%);
  clip-path: polygon(0 37.93103448%, 0 62.06896552%, 37.93103448% 62.06896552%, 37.93103448% 100%, 62.06896552% 100%, 62.06896552% 62.06896552%, 100% 62.06896552%, 100% 37.93103448%, 62.06896552% 37.93103448%, 62.06896552% 0, 37.93103448% 0, 37.93103448% 37.93103448%, 0 37.93103448%);
}
.details_case_block .main_box .menu_box .item .info .title .unit {
  font-weight: 700;
  font-size: var(--font30);
  color: #FFFFFF;
}
.details_case_block .main_box .menu_box .item .info .word {
  width: 100%;
  height: auto;
  margin-top: 10px;
  text-align: center;
  font-size: var(--font20);
  color: #FFFFFF;
}
.details_case_block .main_box .menu_box .item:last-child .info {
  border: 1px solid #47A488;
  background: transparent;
}
.details_case_block .main_box .menu_box .item:last-child .info .title .number,
.details_case_block .main_box .menu_box .item:last-child .info .title .unit {
  color: #47A488;
}
.details_case_block .main_box .menu_box .item:last-child .info .title .add {
  background: #47A488;
}
.details_case_block .main_box .menu_box .item:last-child .info .word {
  color: #232323;
}
@media (max-width:1440px) {
  .details_case_block .grid-box {
    display: block;
  }
}
@media (max-width:1024px) {
  .details_case_block .main_box .content .title_box .title {
    font-size: var(--font32);
  }
  .details_case_block .main_box .menu_box .item .info .title .number {
    font-size: 30px;
  }
  .details_case_block .main_box .menu_box .item .info .title .add {
    width: 18px;
    height: 18px;
  }
}
@media (max-width:768px) {
  .details_case_block .main_box {
    display: block;
  }
  .details_case_block .main_box .menu_box {
    padding: 0;
    margin: auto;
    margin-top: 40px;
  }
}
/* 挑战 && 成果 */
.details_case_item {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.details_case_item .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.details_case_item .main_box .content {
  width: 100%;
  height: auto;
  grid-column: 1 / 6;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.details_case_item .main_box .content .block_title {
  width: 75%;
  height: auto;
  padding-bottom: 16px;
  border-bottom: 2px solid #C8D8D2;
  font-size: var(--font18);
  color: #232323;
  line-height: 1.2;
}
.details_case_item .main_box .content .info {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  padding-right: 60px;
}
.details_case_item .main_box .content .info .title {
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: var(--font30);
  color: #232323;
  line-height: 1.2;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .details_case_item .main_box .content .info .title {
    white-space: inherit;
  }
}
.details_case_item .main_box .content .info .details {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  font-size: var(--font16);
  color: #232323;
  line-height: 1.5;
}
.details_case_item .main_box .content .info .details * {
  font-size: var(--font16);
  color: #232323;
  line-height: 1.5;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .details_case_item .main_box .content .info .details * {
    white-space: inherit;
  }
}
.details_case_item .main_box .images {
  width: 100%;
  height: auto;
  grid-column: -5 / -1;
  overflow: hidden;
}
.details_case_item .main_box .images .img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius20);
  overflow: hidden;
}
.details_case_item .main_box .images .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.details_case_item.active .main_box .content .block_title {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.details_case_item.active .main_box .content .info {
  padding-right: 50px;
}
.details_case_item.active .main_box .content .info .title,
.details_case_item.active .main_box .content .info .details,
.details_case_item.active .main_box .content .info .details * {
  color: #FFFFFF;
}
.details_case_item > div:nth-child(2) .main_box .content {
  grid-area: 1 / -5 / 1 / -1;
}
.details_case_item > div:nth-child(2) .main_box .content .block_title {
  width: 100%;
}
.details_case_item > div:nth-child(2) .main_box .content .info {
  padding-right: 0;
}
.details_case_item > div:nth-child(2) .main_box .images {
  grid-area: 1 / 1 / 1 / 5;
}
@media (max-width:768px) {
  .details_case_item.active .main_box .content .info {
    padding: 0;
  }
  .details_case_item .main_box {
    display: block;
  }
  .details_case_item .main_box .content .block_title {
    width: 100%;
  }
  .details_case_item .main_box .content .info {
    padding: 0;
  }
  .details_case_item .main_box .images {
    margin-top: 40px;
  }
}
/* 解决方案 */
.details_case_solution {
  width: 100%;
  height: auto;
  background: #E4F1EC;
  overflow: hidden;
}
.details_case_solution .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0 var(--spacing-120);
}
.details_case_solution .main_box .title_box {
  width: 44.44%;
  height: auto;
}
.details_case_solution .main_box .title_box .block_title {
  width: 100%;
  height: auto;
  padding-bottom: 16px;
  border-bottom: 2px solid #D4E5DE;
  font-size: var(--font18);
  color: #232323;
  line-height: 1.2;
}
.details_case_solution .main_box .title_box .title {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-50);
  font-weight: 200;
  font-size: var(--font30);
  color: #232323;
  line-height: 1.25;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .details_case_solution .main_box .title_box .title {
    white-space: inherit;
  }
}
.details_case_solution .main_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-70);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.details_case_solution .main_box .menu_box .item {
  width: 100%;
  height: auto;
  padding: 30px;
  border-radius: var(--border-radius20);
  border: 1px solid #CFE1DA;
  background: #DBECE6;
}
.details_case_solution .main_box .menu_box .item .number {
  width: 100px;
  height: 100px;
  border-radius: var(--border-radius10);
  background: #CEE0D9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font24);
  color: #232323;
}
.details_case_solution .main_box .menu_box .item .info {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-50);
}
.details_case_solution .main_box .menu_box .item .info .title {
  width: 100%;
  height: auto;
  font-size: var(--font24);
}
.details_case_solution .main_box .menu_box .item .info .details {
  width: 100%;
  height: auto;
  margin-top: 1em;
}
.details_case_solution .main_box .menu_box .item .info .details * {
  font-size: var(--font16);
  line-height: 1.5;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .details_case_solution .main_box .menu_box .item .info .details * {
    white-space: inherit;
  }
}
.details_case_solution .main_box .menu_box .item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.details_case_solution .main_box .menu_box .item:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
@media (max-width:1024px) {
  .details_case_solution .main_box .title_box {
    width: 100%;
  }
  .details_case_solution .main_box .menu_box .item {
    padding: 20px;
  }
}
@media (max-width:768px) {
  .details_case_solution .main_box .menu_box {
    grid-template-columns: repeat(1, 1fr);
  }
  .details_case_solution .main_box .menu_box .item .number {
    width: 45px;
    height: 45px;
  }
  .details_case_solution .main_box .menu_box .item .info {
    margin-top: 20px;
  }
  .details_case_solution .main_box .menu_box .item .info .details {
    margin-top: 0.5em;
  }
}
/* -------------------- */
/* -------------------- */
/* ----- 关于我们 ----- */
/* 以信为本 识微见远 */
.inner_about_block {
  width: 100%;
  height: auto;
  margin-top: var(--header-height);
  background: linear-gradient(to right, #ACCACD, #D3DCDD);
  overflow: hidden;
}
.inner_about_block .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-120) 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;
}
.inner_about_block .main_box .content {
  width: 44.44%;
  height: auto;
}
.inner_about_block .main_box .content .title_box {
  width: 100%;
  height: auto;
  padding-bottom: 16px;
  border-bottom: 2px solid #A8C4C6;
}
.inner_about_block .main_box .content .title_box .classify {
  width: 100%;
  height: auto;
  font-size: var(--font48);
  color: var(--dark-orange);
}
.inner_about_block .main_box .content .title_box .title {
  width: 100%;
  height: auto;
  font-size: var(--font48);
  color: #005496;
  line-height: 1.2;
}
.inner_about_block .main_box .content .title_box .title * {
  font-size: var(--font48);
  color: #005496;
  line-height: 1.2;
}
.inner_about_block .main_box .content .title_box .title *:last-child {
  text-indent: 3em;
}
.inner_about_block .main_box .content .details {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-50);
  font-size: var(--font16);
  line-height: 1.875;
}
.inner_about_block .main_box .content .details * {
  font-size: var(--font16);
  line-height: 1.875;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_about_block .main_box .content .details * {
    white-space: inherit;
  }
}
.inner_about_block .main_box .images {
  width: 38.89%;
  height: auto;
  font-size: 0;
}
@media (max-width:1440px) {
  .inner_about_block .main_box .content {
    width: 50%;
  }
  .inner_about_block .main_box .images {
    width: 44%;
  }
}
@media (max-width:768px) {
  .inner_about_block .main_box {
    display: block;
  }
  .inner_about_block .main_box .content {
    width: 100%;
  }
  .inner_about_block .main_box .images {
    width: 100%;
    max-width: 560px;
    margin: auto;
    margin-top: 40px;
  }
}
/* 企业文化 */
.inner_culture {
  width: 100%;
  height: auto;
  background: #F3F8F6;
  overflow: hidden;
}
.inner_culture .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0;
}
.inner_culture .main_box .block_title {
  width: 100%;
  height: auto;
  font-size: var(--font30);
  line-height: 1.2;
}
.inner_culture .main_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.inner_culture .main_box .menu_box .item {
  width: 100%;
  height: auto;
  padding: 30px;
  border-radius: var(--border-radius20);
  border: 1px solid #E0E7E8;
  background: #EBF2F1;
}
.inner_culture .main_box .menu_box .item .icon {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius10);
  background: #DDE7E5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner_culture .main_box .menu_box .item .icon img {
  max-width: 40%;
  max-height: 40%;
}
.inner_culture .main_box .menu_box .item .info {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-50);
}
.inner_culture .main_box .menu_box .item .info .title {
  width: 100%;
  height: auto;
  font-size: var(--font24);
}
.inner_culture .main_box .menu_box .item .info .details {
  width: 100%;
  height: auto;
  margin-top: 1em;
}
.inner_culture .main_box .menu_box .item .info .details * {
  font-size: var(--font16);
  line-height: 1.5;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_culture .main_box .menu_box .item .info .details * {
    white-space: inherit;
  }
}
.inner_culture .main_box .menu_box .item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.inner_culture .main_box .menu_box .item:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@media (max-width:1024px) {
  .inner_culture .main_box .menu_box {
    grid-gap: 20px;
  }
  .inner_culture .main_box .menu_box .item {
    padding: 20px;
  }
}
@media (max-width:768px) {
  .inner_culture .main_box .menu_box {
    grid-template-columns: repeat(1, 1fr);
  }
  .inner_culture .main_box .menu_box .item .icon {
    width: 45px;
    height: 45px;
  }
}
/* 公司创始人 */
.inner_founder {
  width: 100%;
  height: auto;
  background: #003138;
  overflow: hidden;
}
.inner_founder .main_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 60px;
}
.inner_founder .main_box .images {
  width: 32.2222%;
  max-width: 464px;
  height: auto;
  font-size: 0;
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.inner_founder .main_box .content {
  width: 100%;
  max-width: 640px;
  height: 100%;
  padding: var(--spacing-80) 0;
  order: 2;
  font-weight: bold;
}
.inner_founder .main_box .content .icon {
  width: 100%;
  height: auto;
  font-size: 0;
}
.inner_founder .main_box .content .icon img {
  max-width: 16.25%;
}
.inner_founder .main_box .content .classify {
  width: 100%;
  height: auto;
  margin-top: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: var(--font18);
  color: #FFFFFF;
}
.inner_founder .main_box .content .info {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
}
.inner_founder .main_box .content .info .title {
  width: 100%;
  height: auto;
  /*font-weight: 200;*/
  font-size: var(--font30);
  color: #FFFFFF;
  line-height: 1.2;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_founder .main_box .content .info .title {
    white-space: inherit;
  }
}
.inner_founder .main_box .content .info .details {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  /*font-weight: 200;*/
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.875;
}
.inner_founder .main_box .content .info .details * {
  /*font-weight: 200;*/
  font-size: var(--font16);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.875;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_founder .main_box .content .info .details * {
    white-space: inherit;
  }
}
.inner_founder .main_box .content .signature {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
}
.inner_founder .main_box .content .signature .img {
  width: 100%;
  height: auto;
  font-size: 0;
}
.inner_founder .main_box .content .signature .word {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font18);
  color: rgba(255, 255, 255, 0.2);
  line-height: 1.2;
}
@media (max-width:1440px) {
  .inner_founder .grid-box {
    display: block;
  }
}
@media (max-width:1024px) {
  .inner_founder .main_box {
    display: block;
  }
  .inner_founder .main_box .content {
    max-width: 100%;
    padding-bottom: 0;
  }
  .inner_founder .main_box .content .icon img {
    max-width: 40px;
  }
  .inner_founder .main_box .images {
    width: 100%;
    max-width: 100%;
    text-align: right;
    margin-top: -75px;
  }
  .inner_founder .main_box .images img {
    max-height: 250px;
  }
}
/* 合作伙伴 */
.inner_partners {
  width: 100%;
  height: auto;
  background: #141B4D;
  overflow: hidden;
}
@media (max-width:1440px) {
  .inner_partners .grid-box {
    display: block;
  }
}
.inner_partners .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0 var(--spacing-170);
}
.inner_partners .main_box .block_title {
  width: 100%;
  height: auto;
  font-size: var(--font30);
  color: #FFFFFF;
  line-height: 1.2;
}
.inner_partners .main_box .partners_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-50);
  padding: 30px 30px 0;
  border-radius: var(--border-radius20);
  background: #FFFFFF;
  overflow: hidden;
}
.inner_partners .main_box .partners_box .swiper_box {
  width: 100%;
  height: auto;
}
.inner_partners .main_box .partners_box .swiper_box .swiper-slide {
  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;
}
.inner_partners .main_box .partners_box .swiper_box .swiper-slide .ani {
  display: none;
}
.inner_partners .main_box .partners_box .swiper_box .swiper-slide.swiper-slide-active .ani {
  display: block;
}
.inner_partners .main_box .partners_box .swiper_box .swiper-slide .img {
  width: 31.16%;
  height: 100%;
  border-radius: var(--border-radius10);
  background: #EBF2F1;
  overflow: hidden;
}
.inner_partners .main_box .partners_box .swiper_box .swiper-slide .img .pb {
  padding-bottom: 41.86046512%;
}
.inner_partners .main_box .partners_box .swiper_box .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_partners .main_box .partners_box .swiper_box .swiper-slide .info {
  width: 43.2%;
  height: auto;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.inner_partners .main_box .partners_box .swiper_box .swiper-slide .info .title {
  width: 100%;
  height: auto;
  font-size: var(--font36);
  color: #232323;
}
.inner_partners .main_box .partners_box .swiper_box .swiper-slide .info .details {
  width: 100%;
  height: auto;
}
.inner_partners .main_box .partners_box .swiper_box .swiper-slide .info .details * {
  font-size: var(--font16);
  line-height: 1.5;
}
.inner_partners .main_box .partners_box .pager_box {
  display: none;
}
.inner_partners .main_box .partners_box .swiper_pager {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 60px;
  gap: 10px;
}
.inner_partners .main_box .partners_box .swiper_pager .swiper-scrollbar {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: -2px;
  background: transparent;
}
.inner_partners .main_box .partners_box .swiper_pager .swiper-scrollbar::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #d1dedc;
  position: absolute;
  bottom: 0;
  left: 0;
}
.inner_partners .main_box .partners_box .swiper_pager .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: var(--dark-orange);
  height: 2px;
}
.inner_partners .main_box .partners_box .swiper_pager .swiper_info {
  width: 100%;
  height: auto;
  flex: 1;
  order: 1;
}
.inner_partners .main_box .partners_box .swiper_pager .swiper_info .swiper-slide {
  width: 20%;
  height: 130px;
  cursor: pointer;
}
.inner_partners .main_box .partners_box .swiper_pager .swiper_info .swiper-slide .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.inner_partners .main_box .partners_box .swiper_pager .swiper_info .swiper-slide img {
  max-width: 153px;
  max-height: 64px;
}
.inner_partners .main_box .partners_box .swiper_pager .pager-btn {
  width: 20px;
  height: 100%;
  font-size: 0;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 9;
  display: -webkit-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_partners .main_box .partners_box .swiper_pager .pager-btn.prev {
  left: 0;
}
.inner_partners .main_box .partners_box .swiper_pager .pager-btn.next {
  right: 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.inner_partners .main_box .partners_box .swiper_pager .pager-btn svg path {
  fill: #b6c5c2;
}
.inner_partners .main_box .partners_box .swiper_pager .pager-btn svg path:hover {
  fill: #333333;
}
@media (max-width:1024px) {
  .inner_partners .main_box .partners_box {
    padding: 20px 20px 0;
  }
  .inner_partners .main_box .partners_box .swiper_box .swiper-slide .info {
    width: 64%;
  }
  .inner_partners .main_box .partners_box .swiper_pager {
    margin-top: 40px;
  }
  .inner_partners .main_box .partners_box .swiper_pager .swiper_info .swiper-slide {
    height: 70px;
  }
  .inner_partners .main_box .partners_box .swiper_pager .pager-btn {
    display: none;
  }
}
@media (max-width:768px) {
  .inner_partners .main_box .partners_box .swiper_box .swiper-slide {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .inner_partners .main_box .partners_box .swiper_box .swiper-slide .img {
    width: 50%;
  }
  .inner_partners .main_box .partners_box .swiper_box .swiper-slide .info {
    width: 100%;
    margin-top: 20px;
  }
}
/* 本识客户 */
.inner_custom {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_custom .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0;
}
.inner_custom .main_box .block_title {
  width: 100%;
  height: auto;
  font-size: var(--font30);
  color: #232323;
  line-height: 1.2;
}
.inner_custom .main_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.inner_custom .main_box .menu_box .item {
  width: 100%;
  height: auto;
  background-color: #f7f7f7;
  border-radius: var(--border-radius20);
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
}
.inner_custom .main_box .menu_box .item.active {
  grid-column: span 2;
  /*background: var(--bgColor);*/
}
.inner_custom .main_box .menu_box .item.active2 {
  grid-row: span 2;
  /*background: var(--bgColor);*/
}
@media (max-width:1024px) {
  .inner_custom .main_box .menu_box {
    grid-gap: 10px;
  }
}
@media (max-width:768px) {
  .inner_custom .main_box .menu_box {
    grid-gap: 2px;
  }
}
/* -------------------- */
/* -------------------- */
/* ----- 联系我们 ----- */
/* 联系方式 */
.inner_content_box {
  width: 100%;
  height: auto;
  margin-top: var(--header-height);
  background: #F3F8F6;
  overflow: hidden;
}
.inner_content_box .main_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin: 160px 0 var(--spacing-80);
}
.inner_content_box .main_box .contact_box {
  width: 100%;
  height: auto;
}
.inner_content_box .main_box .contact_box .title_box {
  width: 100%;
  height: auto;
}
.inner_content_box .main_box .contact_box .title_box .title {
  width: 100%;
  height: auto;
  font-size: var(--font30);
  color: #232323;
}
.inner_content_box .main_box .contact_box .title_box .subtitle {
  width: 100%;
  height: auto;
  font-size: var(--font48);
  color: #005496;
  line-height: 1.2;
}
.inner_content_box .main_box .contact_box .title_box .details {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  font-weight: 200;
  font-size: var(--font18);
  color: #232323;
  line-height: 1.33;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_content_box .main_box .contact_box .title_box .details {
    white-space: inherit;
  }
}
.inner_content_box .main_box .contact_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-30);
}
.inner_content_box .main_box .contact_box .menu_box .item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
.inner_content_box .main_box .contact_box .menu_box .item .icon {
  width: 72px;
  height: 72px;
  background: #E4EFF0;
  border-radius: 50%;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.inner_content_box .main_box .contact_box .menu_box .item .info {
  width: 100%;
  height: auto;
  flex: 1;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.inner_content_box .main_box .contact_box .menu_box .item .info .title {
  width: 100%;
  height: auto;
  font-weight: 700;
  font-size: var(--font20);
}
.inner_content_box .main_box .contact_box .menu_box .item .info .word {
  width: 100%;
  height: auto;
  font-size: var(--font16);
}
.inner_content_box .main_box .contact_box .menu_box .item:first-child .icon {
  background: #23AC38;
}
.inner_content_box .main_box .contact_box .menu_box .item:nth-child(2) .icon {
  background: #EE7700;
}
.inner_content_box .main_box .contact_box .menu_box .item:nth-child(3) .icon {
  background: #0054C5;
}
.inner_content_box .main_box .contact_box .menu_box .item + .item {
  margin-top: 30px;
}
.inner_content_box .main_box .contact_box .qrcode_box {
  width: 100%;
  height: auto;
  margin: 54px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner_content_box .main_box .contact_box .qrcode_box .qrcode-img {
  width: 100px;
  height: 100%;
  padding: 10px;
  border-radius: var(--border-radius10);
  border: 1px solid #D6E4E5;
  background: #E4EFF0;
  overflow: hidden;
  margin-right: 20px;
}
.inner_content_box .main_box .contact_box .qrcode_box .info .title {
  font-size: var(--font14);
}
.inner_content_box .main_box .contact_box .qrcode_box .info .details {
  font-size: 12px;
  opacity: 0.4;
}
.inner_content_box .main_box .contact_box .f_share .share {
  margin-top: 18px;
}
.inner_content_box .main_box .contact_box .f_share .share .item .icon {
  background-color: #e4eff0;
}
.inner_content_box .main_box .feedback_box {
  width: 100%;
  height: auto;
  padding: 24px 30px;
  border-radius: var(--border-radius20);
  background: #E4EFF0;
  overflow: hidden;
}
.inner_content_box .main_box .feedback_box .title_box {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #D6E4E5;
}
.inner_content_box .main_box .feedback_box .title_box .title {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font30);
  line-height: 1.2;
}
.inner_content_box .main_box .feedback_box .title_box .subtitle {
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: var(--font18);
  color: rgba(35, 35, 35, 0.4);
  line-height: 1.2;
}
.inner_content_box .main_box .feedback_box .form_box {
  width: 100%;
  height: auto;
  margin-top: 24px;
}
.inner_content_box .main_box .feedback_box .form_box form {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box {
  width: 100%;
  height: auto;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box .label {
  width: 100%;
  height: auto;
  font-weight: 500;
  font-size: var(--font14);
}
.inner_content_box .main_box .feedback_box .form_box form .input-box .input {
  width: 100%;
  height: auto;
  margin-top: 5px;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box .input input {
  width: 100%;
  height: 48px;
  padding: 0 20px;
  border-radius: 100px;
  border: 0;
  background: #FFFFFF;
  font-size: var(--font14);
  color: #232323;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box .input input ::-webkit-input-placeholder {
  color: #A7A7A7;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box .input input :-moz-placeholder {
  color: #A7A7A7;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box .input input ::-moz-placeholder {
  color: #A7A7A7;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box .input input :-ms-input-placeholder {
  color: #A7A7A7;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box .input textarea {
  width: 100%;
  height: 100px;
  padding: 14px 20px;
  border-radius: 20px;
  border: 0;
  background: #FFFFFF;
  font-size: var(--font14);
  color: #232323;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box .input textarea ::-webkit-input-placeholder {
  color: #A7A7A7;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box .input textarea :-moz-placeholder {
  color: #A7A7A7;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box .input textarea ::-moz-placeholder {
  color: #A7A7A7;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box .input textarea :-ms-input-placeholder {
  color: #A7A7A7;
}
.inner_content_box .main_box .feedback_box .form_box form .input-box.active {
  grid-column: 1 / -1;
}
.inner_content_box .main_box .feedback_box .form_box form .radio-box {
  width: 100%;
  height: auto;
  grid-column: 1 / -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.inner_content_box .main_box .feedback_box .form_box form .radio-box .radio-one {
  width: 13px;
  height: 13px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.inner_content_box .main_box .feedback_box .form_box form .radio-box .radio-one input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  opacity: 0;
  cursor: pointer;
}
.inner_content_box .main_box .feedback_box .form_box form .radio-box .radio-one .radio-check {
  width: 100%;
  height: 100%;
  border: 1px solid #979D9E;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-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.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_content_box .main_box .feedback_box .form_box form .radio-box .radio-one .radio-check::after {
  content: '';
  width: 50%;
  height: 50%;
  display: block;
  border-radius: 2px;
  background: var(--dark-orange);
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_content_box .main_box .feedback_box .form_box form .radio-box .radio-one input:checked + .radio-check {
  border-color: var(--dark-orange);
}
.inner_content_box .main_box .feedback_box .form_box form .radio-box .radio-one input:checked + .radio-check::after {
  opacity: 1;
}
.inner_content_box .main_box .feedback_box .form_box form .radio-box .word {
  width: 100%;
  height: auto;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
  flex: 1;
  font-size: 12px;
  color: rgba(35, 35, 35, 0.4);
  line-height: 1.2;
}
.inner_content_box .main_box .feedback_box .form_box form .radio-box .word * {
  font-size: 12px;
  color: rgba(35, 35, 35, 0.4);
}
.inner_content_box .main_box .feedback_box .form_box form .radio-box .word a {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_content_box .main_box .feedback_box .form_box form .radio-box .word a:hover {
  color: var(--dark-orange);
}
.inner_content_box .main_box .feedback_box .form_box form .idx_more {
  grid-column: 1 / -1;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.inner_content_box .main_box .feedback_box .form_box form .idx_more a,
.inner_content_box .main_box .feedback_box .form_box form .idx_more .more {
  background: var(--dark-orange);
}
.inner_content_box .main_box .feedback_box .form_box form .idx_more a input,
.inner_content_box .main_box .feedback_box .form_box form .idx_more .more input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  border: 0;
  opacity: 0;
  cursor: pointer;
}
.inner_content_box .main_box .feedback_box .form_box form .idx_more a:hover,
.inner_content_box .main_box .feedback_box .form_box form .idx_more .more:hover {
  background: var(--dark-blue);
}
@media (max-width:1440px) {
  .inner_content_box .grid-box {
    display: block;
  }
  .inner_content_box .main_box {
    grid-gap: 40px;
  }
}
@media (max-width:1024px) {
  .inner_content_box .main_box {
    margin-top: 60px;
    display: block;
  }
  .inner_content_box .main_box .contact_box .menu_box .item {
    grid-gap: 10px;
  }
  .inner_content_box .main_box .contact_box .menu_box .item .icon {
    width: 55px;
    height: 55px;
  }
  .inner_content_box .main_box .contact_box .qrcode_box {
    margin-top: 30px;
  }
  .inner_content_box .main_box .feedback_box {
    padding: 20px;
    margin-top: 40px;
  }
  .inner_content_box .main_box .feedback_box .form_box form {
    grid-gap: 20px;
  }
}
@media (max-width:768px) {
  .inner_content_box .main_box .contact_box .menu_box .item .icon {
    width: 45px;
    height: 45px;
  }
  .inner_content_box .main_box .feedback_box .form_box form {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* Logo 无缝滚动 */
.inner_roll {
  width: 100%;
  height: auto;
  padding: 70px 0;
  background: #F3F8F6;
  overflow: hidden;
}
.inner_roll .roll_box {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inner_roll .roll_box .content {
  width: auto;
  height: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
}
.inner_roll .roll_box .content .menu {
  width: auto;
  height: 100%;
  /*margin-right: 30px;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-shrink: 0;
  gap: 30px;
}
.inner_roll .roll_box .content .menu .item {
  width: auto;
  height: 100%;
}
@media (max-width:1024px) {
  .inner_roll {
    padding: 10px 0 30px;
  }
  .inner_roll .roll_box .content {
    height: 45px;
  }
}
@media (max-width:768px) {
  .inner_roll .roll_box .content .menu {
    grid-gap: 0;
  }
}
/* 地图 */
.inner_map {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.inner_map img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}
/* -------------------- */
/* -------------------- */
/* ----- 加入我们 ------ */
/* 用人理念 */
.inner_join_block {
  width: 100%;
  height: auto;
  margin-top: var(--header-height);
  background: #E6ECE1;
  overflow: hidden;
}
.inner_join_block .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-160) 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;
}
.inner_join_block .main_box .content {
  width: 100%;
  max-width: 710px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: var(--spacing-60);
  padding-top: var(--spacing-60);
}
.inner_join_block .main_box .content .block_title {
  width: 100%;
  max-width: 640px;
  height: auto;
}
.inner_join_block .main_box .content .block_title .word {
  width: 100%;
  height: auto;
  margin: -0.125em 0;
  padding-bottom: 12px;
  font-weight: 500;
  font-size: var(--font18);
  color: #232323;
  line-height: 1.25;
}
.inner_join_block .main_box .content .block_title::after {
  content: '';
  width: 100%;
  height: 1px;
  display: block;
  background: #D9E0D4;
}
.inner_join_block .main_box .content .title {
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: var(--font30);
  color: #232323;
  line-height: 1.2;
}
.inner_join_block .main_box .content .details {
  width: 100%;
  height: auto;
  margin: -0.4375em;
}
.inner_join_block .main_box .content .details * {
  font-size: var(--font16);
  color: #232323;
  line-height: 1.875;
  white-space: break-spaces;
}
@media (max-width:1840px) {
  .inner_join_block .main_box .content .details * {
    white-space: inherit;
  }
}
.inner_join_block .main_box .content .idx_more {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.inner_join_block .main_box .content .idx_more a,
.inner_join_block .main_box .content .idx_more .more {
  background: var(--dark-orange);
}
.inner_join_block .main_box .content .idx_more a:hover,
.inner_join_block .main_box .content .idx_more .more:hover {
  background: var(--dark-blue);
}
.inner_join_block .main_box .images {
  width: 100%;
  max-width: 640px;
  height: auto;
  font-size: 0;
  overflow: hidden;
}
@media (max-width:768px) {
  .inner_join_block .main_box {
    display: block;
  }
  .inner_join_block .main_box .images {
    margin: auto;
    margin-top: 40px;
  }
}
/* 员工风采 */
.inner_staff {
  width: 100%;
  height: auto;
  background: #003138 url('../images/bg.jpg') no-repeat top / 100% auto;
  overflow: hidden;
}
.inner_staff .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0;
}
.inner_staff .main_box .block_title {
  width: 100%;
  height: auto;
  margin: -0.1em 0;
  font-size: var(--font30);
  color: #FFFFFF;
  line-height: 1.2;
}
.inner_staff .main_box .staff_box {
  width: 100%;
  height: auto;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  border-radius: var(--border-radius20);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.inner_staff .main_box .staff_box .item {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  background: var(--bgColor);
  overflow: hidden;
}
.inner_staff .main_box .staff_box .item:nth-child(1) {
  width: 47.77777778%;
  display: -webkit-box;
  display: -ms-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;
}
.inner_staff .main_box .staff_box .item:nth-child(2) {
  width: 34.30555556%;
}
.inner_staff .main_box .staff_box .item:nth-child(3) {
  width: 17.91666667%;
  display: -webkit-box;
  display: -ms-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;
}
.inner_staff .main_box .staff_box .item:nth-child(4) {
  width: 20.41666667%;
  display: -webkit-box;
  display: -ms-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;
}
.inner_staff .main_box .staff_box .item:nth-child(5) {
  width: 37.63888889%;
}
.inner_staff .main_box .staff_box .item:nth-child(6) {
  width: 41.94444444%;
  display: -webkit-box;
  display: -ms-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;
}
.inner_staff .main_box .staff_box .activity_item .headline {
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  padding: 24px;
  font-weight: 300;
  font-size: var(--font30);
  color: #FFFFFF;
  line-height: 1.2;
}
.inner_staff .main_box .staff_box .activity_item .swiper_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.inner_staff .main_box .staff_box .activity_item .swiper_box .swiper-slide {
  width: 100%;
  height: auto;
}
.inner_staff .main_box .staff_box .activity_item .swiper_box .swiper-slide .pb {
  padding-bottom: 48.17813765%;
}
.inner_staff .main_box .staff_box .activity_item .swiper_box .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner_staff .main_box .staff_box .activity_item .swiper_box .pager_box {
  width: 100%;
  height: auto;
  padding: 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
}
.inner_staff .main_box .staff_box .activity_item .swiper_box .pager_box .pager {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 5px;
}
.inner_staff .main_box .staff_box .activity_item .swiper_box .pager_box .pager span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FFF;
  opacity: 0.5;
  cursor: pointer;
  pointer-events: initial;
}
.inner_staff .main_box .staff_box .activity_item .swiper_box .pager_box .pager .active {
  background: var(--dark-orange);
  opacity: 1;
}
.inner_staff .main_box .staff_box .video_item .headline {
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  padding: 24px;
  font-weight: 300;
  font-size: var(--font30);
  color: #FFFFFF;
  line-height: 1.2;
}
.inner_staff .main_box .staff_box .video_item .video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  --r: 68px;
  cursor: pointer;
  overflow: hidden;
}
.inner_staff .main_box .staff_box .video_item .video::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  background: #000000;
  opacity: 0.4;
  pointer-events: none;
}
.inner_staff .main_box .staff_box .video_item .video .play {
  width: var(--r);
  height: var(--r);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.36);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_staff .main_box .staff_box .video_item .video .play svg {
  width: 100%;
  height: 100%;
}
.inner_staff .main_box .staff_box .video_item .video .play use {
  fill: #FFFFFF;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.inner_staff .main_box .staff_box .video_item .video .pb {
  padding-bottom: 43.91143911%;
}
.inner_staff .main_box .staff_box .video_item .video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:1440px) {
  .inner_staff .grid-box {
    display: block;
  }
}
@media (max-width:768px) {
  .inner_staff .main_box .staff_box .item {
    width: 50% !important;
  }
}
@media (max-width:480px) {
  .inner_staff .main_box .staff_box .item {
    width: 100% !important;
  }
  .inner_staff .main_box .staff_box .item:nth-child(3) img,
  .inner_staff .main_box .staff_box .item:nth-child(4) img,
  .inner_staff .main_box .staff_box .item:nth-child(6) img {
    max-height: 99px;
  }
}
/* 员工福利 */
.inner_welfare {
  width: 100%;
  height: auto;
  background: #F3F8F6;
  overflow: hidden;
}
.inner_welfare .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0;
}
.inner_welfare .main_box .block_title {
  width: 100%;
  height: auto;
  font-size: var(--font30);
  line-height: 1.2;
}
.inner_welfare .main_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.inner_welfare .main_box .menu_box .item {
  width: 100%;
  height: auto;
  padding: 30px;
  border-radius: var(--border-radius20);
  border: 1px solid #E0E7E8;
  background: #EBF2F1;
}
.inner_welfare .main_box .menu_box .item .info {
  width: 100%;
  height: auto;
}
.inner_welfare .main_box .menu_box .item .info .icon {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius10);
  background: #DDE7E5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner_welfare .main_box .menu_box .item .info .icon img {
  min-width: 36.25%;
  max-height: 36.25%;
}
.inner_welfare .main_box .menu_box .item .info .title {
  width: 100%;
  height: auto;
  margin-top: 20px;
  font-size: var(--font24);
}
.inner_welfare .main_box .menu_box .item .menu {
  width: 100%;
  height: auto;
  margin-top: var(--spacing-60);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
}
.inner_welfare .main_box .menu_box .item .menu .one {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  grid-gap: 10px;
}
.inner_welfare .main_box .menu_box .item .menu .one .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--dark-orange);
  overflow: hidden;
}
.inner_welfare .main_box .menu_box .item .menu .one .icon svg {
  width: 100%;
  height: 100%;
}
.inner_welfare .main_box .menu_box .item .menu .one .icon use {
  fill: #FFFFFF;
}
.inner_welfare .main_box .menu_box .item .menu .one .word {
  width: 100%;
  height: auto;
  flex: 1;
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
  font-size: var(--font18);
  color: #232323;
  line-height: 1.2;
}
.inner_welfare .main_box .menu_box .item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.inner_welfare .main_box .menu_box .item:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@media (max-width:1440px) {
  .inner_welfare .grid-box {
    display: block;
  }
}
@media (max-width:1024px) {
  .inner_welfare .main_box .menu_box {
    grid-gap: 20px;
  }
  .inner_welfare .main_box .menu_box .item {
    padding: 20px;
  }
  .inner_welfare .main_box .menu_box .item .content .one .icon {
    width: 14px;
    height: 14px;
  }
}
@media (max-width:768px) {
  .inner_welfare .main_box .menu_box {
    grid-template-columns: repeat(1, 1fr);
  }
  .inner_welfare .main_box .menu_box .item .info .icon {
    width: 45px;
    height: 45px;
  }
  .inner_welfare .main_box .menu_box .item .info .icon img {
    max-width: 45px;
  }
  .inner_welfare .main_box .menu_box .item .menu {
    margin-top: 10px;
    grid-gap: 10px;
  }
}
/* 招聘岗位 */
.inner_job {
  width: 100%;
  height: auto;
  background: #C7D8E0;
  overflow: hidden;
}
.inner_job .main_box {
  width: 100%;
  height: auto;
  padding: var(--spacing-140) 0;
}
.inner_job .main_box .block_title {
  width: 100%;
  height: auto;
  margin: -0.1em 0;
  font-size: var(--font30);
  line-height: 1.2;
}
.inner_job .main_box .menu_box {
  width: 100%;
  height: auto;
  margin-top: 40px;
}
.inner_job .main_box .menu_box .item {
  width: 100%;
  height: auto;
  padding: 16px 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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  grid-gap: 10%;
  border-radius: var(--border-radius20);
  background: #C0D2DA;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  overflow: hidden;
}
.inner_job .main_box .menu_box .item .info_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner_job .main_box .menu_box .item .info_box .title {
  width: 100%;
  height: auto;
  flex: 1;
  font-weight: 500;
  font-size: var(--font24);
}
.inner_job .main_box .menu_box .item .info_box .info {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.inner_job .main_box .menu_box .item .info_box .info .address,
.inner_job .main_box .menu_box .item .info_box .info .time {
  width: 100%;
  height: auto;
  font-weight: 300;
  font-size: var(--font18);
}
.inner_job .main_box .menu_box .item .idx_more {
  width: auto;
}
.inner_job .main_box .menu_box .item:hover {
  background: #B8CAD1;
}
.inner_job .main_box .menu_box .item + .item {
  margin-top: 2px;
}
@media (max-width:1440px) {
  .inner_job .grid-box {
    display: block;
  }
}
@media (max-width:768px) {
  .inner_job .main_box .menu_box .item {
    padding: 20px;
    display: block;
  }
  .inner_job .main_box .menu_box .item .info_box {
    display: block;
  }
  .inner_job .main_box .menu_box .item .info_box .info {
    margin: 6px 0 20px;
  }
  .inner_job .main_box .menu_box .item .idx_more {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
/* -------------------- */
/* -------------------- */
.pagerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: var(--spacing-60);
}
.pagerBox .layui-laypage {
  margin: 0;
}
.pagerBox .layui-laypage a,
.pagerBox .layui-laypage span {
  height: auto;
  font-size: var(--font18);
  color: #a1acb2;
  padding: 0 10px;
  background-color: transparent;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.pagerBox .layui-laypage a:hover,
.pagerBox .layui-laypage span:hover {
  color: var(--dark-orange);
}
.pagerBox .swiper_but {
  z-index: 2;
  cursor: pointer;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  min-width: 80px;
  height: 50px;
  background-color: #eff2f7;
  border-radius: 16px;
}
.pagerBox .swiper_but i {
  color: #232323;
  font-size: 12px;
}
.pagerBox .swiper_but:hover i {
  color: var(--dark-orange);
}
.pagerBox .layui-laypage a,
.pagerBox .layui-laypage button,
.pagerBox .layui-laypage input,
.pagerBox .layui-laypage select,
.pagerBox .layui-laypage span {
  border: 0;
}
.pagerBox .layui-laypage .layui-laypage-curr em {
  color: #232323;
  background: none;
}
@media (max-width:768px) {
  .pagerBox .swiper_but {
    min-width: 24px;
    height: 40px;
    border-radius: 10px;
  }
}
