@charset "utf-8";
/* https://www.huahanlink.com/ */
/* 技术：小王 QQ：491813163  微信：18223904336 */
/* 产品：小黄 QQ: 1452595308 */
/* 项目：小余：18816793621 */
/* 公共响应变量 */
/* 初始化*/
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: calc(100vw / 21);
  }
}
@media (max-width:1280px) {
  html {
    font-size: calc(100vw / 19.3);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/15);
  }
}
@media (max-width:480px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: "Montserrat", "Microsoft YaHei", "Microsoft YaHei UI", "SimSun", "SimHei", "Arial";
  font-size: 16px;
  color: #000;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  box-sizing: border-box;
  border: 0;
  vertical-align: middle;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
ul.swiper-wrapper,
ol.swiper-slide,
li.swiper-slide {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
  display: block;
  cursor: pointer;
}
a:hover {
  color: var(--active_color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
}
input,
textarea {
  resize: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-appearance: none;
  appearance: none;
}
ul.swiper-wrapper {
  margin: 0;
  padding: 0;
}
/* Flex 布局 */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.f_column {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.f_column_right {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.f_row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.f_row_right {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.j_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.j_end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.j_start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.j_justify {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.j_around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.a_start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.a_end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.a_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.a_baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.a_stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.a_s_stretch {
  -webkit-box-self: stretch;
  -ms-align-self: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
}
.a_s_center {
  -webkit-box-self: center;
  -ms-align-self: center;
  -webkit-align-self: center;
  align-self: center;
}
.a_s_end {
  -webkit-box-self: end;
  -ms-align-self: end;
  -webkit-align-self: end;
  align-self: end;
}
.flex_wrap {
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
/* 文字超出隐藏 */
.text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 动画 */
.abImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
}
.dh {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 动画延迟 */
/* 比例 */
.pb {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.ab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
.ab img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 图片 水平垂直 居中 */
.abimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* 常用 CSS3 动画 */
/* 360 旋转  &:hover { i { animation: more 0.5s linear; } } */
@keyframes run {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes grow2 {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes grow4 {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes more {
  0% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
/* 旋转 */
/* input框点击搜索时背景没有颜色 */
input:-webkit-autofill {
  background: transparent;
  transition: background-color 50000s ease-in-out 0s;
  -webkit-text-fill-color: unset;
}
/* 不显示滚动条 */
.scrollbar_0 * {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.scrollbar_0 *::-webkit-scrollbar {
  display: none;
}
.center_box {
  position: relative;
  z-index: 5;
}
/* 媒体查询 缩写 */
/* 布局 */
.pc {
  display: block;
}
.wap,
.mobile {
  display: none;
}
@media (max-width:990px) {
  .pc {
    display: none;
  }
  .wap,
  .mobile {
    display: block;
  }
}
.img_cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mar_b {
  margin-bottom: 0 !important;
}
.mar_t {
  margin-top: 0 !important;
}
.pad_b {
  padding-bottom: 0 !important;
}
.pad_t {
  padding-top: 0 !important;
}
.h100 {
  height: 100%;
}
.imgVideo {
  width: 100%;
  height: auto;
}
.imgVideo img,
.imgVideo video {
  width: 100%;
  height: auto;
}
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
:root {
  /* COLOR */
  --active_color: #FF6B00;
  --color_fff: #ffffff;
  --color_text: #282828;
  --color_f6f: #f6f6f6;
  --color_f4f: #f4f4f4;
  --color_eee: #eeeeee;
  --color_ddd: #dddddd;
  --color_bbb: #bbbbbb;
  --color_999: #999999;
  --color_666: #666666;
  --color_444: #444444;
  --color_333: #333333;
  --color_222: #222222;
  --color_000: #000000;
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font200: 2rem;
  --font15: clamp(12px, 0.15rem, 15px);
}
/* 公共字体 */
.font12 {
  font-size: var(--font12);
}
.font14 {
  font-size: var(--font14);
}
.font16 {
  font-size: var(--font16);
}
.font18 {
  font-size: var(--font18);
}
.font20 {
  font-size: var(--font20);
}
.font22 {
  font-size: var(--font22);
}
.font24 {
  font-size: var(--font24);
}
.font26 {
  font-size: var(--font26);
}
.font28 {
  font-size: var(--font28);
}
.font30 {
  font-size: var(--font30);
}
.font32 {
  font-size: var(--font32);
}
.font34 {
  font-size: var(--font34);
}
.font36 {
  font-size: var(--font36);
}
.font38 {
  font-size: var(--font38);
}
.font40 {
  font-size: var(--font40);
}
.font42 {
  font-size: var(--font42);
}
.font44 {
  font-size: var(--font44);
}
.font46 {
  font-size: var(--font46);
}
.font48 {
  font-size: var(--font48);
}
.font50 {
  font-size: var(--font50);
}
.font52 {
  font-size: var(--font52);
}
.font54 {
  font-size: var(--font54);
}
.font56 {
  font-size: var(--font56);
}
.font58 {
  font-size: var(--font58);
}
.font60 {
  font-size: var(--font60);
}
.font66 {
  font-size: var(--font66);
}
.font70 {
  font-size: var(--font70);
}
.font72 {
  font-size: var(--font72);
}
.font80 {
  font-size: var(--font80);
}
.font64 {
  font-size: var(--font64);
}
.font100 {
  font-size: var(--font100);
}
.font120 {
  font-size: var(--font120);
}
.font160 {
  font-size: var(--font160);
}
.font200 {
  font-size: var(--font200);
}
.font15 {
  font-size: var(--font15);
}
/* 间距 */
.mar_t10 {
  margin-top: 0.1rem;
}
.mar_t13 {
  margin-top: 0.13rem;
}
.mar_t15 {
  margin-top: 0.15rem;
}
.mar_t17 {
  margin-top: 0.17rem;
}
.mar_t20 {
  margin-top: 0.2rem;
}
.mar_t23 {
  margin-top: 0.23rem;
}
.mar_t25 {
  margin-top: 0.25rem;
}
.mar_t27 {
  margin-top: 0.27rem;
}
.mar_t30 {
  margin-top: 0.3rem;
}
.mar_t33 {
  margin-top: 0.33rem;
}
.mar_t35 {
  margin-top: 0.35rem;
}
.mar_t37 {
  margin-top: 0.37rem;
}
.mar_t40 {
  margin-top: 0.4rem;
}
.mar_t43 {
  margin-top: 0.43rem;
}
.mar_t45 {
  margin-top: 0.45rem;
}
.mar_t47 {
  margin-top: 0.47rem;
}
.mar_t50 {
  margin-top: 0.5rem;
}
.mar_t53 {
  margin-top: 0.53rem;
}
.mar_t55 {
  margin-top: 0.55rem;
}
.mar_t57 {
  margin-top: 0.57rem;
}
.mar_t60 {
  margin-top: 0.6rem;
}
.mar_t63 {
  margin-top: 0.63rem;
}
.mar_t65 {
  margin-top: 0.65rem;
}
.mar_t67 {
  margin-top: 0.67rem;
}
.mar_t70 {
  margin-top: 0.7rem;
}
.mar_t73 {
  margin-top: 0.73rem;
}
.mar_t75 {
  margin-top: 0.75rem;
}
.mar_t77 {
  margin-top: 0.77rem;
}
.mar_t80 {
  margin-top: 0.8rem;
}
.mar_t83 {
  margin-top: 0.83rem;
}
.mar_t85 {
  margin-top: 0.85rem;
}
.mar_t87 {
  margin-top: 0.87rem;
}
.mar_t90 {
  margin-top: 0.9rem;
}
.mar_t93 {
  margin-top: 0.93rem;
}
.mar_t95 {
  margin-top: 0.95rem;
}
.mar_t97 {
  margin-top: 0.97rem;
}
.mar_t100 {
  margin-top: 1rem;
}
.mar_t105 {
  margin-top: 1.05rem;
}
/* 文字颜色 */
.Coac {
  color: var(--active_color);
}
.Co99 {
  color: var(--color_999);
}
.Co66 {
  color: var(--color_666);
}
.Co33 {
  color: var(--color_333);
}
.Co22 {
  color: var(--color_222);
}
.Co00 {
  color: var(--color_000);
}
.CoFF {
  color: var(--color_fff);
}
/* 字体粗细工具类 */
.weight200 {
  font-weight: 200;
}
.weight300 {
  font-weight: 300;
}
.weight400 {
  font-weight: normal;
}
.weight500 {
  font-weight: 500;
}
.weight600 {
  font-weight: 600;
}
.weight700 {
  font-weight: 700;
}
.weight800 {
  font-weight: 800;
}
/* -------------------------------------------------------------------  字体 */
@font-face {
  font-family: "Montserrat";
  /*src: url("../fonts/Montserrat-Thin.ttf") format('truetype');*/
  font-weight: 200;
}
@font-face {
  font-family: "Montserrat";
  /*src: url("../fonts/Montserrat-Light.ttf") format('truetype');*/
  font-weight: 300;
}
@font-face {
  font-family: "Montserrat";
  /*src: url("../fonts/Montserrat-Regular.ttf") format('truetype');*/
  font-weight: 400;
}
@font-face {
  font-family: "Montserrat";
  /*src: url("../fonts/Montserrat-Medium.ttf") format('truetype');*/
  font-weight: 500;
}
@font-face {
  font-family: "Montserrat";
  /*src: url("../fonts/Montserrat-SemiBold.ttf") format('truetype');*/
  font-weight: 600;
}
@font-face {
  font-family: "Montserrat";
  /*src: url("../fonts/Montserrat-Bold.ttf") format('truetype');*/
  font-weight: 700;
}
@font-face {
  font-family: "Montserrat";
  /*src: url("../fonts/Montserrat-ExtraBold.ttf") format('truetype');*/
  font-weight: 800;
}
@font-face {
  font-family: "Montserrat";
  /*src: url("../fonts/Montserrat-Black.ttf") format('truetype');*/
  font-weight: 900;
}
/* --------------------------------------------------------------- 全站内容区 */
.w1480,
.container,
.wrap {
  width: 77.08333333%;
  margin: 0 auto;
}
@media (max-width:990px) {
  .w1480,
  .container,
  .wrap {
    width: 100%;
    padding: 0 20px;
  }
}
main {
  width: 100%;
  height: auto;
  --header-height: 64px;
  font-size: var(--font16);
  color: #333333;
}
@media (max-width:990px) {
  main {
    --header-height: 50px;
  }
}
/* --------------------------------------------------------------- 导航占位 */
.head_nbsp {
  width: 100%;
  height: var(--header-height);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* --------------------------------------------------------------- 锚点 */
.locate_item {
  width: 100%;
  height: 0;
}
/* --------------------------------------------------------------- 全站左右结构 */
.box_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:990px) {
  .box_info {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
  }
  .box_info .left_box,
  .box_info .right_box {
    width: 100% !important;
    height: auto;
  }
}
.banner_img {
  width: 100%;
  height: auto;
}
.banner_img img {
  width: 100%;
  height: auto;
}
.banner_img img.wap {
  min-height: 400px;
  object-fit: cover;
}
/* --------------------------------------------------------------- 颜色渐变 */
.bg_gra {
  background: linear-gradient(to right, #ffbebe, #bfffbf);
}
.te_gra {
  background-image: linear-gradient(180deg, #e3e3e375, #ffffff00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* --------------------------------------------------------------- 手机端轮播图分页器 */
.idxPageHide {
  display: none;
}
@media (max-width:990px) {
  .idxPageHide {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
  }
  .idxPageHide span {
    width: 5px;
    height: 5px;
  }
  .idxPageHide .swiper-pagination-bullet-active {
    background: var(--active_color);
  }
}
/* --------------------------------------------------------------- PC和手机端 轮播图分页器 */
.idxPageShow_box {
  width: fit-content;
  margin: 0 auto;
  height: auto;
  position: absolute;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
}
.idxPageShow_box .idxPageShow {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.12rem;
  position: relative;
}
.idxPageShow_box .idxPageShow span {
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 50%;
  opacity: 1;
  background: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idxPageShow_box .idxPageShow span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
}
.idxPageShow_box .idxPageShow .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--active_color);
}
.idxPageShow_box .idxPageShow .swiper-pagination-bullet-active::after {
  width: 100%;
  transition: all 5s linear;
}
.idxPageShow_box .prev {
  position: absolute;
  left: -0.8rem;
  z-index: 9;
  cursor: pointer;
  width: 0.3rem;
  height: 0.3rem;
}
@media (max-width:990px) {
  .idxPageShow_box .prev {
    display: none;
  }
}
.idxPageShow_box .next {
  position: absolute;
  right: -0.8rem;
  z-index: 9;
  cursor: pointer;
  width: 0.3rem;
  height: 0.3rem;
}
@media (max-width:990px) {
  .idxPageShow_box .next {
    display: none;
  }
}
.idxPageShow_box2 {
  width: fit-content;
  margin: 0 auto;
  height: auto;
  position: absolute;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  left: 50%;
  transform: translateX(-50%);
}
.idxPageShow_box2 .idxPageShow {
  width: fit-content;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  grid-gap: 0.12rem;
  position: relative;
}
.idxPageShow_box2 .idxPageShow span {
  width: 0.14rem;
  height: 0.14rem;
  border-radius: 50%;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idxPageShow_box2 .idxPageShow span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
}
.idxPageShow_box2 .idxPageShow .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--active_color);
}
.idxPageShow_box2 .idxPageShow .swiper-pagination-bullet-active::after {
  width: 100%;
  transition: all 5s linear;
}
.idxPageShow_box2 .prev {
  position: absolute;
  left: -0.8rem;
  z-index: 9;
  cursor: pointer;
  width: 0.3rem;
  height: 0.3rem;
}
@media (max-width:990px) {
  .idxPageShow_box2 .prev {
    display: none;
  }
}
.idxPageShow_box2 .next {
  position: absolute;
  right: -0.8rem;
  z-index: 9;
  cursor: pointer;
  width: 0.3rem;
  height: 0.3rem;
}
@media (max-width:990px) {
  .idxPageShow_box2 .next {
    display: none;
  }
}
/* --------------------------------------------------------------- 吸顶 */
.grid2 {
  grid-column: span 2;
}
.grid3 {
  grid-column: span 3;
}
.grid4 {
  grid-column: span 4;
}
.grid5 {
  grid-column: span 5;
}
.grid6 {
  grid-column: span 6;
}
.grid7 {
  grid-column: span 7;
}
.grid8 {
  grid-column: span 8;
}
@media (max-width:990px) {
  .grid2,
  .grid3,
  .grid4,
  .grid5,
  .grid6,
  .grid7,
  .grid8 {
    grid-column: unset;
  }
}
.grid_1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.grid_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid_3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid_4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.grid_5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.grid_6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.grid_7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.grid_8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width:990px) {
  .grid_1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_2 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_3 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_5 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_6 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_7 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid_8 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.toUp_Box {
  z-index: 10 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toUp_Box.posFix {
  position: fixed;
  top: 0;
}
.toUp_Box.posFix .center_box .item_box .item {
  padding: 0.28rem 0;
}
.toUp_Box.small {
  top: var(--header-height);
}
.bgImg_full {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_full img,
.bgImg_full video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bgImg_adap {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.bgImg_adap img,
.bgImg_adap video {
  width: 100%;
  height: auto;
}
.full_img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.full_img img,
.full_img video {
  width: 100%;
  height: auto;
}
.inputBg.active input {
  background: #4b6ba738 !important;
}
.inputBg input {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.top_info {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.imgScale img {
  transform: scale(1.5);
  -webkit-transition: all 0s ease;
  -o-transition: all 0s ease;
  transition: all 0s ease;
}
.imgScale.active img {
  transform: scale(1);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.tup {
  text-transform: uppercase;
}
@media (max-width:990px) {
  .hx p {
    display: contents;
  }
}
.fw300 {
  font-weight: 300;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.fw700 {
  font-weight: 700;
}
.tc {
  text-align: center;
}
.img_w100 {
  width: 100%;
  height: auto;
}
.img_w100 img,
.img_w100 video {
  width: 100%;
  height: auto;
}
ul li.swiper-slide-active {
  pointer-events: initial !important;
  z-index: 50;
}
ul li.swiper-slide-active .wowUpS {
  animation: fadeInUp 0.7s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.layui-input:focus,
.layui-textarea:focus {
  box-shadow: unset;
  border-color: var(--active_color) !important;
}
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  font-weight: normal;
}
* {
  scrollbar-color: #c2c2c2 #000;
  scrollbar-width: thin;
}
*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #d4d6d700;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--active_color);
  border-radius: 10px;
}
*::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0);
}
.layui_item {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.16rem;
}
.layui_item .layui-form-checkbox[lay-skin=primary] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
  gap: 0.18rem;
  padding: 0;
  padding-left: 0rem;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div {
  color: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.5em;
  font-size: var(--font16);
  line-height: 1.2;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > div a {
  color: var(--active_color);
  text-decoration: underline;
  display: contents;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i {
  width: 0.2rem;
  height: 0.2rem;
  min-width: 10px;
  min-height: 10px;
  position: relative;
  z-index: 1;
  top: unset;
  right: unset;
  left: unset;
  bottom: unset;
  display: -webkit-box;
  display: -ms-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: none;
  border: 1px solid #999999;
  left: 0;
  border-radius: 0.05rem;
  flex-shrink: 0;
}
.layui_item .layui-form-checkbox[lay-skin=primary] > i::before {
  opacity: 0;
  font-size: 13px;
  content: "";
  width: 60%;
  height: 60%;
  background: var(--active_color);
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
  border-radius: 0.02rem;
}
.layui_item .layui-form-checked[lay-skin=primary] > i::before {
  opacity: 1;
}
.layui_item .layui-form-checkbox > div {
  white-space: unset;
  text-overflow: unset;
}
.layui_item .layui-form-checkbox > div a {
  display: contents;
}
@media (max-width:990px) {
  .layui_item .layui-form-checkbox[lay-skin=primary] > i {
    top: 0.3em;
  }
}
/* --------------------------------------------------------------- wow */
.wowUp {
  opacity: 0;
}
.wowUpS {
  opacity: 0;
}
/*  适用于轮播图中的依次间隔时间  data-atime="100" &.swiper-slide-active { .wowUpS { animation: fadeInUp 0.7s forwards; .dh(.1); } } .wowUpS { opacity: 0; }  */
.wowUp_z {
  overflow: hidden;
}
.wowUp_z .wowSon {
  opacity: 0;
  transform: translateY(50px);
  -webkit-transition: all 1.1s ease;
  -o-transition: all 1.1s ease;
  transition: all 1.1s ease;
}
.wowUp_z.fadeInUp .wowSon {
  opacity: 1;
  transform: translateY(0px);
}
/* --------------------------------------------------------------- 轮播图依次出现 */
.wowUpSB {
  width: 100%;
  height: auto;
  overflow: hidden;
}
/**
*
* <div class="it_info">
*     <div class="item_box">
*         <div class="item active">干货文章</div>
*         <div class="item">学习园地</div>
*         <div class="item">企微使用指南</div>
*         <div class="item">资讯动态</div>
*         <div class="item">行业资讯</div>
*         <div class="item">解决方案</div>
*     </div>
* </div>
* .it_info { max-height: 36px; overflow: hidden; }
* .item_box { overflow: auto; padding-bottom: 10px; justify-content: start !important;
*     .item { white-space: nowrap; font-size: 16px !important; }
* }
*
*/
.reveal {
  overflow: hidden;
}
.reveal span {
  opacity: 0;
  display: inline-block;
}
.swiperActive .reveal span {
  animation: fadeInUp 0.5s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  display: inline-block;
}
/* --------------------------------------------------------------- 轮播图一排出现 */
.reveal {
  overflow: hidden;
}
.reveal span {
  opacity: 0;
  display: inline-block;
}
.swiperActive .reveal2 {
  animation: fadeInUp 0.5s forwards;
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  display: inline-block;
}
/* --------------------------------------------------------------- 代替class */
/* --------------------------------------------------------------- 视频播放图标 */
.vIcon {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.vIcon::after {
  content: '\e61d';
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "iconfont";
  font-size: var(--font50);
  color: #FFFFFF;
  cursor: pointer;
}
/* --------------------------------------------------------------- 新增公共组件 */
.newContent {
  width: 100%;
  height: auto;
  font-size: var(--font18);
  color: #666666;
  line-height: 1.5;
}
.newContent p {
  min-height: 0.5em;
}
.newContent img {
  width: unset !important;
  height: unset !important;
}
.idx_more {
  width: 100%;
  height: auto;
}
.idx_more .more {
  width: fit-content;
  padding: 0.12rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: #FFFFFFCC;
  border-radius: 0.24rem;
  border: 1px solid #FFFFFFCC;
  font-size: var(--font20);
  background: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_more .more:hover {
  border-color: var(--active_color) !important;
  color: #FFFFFF !important;
  background: var(--active_color);
}
.idx_more .more.bor00 {
  border-color: #000;
  color: #000;
}
header .m_header_box .header_title .column {
  gap: 0.2rem;
  align-items: center;
}
.line_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.line_box .zhanwei {
  width: 100%;
  height: auto;
  padding: 0 1rem;
}
.line_box .zhanwei .item_box {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 0.8rem;
}
.line_box .line {
  width: 2px;
  position: absolute;
  top: 0;
  height: 0;
  background: var(--active_color);
}
.right_fix {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 21;
}
.right_fix .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  gap: 0.04rem;
}
.right_fix .list .item {
  min-width: 48px;
  min-height: 48px;
  width: 0.48rem;
  max-width: 0.48rem;
  height: 0.48rem;
  background: #FF6B00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.right_fix .list .item .del_img {
  margin: 0.09rem;
  flex-shrink: 0;
}
.right_fix .list .item span {
  opacity: 0;
  padding: 0 0;
  width: 0;
  overflow: hidden;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
  white-space: nowrap;
  color: #fff;
}
.right_fix .list .item .icon_list {
  opacity: 0;
  width: 0;
  overflow: hidden;
  display: flex;
  gap: 0.04rem;
  -webkit-transition: all 1.2s ease;
  -o-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.right_fix .list .item .icon_list .icon {
  width: 0.3rem;
}
.right_fix .list .item:hover,
.right_fix .list .item.active {
  width: fit-content;
  max-width: 3rem;
}
.right_fix .list .item:hover span,
.right_fix .list .item.active span {
  opacity: 1;
  padding: 0 0.24rem 0 0.04rem;
  width: auto;
  color: #fff;
}
.right_fix .list .item:hover .icon_list,
.right_fix .list .item.active .icon_list {
  opacity: 1;
  width: auto;
}
@media (max-width:990px) {
  .right_fix {
    display: none;
  }
}
.idx_more {
  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;
  border-radius: 0.24rem;
}
.idx_more .more span {
  margin-right: 0.4rem;
}
.idx_topHint {
  width: 100%;
  height: 0.4rem;
}
.idx_topHint .word {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
}
.idx_topHint .word .t2 {
  color: #FF6B00;
}
.idx_topHint .word .t2 img {
  margin-left: 0.08rem;
}
@media (max-width:990px) {
  .idx_topHint {
    display: none;
  }
}
.idx_homeCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #000000;
}
.idx_homeCon1 .swiper_box {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li {
  width: 100%;
  height: auto;
}
.idx_homeCon1 .swiper_box ul li .centerInfo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .w1480 {
  height: 100%;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 2.5rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t1 {
  font-weight: 8 00;
  width: 100%;
  height: auto;
  color: #ff6b00;
  font-family: Montserrat;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .t2 {
  font-weight: 600;
  font-family: Montserrat;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .idx_more {
  margin: 0 auto;
  margin-top: 0.3rem;
  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-bottom: 1.5rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .content .center_box .idx_more .more {
  padding: 0.12rem 0.4rem;
}
.idx_homeCon1 .swiper_box ul li .centerInfo .bofang {
  position: absolute;
  mix-blend-mode: plus-lighter;
}
.idx_homeCon1 .swiper_box ul li .banner_img {
  width: 100%;
  height: 100vh;
}
.idx_homeCon1 .swiper_box ul li .banner_img img,
.idx_homeCon1 .swiper_box ul li .banner_img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon1 .idxPageShow_box {
  bottom: 0.5rem;
}
.idx_homeCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.6rem;
  padding-bottom: 2.18rem;
}
.idx_homeCon2 .idx_title .t1 {
  color: #FF6B00;
}
.idx_homeCon2 .idx_title .t2 {
  margin-top: 0.2rem;
}
.idx_homeCon2 .item {
  position: relative;
  height: 6.8rem;
  overflow: hidden;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  cursor: pointer;
}
.idx_homeCon2 .item .img-default {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_homeCon2 .item .img-hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.idx_homeCon2 .item:hover,
.idx_homeCon2 .item.active {
  background: #A69E9E;
}
.idx_homeCon2 .item:hover .img-default,
.idx_homeCon2 .item.active .img-default {
  opacity: 0;
}
.idx_homeCon2 .item:hover .img-hover,
.idx_homeCon2 .item.active .img-hover {
  opacity: 1;
}
.idx_homeCon2 .item:hover .word,
.idx_homeCon2 .item.active .word {
  height: auto;
  padding-bottom: 0.6rem;
}
.idx_homeCon2 .item:hover .word .idx_more,
.idx_homeCon2 .item.active .word .idx_more {
  opacity: 1;
  transform: translateY(0);
}
.idx_homeCon2 .item:hover .idx_more,
.idx_homeCon2 .item.active .idx_more {
  margin-top: 0.6rem;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.idx_homeCon2 .item:hover .idx_more .more,
.idx_homeCon2 .item.active .idx_more .more {
  border-color: var(--active_color) !important;
  color: #FFFFFF !important;
  background: var(--active_color);
}
@media (max-width:990px) {
  .idx_homeCon2 .item {
    height: auto;
  }
  .idx_homeCon2 .item .img-default {
    position: relative;
  }
  .idx_homeCon2 .item .img-hover {
    display: none;
  }
}
.idx_homeCon2 .content {
  margin-top: 0.6rem;
}
.idx_homeCon2 .idxPageShow_box2 {
  bottom: 1.65rem;
}
.idx_homeCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_homeCon3 .idx_title .t1 {
  color: #FF6B00;
}
.idx_homeCon3 .idx_title .t2 {
  margin-top: 0.2rem;
}
.idx_homeCon3 .banner_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.idx_homeCon3 .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon3 .banner_img .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
@media (max-width:990px) {
  .idx_homeCon3 .banner_img {
    height: auto;
    position: relative;
    margin-bottom: 0.5rem;
  }
  .idx_homeCon3 .banner_img img.wap {
    min-height: auto;
    object-fit: unset;
  }
}
.idx_homeCon3 .content {
  margin-top: 0.58rem;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.4rem 0;
}
.idx_homeCon3 .content .info_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  z-index: 1;
  position: relative;
}
.idx_homeCon3 .content .info_box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.idx_homeCon3 .content .info_box .left_box {
  width: 40%;
  z-index: 1;
  padding: 0.6rem;
}
.idx_homeCon3 .content .info_box .left_box .word {
  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: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  width: 100%;
}
.idx_homeCon3 .content .info_box .left_box .word .t1 {
  font-weight: 600;
}
.idx_homeCon3 .content .info_box .left_box .word .t2 {
  line-height: 1.75;
  margin-top: 0.24rem;
}
.idx_homeCon3 .content .info_box .left_box .word .idx_more {
  margin-top: 0.43rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.idx_homeCon3 .content .info_box .right_box {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.idx_homeCon3 .content .info_box .right_box .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
@media (max-width:480px) {
  .idx_homeCon3 .content .info_box .right_box .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.idx_homeCon3 .content .info_box .right_box .list .item {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0 0.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  min-height: 2rem;
  height: 100%;
  Z-index: 9;
  cursor: pointer;
  box-shadow: inset 0 0 0 0.3px #fff;
}
@media (max-width:990px) {
  .idx_homeCon3 .content .info_box .right_box .list .item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0.7rem 0.3rem;
  }
}
.idx_homeCon3 .content .info_box .right_box .list .item .t1 {
  font-weight: 600;
}
.idx_homeCon3 .content .info_box .right_box .list .item .t1 .sp {
  font-size: 0.14rem;
}
.idx_homeCon3 .content .info_box .right_box .list .item .t2 {
  margin-top: 0.14rem;
  word-break: break-all;
}
.idx_homeCon3 .content .info_box .right_box .list .item .icon {
  position: relative;
  width: 100%;
  min-height: 1.5rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
.idx_homeCon3 .content .info_box .right_box .list .item .def_img {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 1;
  transform: scale(1);
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  z-index: 1;
}
.idx_homeCon3 .content .info_box .right_box .list .item .hover_img {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  transform: scale(0);
  transform-origin: 75% 50%;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  z-index: 2;
}
.idx_homeCon3 .content .info_box .right_box .list .item:hover {
  background: #FF6B00;
}
.idx_homeCon3 .content .info_box .right_box .list .item:hover .def_img {
  opacity: 0;
  transform: scale(0);
  transform-origin: 75% 50%;
}
.idx_homeCon3 .content .info_box .right_box .list .item:hover .hover_img {
  opacity: 1;
  transform: scale(1);
  transform-origin: 75% 50%;
}
.idx_homeCon3 .content .info_box .right_box .list .item:first-child {
  padding: 0 0.2rem;
}
.idx_homeCon3 .content .video_box .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}
.idx_homeCon3 .content2 {
  width: 100%;
  height: auto;
  margin-top: 0.2rem;
}
.idx_homeCon3 .content2 .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.24rem;
}
@media (max-width:480px) {
  .idx_homeCon3 .content2 .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.idx_homeCon3 .content2 .list .item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.idx_homeCon3 .content2 .list .item .img img {
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  transform: scale(1);
}
.idx_homeCon3 .content2 .list .item .word {
  top: 0rem;
  left: 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .content2 .list .item .word .t1 {
  opacity: 1 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon3 .content2 .list .item .word .icon {
  opacity: 0 !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
}
.idx_homeCon3 .content2 .list .item.active .img img,
.idx_homeCon3 .content2 .list .item:hover .img img {
  transform: scale(1.2);
}
.idx_homeCon3 .content2 .list .item.active .word,
.idx_homeCon3 .content2 .list .item:hover .word {
  background: transparent ;
}
.idx_homeCon3 .content2 .list .item.active .word .t1,
.idx_homeCon3 .content2 .list .item:hover .word .t1 {
  opacity: 0 !important;
}
.idx_homeCon3 .content2 .list .item.active .word .icon,
.idx_homeCon3 .content2 .list .item:hover .word .icon {
  opacity: 1 !important;
}
.idx_homeCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: visible;
  padding-top: 1.58rem;
  padding-bottom: 2.2rem;
  font-weight: 600;
  /* Layui select 下拉菜单样式 */
}
.idx_homeCon4 .idx_title .t1 {
  color: #FF6B00;
}
.idx_homeCon4 .idx_title .t2 {
  margin-top: 0.2rem;
}
.idx_homeCon4 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1000;
  overflow: visible;
  background: #FF6B00;
  margin-top: 0.6rem;
  padding: 0.4rem;
}
.idx_homeCon4 .center_box .w1480 {
  padding: 0;
}
.idx_homeCon4 .center_box .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1000;
  overflow: visible;
  padding: 0.4rem 0 3rem;
  background: #fff;
  padding: 0.2rem 0.4rem;
}
.idx_homeCon4 .center_box .content .top {
  position: relative;
  z-index: 999;
}
.idx_homeCon4 .center_box .content .top .list {
  position: relative;
  z-index: 999;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.1rem;
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box .content .top .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_homeCon4 .center_box .content .top .list .item {
  position: relative;
}
.idx_homeCon4 .center_box .content .top .list .item:nth-child(1) {
  z-index: 99995;
}
.idx_homeCon4 .center_box .content .top .list .item:nth-child(2) {
  z-index: 99994;
}
.idx_homeCon4 .center_box .content .top .list .item:nth-child(3) {
  z-index: 99993;
}
.idx_homeCon4 .center_box .content .top .list .item:nth-child(4) {
  z-index: 99992;
}
.idx_homeCon4 .center_box .content .top .list .item:nth-child(5) {
  z-index: 99991;
}
.idx_homeCon4 .center_box .content .top .list .item .layui-form-item {
  margin-bottom: 0;
}
.idx_homeCon4 .center_box .content .top .list .item .layui-input-block {
  margin-left: 0;
}
.idx_homeCon4 .center_box .content .top .list .item .layui-input {
  color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 0.4rem;
  line-height: 0.4rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 0 0.1rem;
  border: none;
  border-radius: 10px;
}
.idx_homeCon4 .center_box .content .top .list .item .layui-form-select {
  width: 100%;
  position: relative;
}
.idx_homeCon4 .center_box .content .top .list .item .layui-form-select .layui-select-title input {
  width: 100%;
  height: 0.4rem;
  line-height: 0.4rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 0 0.1rem;
  border: none;
  border-radius: 10px;
}
.idx_homeCon4 .center_box .content .top .list .item .layui-form-select dl {
  border-radius: 0;
}
.idx_homeCon4 .center_box .content .top .list .item .layui-form-select dl dd:hover {
  background: #FF6B00;
  color: #fff;
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box .content .top .list .item .layui-form-select .layui-select-title input {
    height: 0.55rem;
  }
}
.idx_homeCon4 .center_box .content .middle {
  position: relative;
  z-index: 1;
  margin-top: 0.2rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.2rem 0.3rem;
}
.idx_homeCon4 .center_box .content .middle .title {
  width: 100%;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
.idx_homeCon4 .center_box .content .middle .list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1rem;
  margin-top: 0.2rem;
  row-gap: 0.1rem;
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box .content .middle .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_homeCon4 .center_box .content .middle .list .item {
  position: relative;
}
.idx_homeCon4 .center_box .content .middle .list .item:nth-child(1) {
  z-index: 99996;
}
.idx_homeCon4 .center_box .content .middle .list .item:nth-child(2) {
  z-index: 99995;
}
.idx_homeCon4 .center_box .content .middle .list .item:nth-child(3) {
  z-index: 99994;
}
.idx_homeCon4 .center_box .content .middle .list .item:nth-child(4) {
  z-index: 99993;
}
.idx_homeCon4 .center_box .content .middle .list .item:nth-child(5) {
  z-index: 99992;
}
.idx_homeCon4 .center_box .content .middle .list .item:nth-child(6) {
  z-index: 99991;
}
.idx_homeCon4 .center_box .content .middle .list .item .layui-form-item {
  margin-bottom: 0;
}
.idx_homeCon4 .center_box .content .middle .list .item .layui-input-block {
  margin-left: 0;
}
.idx_homeCon4 .center_box .content .middle .list .item .layui-input {
  color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 0.4rem;
  line-height: 0.4rem;
  background: #fff;
  padding: 0 0.1rem;
  border: none;
  border-radius: 10px;
}
.idx_homeCon4 .center_box .content .middle .list .item .layui-form-select {
  width: 100%;
  position: relative;
}
.idx_homeCon4 .center_box .content .middle .list .item .layui-form-select .layui-select-title input {
  width: 100%;
  height: 0.4rem;
  line-height: 0.4rem;
  background: #fff;
  padding: 0 0.1rem;
  border: none;
  border-radius: 10px;
}
.idx_homeCon4 .center_box .content .middle .list .item .layui-form-select dl {
  border-radius: 0;
}
.idx_homeCon4 .center_box .content .middle .list .item .layui-form-select dl dd:hover {
  background: #FF6B00;
  color: #fff;
}
@media (max-width:990px) {
  .idx_homeCon4 .center_box .content .middle .list .item .layui-form-select .layui-select-title input {
    height: 0.55rem;
  }
}
.idx_homeCon4 .center_box .content .bottom {
  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: 0.2rem;
  gap: 0.4rem;
  font-weight: 500;
}
@media (max-width:480px) {
  .idx_homeCon4 .center_box .content .bottom {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}
.idx_homeCon4 .center_box .content .bottom .clear_btn {
  padding: 0.12rem 0.4rem;
  border: 2px solid rgba(0, 0, 0, 0.6);
  color: rgba(0, 0, 0, 0.6);
  border-radius: 0.25rem;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width:480px) {
  .idx_homeCon4 .center_box .content .bottom .clear_btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.idx_homeCon4 .center_box .content .bottom .clear_btn:hover {
  background: rgba(0, 0, 0, 0.60);
  color: #fff;
  background-clip: padding-box;
}
.idx_homeCon4 .center_box .content .bottom .recom_btn {
  padding: 0.12rem 0.4rem;
  border: 2px solid #FF6B00;
  border-radius: 0.25rem;
  color: #FF6B00;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width:480px) {
  .idx_homeCon4 .center_box .content .bottom .recom_btn {
    width: 100%;
  }
}
.idx_homeCon4 .center_box .content .bottom .recom_btn:hover {
  background: #FF6B00;
  color: #fff;
  border: 2px solid #FF6B00;
}
.idx_homeCon4 .layui-form-select dl {
  z-index: 999999999 !important;
  position: absolute !important;
}
.idx_homeCon4 .layui-form-select dl.layui-anim {
  z-index: 999999999 !important;
}
.idx_homeCon4 .content2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.2rem;
}
.idx_homeCon4 .content2 .item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.idx_homeCon4 .content2 .item .img {
  width: 100%;
}
.idx_homeCon4 .content2 .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon4 .content2 .item .word {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0 0.2rem 0.2rem 0.2rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 75%, rgba(0, 0, 0, 0) 100%);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon4 .content2 .item .word .t2 {
  margin-top: 0.1rem;
}
.idx_homeCon4 .content2 .item .word .t2 p {
  word-break: break-all;
}
.idx_homeCon4 .content2 .item .word .idx_more {
  opacity: 0;
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon4 .content2 .item.active .word,
.idx_homeCon4 .content2 .item:hover .word {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}
.idx_homeCon4 .content2 .item.active .word .idx_more,
.idx_homeCon4 .content2 .item:hover .word .idx_more {
  opacity: 1;
  transform: translateY(0);
  margin-top: 0.26rem;
}
.idx_homeCon4 .content2 .item.active .word .idx_more .more,
.idx_homeCon4 .content2 .item:hover .word .idx_more .more {
  background: #FF6B00;
  border: none;
}
.idx_homeCon4 .idxPageShow_box2 {
  bottom: 1.65rem;
}
.idx_homeCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_homeCon5 .idx_title .t1 {
  color: #FF6B00;
}
.idx_homeCon5 .idx_title .t2 {
  margin-top: 0.2rem;
}
.idx_homeCon5 .content {
  margin-top: 0.6rem;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_homeCon5 .content .box_info .left_box {
  width: 37%;
  background: #FF6B00;
  padding: 0.8rem 0.4rem 1.2rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.6rem;
}
.idx_homeCon5 .content .box_info .left_box .word_box .word .t2 {
  margin-top: 0.12rem;
}
.idx_homeCon5 .content .box_info .left_box .word_box .address {
  margin-top: 0.4rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.6rem;
}
.idx_homeCon5 .content .box_info .left_box .word_box .address .one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
.idx_homeCon5 .content .box_info .left_box .word_box .address .one .img {
  width: 0.44rem;
  height: 0.44rem;
}
.idx_homeCon5 .content .box_info .left_box .word_box .address .one .img img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.idx_homeCon5 .content .box_info .left_box .word_box .address .one .word2 {
  width: 74%;
}
.idx_homeCon5 .content .box_info .left_box .word_box .address .one:nth-child(2) {
  margin-top: 0.4rem;
}
.idx_homeCon5 .content .box_info .left_box .follow_box {
  font-weight: 600;
}
.idx_homeCon5 .content .box_info .left_box .follow_box .list {
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
}
.idx_homeCon5 .content .box_info .left_box .follow_box .list .img {
  width: 0.6rem;
  position: relative;
  cursor: pointer;
}
.idx_homeCon5 .content .box_info .left_box .follow_box .list .img .def_img {
  display: block;
}
.idx_homeCon5 .content .box_info .left_box .follow_box .list .img .hover_img {
  display: none;
}
.idx_homeCon5 .content .box_info .left_box .follow_box .list .img:hover .def_img {
  display: none;
}
.idx_homeCon5 .content .box_info .left_box .follow_box .list .img:hover .hover_img {
  display: block;
}
.idx_homeCon5 .content .box_info .right_box {
  width: 63%;
  padding: 0.32rem 0.45rem 0.4rem 0.45rem;
  background: rgba(0, 0, 0, 0.05);
}
@media (max-width:990px) {
  .idx_homeCon5 .content .box_info .right_box {
    padding: 0.5rem 0.3rem;
  }
}
.idx_homeCon5 .content .box_info .right_box .input_box {
  border-radius: 0.1rem;
}
.idx_homeCon5 .content .box_info .right_box .input_box .layui-form-item {
  margin-bottom: 0.1rem;
}
.idx_homeCon5 .content .box_info .right_box .input_box .layui-input-block {
  margin-left: 0;
  margin-right: 0.1rem;
}
.idx_homeCon5 .content .box_info .right_box .input_box .layui-col-xs6:last-child .layui-input-block {
  margin-right: 0;
}
.idx_homeCon5 .content .box_info .right_box .input_box input {
  border-radius: 10px;
  height: 0.5rem;
  padding-left: 0.2rem;
}
@media (max-width:480px) {
  .idx_homeCon5 .content .box_info .right_box .input_box .layui-col-xs6 {
    width: 100%;
  }
  .idx_homeCon5 .content .box_info .right_box .input_box input {
    height: 0.55rem;
    padding-left: 0.2rem;
  }
}
.idx_homeCon5 .content .box_info .right_box .check_box {
  background: #fff;
  padding: 0.15rem 0.2rem 0.15rem 0.2rem;
  margin-top: 0.2rem;
  font-weight: 600;
  border-radius: 0.1rem;
}
.idx_homeCon5 .content .box_info .right_box .check_box .til {
  margin-bottom: 0.05rem;
  color: rgba(0, 0, 0, 0.6);
}
.idx_homeCon5 .content .box_info .right_box .check_box .layui-form-item {
  margin-bottom: 0.06rem;
}
.idx_homeCon5 .content .box_info .right_box .check_box .layui-input-block {
  margin-left: 0;
  min-height: 0;
}
.idx_homeCon5 .content .box_info .right_box .check_box input {
  color: rgba(0, 0, 0, 0.4);
}
.idx_homeCon5 .content .box_info .right_box .check_box .layui-form-checkbox {
  word-wrap: break-word;
  white-space: pre-wrap;
  color: rgba(0, 0, 0, 0.4);
}
.idx_homeCon5 .content .box_info .right_box .check_box .layui-form-checkbox > div {
  white-space: wrap;
  text-overflow: inherit;
  color: rgba(0, 0, 0, 0.4);
}
@media (max-width:480px) {
  .idx_homeCon5 .content .box_info .right_box .check_box .layui-col-xs6 {
    width: 100%;
  }
}
.idx_homeCon5 .content .box_info .right_box .textarea_box {
  margin-top: 0.2rem;
  background: #fff;
  border-radius: 0.1rem;
}
.idx_homeCon5 .content .box_info .right_box .textarea_box .layui-input-block {
  margin-left: 0;
  margin-right: 0rem;
  min-height: 0;
}
.idx_homeCon5 .content .box_info .right_box .textarea_box textarea {
  height: 1.2rem;
  padding: 0.16rem 0 0 0.19rem;
}
.idx_homeCon5 .content .box_info .right_box .send_btn {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600 ;
  cursor: pointer;
  width: 100%;
  background: #FFF;
  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;
  border: 2px solid #FF6B00;
  color: #FF6B00;
  border-radius: 0.24rem;
  margin-top: 0.32rem;
}
.idx_homeCon5 .content .box_info .right_box .send_btn p {
  padding: 0.12rem 0.4rem;
}
.idx_homeCon5 .content .box_info .right_box .send_btn:hover {
  background: #FF6B00;
  color: #fff;
}
.idx_homeCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.58rem;
  margin-bottom: 1.6rem;
}
.idx_homeCon6 .idx_title .t1 {
  color: #FF6B00;
}
.idx_homeCon6 .idx_title .t2 {
  margin-top: 0.2rem;
}
.idx_homeCon6 .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.58rem;
}
.idx_homeCon6 .center_box .swiper_box {
  width: 100%;
}
.idx_homeCon6 .center_box .idxPageShow_box2 {
  bottom: -0.8rem;
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .img {
  width: 43%;
  overflow: hidden;
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .word_box {
  width: 67%;
  padding: 0.4rem;
  background: rgba(0, 0, 0, 0.05);
  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_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .word_box .word {
  width: 80%;
}
@media (max-width:480px) {
  .idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .word_box .word {
    width: 100%;
  }
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .word_box .word .t2 {
  margin-top: 0.2rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  min-height: calc(1.25em * 3);
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .word_box .idx_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: 0.28rem;
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .word_box .idx_more .more {
  color: #000;
  border: 1px solid #000;
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .word_box .idx_more .def_img {
  display: block;
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .word_box .idx_more .hover_img {
  display: none;
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box:hover .img img {
  transform: scale(1.2);
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box:hover .idx_more .more {
  background: #FF6B00;
  color: #fff;
  border: 1px solid #FF6B00;
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box:hover .idx_more .def_img {
  display: none;
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box:hover .idx_more .hover_img {
  display: block;
}
@media (max-width:480px) {
  .idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .img {
    width: 100%;
  }
  .idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .word_box {
    width: 100%;
  }
}
.idx_companyCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_companyCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  left: 0;
  top: 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;
}
.idx_companyCon1 .content .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.idx_companyCon1 .content .center_box {
  text-align: center;
  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;
  z-index: 9;
}
.idx_companyCon1 .content .center_box .t1 {
  padding: 0.05rem 0.2rem;
  background: #FF6B00;
  width: fit-content;
  cursor: pointer;
}
.idx_companyCon1 .content .center_box .t2 {
  margin-top: 0.4rem;
  cursor: pointer;
}
.idx_companyCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 19;
}
.idx_companyCon2 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 19;
}
.idx_companyCon2 .content .top_box {
  padding: 0.2rem 0;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 99999;
  background: #ffffff;
  position: relative;
}
.idx_companyCon2 .content .top_box.sticky {
  position: fixed;
  top: var(--header-height, 70px);
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2147483647;
  background: #ffffff !important;
}
.idx_companyCon2 .content .top_box.sticky .w1480 {
  width: 77.08333333%;
  margin: 0 auto;
  background: #ffffff;
  position: relative;
  z-index: 2147483647;
}
@media (max-width:990px) {
  .idx_companyCon2 .content .top_box.sticky .w1480 {
    width: 100%;
    padding: 0 20px;
  }
}
.idx_companyCon2 .content .list {
  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: 0.24rem;
  width: 100%;
}
.idx_companyCon2 .content .list .item {
  width: fit-content;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease;
  color: #000;
}
.idx_companyCon2 .content .list .item:hover,
.idx_companyCon2 .content .list .item.active {
  color: #ff6b00;
}
@media (max-width:990px) {
  .idx_companyCon2 .content .list {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media (max-width:480px) {
  .idx_companyCon2 .content .list {
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.idx_companyCon2 .content .line {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.idx_companyCon2 .content .center_box .video_box {
  margin: 0.6rem auto;
}
.idx_companyCon2 .content .center_box .intro .word {
  width: 82%;
}
@media (max-width:990px) {
  .idx_companyCon2 .content .center_box .intro .word {
    width: 100%;
  }
}
.section_til {
  width: 100%;
  font-weight: 600;
  position: relative;
  color: #000;
}
.section_til .line {
  width: 0.8rem;
  height: 0.1rem;
  content: '';
  left: 0;
  bottom: -0.3rem;
  background: #FF6B00;
  margin-top: 0.2rem;
}
.idx_companyCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
}
.idx_companyCon3 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_companyCon3 .content .list {
  margin-top: 0.4rem;
}
.idx_companyCon3 .content .list .box_info .left_box {
  width: 50%;
}
.idx_companyCon3 .content .list .box_info .left_box .word {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  height: 100%;
  line-height: 1.7;
  width: 90%;
}
@media (max-width:990px) {
  .idx_companyCon3 .content .list .box_info .left_box .word {
    width: 100%;
  }
}
.idx_companyCon3 .content .list .box_info .left_box .word .t1 {
  color: #FF6B00;
}
.idx_companyCon3 .content .list .box_info .left_box .word .t2 {
  margin-top: 0.2rem;
}
.idx_companyCon3 .content .list .box_info .right_box {
  width: 50%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.idx_companyCon3 .content .list .box_info .right_box .control_box {
  padding: 0.14rem 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  background: #fff;
  border-radius: 0.24rem;
  gap: 0.2rem;
  z-index: 3;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.idx_companyCon3 .content .list .box_info .right_box .control_box.active {
  background: #FF6B00;
  color: #fff;
}
.idx_companyCon3 .content .list .box_info .right_box .hover_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.02s ease;
  -o-transition: all 0.02s ease;
  transition: all 0.02s ease;
}
.idx_companyCon3 .content .list .box_info .right_box .hover_box .hover_img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.idx_companyCon3 .content .list .box_info .right_box .banner_img {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  height: 100%;
}
.idx_companyCon3 .content .list .box_info .right_box .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_companyCon3 .content .list .box_info .right_box:hover .control_box {
  opacity: 0 !important;
}
.idx_companyCon3 .content .list .box_info .right_box:hover .hover_box {
  opacity: 1;
  transform: scale(1);
}
.idx_companyCon3 .content .list .box_info .right_box:hover .hover_box .hover_img {
  transform: translate(-50%, -50%) scale(1);
}
.idx_companyCon3 .content .list .box_info .right_box:hover .banner_img {
  transform: scale(1.2);
}
.idx_companyCon3 .content .list .box_info .right_box.has-active-control .control_box:not(.active) {
  opacity: 1;
}
.idx_companyCon3 .content .list .box_info .right_box.has-active-control .control_box.active {
  opacity: 0;
}
.idx_companyCon3 .content .list .box_info .right_box.has-active-control:hover .control_box:not(.active) {
  opacity: 0;
}
.idx_companyCon3 .content .list .box_info .right_box.has-active-control:hover .control_box.active {
  opacity: 1;
}
.idx_companyCon3 .content .list .box_info .right_box.has-active-control:hover .banner_img {
  transform: scale(1.2);
}
.idx_companyCon3 .content .list .box_info .right_box.has-active-control:hover .hover_box {
  display: none;
}
.idx_companyCon3 .content .list .box_info:nth-child(2) {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.idx_companyCon3 .content .list .box_info:nth-child(2) .left_box {
  padding: 0.6rem 0.4rem 0.5rem 0.6rem;
}
@media (max-width:990px) {
  .idx_companyCon3 .content .list .box_info:nth-child(2) .left_box {
    padding: 0.2rem 0rem;
  }
}
.idx_companyCon3 .content .list .box_info:nth-child(2) .left_box .word {
  width: 100%;
}
.idx_companyCon3 .content .list .box_info:nth-child(2) .left_box .word .t3 {
  margin-top: 0.3rem;
}
.idx_companyCon3 .content .list .box_info:nth-child(2) .right_box:hover .control_box {
  opacity: 1 !important;
}
.idx_companyCon3 .content .list .box_info:nth-child(2) .right_box:hover .hover_box {
  opacity: 1;
  transform: scale(1);
}
.idx_companyCon3 .content .list .box_info:nth-child(2) .right_box:hover .hover_box .hover_img {
  transform: translate(-50%, -50%) scale(1);
}
.idx_companyCon3 .content .list .box_info:nth-child(2) .right_box:hover .banner_img {
  transform: scale(1.2);
}
@media (max-width:990px) {
  .idx_companyCon3 .content .list .box_info:nth-child(2) {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}
.idx_companyCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
}
.idx_companyCon4 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.4rem;
}
.idx_companyCon4 .content .list .box_info {
  gap: 0.4rem;
}
.idx_companyCon4 .content .list .box_info .word_box {
  position: relative;
}
.idx_companyCon4 .content .list .box_info .word_box .word {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 9;
}
.idx_companyCon4 .content .list .box_info .word_box .word .t1 {
  color: #FF6B00;
}
.idx_companyCon4 .content .list .box_info .word_box .word .t2 {
  margin-top: 0.2rem;
}
.idx_companyCon4 .content .list .box_info .word_box .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.idx_companyCon4 .content .list .box_info .intro_box {
  padding: 0.2rem 0 0.16rem 0rem;
  width: 100%;
  line-height: 1.7;
}
@media (max-width:990px) {
  .idx_companyCon4 .content .list .box_info .intro_box {
    width: 100%;
    padding: 0.2rem 0;
  }
}
.idx_companyCon4 .content .til {
  color: #FF6B00;
  margin: 0.21rem 0;
}
.idx_companyCon4 .content .list2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}
@media (max-width:480px) {
  .idx_companyCon4 .content .list2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_companyCon4 .content .list2 .item {
  position: relative;
}
.idx_companyCon4 .content .list2 .item .word {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  z-index: 9;
}
.idx_companyCon4 .content .list2 .item .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.idx_companyCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
}
.idx_companyCon5 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.4rem;
}
.idx_companyCon5 .content .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
@media (max-width:480px) {
  .idx_companyCon5 .content .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_companyCon5 .content .list .item {
  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;
  background: rgba(0, 0, 0, 0.05);
}
.idx_companyCon5 .content .list .item .word_box {
  position: relative;
}
.idx_companyCon5 .content .list .item .word_box .word {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0.2rem 0.16rem 0.2rem 0.3rem;
  z-index: 9;
}
.idx_companyCon5 .content .list .item .word_box .word .t1 {
  color: #FF6B00;
}
.idx_companyCon5 .content .list .item .word_box .pb {
  padding-bottom: 88%;
}
.idx_companyCon5 .content .list .item .word_box .mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 5;
}
.idx_companyCon5 .content .list .item .intro_box {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.2rem 0.2rem 0.16rem 0.3rem;
  flex: 1;
}
@media (max-width:990px) {
  .idx_companyCon5 .content .list .item .intro_box {
    padding: 0.5rem 0.3rem;
  }
}
.idx_companyCon5 .content .box_info {
  margin-top: 0.4rem;
}
.idx_companyCon5 .content .box_info .left_box {
  width: 50%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.idx_companyCon5 .content .box_info .left_box .control_box {
  padding: 0.14rem 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  background: #fff;
  border-radius: 0.24rem;
  gap: 0.2rem;
  z-index: 3;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.idx_companyCon5 .content .box_info .left_box .hover_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.02s ease;
  -o-transition: all 0.02s ease;
  transition: all 0.02s ease;
}
.idx_companyCon5 .content .box_info .left_box .hover_box .hover_img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.idx_companyCon5 .content .box_info .left_box .banner_img {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  height: 100%;
}
.idx_companyCon5 .content .box_info .left_box .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_companyCon5 .content .box_info .left_box:hover .control_box {
  opacity: 0 !important;
}
.idx_companyCon5 .content .box_info .left_box:hover .hover_box {
  opacity: 1;
  transform: scale(1);
}
.idx_companyCon5 .content .box_info .left_box:hover .hover_box .hover_img {
  transform: translate(-50%, -50%) scale(1);
}
.idx_companyCon5 .content .box_info .left_box:hover .banner_img {
  transform: scale(1.2);
}
.idx_companyCon5 .content .box_info .right_box {
  width: 50%;
}
.idx_companyCon5 .content .box_info .right_box .word {
  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: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.6rem;
  line-height: 1.7;
}
@media (max-width:990px) {
  .idx_companyCon5 .content .box_info .right_box .word {
    padding: 0;
  }
}
.idx_companyCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
}
.idx_companyCon6 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.4rem;
}
.idx_companyCon6 .content .swiper_box {
  width: 100%;
  height: 7.2rem;
  position: relative;
}
@media (max-width:990px) {
  .idx_companyCon6 .content .swiper_box {
    height: 14rem;
  }
}
@media (max-width:480px) {
  .idx_companyCon6 .content .swiper_box {
    height: 10rem;
  }
}
.idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
.idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}
.idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .left_box {
  width: 50%;
}
.idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .right_box {
  width: 50%;
  background: rgba(0, 0, 0, 0.05);
  position: relative;
  padding: 0.5rem;
}
.idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .right_box .word {
  width: 68%;
  line-height: 1.7;
  z-index: 9;
}
.idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .right_box .word .t1 {
  color: #FF6B00;
}
.idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .right_box .word .t2 {
  margin-top: 0.1rem;
}
.idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .right_box .sp {
  color: #FFF;
  position: absolute;
  right: 0.2rem;
  bottom: 0rem;
  z-index: 10;
  line-height: 1;
}
@media (max-width:990px) {
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .right_box .word {
    width: 100%;
  }
}
.idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide:nth-child(even) .box_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width:990px) {
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .left_box {
    width: 100%;
    height: 7rem;
  }
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .left_box .img {
    height: 100%;
    width: 100%;
  }
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .left_box .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .right_box {
    width: 100%;
    height: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden;
  }
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide:nth-child(even) .box_info {
    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;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}
@media (max-width:480px) {
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .left_box {
    width: 100%;
    height: 5rem;
  }
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .left_box .img {
    height: 100%;
    width: 100%;
  }
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .left_box .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .right_box {
    width: 100%;
    height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden;
  }
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .right_box .sp {
    font-size: 1rem;
    bottom: 0.2rem;
  }
  .idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide:nth-child(even) .box_info {
    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;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}
.idx_companyCon6 .content .swiper_line {
  width: 100%;
  height: 0.2rem;
  position: relative;
  z-index: 1;
  background: #E5E5E5;
  margin-top: 0.4rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.idx_companyCon6 .content .swiper_line .progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(255, 107, 0, 0) 0%, #FF6B00 100%);
  border-radius: 0.2rem;
}
.idx_companyCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
}
.idx_companyCon7 .til {
  color: #FF6B00;
  margin-top: 0.2rem;
}
.idx_companyCon7 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_companyCon7 .content .box_info {
  padding: 0.2rem 0 0.36rem 0;
}
@media (max-width:990px) {
  .idx_companyCon7 .content .box_info {
    gap: 0.3rem;
  }
}
.idx_companyCon7 .content .box_info .word {
  width: 86%;
}
@media (max-width:990px) {
  .idx_companyCon7 .content .box_info .word {
    width: 100%;
  }
}
.idx_companyCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
}
.idx_companyCon8 .banner_img {
  margin-top: 0.4rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.idx_companyCon8 .banner_img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.idx_companyCon8 .banner_img .hover_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(255, 107, 0, 0) 0%, #FF6B00 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width:990px) {
  .idx_companyCon8 .banner_img .hover_box {
    display: none;
  }
}
.idx_companyCon8 .banner_img .hover_box .sp {
  font-size: 0.8rem;
}
.idx_companyCon8 .banner_img .hover_box .left_box,
.idx_companyCon8 .banner_img .hover_box .right_box {
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  opacity: 0;
  transform: translateY(10px);
}
.idx_companyCon8 .banner_img .hover_box .left_box {
  transition-delay: 0.1s;
}
.idx_companyCon8 .banner_img .hover_box .right_box {
  transition-delay: 0.2s;
}
.idx_companyCon8 .banner_img:hover .hover_box {
  opacity: 1;
  transform: translateY(0);
}
.idx_companyCon8 .banner_img:hover .hover_box .left_box,
.idx_companyCon8 .banner_img:hover .hover_box .right_box {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width:990px) {
  .idx_companyCon8 .banner_img img.wap {
    min-height: auto;
    object-fit: unset;
  }
}
.idx_companyCon8 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.41rem;
}
.idx_companyCon8 .content .box_info {
  padding: 0.2rem 0 0.36rem 0;
  gap: 0.9rem;
}
.idx_companyCon8 .content .box_info .left_box {
  width: 50%;
}
.idx_companyCon8 .content .box_info .right_box {
  width: 50%;
}
.idx_companyCon8 .content .box_info .word {
  width: 100%;
}
.idx_companyCon8 .content .box_info .word .t1 {
  color: #FF6B00;
}
.idx_companyCon8 .content .box_info .word .t2 {
  margin-top: 0.21rem;
}
.idx_companyCon8 .content .box_info .banner_img2 {
  margin-top: 0.36rem;
  width: 100%;
}
.idx_companyCon8 .content .box_info .banner_img2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.idx_companyCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.idx_companyCon9 .til {
  color: #FF6B00;
}
.idx_companyCon9 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  margin-top: 0.41rem;
}
.idx_companyCon9 .content .box_info {
  padding: 0.2rem 0 0.36rem 0;
  gap: 0.9rem;
}
.idx_companyCon9 .content .box_info .left_box {
  width: 50%;
  line-height: 1.75;
}
.idx_companyCon9 .content .box_info .right_box {
  width: 50%;
  line-height: 1.75;
}
.idx_companyCon9 .content .box_info .word {
  width: 100%;
}
.idx_companyCon9 .content .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.26rem;
  row-gap: 0.26rem;
}
.idx_companyCon9 .content .list .item {
  background: rgba(0, 0, 0, 0.4);
  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;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.idx_companyCon9 .content .list .item .img img {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_companyCon9 .content .list .item .hover_box {
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 107, 0, 0) 0%, #FF6B00 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.idx_companyCon9 .content .list .item .hover_box .t1,
.idx_companyCon9 .content .list .item .hover_box .t2 {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(10px);
}
.idx_companyCon9 .content .list .item .hover_box .t1 {
  transition-delay: 0.1s;
}
.idx_companyCon9 .content .list .item .hover_box .t2 {
  transition-delay: 0.2s;
}
.idx_companyCon9 .content .list .item.hover1:hover .img img {
  transform: scale(1.2);
}
.idx_companyCon9 .content .list .item.hover1:hover .hover_box {
  opacity: 1;
  transform: translateY(0);
}
.idx_companyCon9 .content .list .item.hover1:hover .hover_box .t1,
.idx_companyCon9 .content .list .item.hover1:hover .hover_box .t2 {
  opacity: 1;
  transform: translateY(0);
}
.idx_companyCon9 .content .list .item.hover2:hover {
  background: #FF6B00;
}
.idx_companyCon9 .content .list .item.hover2:hover .img img {
  transform: scale(1.2);
}
@media (max-width:480px) {
  .idx_companyCon9 .content .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.idx_manufactureCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_manufactureCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  left: 0;
  top: 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;
}
.idx_manufactureCon1 .content .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.idx_manufactureCon1 .content .center_box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_manufactureCon1 .content .center_box .t1 {
  padding: 0.05rem 0.2rem;
  background: #FF6B00;
  width: fit-content;
}
.idx_manufactureCon1 .content .center_box .t2 {
  margin-top: 0.4rem;
}
.idx_manufactureCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 9999;
}
.idx_manufactureCon2 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 9999;
}
.idx_manufactureCon2 .content .top_box {
  padding: 0.2rem 0;
  width: 100%;
  transition: all 0.3s ease;
  z-index: 99999;
  background: #ffffff;
  position: relative;
}
.idx_manufactureCon2 .content .top_box.sticky {
  position: fixed;
  top: var(--header-height, 70px);
  left: 0;
  right: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 2147483647;
  background: #ffffff !important;
}
.idx_manufactureCon2 .content .top_box.sticky .w1480 {
  width: 77.08333333%;
  margin: 0 auto;
  background: #ffffff;
  position: relative;
  z-index: 2147483647;
}
@media (max-width:990px) {
  .idx_manufactureCon2 .content .top_box.sticky .w1480 {
    width: 100%;
    padding: 0 20px;
  }
}
.idx_manufactureCon2 .content .list {
  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: 0.24rem;
  width: 100%;
}
.idx_manufactureCon2 .content .list .item {
  width: fit-content;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease;
}
.idx_manufactureCon2 .content .list .item:hover,
.idx_manufactureCon2 .content .list .item.active {
  color: #ff6b00;
}
@media (max-width:990px) {
  .idx_manufactureCon2 .content .list {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media (max-width:480px) {
  .idx_manufactureCon2 .content .list {
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.idx_manufactureCon2 .content .line2 {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.idx_manufactureCon2 .content .center_box {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 0.8rem;
}
.idx_manufactureCon2 .content .center_box .video_box {
  margin: 0.6rem auto;
}
.idx_manufactureCon2 .content .center_box .intro {
  color: #000;
  margin-top: 0.21rem;
  margin-bottom: 0.28rem;
}
.idx_manufactureCon2 .content .center_box .intro .word {
  width: 79%;
  line-height: 1.75;
}
@media (max-width:990px) {
  .idx_manufactureCon2 .content .center_box .intro .word {
    width: 100%;
  }
}
.idx_manufactureCon2 .content .center_box .til {
  color: #FF6B00;
  margin-top: 0.41rem;
}
.idx_manufactureCon2 .content .center_box .banner_img img.wap {
  min-height: auto;
  object-fit: unset;
}
.idx_manufactureCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
}
.idx_manufactureCon3 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_manufactureCon3 .content .box_info {
  margin-top: 0.4rem;
  gap: 1.4rem;
}
@media (max-width:990px) {
  .idx_manufactureCon3 .content .box_info {
    gap: 0.2rem;
  }
}
.idx_manufactureCon3 .content .box_info .left_box {
  width: 35%;
  line-height: 1.75;
}
.idx_manufactureCon3 .content .box_info .right_box {
  width: 66%;
}
.idx_manufactureCon3 .content .box_info .right_box .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width:480px) {
  .idx_manufactureCon3 .content .box_info .right_box .list {
    flex-wrap: wrap;
    gap: 0.2rem;
  }
}
.idx_manufactureCon3 .content .box_info .right_box .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
}
@media (max-width:480px) {
  .idx_manufactureCon3 .content .box_info .right_box .list .item {
    width: 100%;
  }
  .idx_manufactureCon3 .content .box_info .right_box .list .item .num {
    min-width: 30%;
  }
}
.idx_manufactureCon3 .content .box_info .right_box .list .item .num {
  color: #FF6B00;
}
@media (max-width:990px) {
  .idx_manufactureCon3 .content .pc_box {
    display: none;
  }
}
.idx_manufactureCon3 .content .pc_box .list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.2rem;
  position: relative;
}
.idx_manufactureCon3 .content .pc_box .list2 .item2 {
  position: absolute;
  top: 0;
  left: 10%;
}
.idx_manufactureCon3 .content .pc_box .list2 .item2:nth-child(1) {
  position: relative;
  left: -1%;
  z-index: 1;
}
.idx_manufactureCon3 .content .pc_box .list2 .item2:nth-child(2) {
  left: 11.5%;
  z-index: 2;
}
.idx_manufactureCon3 .content .pc_box .list2 .item2:nth-child(3) {
  left: 24%;
  z-index: 3;
}
.idx_manufactureCon3 .content .pc_box .list2 .item2:nth-child(4) {
  left: 36.5%;
  z-index: 4;
}
.idx_manufactureCon3 .content .pc_box .list2 .item2:nth-child(5) {
  left: 49%;
  z-index: 5;
}
.idx_manufactureCon3 .content .pc_box .list2 .item2:nth-child(6) {
  left: 61.5%;
  z-index: 6;
}
.idx_manufactureCon3 .content .pc_box .list2 .item2:nth-child(7) {
  left: 74%;
  z-index: 7;
}
.idx_manufactureCon3 .content .pc_box .list2 .item2:nth-child(8) {
  left: 83.5%;
  z-index: 8;
  width: 100%;
}
.idx_manufactureCon3 .content .pc_box .list3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.2rem;
  position: relative;
}
.idx_manufactureCon3 .content .pc_box .list3 .item3 {
  position: absolute;
  top: 0;
  left: 10%;
}
.idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(1) {
  position: relative;
  left: -1%;
  z-index: 1;
}
.idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(2) {
  left: 25%;
  z-index: 2;
}
@media (max-width:1280px) {
  .idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(2) {
    left: 17%;
  }
}
.idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(3) {
  left: 51%;
  z-index: 3;
}
@media (max-width:1280px) {
  .idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(3) {
    left: 43%;
  }
}
.idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(4) {
  left: 62%;
  z-index: 4;
}
@media (max-width:1280px) {
  .idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(4) {
    left: 54%;
  }
}
.idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(5) {
  left: 73%;
  z-index: 5;
}
@media (max-width:1280px) {
  .idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(5) {
    left: 65%;
  }
}
.idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(6) {
  left: 82.5%;
  z-index: 6;
  height: 100%;
}
@media (max-width:1280px) {
  .idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(6) {
    left: 75.5%;
  }
}
.idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(6) .img {
  height: 100%;
}
.idx_manufactureCon3 .content .pc_box .list3 .item3:nth-child(6) .img img {
  height: 100%;
  object-fit: cover;
}
.idx_manufactureCon3 .content .wap_box {
  display: none ;
}
@media (max-width:990px) {
  .idx_manufactureCon3 .content .wap_box {
    display: block;
    margin-top: 0.7rem;
    position: relative;
    left: -1%;
  }
}
.idx_manufactureCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
}
.idx_manufactureCon4 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_manufactureCon4 .content .box_info {
  gap: 0.2rem;
}
.idx_manufactureCon4 .content .box_info .left_box {
  width: 50%;
}
.idx_manufactureCon4 .content .box_info .right_box {
  width: 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.idx_manufactureCon4 .content .box_info .right_box .control_box {
  padding: 0.14rem 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  background: #fff;
  border-radius: 0.24rem;
  gap: 0.2rem;
  z-index: 3;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.idx_manufactureCon4 .content .box_info .right_box .control_box.active {
  background: #FF6B00;
  color: #fff;
}
.idx_manufactureCon4 .content .box_info .right_box .hover_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.02s ease;
  -o-transition: all 0.02s ease;
  transition: all 0.02s ease;
}
.idx_manufactureCon4 .content .box_info .right_box .hover_box .hover_img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.idx_manufactureCon4 .content .box_info .right_box .banner_img {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  height: 100%;
}
.idx_manufactureCon4 .content .box_info .right_box .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_manufactureCon4 .content .box_info .right_box:hover .control_box {
  opacity: 0;
}
.idx_manufactureCon4 .content .box_info .right_box:hover .hover_box {
  opacity: 1;
  transform: scale(1);
}
.idx_manufactureCon4 .content .box_info .right_box:hover .hover_box .hover_img {
  transform: translate(-50%, -50%) scale(1);
}
.idx_manufactureCon4 .content .box_info .right_box:hover .banner_img {
  transform: scale(1.2);
}
.idx_manufactureCon4 .content .box_info1 {
  margin-top: 0.4rem;
}
.idx_manufactureCon4 .content .box_info1 .word {
  color: #000;
  padding: 0.42rem 0 0.84rem 0;
  width: 81%;
}
@media (max-width:990px) {
  .idx_manufactureCon4 .content .box_info1 .word {
    width: 100%;
  }
}
.idx_manufactureCon4 .content .box_info1 .word .t1 {
  color: #FF6B00;
}
.idx_manufactureCon4 .content .box_info1 .word .t2 {
  line-height: 1.7;
  margin-top: 0.22rem;
}
@media (max-width:990px) {
  .idx_manufactureCon4 .content .box_info1 .word {
    padding: 0.2rem 0;
  }
}
.idx_manufactureCon4 .content .box_info2 {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: 0.2rem;
}
@media (max-width:990px) {
  .idx_manufactureCon4 .content .box_info2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}
.idx_manufactureCon4 .content .box_info2 .word {
  color: #000;
  padding: 0.2rem 0.2rem 0.45rem 0.4rem;
}
@media (max-width:990px) {
  .idx_manufactureCon4 .content .box_info2 .word {
    padding: 0;
  }
}
.idx_manufactureCon4 .content .box_info2 .word .t1 {
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.idx_manufactureCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
}
.idx_manufactureCon5 .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
}
.idx_manufactureCon5 .nav_list .nav_item {
  position: relative;
  cursor: pointer;
}
.idx_manufactureCon5 .nav_list .nav_item.active {
  color: #FF6B00;
}
.idx_manufactureCon5 .nav_list .nav_item.active ::after {
  content: "";
  height: 0.05rem;
  background: #FF6B00;
  position: absolute;
  bottom: -0.2rem;
  width: 100%;
  left: 0;
}
.idx_manufactureCon5 .nav_cont {
  margin-top: 0.45rem;
  padding-top: 0.2rem;
}
.idx_manufactureCon5 .nav_cont .tab_content {
  display: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_manufactureCon5 .nav_cont .tab_content.active {
  display: block;
  animation: fadeIn 0.9s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info,
.idx_manufactureCon5 .nav_cont .Team_con .box_info {
  gap: 0.2rem;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info .left_box,
.idx_manufactureCon5 .nav_cont .Team_con .box_info .left_box {
  width: 50%;
  background: rgba(0, 0, 0, 0.05);
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info .right_box,
.idx_manufactureCon5 .nav_cont .Team_con .box_info .right_box {
  width: 50%;
}
@media (max-width:990px) {
  .idx_manufactureCon5 .nav_cont .scale_con .box_info .left_box,
  .idx_manufactureCon5 .nav_cont .Team_con .box_info .left_box {
    width: 100%;
  }
  .idx_manufactureCon5 .nav_cont .scale_con .box_info .right_box,
  .idx_manufactureCon5 .nav_cont .Team_con .box_info .right_box {
    width: 100%;
  }
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .left_box,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .left_box {
  width: 50% ;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .left_box .word,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .left_box .word {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .left_box .word .t1,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .left_box .word .t1 {
  color: #FF6B00;
}
@media (max-width:990px) {
  .idx_manufactureCon5 .nav_cont .scale_con .box_info1 .left_box .word,
  .idx_manufactureCon5 .nav_cont .Team_con .box_info1 .left_box .word {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: 100%;
    padding: 0.2rem;
  }
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .right_box,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .right_box {
  width: 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .right_box .control_box,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .right_box .control_box {
  padding: 0.14rem 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  background: #fff;
  border-radius: 0.24rem;
  gap: 0.2rem;
  z-index: 3;
  opacity: 1;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .right_box .control_box.active,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .right_box .control_box.active {
  background: #FF6B00;
  color: #fff;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .right_box .hover_box,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .right_box .hover_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.02s ease;
  -o-transition: all 0.02s ease;
  transition: all 0.02s ease;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .right_box .hover_box .hover_img,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .right_box .hover_box .hover_img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .right_box .banner_img,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .right_box .banner_img {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  height: 100%;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .right_box .banner_img img,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .right_box .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .right_box:hover .control_box,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .right_box:hover .control_box {
  opacity: 0;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .right_box:hover .hover_box,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .right_box:hover .hover_box {
  opacity: 1;
  transform: scale(1);
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .right_box:hover .hover_box .hover_img,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .right_box:hover .hover_box .hover_img {
  transform: translate(-50%, -50%) scale(1);
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info1 .right_box:hover .banner_img,
.idx_manufactureCon5 .nav_cont .Team_con .box_info1 .right_box:hover .banner_img {
  transform: scale(1.2);
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info2,
.idx_manufactureCon5 .nav_cont .Team_con .box_info2 {
  margin-top: 0.2rem;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width:990px) {
  .idx_manufactureCon5 .nav_cont .scale_con .box_info2,
  .idx_manufactureCon5 .nav_cont .Team_con .box_info2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info2 .left_box,
.idx_manufactureCon5 .nav_cont .Team_con .box_info2 .left_box {
  color: #000;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info2 .left_box .word,
.idx_manufactureCon5 .nav_cont .Team_con .box_info2 .left_box .word {
  width: 95%;
  padding: 0.8rem 0.5rem 0 0.4rem;
}
.idx_manufactureCon5 .nav_cont .scale_con .box_info2 .left_box .word .t1,
.idx_manufactureCon5 .nav_cont .Team_con .box_info2 .left_box .word .t1 {
  color: #000;
  line-height: 1.7;
}
@media (max-width:990px) {
  .idx_manufactureCon5 .nav_cont .scale_con .box_info2 .left_box .word,
  .idx_manufactureCon5 .nav_cont .Team_con .box_info2 .left_box .word {
    width: 100%;
    padding: 0.5rem;
  }
}
.idx_manufactureCon5 .nav_cont .Equipment_con,
.idx_manufactureCon5 .nav_cont .Process_con {
  padding-top: 0.2rem;
}
.idx_manufactureCon5 .nav_cont .Equipment_con .box_info,
.idx_manufactureCon5 .nav_cont .Process_con .box_info {
  gap: 0.2rem;
}
.idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box,
.idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box {
  width: 78%;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.8rem 0.45rem 0.58rem 0.6rem;
}
.idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box,
.idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_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;
}
@media (max-width:990px) {
  .idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box,
  .idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}
.idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box .left_box2,
.idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box .left_box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
}
.idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box .left_box2 .num,
.idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box .left_box2 .num {
  color: #FF6B00;
}
@media (max-width:480px) {
  .idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box .left_box2,
  .idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box .left_box2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box .left_box2 .num,
  .idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box .left_box2 .num {
    width: 100%;
  }
}
.idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box .right_box2,
.idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box .right_box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.2rem;
}
.idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box .right_box2 .num,
.idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box .right_box2 .num {
  color: #FF6B00;
}
@media (max-width:480px) {
  .idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box .right_box2,
  .idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box .right_box2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box .right_box2 .num,
  .idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box .right_box2 .num {
    width: 100%;
  }
}
.idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .bottom_box,
.idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .bottom_box {
  margin-top: 0.4rem;
  line-height: 1.7;
  width: 97%;
}
.idx_manufactureCon5 .nav_cont .Equipment_con .box_info .right_box,
.idx_manufactureCon5 .nav_cont .Process_con .box_info .right_box {
  width: 25%;
}
.idx_manufactureCon5 .nav_cont .Equipment_con .list,
.idx_manufactureCon5 .nav_cont .Process_con .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.2rem;
  gap: 0.2rem;
}
.idx_manufactureCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
}
.idx_manufactureCon6 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_manufactureCon6 .content .box_info .left_box {
  width: 50%;
}
.idx_manufactureCon6 .content .box_info .left_box .word .t1 {
  color: #FF6B00;
}
.idx_manufactureCon6 .content .box_info .right_box {
  width: 50%;
}
.idx_manufactureCon6 .content .box_info .right_box .banner_img {
  height: 100%;
}
.idx_manufactureCon6 .content .box_info .right_box .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_manufactureCon6 .content .box_info1 .left_box .word {
  line-height: 1.7;
}
.idx_manufactureCon6 .content .box_info1 .left_box .word .t1 {
  margin-top: 0.22rem;
}
.idx_manufactureCon6 .content .box_info1 .left_box .word .t2 {
  margin-top: 0.22rem;
  width: 80%;
}
.idx_manufactureCon6 .content .box_info1 .left_box .down_btn {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  gap: 0.2rem;
  width: fit-content;
  padding: 0.09rem 0.4rem;
  margin-top: 0.4rem;
  border-radius: 0.24rem;
  border: 1px solid #000;
}
.idx_manufactureCon6 .content .box_info1 .left_box .down_btn .hov {
  display: none;
  opacity: 0;
}
.idx_manufactureCon6 .content .box_info1 .left_box .down_btn:hover {
  color: #FFF;
  background: #FF6B00;
  border: 1px solid #FF6B00;
}
.idx_manufactureCon6 .content .box_info1 .left_box .down_btn:hover .hov {
  opacity: 1;
}
.idx_manufactureCon6 .content .box_info1 .left_box .down_btn:hover .def {
  display: none;
  opacity: 0;
}
.idx_manufactureCon6 .content .box_info1 .left_box .down_btn:hover .hov {
  display: block;
  opacity: 1;
}
.idx_manufactureCon6 .content .box_info2 {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: 0.2rem;
}
.idx_manufactureCon6 .content .box_info2 .left_box {
  padding: 0.5rem 0 0 0.6rem;
}
.idx_manufactureCon6 .content .box_info2 .left_box .word {
  line-height: 1.7;
}
.idx_manufactureCon6 .content .box_info2 .left_box .word .t2 {
  margin-top: 0.22rem;
}
@media (max-width:990px) {
  .idx_manufactureCon6 .content .box_info2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .idx_manufactureCon6 .content .box_info2 .left_box {
    width: 100%;
    padding: 0.5rem 0 0 0;
  }
  .idx_manufactureCon6 .content .box_info2 .right_box {
    width: 100%;
  }
}
.idx_manufactureCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.idx_manufactureCon7 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_manufactureCon7 .content .center_box .intro {
  margin-top: 0.4rem;
  line-height: 1.7;
  width: 95%;
  color: #000;
}
.idx_manufactureCon7 .content .center_box .list {
  margin-top: 0.52rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.2rem;
}
.idx_manufactureCon7 .content .center_box .list .item .box_info {
  gap: 0.6rem;
}
.idx_manufactureCon7 .content .center_box .list .item .box_info .left_box {
  width: 50%;
}
.idx_manufactureCon7 .content .center_box .list .item .box_info .right_box {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: 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;
}
.idx_manufactureCon7 .content .center_box .list .item .box_info .right_box .t1 {
  color: #FF6B00;
}
.idx_manufactureCon7 .content .center_box .list .item .box_info .right_box .t2 {
  color: #000;
  margin-top: 0.22rem;
  line-height: 1.7;
}
.idx_contactCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_contactCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  left: 0;
  top: 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;
}
.idx_contactCon1 .content .center_box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_contactCon1 .content .center_box .t1 {
  padding: 0.05rem 0.2rem;
  background: #FF6B00;
  width: fit-content;
}
.idx_contactCon1 .content .center_box .t2 {
  margin-top: 0.4rem;
}
.idx_contactCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 0.6rem;
  padding-bottom: 1.6rem;
}
.idx_contactCon2 .idx_title .t1 {
  color: #FF6B00;
}
.idx_contactCon2 .idx_title .t2 {
  margin-top: 0.2rem;
}
.idx_contactCon2 .content {
  margin-top: 0.6rem;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_contactCon2 .content .box_info .left_box {
  width: 37%;
  background: #FF6B00;
  padding: 0.8rem 0.4rem 1.2rem 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 0.6rem;
}
.idx_contactCon2 .content .box_info .left_box .word_box .word .t2 {
  margin-top: 0.12rem;
}
.idx_contactCon2 .content .box_info .left_box .word_box .address {
  margin-top: 0.4rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.6rem;
}
.idx_contactCon2 .content .box_info .left_box .word_box .address .one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
.idx_contactCon2 .content .box_info .left_box .word_box .address .one .img {
  width: 0.44rem;
  height: 0.44rem;
}
.idx_contactCon2 .content .box_info .left_box .word_box .address .one .img img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.idx_contactCon2 .content .box_info .left_box .word_box .address .one .word2 {
  width: 74%;
}
.idx_contactCon2 .content .box_info .left_box .word_box .address .one:nth-child(2) {
  margin-top: 0.4rem;
}
.idx_contactCon2 .content .box_info .left_box .follow_box {
  font-weight: 600;
}
.idx_contactCon2 .content .box_info .left_box .follow_box .list {
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.1rem;
}
.idx_contactCon2 .content .box_info .left_box .follow_box .list .img {
  width: 0.6rem;
  position: relative;
  cursor: pointer;
}
.idx_contactCon2 .content .box_info .left_box .follow_box .list .img .def_img {
  display: block;
}
.idx_contactCon2 .content .box_info .left_box .follow_box .list .img .hover_img {
  display: none;
}
.idx_contactCon2 .content .box_info .left_box .follow_box .list .img:hover .def_img {
  display: none;
}
.idx_contactCon2 .content .box_info .left_box .follow_box .list .img:hover .hover_img {
  display: block;
}
.idx_contactCon2 .content .box_info .right_box {
  width: 63%;
  padding: 0.32rem 0.45rem 0.4rem 0.45rem;
  background: rgba(0, 0, 0, 0.05);
}
@media (max-width:990px) {
  .idx_contactCon2 .content .box_info .right_box {
    padding: 0.5rem 0.3rem;
  }
}
.idx_contactCon2 .content .box_info .right_box .input_box {
  border-radius: 0.1rem;
}
.idx_contactCon2 .content .box_info .right_box .input_box .layui-form-item {
  margin-bottom: 0.1rem;
}
.idx_contactCon2 .content .box_info .right_box .input_box .layui-input-block {
  margin-left: 0;
  margin-right: 0.1rem;
}
.idx_contactCon2 .content .box_info .right_box .input_box .layui-col-xs6:last-child .layui-input-block {
  margin-right: 0;
}
.idx_contactCon2 .content .box_info .right_box .input_box input {
  border-radius: 10px;
  height: 0.5rem;
  padding-left: 0.2rem;
  margin-right: 0.1rem;
}
@media (max-width:480px) {
  .idx_contactCon2 .content .box_info .right_box .input_box .layui-col-xs6 {
    width: 100%;
  }
  .idx_contactCon2 .content .box_info .right_box .input_box input {
    height: 0.55rem;
    padding-left: 0.2rem;
  }
}
.idx_contactCon2 .content .box_info .right_box .check_box {
  background: #fff;
  padding: 0.15rem 0.2rem 0.15rem 0.2rem;
  margin-top: 0.2rem;
  font-weight: 600;
  border-radius: 0.1rem;
}
.idx_contactCon2 .content .box_info .right_box .check_box .til {
  margin-bottom: 0.05rem;
  color: rgba(0, 0, 0, 0.6);
}
.idx_contactCon2 .content .box_info .right_box .check_box .layui-form-item {
  margin-bottom: 0.06rem;
}
.idx_contactCon2 .content .box_info .right_box .check_box .layui-input-block {
  margin-left: 0;
  margin-right: 0.1rem;
  min-height: 0;
}
.idx_contactCon2 .content .box_info .right_box .check_box input {
  color: rgba(0, 0, 0, 0.4);
}
.idx_contactCon2 .content .box_info .right_box .check_box .layui-form-checkbox {
  word-wrap: break-word;
  white-space: pre-wrap;
  color: rgba(0, 0, 0, 0.4);
}
.idx_contactCon2 .content .box_info .right_box .check_box .layui-form-checkbox > div {
  white-space: wrap;
  text-overflow: inherit;
  color: rgba(0, 0, 0, 0.4);
}
@media (max-width:480px) {
  .idx_contactCon2 .content .box_info .right_box .check_box .layui-col-xs6 {
    width: 100%;
  }
}
.idx_contactCon2 .content .box_info .right_box .textarea_box {
  margin-top: 0.2rem;
  background: #fff;
  border-radius: 0.1rem;
}
.idx_contactCon2 .content .box_info .right_box .textarea_box .layui-input-block {
  margin-left: 0;
  margin-right: 0rem;
  min-height: 0;
}
.idx_contactCon2 .content .box_info .right_box .textarea_box textarea {
  height: 1.2rem;
  padding: 0.16rem 0 0 0.19rem;
}
.idx_contactCon2 .content .box_info .right_box .send_btn {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600 ;
  cursor: pointer;
  width: 100%;
  background: #FFF;
  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;
  border: 2px solid #FF6B00;
  color: #FF6B00;
  border-radius: 0.24rem;
  margin-top: 0.32rem;
}
.idx_contactCon2 .content .box_info .right_box .send_btn p {
  padding: 0.12rem 0.4rem;
}
.idx_contactCon2 .content .box_info .right_box .send_btn:hover {
  background: #FF6B00;
  color: #fff;
}
.idx_productListCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productListCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  left: 0;
  top: 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;
}
.idx_productListCon1 .content .center_box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_productListCon1 .content .center_box .t1 {
  padding: 0.1rem 0.2rem;
  background: #FF6B00;
  width: fit-content;
}
.idx_productListCon1 .content .center_box .t2 {
  margin-top: 0.4rem;
}
.idx_productListCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_productListCon2 .nav_box {
  width: 100%;
  height: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 77.08333333%;
  margin: 0 auto;
}
@media (max-width:990px) {
  .idx_productListCon2 .nav_box {
    width: 100%;
    padding: 0 20px;
  }
}
.idx_productListCon2 .nav_box .list {
  padding: 0.2rem 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 0.24rem;
}
.idx_productListCon2 .nav_box .list .active {
  color: #FF6B00;
}
.idx_productListCon2 .nav_box .list .item {
  cursor: pointer;
}
.idx_productListCon2 .content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.idx_productListCon2 .content .center_box .top_box {
  margin-top: 0.8rem;
}
.idx_productListCon2 .content .center_box .intro {
  margin-top: 0.4rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
}
.idx_productListCon2 .content .center_box .product_box {
  margin-top: 1.15rem;
  gap: 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding-bottom: 1.6rem;
}
.idx_productListCon2 .content .center_box .product_box .left_box {
  width: 31%;
  position: sticky;
  top: calc(var(--header-height, 0rem));
  align-self: flex-start;
  z-index: 10;
}
@media (max-width:990px) {
  .idx_productListCon2 .content .center_box .product_box .left_box {
    position: relative;
    top: 0;
    display: none;
  }
}
.idx_productListCon2 .content .center_box .product_box .left_box.is-stuck .list {
  padding-top: 0.3rem;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item {
  padding: 0.1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .word {
  padding-bottom: 0.1rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .word .t1 {
  color: #FF6B00;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .word .t2 {
  margin-top: 0.1rem;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .layui-form-item {
  margin-bottom: 0 !important;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item input {
  height: 0.3rem !important;
  border-radius: 0.1rem;
}
@media (max-width:990px) {
  .idx_productListCon2 .content .center_box .product_box .left_box .list .item input {
    height: 0.55rem !important;
  }
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item form {
  margin-top: 0.2rem;
  padding-bottom: 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.04rem;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item form .spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 0.04rem;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item form .spec .layui-form-item {
  margin-bottom: 0 !important;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item form .spec input {
  height: 0.3rem !important;
  border-radius: 0.1rem;
}
@media (max-width:990px) {
  .idx_productListCon2 .content .center_box .product_box .left_box .list .item form .spec input {
    height: 0.55rem !important;
  }
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .btn_box {
  margin-top: 0.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  width: 100%;
  font-weight: 600;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .btn_box .clear_btn {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 0.25rem;
  padding: 0.05rem 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .btn_box .clear_btn:hover {
  background: #FF6B00;
  color: #fff;
  border: 1px solid #FF6B00;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .btn_box .filter_btn {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid #FF6B00;
  border-radius: 0.25rem;
  padding: 0.05rem 0;
  cursor: pointer;
  color: #FF6B00;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .btn_box .filter_btn:hover {
  background: #FF6B00;
  color: #fff;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .active_con {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.3;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .series_til {
  cursor: pointer;
  color: rgba(0, 0, 0, 0.6);
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .def_con {
  display: block;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .active_con {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item.active .def_con {
  display: none;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item.active .active_con {
  max-height: 2000px;
  opacity: 1;
  color: #000;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item.active .active_con .word {
  border-bottom: 2px solid #FF6B00;
}
.idx_productListCon2 .content .center_box .product_box .right_box {
  width: 69%;
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box {
  padding-bottom: 0.2rem;
}
@media (max-width:990px) {
  .idx_productListCon2 .content .center_box .product_box .right_box .intro_box .banner_img img.wap {
    min-height: auto;
    object-fit: unset;
  }
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box .word {
  margin-top: 0.2rem;
  line-height: 1.7;
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box .idx_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-top: 0.2rem;
  font-weight: 400;
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box .idx_more .more {
  padding: 0.08rem 0.4rem;
  color: #000;
  border: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0;
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box .idx_more .def_img {
  display: block;
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box .idx_more .hover_img {
  display: none;
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box .idx_more:hover .more {
  background: #FF6B00;
  color: #fff;
  border: 1px solid #FF6B00;
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box .idx_more:hover .def_img {
  display: none;
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box .idx_more:hover .hover_img {
  display: block;
}
.idx_productListCon2 .content .center_box .product_box .right_box .filter_box {
  display: none;
}
@media (max-width:990px) {
  .idx_productListCon2 .content .center_box .product_box .right_box .filter_box {
    display: block;
  }
}
.idx_productListCon2 .content .center_box .product_box .right_box .filter_box .idx_more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 0.2rem;
  font-weight: 400;
}
.idx_productListCon2 .content .center_box .product_box .right_box .filter_box .idx_more .more {
  width: 30%;
  padding: 0.08rem 0.4rem;
  color: #000;
  border: 1px solid #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0;
}
.idx_productListCon2 .content .center_box .product_box .right_box .filter_box .idx_more .more span {
  margin-right: 0.2rem;
}
.idx_productListCon2 .content .center_box .product_box .right_box .filter_box .idx_more .more img {
  width: 0.3rem !important;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list {
  margin-top: 0.3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 0.3rem;
  gap: 0.3rem;
}
@media (max-width:480px) {
  .idx_productListCon2 .content .center_box .product_box .right_box .product_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item {
  cursor: pointer;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .pb {
  padding-bottom: 98.5%;
  position: relative;
  background: #F2F2F2;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .pb .ab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .pb .ab .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .pb .ab .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .pb .new_img {
  position: absolute;
  top: 0;
  left: 0.2rem;
  display: none;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .pb .hot_img {
  position: absolute;
  top: 0;
  left: 0.2rem;
  display: none;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .pb .nocol_img {
  position: absolute;
  bottom: 0.1rem;
  right: 0.1rem;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .pb .col_img {
  position: absolute;
  bottom: 0.1rem;
  right: 0.1rem;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .word .t1 {
  margin-top: 0.2rem;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .word .t2 {
  margin-top: 0.08rem;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .word .t3 {
  margin-top: 0.13rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item.new .pb .new_img {
  display: block;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item.hot .pb .hot_img {
  display: block;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item:hover .pb .ab .img {
  transform: scale(1.2);
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item:hover .pb .nocol_img {
  opacity: 1;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item:hover.col .pb .col_img {
  opacity: 1;
}
.idx_productListCon2 .select_popup {
  transform: translateX(0);
  display: none;
}
.idx_productDetailCon1 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon1 .content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  left: 0;
  top: 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;
}
.idx_productDetailCon1 .content .center_box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_productDetailCon1 .content .center_box .t1 {
  color: #FF6B00;
}
.idx_productDetailCon1 .content .center_box .video_img {
  margin-top: 0.4rem;
  cursor: pointer;
}
.idx_productDetailCon2 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}
.idx_productDetailCon2 .center_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon2 .center_box .content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon2 .center_box .content .banner_img {
  margin-top: 0.4rem;
}
.idx_productDetailCon2 .center_box .content .banner_img img.wap {
  min-height: auto;
  object-fit: unset;
}
.idx_productDetailCon2 .center_box .content .til_box {
  margin-top: 0.4rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.idx_productDetailCon2 .center_box .content .til_box .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.4rem;
  font-weight: 600;
}
.idx_productDetailCon2 .center_box .content .til_box .list .item {
  position: relative;
  cursor: pointer;
}
.idx_productDetailCon2 .center_box .content .til_box .list .item ::after {
  content: '';
  width: 100%;
  height: 0.04rem;
  background: #FF6B00;
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  display: block;
  opacity: 0;
}
.idx_productDetailCon2 .center_box .content .til_box .list .item.active {
  color: #FF6B00;
}
.idx_productDetailCon2 .center_box .content .til_box .list .item.active ::after {
  opacity: 1;
}
.idx_productDetailCon2 .center_box .content .con_box [class*="_con"] {
  display: none;
  padding-top: 0.2rem;
}
.idx_productDetailCon2 .center_box .content .con_box [class*="_con"] .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
}
@media (max-width:480px) {
  .idx_productDetailCon2 .center_box .content .con_box [class*="_con"] .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_productDetailCon2 .center_box .content .con_box [class*="_con"] .list .item {
  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;
}
.idx_productDetailCon2 .center_box .content .con_box [class*="_con"] .list .item .word {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  padding: 0.1rem 0;
  -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-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  flex: 1;
}
.idx_productDetailCon2 .center_box .content .con_box .INSTALLATION_con {
  display: block;
}
.idx_productDetailCon2 .center_box .content .con_box .TRUNKING_con .list,
.idx_productDetailCon2 .center_box .content .con_box .MODULES_con .list,
.idx_productDetailCon2 .center_box .content .con_box .OPTICS_con .list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width:480px) {
  .idx_productDetailCon2 .center_box .content .con_box .TRUNKING_con .list,
  .idx_productDetailCon2 .center_box .content .con_box .MODULES_con .list,
  .idx_productDetailCon2 .center_box .content .con_box .OPTICS_con .list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.idx_productDetailCon2 .center_box .content .con_box .CCT_con .list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
.idx_productDetailCon2 .center_box .content .con_box .CCT_con .list2 .item2 {
  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;
}
.idx_productDetailCon2 .center_box .content .con_box .CCT_con .list2 .item2 .word {
  padding: 0.1rem 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;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  flex: 1;
}
.idx_productDetailCon3 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}
.idx_productDetailCon3 .center_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon3 .center_box .content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon3 .center_box .content .banner_img {
  margin-top: 0.4rem;
}
.idx_productDetailCon3 .center_box .content .banner_img img.wap {
  min-height: auto;
  object-fit: unset;
}
.idx_productDetailCon3 .center_box .content .til_box {
  margin-top: 1rem;
}
.idx_productDetailCon3 .center_box .content .til_box .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  position: relative;
}
.idx_productDetailCon3 .center_box .content .til_box .list .item {
  cursor: pointer;
  position: relative;
}
.idx_productDetailCon3 .center_box .content .til_box .list .item ::after {
  content: '';
  width: 100%;
  height: 0.04rem;
  background: #FF6B00;
  position: absolute;
  bottom: -1px;
  left: 0;
  display: block;
  opacity: 0;
  z-index: 1;
}
.idx_productDetailCon3 .center_box .content .til_box .list .item.active {
  color: #FF6B00;
}
.idx_productDetailCon3 .center_box .content .til_box .list .item.active ::after {
  opacity: 1;
}
.idx_productDetailCon3 .center_box .content .til_box .list .item:first-child {
  padding-bottom: 0.2rem;
}
.idx_productDetailCon3 .center_box .content .con_box .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  row-gap: 0.4rem;
}
@media (max-width:480px) {
  .idx_productDetailCon3 .center_box .content .con_box .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_productDetailCon3 .center_box .content .con_box .list .item {
  padding-top: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.idx_productDetailCon3 .center_box .content .con_box .list .item .pb {
  padding-bottom: 89%;
}
.idx_productDetailCon3 .center_box .content .con_box .list .item .word {
  background: rgba(0, 0, 0, 0.05);
  line-height: 1.5;
  padding: 0.3rem 0 0.4rem 0.2rem;
  flex: 1;
}
.idx_productDetailCon3 .center_box .content .con_box .list .item .word .t1,
.idx_productDetailCon3 .center_box .content .con_box .list .item .word .t2 {
  font-weight: 600;
}
.idx_productDetailCon3 .center_box .content .con_box .list .item .word .t3 {
  font-weight: 400;
  margin-top: 0.1rem;
}
.idx_productDetailCon4 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}
.idx_productDetailCon4 .center_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon4 .center_box .content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon4 .center_box .content .banner_img {
  margin-top: 0.4rem;
}
.idx_productDetailCon4 .center_box .content .banner_img img.wap {
  min-height: auto;
  object-fit: unset;
}
.idx_productDetailCon4 .center_box .content .til {
  margin-top: 0.4rem;
  color: #000;
}
.idx_productDetailCon4 .center_box .content .list {
  margin-top: 0.3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.2rem;
  row-gap: 0.2rem;
}
@media (max-width:480px) {
  .idx_productDetailCon4 .center_box .content .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_productDetailCon4 .center_box .content .list .item {
  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;
}
.idx_productDetailCon4 .center_box .content .list .item .pb {
  padding-bottom: 89%;
}
.idx_productDetailCon4 .center_box .content .list .item .word {
  background: rgba(0, 0, 0, 0.05);
  line-height: 1.5;
  padding: 0.3rem 0 0.4rem 0.2rem;
  flex: 1;
}
.idx_productDetailCon4 .center_box .content .list .item .word .t1 {
  font-weight: 600;
}
.idx_productDetailCon4 .center_box .content .list .item .word .t2 {
  font-weight: 400;
  margin-top: 0.1rem;
}
.idx_productDetailCon5 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}
.idx_productDetailCon5 .center_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon5 .center_box .content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon5 .center_box .content .banner_img {
  margin-top: 0.2rem;
}
.idx_productDetailCon5 .center_box .content .banner_img img.wap {
  min-height: auto;
  object-fit: unset;
}
.idx_productDetailCon5 .center_box .content .word {
  margin-top: 0.4rem;
}
.idx_productDetailCon5 .center_box .content .word .t2 {
  margin-top: 0.1rem;
}
.idx_productDetailCon5 .center_box .content .banner_img2 {
  margin-top: 0.2rem;
}
.idx_productDetailCon5 .center_box .content .banner_img2 img.wap {
  min-height: auto;
  object-fit: unset;
}
.idx_productDetailCon6 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}
.idx_productDetailCon6 .center_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon6 .center_box .content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon6 .center_box .content .banner_img {
  margin-top: 0.4rem;
}
.idx_productDetailCon6 .center_box .content .banner_img img.wap {
  min-height: auto;
  object-fit: unset;
}
.idx_productDetailCon6 .center_box .content .til {
  margin-top: 0.4rem;
}
.idx_productDetailCon6 .center_box .content .list {
  margin-top: 0.3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
  row-gap: 0.2rem;
}
@media (max-width:480px) {
  .idx_productDetailCon6 .center_box .content .list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_productDetailCon6 .center_box .content .list .item {
  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;
}
.idx_productDetailCon6 .center_box .content .list .item .img {
  position: relative;
}
.idx_productDetailCon6 .center_box .content .list .item .img .txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.idx_productDetailCon6 .center_box .content .list .item .word {
  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;
  background: rgba(0, 0, 0, 0.05);
  line-height: 1.5;
  padding: 0.3rem 0.2rem 0.42rem 0.2rem;
  flex: 1;
}
.idx_productDetailCon6 .center_box .content .list .item .word .t2 {
  margin-top: 0.1rem;
}
.idx_productDetailCon7 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}
.idx_productDetailCon7 .center_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon7 .center_box .content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon7 .center_box .content .banner_img img.wap {
  min-height: auto;
  object-fit: unset;
}
.idx_productDetailCon7 .center_box .content .til_box {
  margin-top: 0.2rem;
}
.idx_productDetailCon7 .center_box .content .til_box .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  position: relative;
  /* 隐藏滚动条 */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.idx_productDetailCon7 .center_box .content .til_box .list::-webkit-scrollbar {
  display: none;
}
.idx_productDetailCon7 .center_box .content .til_box .list .item {
  cursor: pointer;
  position: relative;
  padding-bottom: 0.2rem;
}
.idx_productDetailCon7 .center_box .content .til_box .list .item ::after {
  content: '';
  width: 100%;
  height: 0.04rem;
  background: #FF6B00;
  position: absolute;
  bottom: -1px;
  z-index: 2;
  left: 0;
  display: block;
  opacity: 0;
}
@media (max-width:480px) {
  .idx_productDetailCon7 .center_box .content .til_box .list .item ::after {
    bottom: -0.2rem;
  }
}
.idx_productDetailCon7 .center_box .content .til_box .list .item.active {
  color: #FF6B00;
}
.idx_productDetailCon7 .center_box .content .til_box .list .item.active ::after {
  opacity: 1;
}
.idx_productDetailCon7 .center_box .content .con_box {
  padding-top: 0.4rem;
}
.idx_productDetailCon7 .center_box .content .con_box .banner_img {
  position: relative;
}
.idx_productDetailCon7 .center_box .content .con_box .banner_img .item {
  position: absolute;
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.idx_productDetailCon7 .center_box .content .con_box .banner_img .item.point {
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.idx_productDetailCon7 .center_box .content .con_box .banner_img .item.point::before {
  content: '';
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  background: #FF6B00;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  z-index: -2;
  animation: grow4 var(--time2) linear infinite;
}
.idx_productDetailCon7 .center_box .content .con_box .banner_img .item.point::after {
  content: '';
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  background: #FF6B00;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 100px;
  z-index: -2;
  animation: grow4 var(--time) linear infinite;
}
.idx_productDetailCon7 .center_box .content .con_box .banner_img .item .word2 {
  width: fit-content;
  position: absolute;
  bottom: -0.85rem;
  text-align: center;
}
.idx_productDetailCon7 .center_box .content .con_box .banner_img .item .word2 .t1,
.idx_productDetailCon7 .center_box .content .con_box .banner_img .item .word2 .t2 {
  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;
  white-space: nowrap;
  text-align: center;
}
.idx_productDetailCon7 .center_box .content .con_box .banner_img .process {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  z-index: 9;
  width: fit-content;
}
.idx_productDetailCon7 .center_box .content .con_box .word {
  padding: 0.3rem 0.2rem 0.66rem 0.2rem;
  background: rgba(0, 0, 0, 0.05);
  min-height: 1.8rem;
}
.idx_productDetailCon7 .center_box .content .con_box .word .t1 {
  font-weight: 600;
}
.idx_productDetailCon7 .center_box .content .con_box .word .t2 {
  margin-top: 0.1rem;
  font-size: 400;
}
.idx_productDetailCon7 .center_box .content .con_box .word .t3 {
  margin-top: 0.1rem;
  font-size: 400;
}
.idx_productDetailCon8 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}
.idx_productDetailCon8 .center_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.idx_productDetailCon8 .center_box .content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 -9999px 0 0)；
}
.idx_productDetailCon8 .center_box .content .section_til {
  position: relative;
}
.idx_productDetailCon8 .center_box .content .section_til .control_box {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
@media (max-width:480px) {
  .idx_productDetailCon8 .center_box .content .section_til .control_box {
    display: none;
  }
}
.idx_productDetailCon8 .center_box .content .section_til .control_box .pre_btn,
.idx_productDetailCon8 .center_box .content .section_til .control_box .next_btn {
  cursor: pointer;
}
.idx_productDetailCon8 .center_box .content .section_til .control_box .pre_btn .no,
.idx_productDetailCon8 .center_box .content .section_til .control_box .next_btn .no {
  display: none;
}
.idx_productDetailCon8 .center_box .content .section_til .control_box .pre_btn img,
.idx_productDetailCon8 .center_box .content .section_til .control_box .next_btn img {
  width: 0.4rem;
  height: auto;
  min-width: 28px;
}
.idx_productDetailCon8 .center_box .content .swiper_box {
  margin-top: 0.4rem;
}
.idx_productDetailCon8 .center_box .content .swiper_box .info_img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  row-gap: 0.4rem;
}
@media (max-width:480px) {
  .idx_productDetailCon8 .center_box .content .swiper_box .info_img {
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_productDetailCon8 .center_box .content .swiper_box .m_control_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.5rem;
  display: none;
}
@media (max-width:480px) {
  .idx_productDetailCon8 .center_box .content .swiper_box .m_control_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.idx_productDetailCon8 .center_box .content .swiper_box .m_control_box .pre_btn,
.idx_productDetailCon8 .center_box .content .swiper_box .m_control_box .next_btn {
  cursor: pointer;
}
.idx_productDetailCon8 .center_box .content .swiper_box .m_control_box .pre_btn .no,
.idx_productDetailCon8 .center_box .content .swiper_box .m_control_box .next_btn .no {
  display: none;
}
.idx_productDetailCon8 .center_box .content .swiper_box .m_control_box .pre_btn img,
.idx_productDetailCon8 .center_box .content .swiper_box .m_control_box .next_btn img {
  width: 0.4rem;
  height: auto;
  min-width: 28px;
}
.idx_productDetailCon9 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
}
.idx_productDetailCon9 .center_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.idx_productDetailCon9 .center_box .content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index:1;
  clip-path:inset(0 -9999px 0 0);
}
.idx_productDetailCon9 .center_box .content .section_til {
  position: relative;
}
.idx_productDetailCon9 .center_box .content .section_til .control_box {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
@media (max-width:480px) {
  .idx_productDetailCon9 .center_box .content .section_til .control_box {
    display: none;
  }
}
.idx_productDetailCon9 .center_box .content .section_til .control_box .pre_btn,
.idx_productDetailCon9 .center_box .content .section_til .control_box .next_btn {
  cursor: pointer;
}
.idx_productDetailCon9 .center_box .content .section_til .control_box .pre_btn .no,
.idx_productDetailCon9 .center_box .content .section_til .control_box .next_btn .no {
  display: none;
}
.idx_productDetailCon9 .center_box .content .section_til .control_box .pre_btn img,
.idx_productDetailCon9 .center_box .content .section_til .control_box .next_btn img {
  width: 0.4rem;
  height: auto;
  min-width: 28px;
}
.idx_productDetailCon9 .center_box .content .swiper_box {
  margin-top: 0.4rem;
}
.idx_productDetailCon9 .center_box .content .swiper_box .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;
  cursor: pointer;
}
@media (max-width:480px) {
  .idx_productDetailCon9 .center_box .content .swiper_box .info_box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_productDetailCon9 .center_box .content .swiper_box .info_box .img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.idx_productDetailCon9 .center_box .content .swiper_box .info_box .img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_productDetailCon9 .center_box .content .swiper_box .info_box .img .hover_box {
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 99;
}
.idx_productDetailCon9 .center_box .content .swiper_box .info_box .img .hover_box .idx_more {
  width: fit-content;
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  opacity: 0;
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_productDetailCon9 .center_box .content .swiper_box .info_box .img .hover_box .idx_more .more {
  background: #FF6B00;
  border: none;
}
.idx_productDetailCon9 .center_box .content .swiper_box .info_box .word {
  padding: 0.2rem 0 0.24rem 0;
}
.idx_productDetailCon9 .center_box .content .swiper_box .info_box .word .t1 {
  font-weight: 400;
}
.idx_productDetailCon9 .center_box .content .swiper_box .info_box .word .t2 {
  font-weight: 600;
  margin-top: 0.1rem;
}
.idx_productDetailCon9 .center_box .content .swiper_box .info_box:hover img {
  transform: scale(1.2);
}
.idx_productDetailCon9 .center_box .content .swiper_box .info_box:hover .hover_box {
  height: 100%;
}
.idx_productDetailCon9 .center_box .content .swiper_box .info_box:hover .idx_more {
  opacity: 1 !important;
  transform: translateY(0);
}
.idx_productDetailCon9 .center_box .content .swiper_box .m_control_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.2rem;
  display: none;
}
@media (max-width:480px) {
  .idx_productDetailCon9 .center_box .content .swiper_box .m_control_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.idx_productDetailCon9 .center_box .content .swiper_box .m_control_box .pre_btn,
.idx_productDetailCon9 .center_box .content .swiper_box .m_control_box .next_btn {
  cursor: pointer;
}
.idx_productDetailCon9 .center_box .content .swiper_box .m_control_box .pre_btn .no,
.idx_productDetailCon9 .center_box .content .swiper_box .m_control_box .next_btn .no {
  display: none;
}
.idx_productDetailCon9 .center_box .content .swiper_box .m_control_box .pre_btn img,
.idx_productDetailCon9 .center_box .content .swiper_box .m_control_box .next_btn img {
  width: 0.4rem;
  height: auto;
  min-width: 28px;
}
.idx_productDetailCon10 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  padding-top: 1.2rem;
}
.idx_productDetailCon10 .center_box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.idx_productDetailCon10 .center_box .content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  clip-path: inset(0 -9999px 0 0);
}
.idx_productDetailCon10 .center_box .content .section_til {
  position: relative;
}
.idx_productDetailCon10 .center_box .content .section_til .control_box {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
@media (max-width:480px) {
  .idx_productDetailCon10 .center_box .content .section_til .control_box {
    display: none;
  }
}
.idx_productDetailCon10 .center_box .content .section_til .control_box .pre_btn,
.idx_productDetailCon10 .center_box .content .section_til .control_box .next_btn {
  cursor: pointer;
}
.idx_productDetailCon10 .center_box .content .section_til .control_box .pre_btn .no,
.idx_productDetailCon10 .center_box .content .section_til .control_box .next_btn .no {
  display: none;
}
.idx_productDetailCon10 .center_box .content .section_til .control_box .pre_btn img,
.idx_productDetailCon10 .center_box .content .section_til .control_box .next_btn img {
  width: 0.4rem;
  height: auto;
  min-width: 28px;
}
.idx_productDetailCon10 .center_box .content .swiper_box {
  margin-top: 0.4rem;
}
.idx_productDetailCon10 .center_box .content .swiper_box .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;
  overflow: hidden;
}
@media (max-width:480px) {
  .idx_productDetailCon10 .center_box .content .swiper_box .info_box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.idx_productDetailCon10 .center_box .content .swiper_box .info_box .img {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.idx_productDetailCon10 .center_box .content .swiper_box .info_box .img img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.idx_productDetailCon10 .center_box .content .swiper_box .info_box .img .hover_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  opacity: 0;
  -webkit-transition: all 0.02s ease;
  -o-transition: all 0.02s ease;
  transition: all 0.02s ease;
}
.idx_productDetailCon10 .center_box .content .swiper_box .info_box .img .hover_box .hover_img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.idx_productDetailCon10 .center_box .content .swiper_box .info_box .img:hover img {
  transform: scale(1.2);
}
.idx_productDetailCon10 .center_box .content .swiper_box .info_box .img:hover .hover_box {
  opacity: 1;
  transform: scale(1);
}
.idx_productDetailCon10 .center_box .content .swiper_box .info_box .img:hover .hover_box .hover_img {
  transform: translate(-50%, -50%) scale(1);
}
.idx_productDetailCon10 .center_box .content .swiper_box .info_box .word {
  padding: 0.2rem 0 0.24rem 0;
}
.idx_productDetailCon10 .center_box .content .swiper_box .info_box .word .t1 {
  font-weight: 400;
}
.idx_productDetailCon10 .center_box .content .swiper_box .info_box .word .t2 {
  font-weight: 600;
  margin-top: 0.1rem;
}
.idx_productDetailCon10 .center_box .content .swiper_box .m_control_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 0.2rem;
  display: none;
}
@media (max-width:480px) {
  .idx_productDetailCon10 .center_box .content .swiper_box .m_control_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}
.idx_productDetailCon10 .center_box .content .swiper_box .m_control_box .pre_btn,
.idx_productDetailCon10 .center_box .content .swiper_box .m_control_box .next_btn {
  cursor: pointer;
}
.idx_productDetailCon10 .center_box .content .swiper_box .m_control_box .pre_btn .no,
.idx_productDetailCon10 .center_box .content .swiper_box .m_control_box .next_btn .no {
  display: none;
}
.idx_productDetailCon10 .center_box .content .swiper_box .m_control_box .pre_btn img,
.idx_productDetailCon10 .center_box .content .swiper_box .m_control_box .next_btn img {
  width: 0.4rem;
  height: auto;
  min-width: 28px;
}
.idx_productDetailCon11 {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 1.2rem;
}


.idx_manufactureCon5 .nav_cont .Equipment_con .wap_list1,
.idx_manufactureCon5 .nav_cont .Process_con .wap_list1,
.idx_manufactureCon5 .nav_cont .Equipment_con .wap_list2,
.idx_manufactureCon5 .nav_cont .Process_con .wap_list2 {
  display: none !important;
}

@media (max-width:990px) {
  .idx_manufactureCon5 .nav_cont .Equipment_con .box_info .right_box,
  .idx_manufactureCon5 .nav_cont .Process_con .box_info .right_box {
    display: none;
  }
}

@media (max-width:990px) {
  .idx_manufactureCon5 .nav_cont .Equipment_con .list,
  .idx_manufactureCon5 .nav_cont .Process_con .list {
    display: none;
  }
}


@media (max-width:1560px) {
  .system_section1 .content .center_box .word {
    width: 51% !important;
  }
}

.idx_homeCon2 .item .word .t2 {
  min-height: 2em;
}
.idx_productDetailCon3 .center_box .content .til_box .list .item{
  padding-bottom: 0.2rem;
}

header .header_box .center_box .item_box .item .one { font-weight:600; }
.ProductNav .ProductTitle .ProductDes .navCon { padding-left:0.2rem; }
.idx_contactCon2 .content2{ margin-top:1rem; }
header .header_box .center_box .column_right .icon_img {
  margin-right: 0.2rem;
  z-index: 999;
  cursor: pointer;
}


.idx_homeCon1  .content .mask1{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.0) 100%);
}
.idx_homeCon1 .content .mask2{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.idx_productDetailCon3 .center_box .content .til_box .list .item{
  padding-bottom: 0.2rem;
}
.idx_homeCon1 {
  width: 100%;
  height: calc(100vh - 0.4rem);
}
header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); /* 浅投影 */
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.navBox3 a:hover{
  color: #000 !important;
}
.navBox3 .navCon:hover .img img{
  transform: scale(1.2);
}
.navBox3 .navCon:hover .img {
  overflow: hidden;
}
.navCon img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ProductNav .ProductTitle .ProductCon .navCon:hover .img {
  overflow: hidden;
}
.ProductNav .ProductTitle .ProductCon .navCon:hover .img img {
  transform: scale(1.2);
}
.idx_contactCon2 .content .box_info .right_box .input_box input {
  font-weight: 500;
}
.idx_contactCon2 .content .box_info .right_box .textarea_box textarea {
  height: 1.2rem;
  padding: 0.16rem 0 0 0.19rem;
  resize: none;
  border-radius: 0.1rem;
}

.idx_contactCon2 .content .box_info .right_box .check_box .layui-form-checkbox {
  overflow: hidden;
  max-width: 100%;
  color: rgba(0, 0, 0, 0.4);
}
.idx_contactCon2 .content .box_info .right_box .check_box .layui-form-checkbox > div {
  width: 100%; /* 👈 就加这一句！立刻生效 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(0, 0, 0, 0.4);
}
footer .contact_box{
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
footer .contact_box:hover {
  border-color: var(--active_color) !important;
  color: #FFFFFF !important;
  background: var(--active_color);
}
.idx_homeCon6 .center_box .swiper-wrapper .swiper-slide .info_box .word_box .word {
  width: 100%;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item:hover .t1{
  color: #FF6B00;
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box{
  cursor: pointer;
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box:hover  .more {
  background: #FF6B00;
  color: #fff;
  border: 1px solid #FF6B00;
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box:hover .idx_more .def_img {
  display: none;
}
.idx_productListCon2 .content .center_box .product_box .right_box .intro_box:hover .idx_more .hover_img {
  display: block;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .word .t3 {
  font-size: var(--font14);
}
.idx_homeCon5 .content .box_info .right_box .check_box .layui-form-checkbox {
  overflow: hidden;
  max-width: 100%;
  color: rgba(0, 0, 0, 0.4);
}

.idx_homeCon5 .content .box_info .right_box .check_box .layui-form-checkbox > div {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.4);
  display: block;
  min-width: 0;
  flex: 1;
}
.idx_homeCon5 .layui-form-checkbox[lay-skin=primary]>div,.idx_contactCon2  .layui-form-checkbox[lay-skin=primary]>div {
  padding-right: 0;
}
.idx_productDetailCon2 .center_box .content .banner_img {
  position: relative;
}

.idx_productDetailCon2  .up_img{
  position: absolute;
  top: 0;
  left: 0;
  width:100%;
  height: 100%;
  z-index: 2;
}
.idx_productDetailCon1 {
  height: 100vh;
}

/* 默认状态：隐藏 hover 图 */
.def_hover {
  display: none;
}

/* hover 时：显示 hover 图（8、9、10 全部生效） */
.idx_productDetailCon8 .center_box .content .section_til .control_box .pre_btn .def_box:hover .def_hover,
.idx_productDetailCon8 .center_box .content .section_til .control_box .next_btn .def_box:hover .def_hover,
.idx_productDetailCon9 .center_box .content .section_til .control_box .pre_btn .def_box:hover .def_hover,
.idx_productDetailCon9 .center_box .content .section_til .control_box .next_btn .def_box:hover .def_hover,
.idx_productDetailCon10 .center_box .content .section_til .control_box .pre_btn .def_box:hover .def_hover,
.idx_productDetailCon10 .center_box .content .section_til .control_box .next_btn .def_box:hover .def_hover {
  display: block !important;
}

/* hover 时：隐藏默认图（8、9、10 全部生效） */
.idx_productDetailCon8 .center_box .content .section_til .control_box .pre_btn .def_box:hover .def,
.idx_productDetailCon8 .center_box .content .section_til .control_box .next_btn .def_box:hover .def,
.idx_productDetailCon9 .center_box .content .section_til .control_box .pre_btn .def_box:hover .def,
.idx_productDetailCon9 .center_box .content .section_til .control_box .next_btn .def_box:hover .def,
.idx_productDetailCon10 .center_box .content .section_til .control_box .pre_btn .def_box:hover .def,
.idx_productDetailCon10 .center_box .content .section_til .control_box .next_btn .def_box:hover .def {
  display: none !important;
}

.idx_companyCon4 .content .list2 .item .word .t1 {
  border-right: 3px solid #fff;
  padding-right: 0.1rem;
  clip-path: inset(15% 0 15% 0);
}

.idx_companyCon4 .content .list2 .item:first-child .word .t1{
  border: none;
}
.idx_companyCon4 .content .list2 .item:first-child .word .t2 {
  border-right: 3px solid #fff;
  padding-right: 0.1rem;
  clip-path: inset(10% 0 10% 0);
}

.idx_companyCon6 .content .swiper_box .swiper-wrapper .swiper-slide .box_info .right_box .word .t2 {
  margin-top: 0.1rem;
  /* 下面是新增的 5 行限制 + 纵向滚动 */
  display: -webkit-box;
  -webkit-line-clamp: 5;    /* 最多5行 */
  -webkit-box-orient: vertical;
  overflow-y: auto;         /* 超出自动出现纵向滚动条 */
  overflow-x: hidden;
  max-height: 7.5em;        /* 配合5行高度，避免错乱 */
  line-height: 1.5em;
}
.idx_homeCon3 .content .info_box .right_box .list .item .t2 {
  white-space: nowrap;
}
.idx_homeCon2 .item .word .t2 {
  min-height: 2.4em;
}
header .header_box .center_box .item_box .item:hover .Secondary_Navigation{
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}
.breadcrumbs-list {
  display: flex;
  margin-top: var(--header-height);
  padding: 0.2rem 0;
}
.breadcrumbs-list .w1480{
  display: flex;
  gap: 0.08rem;
  color: #000;
  font-size: var(--font14);
  align-items: center;
}
.breadcrumbs-list .w1480 .txt{
  cursor: pointer;
}

@media (max-width: 990px) {
  .idx_companyCon9 .content .list .item.hover2 {
    background: #FF6B00;
  }
  .idx_companyCon9 .content .list .item.hover2 .img img {
    transform: scale(1.2);
  }
  .idx_companyCon9 .content .list .item {
    height: auto !important;
  }
  .idx_companyCon9 .content .list .item .hover_box .t1,.idx_companyCon9 .content .list .item .hover_box .t2 {
    width: 80%;

  }

  .idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box,
  .idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box {
    padding-top: 0.7rem !important;
  }
  .idx_manufactureCon5 .nav_cont .Equipment_con,
  .idx_manufactureCon5 .nav_cont .Process_con {
    padding-top: 0 !important;
  }
  /* 保持你要的 display: contents */
  .idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box .left_box2 .txt p,
  .idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box .left_box2 .txt p,
  .idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box .right_box2 .txt p,
  .idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box .right_box2 .txt p {
    display: contents;
  }

  /* 第一个 p 后面加透明“空格”，模拟 margin-right */
  .idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box .left_box2 .txt p:first-child::after,
  .idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box .left_box2 .txt p:first-child::after,
  .idx_manufactureCon5 .nav_cont .Equipment_con .box_info .left_box .top_box .right_box2 .txt p:first-child::after,
  .idx_manufactureCon5 .nav_cont .Process_con .box_info .left_box .top_box .right_box2 .txt p:first-child::after {
    content: '';
    display: inline-block;
    width: 0.2rem; /* 你要的右边距 */
  }
  .idx_homeCon3 .content .info_box .right_box .list .item .t2 {
    white-space: break-spaces;
  }
}

