@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);
}
.font21 {
  font-size: var(--font21);
}
.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-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.ttf") format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.ttf") format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format('truetype');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.ttf") format('truetype');
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.ttf") format('truetype');
  font-weight: 900;
  font-display: swap;
}
/* --------------------------------------------------------------- 全站内容区 */
.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: 800;
  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.05);
}
.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: #FF6B00;
  color: #fff;
  border: 2px solid #FF6B00;
}
.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.05);
}
.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.05);
}
.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.05);
}
.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.05);
}
@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.05);
}
.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.05);
}
.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.05);
}
@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.05);
}
.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.05);
}
.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.05);
}
.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: 0rem;
  left: 0;
  display: block;
  opacity: 0;
}
.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;
  overflow: auto;
  /* 隐藏滚动条 */
  -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: 0rem;
  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;
}
.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;
}
.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.05);
}
.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;
}
.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.05);
}
.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;
}
.MaxUnset img {
  max-width: unset;
  max-height: unset;
}
.CoverImg {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ContainImg {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.borderLine {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--border-color);
}
.FullTag {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.BreakAll {
  white-space: pre-line;
  word-break: break-all;
}
.BreakWord {
  white-space: pre-line;
  word-break: break-word;
}
.row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.row.start {
  align-items: flex-start !important;
}
.row.side {
  justify-content: space-between !important;
}
.row.end {
  align-items: flex-end !important;
}
.row.center {
  justify-content: center!important;
}
.row.fill {
  align-items: stretch!important;
}
.column {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
}
.column.start {
  align-items: flex-start !important;
}
.column.side {
  justify-content: space-between !important;
}
.column.end {
  align-items: flex-end !important;
}
.column.center {
  justify-content: center!important;
}
.column.fill {
  align-items: stretch!important;
}
.bottomIn {
  opacity: 0;
  transform: translate(0, 0.3rem);
}
.bottomIn.animated {
  animation: TranslateIn 0.5s 0s ease-in-out forwards;
}
@keyframes TranslateIn {
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.ClearPosition {
  position: relative;
  left: unset;
  top: unset;
  right: unset;
  bottom: unset;
}
:root {
  --font21: clamp(15px, 0.21rem, 21px);
}
.phase2 {
  font-size: 12px;
}
header.absolute {
  z-index: 99999!important;
}
.idx_productDetailCon2 .center_box .content .til_box .list .item,
.idx_manufactureCon5 .nav_list .nav_item {
  text-transform: uppercase;
  font-family: Montserrat;
  font-weight: 600;
  cursor: pointer;
}
.clearBoth {
  display: none;
}
@media (max-width:480px) {
  .clearBoth {
    display: block;
    width: 100%;
  }
}
.idx_manufactureCon5 .teamBox,
.idx_productDetailCon2 .teamBox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.46rem 0.4rem;
  padding: 0.53rem 0;
}
.idx_manufactureCon5 .teamBox .item,
.idx_productDetailCon2 .teamBox .item {
  width: calc((100% - 0.8rem) / 3);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.idx_manufactureCon5 .teamBox .item .image,
.idx_productDetailCon2 .teamBox .item .image {
  width: 100%;
  position: relative;
  aspect-ratio: 2.23444976;
}
.idx_manufactureCon5 .teamBox .item .image img,
.idx_productDetailCon2 .teamBox .item .image img {
  width: 100%;
  height: 100%;
}
.idx_manufactureCon5 .teamBox .item h3,
.idx_productDetailCon2 .teamBox .item h3 {
  color: #FF6B00;
  font-size: var(--font16);
  font-weight: 600;
  line-height: 1.87;
  text-transform: uppercase;
  margin-top: 0.08rem;
}
.idx_manufactureCon5 .teamBox .item p,
.idx_productDetailCon2 .teamBox .item p {
  color: #000;
  font-feature-settings: 'liga' off;
  font-family: Montserrat;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.125;
  /* 112.5% */
  letter-spacing: -5%;
  word-break: keep-all;
  white-space: normal;
  overflow-wrap: break-word;
}
@media (max-width:480px) {
  .idx_manufactureCon5 .teamBox,
  .idx_productDetailCon2 .teamBox {
    gap: 0.46rem 0;
    padding: 0;
  }
  .idx_manufactureCon5 .teamBox .item,
  .idx_productDetailCon2 .teamBox .item {
    width: 100%;
  }
}
.idx_manufactureCon5 .processBox .topRow,
.idx_productDetailCon2 .processBox .topRow {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0.52rem 0.3rem 1.05rem;
  background: rgba(0, 0, 0, 0.05);
}
.idx_manufactureCon5 .processBox .topRow .icons,
.idx_productDetailCon2 .processBox .topRow .icons {
  margin-right: 0.8rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.idx_manufactureCon5 .processBox .topRow .icons .item,
.idx_productDetailCon2 .processBox .topRow .icons .item {
  margin-right: 0.4rem;
}
.idx_manufactureCon5 .processBox .topRow .icons .image,
.idx_productDetailCon2 .processBox .topRow .icons .image {
  height: 0.6rem;
}
.idx_manufactureCon5 .processBox .topRow .icons .image img,
.idx_productDetailCon2 .processBox .topRow .icons .image img {
  height: 100%;
}
.idx_manufactureCon5 .processBox .topRow .icons h3,
.idx_productDetailCon2 .processBox .topRow .icons h3 {
  margin-top: 0.06rem;
  word-break: break-all;
  white-space: pre-line;
  color: #000;
  font-size: var(--font16);
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
}
.idx_manufactureCon5 .processBox .topRow p,
.idx_productDetailCon2 .processBox .topRow p {
  flex: 1;
  line-height: calc(24/16);
}
@media (max-width:480px) {
  .idx_manufactureCon5 .processBox .topRow,
  .idx_productDetailCon2 .processBox .topRow {
    flex-direction: column;
    padding: 0.3rem;
  }
  .idx_manufactureCon5 .processBox .topRow .icons,
  .idx_productDetailCon2 .processBox .topRow .icons {
    margin-right: 0;
    flex-wrap: wrap;
  }
  .idx_manufactureCon5 .processBox .topRow .icons .item,
  .idx_productDetailCon2 .processBox .topRow .icons .item {
    margin-right: 0;
    width: 50%;
    margin-bottom: 0.2rem;
  }
  .idx_manufactureCon5 .processBox .topRow .icons .item:last-child,
  .idx_productDetailCon2 .processBox .topRow .icons .item:last-child {
    margin-right: 0;
  }
}
.flow-container {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0.38rem;
}
.flow-container .flow-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.flow-container .flow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem 0.4rem;
  padding: 0 1.05rem;
  padding-right: 0.6rem;
}
.flow-container .flow-item {
  width: calc((100% - 1.2rem) / 4);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.flow-container .flow-item.align-right {
  margin-left: auto;
}
.flow-container .flow-item .circle {
  display: block;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 0.12rem;
  background: var(--active_color);
  margin-left: 0.18rem;
  margin-bottom: 0.26rem;
}
.flow-container .flow-item .image {
  width: 100%;
  height: 1.2rem;
  position: relative;
}
.flow-container .flow-item .image:before {
  position: absolute;
  width: 0.86rem;
  height: 1.2rem;
  background: linear-gradient(321deg, rgba(255, 255, 255, 0) 49.68%, #FFF 83.22%);
  left: 0;
  top: 0;
  content: '';
  pointer-events: none;
}
.flow-container .flow-item .image p {
  position: absolute;
  left: 0;
  top: 0;
  color: #FF6B00;
  text-align: center;
  font-family: Montserrat;
  font-size: var(--font36);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  padding-left: 0.16rem;
}
.flow-container .flow-item .image img {
  width: 100%;
  border-radius: 0.05rem;
}
.flow-container .flow-item h4 {
  color: #FF6B00;
  font-size: var(--font16);
  font-weight: 600;
  line-height: 1.87;
  text-transform: uppercase;
  margin-top: 0.06rem;
}
.flow-container .flow-item p {
  color: #000;
  font-feature-settings: 'liga' off;
  font-family: Montserrat;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.12;
  /* 112.5% */
  letter-spacing: -0.32px;
}
@media (max-width:480px) {
  .flow-container .flow-list {
    padding: 0 0.5rem;
    gap: 0.3rem;
  }
  .flow-container .flow-item {
    width: calc((100% - 0.3rem) / 2);
  }
}
.viewer-button.viewer-close {
  width: 0.44rem;
  height: 0.44rem;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAYAAAAehFoBAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAgpJREFUeAHVmYF1gjAQho9OwAjpBnUC2UA3qBvUTiCdQDfoCLxOgE6AG8AGusH1fiBKaauSBAjfeyeIF/IbAnfhArKAmUPZRGJzMSX2IhbWBs5iRb09ih3E9kEQnGlIRGgkloqd2IxEbEl9g07EcnZHLvZKrpGTKq5GtC8y9EEukBOt2fzSdwF9rMkGOUHMwxOTCSOJNRM9slhN/KjYNfvDrzkdtMQq2WR0ffCPDQLMTAJNoQ88tRwS8kcsgJbP5oGLYBndFVWh1TcQVS9R8TIl5GBOVT7gI4VMi2fslCNc/wNF/oJIG2FHTwmjeL7b7agoiof94Ys2hmzKT1EesgHb7ZbRXCnFeZ7f9YcPfNEGbQ1A6A51BtaZpoB7orv43mEBwUZ/91EhDsWCLQSnbMEtQY7FggSCM7bkL2E9iC27gmAnuW5bYA9iwYnYIU3RPYgteaKpwROcEjlbMuBNl0FwwhYM/FhLJxk4Jheakfx0vvFGSH5AqJ8UKRuAjruMFnwlvWRDsHyrVhxcJccp+c1SVh1f01wi1byTv8R6p/1eAtMiIr84yujO9Jdpv0ipf/ggf4ibYv9FRnrD47OhLvC4oruJHVm0mdiG6CFLBm/kAq6KMtaL1Ruk7Koo0xK+Yvdlr0HqdQs2T/xx6VOxORkQkAVcpXvoOKJr2VbRz9KtLtsWYnuxg03p9hu7E1sNEoca0gAAAABJRU5ErkJggg==");
  background-size: 100% 100%;
  top: 1rem;
  right: 2.2rem;
}
.viewer-button.viewer-close:before {
  display: none;
}
@media (max-width:480px) {
  .idx_manufactureCon5 .nav_list .nav_item {
    font-size: var(--font20);
  }
  .viewer-button.viewer-close {
    right: 12%;
  }
}
.viewer-canvas img.viewer-transition {
  transition: all 0.01s;
}
.viewer-canvas img.viewer-transition.ready {
  transition: all 0.01s;
}
@media (min-width: 768px) {
  .viewer-footer .viewer-toolbar {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    pointer-events: none;
  }
  .viewer-footer .viewer-toolbar > ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80vw;
  }
  .viewer-footer .viewer-one-to-one,
  .viewer-footer .viewer-zoom-in,
  .viewer-footer .viewer-zoom-out,
  .viewer-footer .viewer-reset,
  .viewer-footer .viewer-play,
  .viewer-footer .viewer-rotate-left,
  .viewer-footer .viewer-rotate-right,
  .viewer-footer .viewer-flip-horizontal,
  .viewer-footer .viewer-flip-vertical {
    display: none;
  }
  .viewer-footer .viewer-toolbar > ul > li {
    float: none;
  }
  .viewer-footer .viewer-toolbar > ul > li.viewer-prev,
  .viewer-footer .viewer-toolbar > ul > li.viewer-next {
    width: 0.8rem;
    height: 0.8rem;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAABKxJREFUeAHtnYFZ6jAQx68u8LqB2UA2sE6gG8gGuIFuoBvgBj4nKE6gbwL6JsANzgvN0SMWwdImF+D3ffflo0CT/nuXpGmTZhARRMwpKcjOyUZkxhmIlPkkq0Rq7Y3sI8uyT4hEBgERgl2S3cB3kbpSkc3IXm0aUtAgApJwBSUTqMXLxVf2QD+E8WcgEf57+7D/M2R/oPHWkbPcy/KZ7JX28RdSxR4w2QPZAtcpySZkl9ATtK+R22fp5TUnuyUzkAobhLMHcu+8aOj8DdnY5SnzfwDttBS87NPTOpTn2vPKpUeCNtxZL7UI52PL4p3YFzVhTQW5E+Fq0wkoxYuQRVRvdHXdk3dWB6/j9sVFy1SU+xFC4wrxnoLXbcKLnPdgIe3Em4tK2UCiBD8WL8NwZ21AvGgaTsQW8dTXd7vi6vPhRDxk8ZhBRRQ7PkjxGE/Efo4Vm65K/66tEC/a9uviYN3x5K6KgSPBichdnDvogreT5Pp5+4J1P7G782B9ZWGZwpEiNCh/+8fxMdV7m3CNCkfh7tfNohLVN/QTGBHK851aZawHQ5d/gBNLsBmqu9/2Q9mEqxnPiw1pUYgGJf/ph+NOleYRsJMXCu+7hnAF49FsA4qRXrjpBzeh6z5MbGhMlLXgbWfie/a6B4iDIdPuic8uXb+wcP0dxkBAPC9U7YlCp/XGRIRvlMYjMRFL2U5wCHP4RnkUIsuyipIrqJ9xsRjQG86sUbHaIs7+CCKSgieK1njOG1ZxDQpIRES+Ps6lomo6z9pFlPWgrQP5ku0DlJBAnchaGSugcR8qUIRyEf+5dCQFVOOBjGIR+QlYI++4RW2Bf0JbnejKU7fEay2KYjSJ6Au4BBJAmYi1bikJaNEiImd+Bif24xTCncuyCmEu0DkoRpl4q8vfJELYCWUvNY3bVJFduX5iDIxLqzNoOqkq+4EKxbNwl+9TCqiuH6hUPMuFS5ceyJdwqjxQsXgW49Iq+nB+G5oajDawGc66PA2odgD9y19sud8ZqWApiDfistnP3I3hGyUXEAnldZ6EB6Bnqy2x68EUPI9B77Ymb8wx0rBWYuIZUc7c/5IfZ72HQKQkngWbp9embV8WsnIMVKBUHy663vQDDuMCAoHpPN62/ek1rNc1iNaYaAabxuP2px/lMbxQO7J62xopJy/8jqj7tjewzgv5D92mOR0QouXdvXHF9TlyBzs7cxteL+F3c2ZEpfkCRwo2i1P8XgPsY8ZiwuC+kw1720mCeM6z33Q32sHjzk34AYB9Trh2O+x/GrxS/GOFvsDTohO9ZHCwIg4unsjIF9FA4mCohXe8DOfBMhyQaMeC3xcfS66fiLEWH/MKwV0cyzQFb3T13Yso92PU+hzr6+aFCAO16yyg1sUiXUjLs2qFLEAJWI/nlaJ8pcpowfZFaG8gEi3CqY6QFVgPys79goc469gswyzzX2CgZZh7A9vXc2avnGCP81Kcp7UtxD24cKGWgre3AW0oj72v5FLwFdRTqJYvG/DXwxfey0u/X0D7UvD2fzOyJ9rHGwxMjJcR8IsICuj3ZQT2+Z4Z2dvBvYxgE05Q60kFNK/CyEUqqURqjb02qGA+X/Xuw5g3caIbAAAAAElFTkSuQmCC");
    background-size: 100% 100%;
    pointer-events: auto;
  }
  .viewer-footer .viewer-toolbar > ul > li.viewer-prev:before,
  .viewer-footer .viewer-toolbar > ul > li.viewer-next:before {
    display: none;
  }
  .viewer-footer .viewer-toolbar > ul > li.viewer-prev:hover,
  .viewer-footer .viewer-toolbar > ul > li.viewer-next:hover {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAABPdJREFUeAHtnV+S00YQh38j1uTVSQ4Q5SHPOCfAnIDlACngMSFV8Z6AzQnwVoWQtw2VA7CcADgB5gRRDhDwK7tg0d2aWduyZFuy/kzb+qq2ZGPXrvmqZ3rU0rQNWiQeoY9PGGKG7+jpAAYhHUP7cph6+5R+IjnGcpwgwDscYWLG8lorGDSIFTYgAXfp6TFWJZVlQr+Thb40f+ACDdKIwPhXibL79NdYWh/1whF6QTKfk8zXqJnaBNpoG9F/5jfULy3nQ9BQNzg1T/EcNVG5QC/EpWGRMc7MM4xRMZUKpKF6TB/0Caqb26qlhoisRCBFXYgrnNPDITTAc+QMJ+YvyeY7EWBH4kc0XK/wFlrkMZzMbuAtffb72JHSEWjnulM712lmTEP6BCUpJdAO2Rfgxe9+MMFn3CszpAsLtPJewddEURZOMDPcKSqxkMC9lecoIXFrgXsvz1FQ4lYCD0aeo4DE7ZYxScIIcShwVegGXshKYwMbBdLZBZ/+7Eu2LcKAAufxpjetHcLxL3hA7zjHIcNnLGvOoXMF2nmPzzD8KAi0x5TWiD/mzYf5Q/hSigKHLo/p03yYOwozBdqhe4wOx1AqTRlkR6DZPHkeHDM8ycrKKwKlunJIS5Zt4aXN5WrhJCsCtVdX6sNglI7CJYEy93XRt45+OgqXI7CNue/bkGL+VXLUgJEp7pprgXLpsenoc/J+GGqS2LeuhHkExruXtwsT2x/mm1CPxNnc1eIQbn7d9z4Czu4A/0fJcy0SaY3skokItIvEds46dEpMblGBi8DkXpX20CjROnNDuP1ylTaJcTLlGRnLV/gAX0iLS4v1iR6+DtxY9gZNkXiJ2wGl5FvwDT0Sw4BSsp/leh0SB5xEQviK7xINR6DvVWefJcaJwBC+47FE/yPQ4aNEO4T14KFEXQIZg+WLsYsVnRbQJdDVDznyGI5EjkiOzJZggRE04KE8YqojAv2Ux0T+R6C/8pip3wL9lif3EQaySc9HfJeXMAkojfwH39AhjyOQBB7Vv6OxEFrkMV/hXWA3K0fwAU3ykGz0dsuYRjcpZ6JLHlzuSAQavESbaJOXIEGXCDwSm+30HdApb2r+TIJOBNp5sPlhrFNesl3WMj+VM/Vti1/zQeaVFC3ymBh/u4dLd+nHj+T6cLMFVo6+n86Bfx5qkRfR8P3ePQ1SL1beU2AjrkiqQR5jcLr8dAF7l8K/6LY3ZJOKPmYpAiWZtBGFelhxs7JTyUYh71AK0TEnI/qYlYKqRKEp30Ngb0nNffN/zoEyMu8PHqJD1n0UffeyXsov6fdA64r2uqJ5xJR3bOa9mCuQhnJEh9/RMVq3c33tRSXzVLLOIWfl8aY2UZuvyvUkCv0s+9fLZJuGPBsFSlbuyQQa4VDgphOfs5NGGoMt6dqeZLO1QPndXeOdFQoJlL/RtX5aovCtHbK86YHKJ3uVWCZl5DGFI3AROlvhxhQj6GbMK42yrZR3EsjYBhUaO3xw5emUTtHOsAM7C2RkXuQ2KXo6fbymZcrDKlqAViLQYaPxMXxuQhvgpMpm3ZUKdNjOH9xbIIQfJIXimzirum18LQIdHkRkbeIctQp0xD/jNg2dB0CDreDp0qN5hjeomUYELkJRedcmmwGq26ccAdIb+oLvmGry2x0aF7iIXH/5iFt2w6P7OgyOUHdcJLo+uq/D4Mc38abNr8P4AqOvGqrFBGy5AAAAAElFTkSuQmCC");
    background-size: 100% 100%;
  }
  .viewer-footer .viewer-toolbar > ul > li.viewer-prev {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAABLBJREFUeAHtnY1V4zAMx5Vb4LIB3oBuQJgANqAblA1gA9igbMAxQcoEcBM0N0HZQGc3UqO6KS1pYsttf+/p+fUrcf6RZMeNnQwigoi5LQprF9ZG1gwZiJL5slaJ0tm7tc8sy74gEhkERAh2Ze0WNkXqSmVtZu3NlSEFDSKgFa6wxQRq8XLxkTvQT2H8GqwI/7xtuN8Za7+h8dYRWe7t8sXam93GH0gVd8DWHq0tcJ3S2sTaFfSE3daItll6+5pbu7NmIBW2COcO5IG8aOj9G2tj2qfc/yNop6XiZZ+e1qE+N55XLj0StEFnvdQinI+ri3diX9WEta3IvQhXV05AKV6ELKJ6I+W6Z++sDp7jDoWiZSrq/QShoUp8pOB12/Ai5yNYSJN4c5GUDSRK8GPxdhjurA2IF03Didginvp8ty+Uz4cT8ZjFYwYVUWz4KMVjPBH7OVZsuir9u7ZCvGg7rIuDdceTuyoGTgQSkbs499AFbyPJ9fMOBet+YnfnwfrKwjGFE0VoUP70h+NTynvboEaFo3D/62aRRPUN/QRGhPJ8r1YZ68HQ5Q/gzBJshuoedn1RNuFqxvNiY7UoRIOSf/fFcaekeQLs5YXC+25AMdiMgBsIhPTCbV+4TSH3YcThNLHfgt/7JT5nr3sEpZBYLr0YiMMLlesXFtTfYQwoxPO84N5HdchbGxMRviobDw3iibqUsp3gEObwVXcrREvYVtausyyrIA6sUbF6R5zdEShCk+eJOhVrja2Ma1CERvEYbK6Pc6momvynWTyHzIMuB/Il2ycoQGHOa4O1Mk5AQy8qiEwi4jn+UjmSAkb1wITEc/AdsEb+4xatBdae83yovnVLvNaixKtMMuI5fAGXQARSFI9Z6RZLwJTFc3Clf8GZwziHcDdkCPMBXEAEEm1EVpe/0UOY+nnX0HTkjbVSuYiGysoJWNGLaP3ABEXkLt+XFDDqbWuJiXhJ5dID+RIu+lhgQiIaKiuVw/naGxZshrOuzgOqHUD/8hdb/u/UgEYRsZ4ZuqyLe83dGP6j5BIUoTQn8gD0bPWOxjwo0eSJ6P2tyW/mGHlYaxcaRMRmGGtTJ2xuZ30ApcQWEZu716ZtHxYyOWoFddxcdLPtCxzGBSgG49zetvvuNazXNVDbmMQEm8bj7rsv5al4YUhketvp9Wcv3ETkvt0NLHkh/6DbNKcjQrS8+zeuuD5H7mhnZ+7Ca/F/NmdGJM1XOFGwWZzi5xpgHzMWEwYPnWzY20YSxHOew6a72Q087d2EHwHY54Rr2mD/0+CV4h8r9AWeF53oZQdHK+Lg4okd+SIaSBwMtfCOt8N5sB0OSLRjwc3Fx5LrJ2Ksxce8SnAXxzFNwRsp372Kej9FzedYXzcvRBioXWcBtS4WSSEtz6oTsgAlYD2eV4r6lSqjBdsXob2FSLQIpzpCVmA9KDv3Kx7irGOzDLPc/wIDLcPcG9i+njN75QR7nJdCnta2EPfgwoVaCt79DehCeex9JJeCr6CeQrV82IC/Hr7wXl76/RLal4J3v5tZe7bbeIeBifEwAn4QQQH9PozA3d8zs/Z+dA8j2AYJ6jypgOZRGLkoJZUonbHXBhXM5z/37sOYfH9yDQAAAABJRU5ErkJggg==");
    background-size: 100% 100%;
  }
  .viewer-footer .viewer-toolbar > ul > li.viewer-prev:hover {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAABPRJREFUeAHtnUty00oUhv8WMXfqe+8Cru6AMWYFmBUQFkABQx5VOCsgrACnitcsUCyAsAJgBZgVIBYAeEoCFue0umNblmxLltSnbX1VKdnYFZyvTr+Ouo8VHBIP0MUv9DHBf/S0B4WQrqF5OUy9fUw/kb7G+jpCgM/Yw0gN9WtOUGgQI6xHAq7T030sSirLiH4nC32nnuIEDdKIwPiBjrJb9L+xtC7qhSP0hGS+JpkfUDO1CTTRNqA/5iHql5bzIaipKxyqZ3iNmqhcoAhxaVhkjCP1AkNUTKUCqanu0wd9gur6tmqpISIrEUhRF+IMx/SwDx/gPnKCA/VSj+YbEWBD4vvUXM/wCb7IY3gwu4BP9NlvYUNKR6Dp6w5NX+czQ2rSByhJKYGmyb4FT363gxF+40aZJl1YoJH3HlIHirLwADPBtaISCwncWnmWEhLXFrj18iwFJa4lcGfkWQpIXG8akwwYIXYFzgpdwFs901jBSoG0uuDlz7aMtkXoUeA8WvWmpU04vofb9I5j7DK8Ylmyhs4VaPo9XmHISAi4Y0xzxCt5/WF+Ez7VSYFdl8d0qT/MbYWZAk3T3UeLpa8zTRlkR6Ba3XnuHBM8yRqVFwTq7MouTVnWhac2p4uJk6wI9D27Uh8Kg3QUzgnUfV8bfcvopqNwPgJ96fv+DamdvE+uTaN0F3fOuUB969GH6LPyLvVdSewaV5ppBMabp7drx8r7J0yex+anaSZTV7NNWPa8Ly3vWwQcXQO+R2gcmiPbwUQLNJNEuasOSfISki0qsBGY7FWRiTx5CcaZbcIy01VS5TFx0uUp3ZbP8APSkCzP0sHfgW3LovBBHnOKqwENyZchCV/kJYQBDclyItAveUyPB5EQEvBPns7QsED38z8f5TFxIjCES3yVZ3AbgZ7Ls03YDb7LM7gTmM6kKDR86KIa3AnkSOOI48hjOBJdJUk3gAVGcIX/EsfuItDit8TIbQRa/JU4liGQ8VFizBHIh/Sk4J/EUUDDyFdIwieJMQvcq/9EY2F8kfgXPgfmsHIEaciXqA9622lMo4eU10ayRDN2JAIV3kEqciXqoEsE7mmbzuoOrESexLF6ngSdFmj6QZnN2CJJYjx1NV3KqfqOxVdGWqKrvTExXtmHcwmk+L6+Pyx/YzlH381j4M2d5vOHtPqg5vu/fRqkXqy8pkAt2Eh0s7HocP7pDGaXwhe0xxuySUUfMxeBejDxJQrdsOBmIYluopBPKIVomZIRfcxCQlVHoSpfQ2BrSfV903/OgUZkPh/cR4ue91H03ch6KT+l3wHNEQSvTppjzCc2817MFUhNOaLLY7QMlp1cX3pTST3To84uj8rDVWWiVt+V6+golJP2b47ROgV5VgrUo3JHd6ARdgUuOvE7e9BI05Y9SVNH2ZPz390W3lmg8HaetvTTPIW3dujpTQeUCtmqgWVURh6z0YYyWq1wYYoB/GbIM42ypZQ33pFnClT4WOGDM0+HtEQ7wgZUsqVR94tcJsWfSh8faJpyp4oSoJXuCTXR+AiSi9AGOKiyWHelAi2m8gfXFgghgyRRfBFHVZeNr0WgRUBE1ibOUqtAS3wXV6np3AYaLAVPtx7VC3xEzTQicBaKyutmsOmhunPKEaBrQ5/wjqkmv92hcYGz6PsvP3HZHHi0X4fBEWqvs0TnV/t1GPz4Ij66/DqMP2W8GqrPfNYPAAAAAElFTkSuQmCC");
    background-size: 100% 100%;
  }
  .viewer-footer .viewer-toolbar > ul > li.viewer-next {
    transform: translateX(15%);
  }
}
.stickyBox .section_til {
  margin-bottom: 0.2rem;
}
.stickyBox .layui-table-fixed .layui-table-body:hover {
  overflow: inherit;
}
.stickyBox .title {
  padding-bottom: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.stickyBox .title h1 {
  color: #000;
  text-transform: uppercase;
  font-size: var(--font30);
  font-weight: 600;
  line-height: 1.23333333;
  margin-right: auto;
}
.stickyBox .title .switch {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.24rem;
  margin: 0;
  color: #000;
  font-size: var(--font22);
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-left: auto;
}
.stickyBox .title .switch span {
  cursor: pointer;
}
.stickyBox .title .switch span:hover,
.stickyBox .title .switch span.active {
  color: var(--active_color);
}
.stickyBox .nav_list {
  position: sticky;
  top: 0;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.4rem;
  background: #ffffff;
  padding-bottom: 0.2rem;
  padding-top: 0.2rem;
  overflow-x: auto;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  scrollbar-gutter: stable;
}
.stickyBox .nav_list .scroll {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.1rem;
}
.stickyBox .nav_list .checkTag {
  margin-left: auto;
  white-space: nowrap;
  width: fit-content;
  flex-shrink: 0;
}
.stickyBox .nav_list .checkTag .layui-form-checkbox[lay-skin=primary] {
  border-radius: 0.1rem;
  height: auto!important;
  padding: 0.02rem 0.07rem !important;
}
.stickyBox .nav_list .checkTag .layui-form-checkbox[lay-skin=primary] > div {
  font-size: var(--font14);
  line-height: calc(17/14);
}
.stickyBox .nav_list .nav_item {
  position: relative;
  cursor: pointer;
  z-index: 2;
  text-transform: uppercase;
  white-space: nowrap;
}
.stickyBox .nav_list .nav_item.active {
  color: #FF6B00;
}
.stickyBox .nav_list .nav_item.active ::after {
  content: "";
  height: 0.05rem;
  background: #FF6B00;
  position: absolute;
  bottom: -0.2rem;
  width: 100%;
  left: 0;
}
.stickyBox .nav_list.type2 .nav_item {
  padding: 0.1rem 0.2rem;
  border-radius: 0.08rem;
  background: rgba(0, 0, 0, 0.05);
  color: #000;
  font-size: var(--font16);
  font-weight: 600;
  line-height: calc(20/16);
  text-transform: uppercase;
}
.stickyBox .nav_list.type2 .nav_item.active {
  background: var(--active_color);
  color: #ffffff;
}
.stickyBox .nav_list.type2 .nav_item.active ::after {
  background: none;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  transform: translateY(100%);
  border: 0.06rem solid var(--active_color);
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
}
.stickyBox .nav_cont {
  margin-top: 0;
  padding-top: 0;
}
.stickyBox .nav_cont .tab_content {
  display: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.stickyBox .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);
  }
}
.stickyBox .nav_cont .scale_con .box_info,
.stickyBox .nav_cont .Team_con .box_info {
  gap: 0.2rem;
}
.stickyBox .nav_cont .scale_con .box_info .left_box,
.stickyBox .nav_cont .Team_con .box_info .left_box {
  width: 50%;
  background: rgba(0, 0, 0, 0.05);
}
.stickyBox .nav_cont .scale_con .box_info .right_box,
.stickyBox .nav_cont .Team_con .box_info .right_box {
  width: 50%;
}
@media (max-width:990px) {
  .stickyBox .nav_cont .scale_con .box_info .left_box,
  .stickyBox .nav_cont .Team_con .box_info .left_box {
    width: 100%;
  }
  .stickyBox .nav_cont .scale_con .box_info .right_box,
  .stickyBox .nav_cont .Team_con .box_info .right_box {
    width: 100%;
  }
}
.stickyBox .nav_cont .scale_con .box_info1 .left_box,
.stickyBox .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;
}
.stickyBox .nav_cont .scale_con .box_info1 .left_box .word,
.stickyBox .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;
}
.stickyBox .nav_cont .scale_con .box_info1 .left_box .word .t1,
.stickyBox .nav_cont .Team_con .box_info1 .left_box .word .t1 {
  color: #FF6B00;
}
@media (max-width:990px) {
  .stickyBox .nav_cont .scale_con .box_info1 .left_box .word,
  .stickyBox .nav_cont .Team_con .box_info1 .left_box .word {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    width: 100%;
    padding: 0.2rem;
  }
}
.stickyBox .nav_cont .scale_con .box_info1 .right_box,
.stickyBox .nav_cont .Team_con .box_info1 .right_box {
  width: 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.stickyBox .nav_cont .scale_con .box_info1 .right_box .control_box,
.stickyBox .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;
}
.stickyBox .nav_cont .scale_con .box_info1 .right_box .control_box.active,
.stickyBox .nav_cont .Team_con .box_info1 .right_box .control_box.active {
  background: #FF6B00;
  color: #fff;
}
.stickyBox .nav_cont .scale_con .box_info1 .right_box .hover_box,
.stickyBox .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;
}
.stickyBox .nav_cont .scale_con .box_info1 .right_box .hover_box .hover_img,
.stickyBox .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;
}
.stickyBox .nav_cont .scale_con .box_info1 .right_box .banner_img,
.stickyBox .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%;
}
.stickyBox .nav_cont .scale_con .box_info1 .right_box .banner_img img,
.stickyBox .nav_cont .Team_con .box_info1 .right_box .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stickyBox .nav_cont .scale_con .box_info1 .right_box:hover .control_box,
.stickyBox .nav_cont .Team_con .box_info1 .right_box:hover .control_box {
  opacity: 0;
}
.stickyBox .nav_cont .scale_con .box_info1 .right_box:hover .hover_box,
.stickyBox .nav_cont .Team_con .box_info1 .right_box:hover .hover_box {
  opacity: 1;
  transform: scale(1);
}
.stickyBox .nav_cont .scale_con .box_info1 .right_box:hover .hover_box .hover_img,
.stickyBox .nav_cont .Team_con .box_info1 .right_box:hover .hover_box .hover_img {
  transform: translate(-50%, -50%) scale(1);
}
.stickyBox .nav_cont .scale_con .box_info1 .right_box:hover .banner_img,
.stickyBox .nav_cont .Team_con .box_info1 .right_box:hover .banner_img {
  transform: scale(1.05);
}
.stickyBox .nav_cont .scale_con .box_info2,
.stickyBox .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) {
  .stickyBox .nav_cont .scale_con .box_info2,
  .stickyBox .nav_cont .Team_con .box_info2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}
.stickyBox .nav_cont .scale_con .box_info2 .left_box,
.stickyBox .nav_cont .Team_con .box_info2 .left_box {
  color: #000;
}
.stickyBox .nav_cont .scale_con .box_info2 .left_box .word,
.stickyBox .nav_cont .Team_con .box_info2 .left_box .word {
  width: 95%;
  padding: 0.8rem 0.5rem 0 0.4rem;
}
.stickyBox .nav_cont .scale_con .box_info2 .left_box .word .t1,
.stickyBox .nav_cont .Team_con .box_info2 .left_box .word .t1 {
  color: #000;
  line-height: 1.7;
}
@media (max-width:990px) {
  .stickyBox .nav_cont .scale_con .box_info2 .left_box .word,
  .stickyBox .nav_cont .Team_con .box_info2 .left_box .word {
    width: 100%;
    padding: 0.5rem;
  }
}
.stickyBox .nav_cont .Equipment_con,
.stickyBox .nav_cont .Process_con {
  padding-top: 0.2rem;
}
.stickyBox .nav_cont .Equipment_con .box_info,
.stickyBox .nav_cont .Process_con .box_info {
  gap: 0.2rem;
}
.stickyBox .nav_cont .Equipment_con .box_info .left_box,
.stickyBox .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;
}
.stickyBox .nav_cont .Equipment_con .box_info .left_box .top_box,
.stickyBox .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) {
  .stickyBox .nav_cont .Equipment_con .box_info .left_box .top_box,
  .stickyBox .nav_cont .Process_con .box_info .left_box .top_box {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
}
.stickyBox .nav_cont .Equipment_con .box_info .left_box .top_box .left_box2,
.stickyBox .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;
}
.stickyBox .nav_cont .Equipment_con .box_info .left_box .top_box .left_box2 .num,
.stickyBox .nav_cont .Process_con .box_info .left_box .top_box .left_box2 .num {
  color: #FF6B00;
}
@media (max-width:480px) {
  .stickyBox .nav_cont .Equipment_con .box_info .left_box .top_box .left_box2,
  .stickyBox .nav_cont .Process_con .box_info .left_box .top_box .left_box2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .stickyBox .nav_cont .Equipment_con .box_info .left_box .top_box .left_box2 .num,
  .stickyBox .nav_cont .Process_con .box_info .left_box .top_box .left_box2 .num {
    width: 100%;
  }
}
.stickyBox .nav_cont .Equipment_con .box_info .left_box .top_box .right_box2,
.stickyBox .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;
}
.stickyBox .nav_cont .Equipment_con .box_info .left_box .top_box .right_box2 .num,
.stickyBox .nav_cont .Process_con .box_info .left_box .top_box .right_box2 .num {
  color: #FF6B00;
}
@media (max-width:480px) {
  .stickyBox .nav_cont .Equipment_con .box_info .left_box .top_box .right_box2,
  .stickyBox .nav_cont .Process_con .box_info .left_box .top_box .right_box2 {
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .stickyBox .nav_cont .Equipment_con .box_info .left_box .top_box .right_box2 .num,
  .stickyBox .nav_cont .Process_con .box_info .left_box .top_box .right_box2 .num {
    width: 100%;
  }
}
.stickyBox .nav_cont .Equipment_con .box_info .left_box .bottom_box,
.stickyBox .nav_cont .Process_con .box_info .left_box .bottom_box {
  margin-top: 0.4rem;
  line-height: 1.7;
  width: 97%;
}
.stickyBox .nav_cont .Equipment_con .box_info .right_box,
.stickyBox .nav_cont .Process_con .box_info .right_box {
  width: 25%;
}
.stickyBox .nav_cont .Equipment_con .list,
.stickyBox .nav_cont .Process_con .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 0.2rem;
  gap: 0.2rem;
}
.stickyBox .layui-form-select .layui-edge {
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIxLjUyMTggOC4wOTYwNkwxMi4wOTM4IDE3LjUyNDFMMi42NjU2NiA4LjA5NjA2IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8L3N2Zz4K") 0 0 no-repeat;
  background-size: 100% 100%;
  width: 0.16rem;
  height: 0.16rem;
}
.stickyBox .layui-form-select dl {
  width: 100%;
}
.stickyBox .layui-input {
  font-size: var(--font16);
  color: rgba(0, 0, 0, 0.6);
}
.stickyBox .filter {
  position: sticky;
  top: 0.7rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0.1rem 0;
  gap: 0.1rem;
  background: #ffffff;
  z-index: 9;
}
.stickyBox .filter .layui-form-item {
  margin: 0;
}
.stickyBox .filter .layui-input,
.stickyBox .filter .layui-select,
.stickyBox .filter .layui-textarea {
  height: 0.3rem;
  border-radius: 0.1rem;
}
.stickyBox .btn_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.1rem;
}
.stickyBox .buttons {
  gap: 0.1rem;
  margin: 0;
}
.stickyBox .buttons .btn {
  height: 0.3rem;
  padding: 0 0.26rem;
  font-size: var(--font16);
  color: #000;
}
.stickyBox .buttons .btn.type5 {
  font-weight: 600;
}
.stickyBox .clear_btn {
  color: rgba(0, 0, 0, 0.6);
}
.stickyBox .addToWish {
  margin-left: 0.6rem;
}
@media (max-width:480px) {
  .stickyBox .filter {
    flex-wrap: wrap;
  }
  .stickyBox .title {
    flex-wrap: wrap;
    padding-bottom: 0;
    border-bottom: none;
  }
  .stickyBox .title h1 {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    padding-bottom: 0.2rem;
    margin-bottom: 0.1rem;
  }
  .stickyBox .title .btn {
    flex: unset;
    margin-left: auto;
    font-size: var(--font16);
  }
  .stickyBox .title .switch {
    font-size: var(--font16);
    margin: 0.12rem 0;
    width: auto;
    justify-content: flex-end;
  }
  .stickyBox .layui-form-item {
    width: calc((100% - 0.2rem) / 3);
  }
  .stickyBox .btn {
    flex: 1;
  }
  .stickyBox .btn span {
    font-size: var(--font14);
  }
  .stickyBox .addToWish {
    margin-left: 0;
    padding: 0 0.18rem;
  }
  .stickyBox .layui-input,
  .stickyBox .layui-select,
  .stickyBox .layui-textarea {
    height: 0.4rem;
    font-size: var(--font12);
  }
  .stickyBox .nav_cont {
    margin-top: 0.2rem;
  }
}
@media (max-width:990px) {
  .stickyBox .nav_list {
    display: block;
  }
  .stickyBox .nav_list .scroll {
    white-space: nowrap;
    width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
  }
  .stickyBox .filter {
    top: 1.5rem;
  }
  .stickyBox .filter .layui-input-inline {
    width: calc((100% - 0.2rem) / 3);
  }
  .stickyBox .relatedProducts.productList {
    --column: 2;
  }
}
.idx_productDetailCon12,
.optionalCon3 {
  padding-top: 1.2rem;
}
.optionalCon3 {
  padding-top: 2rem;
}
@media (max-width:480px) {
  .optionalCon3 .addToWish {
    padding: 0 0.24rem;
  }
}
.pop-container {
  text-align: center;
  padding: 0.56rem 0.5rem;
  width: 9rem;
}
.pop-container img {
  width: 0.96rem;
  margin-bottom: 0.16rem;
}
.pop-container h1 {
  color: #000;
  font-size: var(--font30);
  font-weight: 600;
  line-height: 1.23333333;
  text-transform: uppercase;
  padding: 0;
}
.pop-container p {
  color: #000;
  font-size: var(--font18);
  font-weight: 400;
  line-height: 1.22222222;
  margin-top: 0.2rem;
}
.pop-container .closeBtn {
  height: 0.48rem;
  padding: 0 0.66rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  border-radius: 48px;
  border: 2px solid;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--active_color);
  cursor: pointer;
  margin-top: 0.6rem;
  width: fit-content;
}
.pop-container .closeBtn span {
  font-size: var(--font20);
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width:480px) {
  .pop-container {
    width: 90vw;
  }
}
.textareaBox {
  position: relative;
}
.textareaBox textarea::-webkit-resizer {
  opacity: 0;
}
.textareaBox:after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  width: 16px;
  height: 16px;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGxpbmUgeDE9IjEwLjcxNjgiIHkxPSI0LjM1MzU1IiB4Mj0iNC4zNTI4NyIgeTI9IjEwLjcxNzUiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjQiLz4KPGxpbmUgeDE9IjExLjQyMzkiIHkxPSI3Ljg4ODcxIiB4Mj0iNy44ODgzMyIgeTI9IjExLjQyNDIiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjQiLz4KPC9zdmc+Cg==") 0 0 no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
}
.textareaBox .layui-textarea {
  border-radius: 0.1rem;
  height: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.4);
  transition: none;
}
.textareaBox .layui-textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-size: var(--font16);
  font-weight: 600;
}
* {
  scrollbar-color: #c2c2c2 transparent;
  scrollbar-width: thin;
}
:root *::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #d4d6d700;
}
:root *::-webkit-scrollbar-thumb {
  background-color: #ff6b00;
  border-radius: 10px;
}
:root *::-webkit-scrollbar-track {
  border-radius: 0;
  background: rgba(226, 226, 226, 0);
}
.tableBox {
  border-bottom: 1px solid #cccccc;
}
.tableBox .layui-table-sort {
  height: 22px;
}
.tableBox .layui-table-sort .layui-edge {
  border-width: 6px;
}
.tableBox .layui-table-view .layui-table {
  width: 100%!important;
}
.tableBox .layui-input,
.tableBox .layui-select,
.tableBox .layui-textarea {
  height: 0.3rem;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000000;
  font-weight: bold;
}
.tableBox .layui-table-cell {
  padding: 0.1rem 0.1rem;
  padding-right: 0;
  color: #000;
  font-family: Montserrat;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.25;
}
.tableBox .layui-table-cell h3 {
  font-size: var(--font16);
  font-weight: 600;
}
.tableBox tr td:first-child .layui-table-cell,
.tableBox tr th:first-child .layui-table-cell {
  padding-right: 0;
  padding-left: 0;
  overflow: visible;
  z-index: 2;
}
.tableBox tr td:first-child .layui-table-cell:hover,
.tableBox tr th:first-child .layui-table-cell:hover {
  overflow: visible!important;
  z-index: 3;
}
.tableBox .layui-table-fixed {
  box-shadow: none!important;
}
.tableBox tr th:last-child.layui-table-patch {
  display: none;
}
.tableBox tr td:last-child .layui-table-cell .layui-form-checkbox[lay-skin=primary],
.tableBox tr th:last-child .layui-table-cell .layui-form-checkbox[lay-skin=primary],
.tableBox tr th.layui-table-col-special .layui-form-checkbox[lay-skin=primary] {
  top: 0;
  bottom: 0;
  position: absolute;
  margin: auto;
  height: 18px!important;
  right: 6px;
}
.tableBox tr td:last-child .layui-table-cell .layui-form-checkbox[lay-skin=primary]:not(.layui-form-checked) > i,
.tableBox tr th:last-child .layui-table-cell .layui-form-checkbox[lay-skin=primary]:not(.layui-form-checked) > i,
.tableBox tr th.layui-table-col-special .layui-form-checkbox[lay-skin=primary]:not(.layui-form-checked) > i {
  background: #F2F2F2;
}
.tableBox .layui-table td,
.tableBox .layui-table th,
.tableBox .layui-table-col-set,
.tableBox .layui-table-fixed-r,
.tableBox .layui-table-grid-down,
.tableBox .layui-table-header,
.tableBox .layui-table-mend,
.tableBox .layui-table-page,
.tableBox .layui-table-tips-main,
.tableBox .layui-table-tool,
.tableBox .layui-table-total,
.tableBox .layui-table-view,
.tableBox .layui-table[lay-skin=line],
.tableBox .layui-table[lay-skin=row] {
  border: none;
}
.tableBox .layui-table-view {
  border: none;
}
.tableBox .layui-table td,
.tableBox .layui-table-header,
.tableBox .layui-table-header th {
  border-bottom: 1px solid #cccccc;
}
.tableBox .layui-table tr:last-child td {
  border-bottom: 1px solid #cccccc;
}
.tableBox .layui-table th {
  background: rgba(0, 0, 0, 0.6);
}
.tableBox .layui-table th .layui-table-cell {
  font-size: var(--font14);
  color: #ffffff;
  padding: 0 0 0 0.1rem;
  height: 30px;
  line-height: 30px;
}
.tableBox .layui-table-checked {
  background: none;
}
.tableBox .layui-table-fixed .layui-table-box:hover {
  z-index: 9;
}
.tableBox .delete {
  width: var(--font24);
  height: var(--font24);
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTQgNi4xNzY0N0gyME05IDNIMTVNMTAgMTYuNzY0N1YxMC40MTE4TTE0IDE2Ljc2NDdWMTAuNDExOE0xNS41IDIxSDguNUM3LjM5NTQzIDIxIDYuNSAyMC4wNTE5IDYuNSAxOC44ODI0TDYuMDQzNCA3LjI3OTM3QzYuMDE5NzMgNi42Nzc4MyA2LjQ3MzkyIDYuMTc2NDcgNy4wNDI1MyA2LjE3NjQ3SDE2Ljk1NzVDMTcuNTI2MSA2LjE3NjQ3IDE3Ljk4MDMgNi42Nzc4MyAxNy45NTY2IDcuMjc5MzdMMTcuNSAxOC44ODI0QzE3LjUgMjAuMDUxOSAxNi42MDQ2IDIxIDE1LjUgMjFaIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC42IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJzcXVhcmUiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==") 0 0 no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
  cursor: pointer;
}
.tableBox .collection {
  width: var(--font24);
  height: var(--font24);
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAdNJREFUeAHtVMttwkAQXZuPOCYdkA5IB1BBQgXYFxDikHSQUEHIASG4YCogHUAqiEtwCRwR37znzEZ42QB2rjzJ9no/783MzoxSV5yBY06Mx+Ob1Wr17DjOw36/r8SbHGeOcdBqtSb8HwwGXi6Xa2CuKushxpNisRj4vr/4UwAHy67rzjAsK5s1IMJnoYktiHa7Xa3dbkd6wrWRkwhPFRbd8sEhn4fpkZCTwOMavHK4V+ZiDkZB8+Z/lVz3USyPCoVCzXA1gAFzMUCZVjabzU+Q3q/X6xmNQIifMN1NhGg0Gn1xkdbwgMoAGFEVIyJ4dpcIkb7QrOREqVQKZVjWc6656TB+aWFmkCkQ8bVcLisqIxgiGYY2gQ++cAcNlRGsDX4R7mMBZMa7CHhMWZUSPANiTwS6RwKSdj2xZJrmLrhXpzA5rIVGoHCoHBcUcvpNXQjkPQ0r86xwKKsAs4BFpH7agYfaGJ/hVsPhMMCHsY/bxMlepNHv9yv5fJ4u37DRbbdb/9BtgmGBl1NpHYvNZlPrdDqhyWUVIIzGl2hiYsBUr4G8biM/KWARIXR8X+LDaIrwrm56d7GABuJMwldjuscLtVVvagFCGll86ayV//SsKxL4Bu6v+NpPAtjLAAAAAElFTkSuQmCC") 0 0 no-repeat;
  background-size: 100% 100%;
  margin: 0;
  cursor: pointer;
  margin-left: auto;
}
.tableBox .collection.isCollection {
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAM5JREFUeAHtlN0NwjAMhK+dgBEyQjeAEdgANoANYIOuwgaMkG4QNmCE4EguskKixpV56yfdS+Lc1c0PsKElAjvSneRJkfUknUTNmcfm+VR7TWuXzB0piIW5fGacK611a81bFWQnvcg4opauw5EuKHTgDb7+28Xs24mACEM69u7xZ2TAC3ZMpYAH7Jh+RviYWm2yK8bSxGhgPqIGPxPB6pLVQtKveq80d2iBCgdlSKodoCG2v01Bba4I8dHi/SKTW+m0LG6oMuTA3STtsWHFBzDuaPHXk4xGAAAAAElFTkSuQmCC") 0 0 no-repeat;
  background-size: 100% 100%;
}
.tableBox .image {
  width: 0.8rem;
  height: 0.8rem;
  position: relative;
}
.tableBox .image img {
  max-width: unset;
  max-height: unset;
}
.tableBox .image a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.tableBox .image:hover {
  z-index: 9;
}
.tableBox .image:hover .hover {
  display: block;
}
.tableBox .image:hover .thumb {
  display: none;
}
.tableBox .image .thumb {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tableBox .image .hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  display: none;
  z-index: 2;
}
.tableBox .download a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-bottom: 0.1rem;
}
.tableBox .download a:after {
  content: '';
  width: 0.18rem;
  height: 0.2rem;
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAUCAYAAACAl21KAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAANJJREFUeAHtlG0RwjAMhgM3AZMQCUgABVioBBxgAQcDJUUCDjYH4GC86dLR69G12/jJc/deb5ePJr0lRB92kIWeUJ+Q2BqIKWKjp1GHF3TV8xsM7aEaOkCP2NhrNTXlEf9Wq+PQ0KiBqRzWmDa83Pc9F3lT34lDPs60jJOPrxIOdjrePbRwgY6Q2dJ67hBXmRuLWdvayC9ac/xbyyMVyaSXDGsK1hzjDlqSjGkYXDer4fDxjCS1xkgsx4uto+GX7wqSmOC8UVSmJJtateHKtdqN4w04hzznKd7k4QAAAABJRU5ErkJggg==") 0 0 no-repeat;
  background-size: 100% 100%;
  margin-left: 0.06rem;
}
.tableBox .download a:hover {
  color: var(--active_color);
}
.tableBox .download a:hover:after {
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAUCAYAAACAl21KAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAUdJREFUeAG1lD1Ow0AQhd9aUNBZ0FIkF0BOR4lvAD1IpqGAgtDRQU4AFCBEY3MABBWtU9KFnoJcAOSOAoVlnsfBAdkGHOeTLI93Zp9n9mcMMuwuPBiciOnJ46KYBBZ3+EDPXGI46TCZSCBWiL9DQd9c4PFLyHbRwjue8X8SjNAZZ+aIyBHq4crsWBJxVQhYR11MWs1tato9qbaK/VjfZ355jMWxg2YImhGSEpvKCDMSWmrp4i575TPoOxxobKkQ928xE1spOBWrgfoWXPzc6+9Cr0Pd5hd578jx8Lu5j/ZmqD7GMHaC4nPEP26FmtVbot/kqQ9cbegYqjIaw0BOiE9zkYdIMykQIXPg5StrGzcH+cT7HipIWBrvwBqmwSIyWUMbYBpGaDtpc7LYRn0C9qR0sUUswjzaYkbQNfsNxvQlgY45xzUHPgFlQ2MPU5dOYwAAAABJRU5ErkJggg==") 0 0 no-repeat;
  background-size: 100% 100%;
}
.optionalCon .section_til {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.optionalCon .section_til .control_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.2rem;
}
@media (max-width:480px) {
  .optionalCon .section_til .control_box {
    display: none;
  }
}
.optionalCon .section_til .control_box .pre_btn,
.optionalCon .section_til .control_box .next_btn {
  cursor: pointer;
  width: 0.4rem;
  height: 0.4rem;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iLTAuNSIgeT0iMC41IiB3aWR0aD0iMzkiIGhlaWdodD0iMzkiIHJ4PSIxOS41IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSAzOSAwKSIgc3Ryb2tlPSJibGFjayIvPgo8cGF0aCBkPSJNMjUgMzBMMTUgMjBMMjUgMTAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+Cjwvc3ZnPgo=") 0 0 no-repeat;
  background-size: 100% 100%;
}
.optionalCon .section_til .control_box .pre_btn:hover,
.optionalCon .section_til .control_box .next_btn:hover {
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjgwIiBoZWlnaHQ9IjgwIiByeD0iNDAiIGZpbGw9IiNGRjZCMDAiLz4KPHBhdGggZD0iTTQ3LjUgMjVMMzIuNSA0MEw0Ny41IDU1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgo8L3N2Zz4K") 0 0 no-repeat;
  background-size: 100% 100%;
}
.optionalCon .section_til .control_box .pre_btn.swiper-button-disabled,
.optionalCon .section_til .control_box .next_btn.swiper-button-disabled {
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMC41IiB5PSIwLjUiIHdpZHRoPSIzOSIgaGVpZ2h0PSIzOSIgcng9IjE5LjUiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjQiLz4KPHBhdGggZD0iTTI1IDEwTDE1IDIwTDI1IDMwIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC40IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgo8L3N2Zz4K") 0 0 no-repeat;
  background-size: 100% 100%;
}
.optionalCon .section_til .control_box .next_btn {
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMC41IiB5PSIwLjUiIHdpZHRoPSIzOSIgaGVpZ2h0PSIzOSIgcng9IjE5LjUiIHN0cm9rZT0iYmxhY2siLz4KPHBhdGggZD0iTTE1IDMwTDI1IDIwTDE1IDEwIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgo8L3N2Zz4K") 0 0 no-repeat;
  background-size: 100% 100%;
}
.optionalCon .section_til .control_box .next_btn:hover {
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjgwIiBoZWlnaHQ9IjgwIiByeD0iNDAiIGZpbGw9IiNGRjZCMDAiLz4KPHBhdGggZD0iTTMyLjUgNTVMNDcuNSA0MEwzMi41IDI1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgo8L3N2Zz4K") 0 0 no-repeat;
  background-size: 100% 100%;
}
.optionalCon .section_til .control_box .next_btn.swiper-button-disabled {
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iLTAuNSIgeT0iMC41IiB3aWR0aD0iMzkiIGhlaWdodD0iMzkiIHJ4PSIxOS41IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSAzOSAwKSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuNCIvPgo8cGF0aCBkPSJNMTUgMTBMMjUgMjBMMTUgMzAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjQiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+Cjwvc3ZnPgo=") 0 0 no-repeat;
  background-size: 100% 100%;
}
.optionalCon .m_control_box {
  display: none;
}
@media (max-width:480px) {
  .optionalCon .m_control_box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.4rem;
    margin-top: 0.4rem;
  }
  .optionalCon .m_control_box .pre_btn,
  .optionalCon .m_control_box .next_btn {
    cursor: pointer;
    width: 0.5rem;
    height: 0.5rem;
    background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iLTAuNSIgeT0iMC41IiB3aWR0aD0iMzkiIGhlaWdodD0iMzkiIHJ4PSIxOS41IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSAzOSAwKSIgc3Ryb2tlPSJibGFjayIvPgo8cGF0aCBkPSJNMjUgMzBMMTUgMjBMMjUgMTAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+Cjwvc3ZnPgo=") 0 0 no-repeat;
    background-size: 100% 100%;
  }
  .optionalCon .m_control_box .pre_btn.swiper-button-disabled,
  .optionalCon .m_control_box .next_btn.swiper-button-disabled {
    background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMC41IiB5PSIwLjUiIHdpZHRoPSIzOSIgaGVpZ2h0PSIzOSIgcng9IjE5LjUiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjQiLz4KPHBhdGggZD0iTTI1IDEwTDE1IDIwTDI1IDMwIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC40IiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgo8L3N2Zz4K") 0 0 no-repeat;
    background-size: 100% 100%;
  }
  .optionalCon .m_control_box .next_btn {
    background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMC41IiB5PSIwLjUiIHdpZHRoPSIzOSIgaGVpZ2h0PSIzOSIgcng9IjE5LjUiIHN0cm9rZT0iYmxhY2siLz4KPHBhdGggZD0iTTE1IDMwTDI1IDIwTDE1IDEwIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjMiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgo8L3N2Zz4K") 0 0 no-repeat;
    background-size: 100% 100%;
  }
  .optionalCon .m_control_box .next_btn.swiper-button-disabled {
    background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iLTAuNSIgeT0iMC41IiB3aWR0aD0iMzkiIGhlaWdodD0iMzkiIHJ4PSIxOS41IiB0cmFuc2Zvcm09Im1hdHJpeCgtMSAwIDAgMSAzOSAwKSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuNCIvPgo8cGF0aCBkPSJNMTUgMTBMMjUgMjBMMTUgMzAiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjQiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+Cjwvc3ZnPgo=") 0 0 no-repeat;
    background-size: 100% 100%;
  }
}
.optionalCon1 {
  position: relative;
  font-size: var(--font16);
  color: #000;
  font-weight: 400;
}
.optionalCon1 .w1480 {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 0.4rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
}
.optionalCon1 .left {
  position: sticky;
  margin: 0;
  left: 0;
  top: 0.4rem;
}
.optionalCon1 .right {
  flex: 1;
  padding-left: 0.8rem;
}
.optionalCon1 .right .item {
  margin-top: 0.4rem;
}
.optionalCon1 .right .Coac {
  font-size: var(--font24);
}
.optionalCon1 .right .row {
  line-height: 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  color: rgba(0, 0, 0, 0.6);
}
.optionalCon1 .right .row del {
  color: rgba(0, 0, 0, 0.6);
}
.optionalCon1 .right .row:last-child {
  margin-bottom: 0;
}
.optionalCon1 .right .row p:first-child {
  width: 2rem;
}
.optionalCon1 .right .row p:last-child {
  flex: 1;
  text-align: left;
  color: #000000;
  line-height: 0.3rem;
}
.optionalCon1 .right .row .column,
.optionalCon1 .right .row .layui-form-item {
  flex: 1;
  margin: 0;
  text-align: left;
  color: #000000;
  line-height: calc(20/16);
}
.optionalCon1 .right .row .column .layui-input,
.optionalCon1 .right .row .layui-form-item .layui-input,
.optionalCon1 .right .row .column .layui-select,
.optionalCon1 .right .row .layui-form-item .layui-select,
.optionalCon1 .right .row .column .layui-textarea,
.optionalCon1 .right .row .layui-form-item .layui-textarea {
  height: 0.4rem;
  padding: 0 0.1rem;
  width: 2rem;
  border-radius: 0.05rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.05);
  font-weight: 600;
}
.optionalCon1 .right .row .column .layui-input-suffix,
.optionalCon1 .right .row .layui-form-item .layui-input-suffix {
  color: rgba(0, 0, 0, 0.6);
}
.optionalCon1 .right .info .row {
  align-items: flex-start;
}
.optionalCon1 .right .info .row p:first-child {
  width: fit-content;
  white-space: nowrap;
  padding-right: 0.23rem;
}
.optionalCon1 .right h3 {
  font-size: var(--font16);
  font-weight: 600;
  line-height: 1.25;
  color: #000000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding-bottom: 0.2rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.optionalCon1 .right h3.row {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-bottom: 0.1rem;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}
.optionalCon1 .right h3.row > span {
  font-size: var(--font16);
  font-weight: 600;
  line-height: 1.25;
  color: #000000;
}
.optionalCon1 .configuration .row {
  padding: 0.1rem 0rem;
}
.optionalCon1 .downloadBtn {
  justify-content: flex-end;
  margin-top: 0!important;
}
.optionalCon1 .downloadBtn .btn {
  height: 0.3rem;
  padding: 0 0.2rem;
  border: 1px solid #000;
  flex: unset;
  color: #000;
  text-align: center;
  font-size: var(--font16);
  font-weight: 400;
  text-transform: none;
  gap: 0.12rem;
}
.optionalCon1 .downloadBtn .btn img {
  width: 0.18rem;
}
.optionalCon1 .downloadBtn .btn:hover:not(.noHover) img,
.optionalCon1 .downloadBtn .btn.active:not(.noHover) img {
  filter: invert(1);
}
.optionalCon1 .swiper-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
.optionalCon1 .swiper-box img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.optionalCon1 .swiper-slide {
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.optionalCon1 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.optionalCon1 .thumb {
  position: relative;
  width: 100%;
  height: 1.28rem;
  margin-top: 0.2rem;
}
.optionalCon1 .thumb .swiper-slide {
  width: 1.28rem;
  margin-right: 0.2rem;
  cursor: pointer;
  border: 1px solid #cccccc;
}
.optionalCon1 .thumb .swiper-slide.active {
  border-color: var(--active_color);
}
.optionalCon1 .thumb .swiper-slide:last-child {
  margin-right: 0;
}
.optionalCon1 .main {
  position: relative;
  width: 7.2rem;
  height: 7.2rem;
}
.optionalCon1 .swiper-button-disabled {
  opacity: 0.6;
  cursor: no-drop;
}
.optionalCon1 .swiper-button-disabled:hover {
  color: #ffffff;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.optionalCon1 .title {
  font-size: var(--font24);
  font-weight: 600;
  color: #000000;
}
.optionalCon1 h1 {
  color: #FF6B00;
  font-size: var(--font40);
  font-weight: 600;
  line-height: 1.225;
  text-transform: uppercase;
}
.optionalCon1 h2 {
  font-size: var(--font24);
  font-weight: 600;
  line-height: 1.20833333;
  margin-top: 0.08rem;
}
.optionalCon1 .icons {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  gap: 0.1rem;
  margin-top: 0.2rem;
}
.optionalCon1 .icons img {
  height: 0.6rem;
}
.optionalCon1 .download {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
}
.optionalCon1 .download .layui-form-item {
  margin-bottom: 0.12rem;
  width: 33%;
  padding-right: 0.1rem;
}
.optionalCon1 .download .layui-form-item .layui-form-checkbox[lay-skin=primary]:hover > i {
  border: 1px solid #d2d2d2;
  color: rgba(0, 0, 0, 0);
}
.optionalCon1 .download .layui-form-item .layui-form-checkbox[lay-skin=primary] i:hover {
  border-color: var(--active_color);
}
.optionalCon1 .download .layui-form-item .layui-form-checkbox[lay-skin=primary].layui-form-checked:hover > i {
  color: #fff;
}
@media (max-width: 1560px) {
  .optionalCon1 .download .layui-form-item {
    width: 50%;
  }
}
.optionalCon1 .download .row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  max-width: 100%;
  line-height: 1.75;
}
.optionalCon1 .download .row a:hover p {
  color: var(--active_color);
}
.optionalCon1 .download .row a:hover .icon {
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAUCAYAAACAl21KAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAUdJREFUeAG1lD1Ow0AQhd9aUNBZ0FIkF0BOR4lvAD1IpqGAgtDRQU4AFCBEY3MABBWtU9KFnoJcAOSOAoVlnsfBAdkGHOeTLI93Zp9n9mcMMuwuPBiciOnJ46KYBBZ3+EDPXGI46TCZSCBWiL9DQd9c4PFLyHbRwjue8X8SjNAZZ+aIyBHq4crsWBJxVQhYR11MWs1tato9qbaK/VjfZ355jMWxg2YImhGSEpvKCDMSWmrp4i575TPoOxxobKkQ928xE1spOBWrgfoWXPzc6+9Cr0Pd5hd578jx8Lu5j/ZmqD7GMHaC4nPEP26FmtVbot/kqQ9cbegYqjIaw0BOiE9zkYdIMykQIXPg5StrGzcH+cT7HipIWBrvwBqmwSIyWUMbYBpGaDtpc7LYRn0C9qR0sUUswjzaYkbQNfsNxvQlgY45xzUHPgFlQ2MPU5dOYwAAAABJRU5ErkJggg==") 0 0 no-repeat;
  background-size: 100% 100%;
}
.optionalCon1 .download .row p {
  width: auto!important;
  white-space: pre-line;
  word-break: break-word;
  display: inline;
}
.optionalCon1 .download .row .icon {
  display: inline-block;
  width: var(--font16);
  aspect-ratio: 0.9;
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAUCAYAAACAl21KAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAANJJREFUeAHtlG0RwjAMhgM3AZMQCUgABVioBBxgAQcDJUUCDjYH4GC86dLR69G12/jJc/deb5ePJr0lRB92kIWeUJ+Q2BqIKWKjp1GHF3TV8xsM7aEaOkCP2NhrNTXlEf9Wq+PQ0KiBqRzWmDa83Pc9F3lT34lDPs60jJOPrxIOdjrePbRwgY6Q2dJ67hBXmRuLWdvayC9ac/xbyyMVyaSXDGsK1hzjDlqSjGkYXDer4fDxjCS1xkgsx4uto+GX7wqSmOC8UVSmJJtateHKtdqN4w04hzznKd7k4QAAAABJRU5ErkJggg==") 0 0 no-repeat;
  background-size: 100% 100%;
  margin-left: 0.06rem;
  transform: translateY(20%);
}
.optionalCon1 .download .layui-form-checkbox[lay-skin=primary] > i {
  position: absolute;
  top: 50%;
  margin-top: -1px;
  transform: translateY(-50%);
}
.optionalCon1 .download .layui-form-checkbox[lay-skin=primary] {
  max-width: 100%;
  height: calc(var(--font16) * 1.75) !important;
  min-height: unset;
}
.optionalCon1 .download .layui-form-checkbox[lay-skin=primary] > div {
  padding-right: 0;
  width: 100%;
}
.optionalCon1 .download .layui-form-item .layui-form-checkbox[lay-skin=primary] {
  margin-top: 0;
}
.optionalCon1 .download .layui-form-checkbox[lay-skin=primary] > div {
  color: unset;
  line-height: 1.75;
}
.optionalCon1 .download .buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 0.18rem;
  gap: 0.2rem;
}
.optionalCon1 .download .btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 0.36rem;
  border: 1px solid #000;
  font-size: var(--font16);
  font-weight: 400;
  color: #000000;
}
.optionalCon1 .download .btn .icon {
  width: 0.18rem;
  height: 0.2rem;
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAUCAYAAACAl21KAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAQtJREFUeAG1VIERgjAMjJ4DMEJGYATdQDfoCDqB5wZuAE7gCLiBbgAb6AaY0OQsuRbh0L/7K1ySJy35AnyQEyvik9gmyLGCiGCwkNVJwotYyhoDEtfEjLghPmywlW4y+A7Or6U7DAOFBBDGA6WmDj+u+54KPlPdSQd+OQ4UVGGywV7rlzAPZ+KN6OYKgQjhL4Q6/E0IwR9sPlDDsTuYcYl1pGLbSMxBYnCtUAN+9Hm9gv+9Cn4uTE4PsTnKREiNqqaNdcO1beqw2bQ78HOihaV0EjX0SgIpsx6CwlMiBzVH76Axzo+JsHE7r4bmwwkimdRwLdqLrQE/8s0IEResFzBtstjQVRteub3BfQOcUVPNPg6sbAAAAABJRU5ErkJggg==") 0 0 no-repeat;
  background-size: 100% 100%;
}
.optionalCon1 .download .btn:hover,
.optionalCon1 .download .btn.active {
  border-color: var(--active_color);
  background: var(--active_color);
  color: #fff;
}
.optionalCon1 .download .btn:hover .icon,
.optionalCon1 .download .btn.active .icon {
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAUCAYAAACAl21KAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAShJREFUeAG1VAERwjAMzDgETEIlIIE5AAeTAAo4HOCgoAAJwwE4YA6Yg/LZMi7r2o3d4O/+0mvab9okJRI451ZgAb5cHOyzoCEPiYjkMBaswLPYEAy4BlMwS5LkQSoSI6dxNCmNQNY/JTqjHVYchr6EEnt+Dm/vTRMhb1rfpJ1gHAY2FJ/Ffd+u3b+gGcBjn2BuYD5LSHADzS+EavxHSNLKj7uKbZBs3f1yCUXEC1hsExDJ2UdNZccjQhZKmAxke+X0KhEeW/FlsrZzSq+OuFrBq2pUF2sj3suO4GPjtArcYnhS1zhjjiMJNvSSmk5PI4J7HFbJ+EhhmFpD/UGjne9DNa/tNJ+b9gOksodh/I+tpKbkyxEdjj5vLa598cO0bvirdSqThS7cN3BsZukY99faAAAAAElFTkSuQmCC") 0 0 no-repeat;
  background-size: 100% 100%;
}
.optionalCon1 .addToWish {
  flex: unset;
  width: 4rem;
}
.optionalCon1 .formOptions h4 {
  margin-bottom: 0.1rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font16);
  line-height: 1.75;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.optionalCon1 .formOptions .checkTag {
  padding: 0;
}
.optionalCon1 .formOptions .checkTag > * .layui-form-checkbox {
  height: auto!important;
  border-radius: 0.04rem;
  padding: 0 0.05rem !important;
}
.optionalCon1 .formOptions .checkTag > * .layui-form-checkbox > div {
  line-height: 0.2rem;
  text-transform: uppercase;
}
.optionalCon1 .formOptions .layui-form-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.1rem;
  margin-bottom: 0.21rem;
}
.optionalCon1 .formOptions .layui-input-inline {
  width: calc((100% - 0.1rem) / 2);
  margin: 0;
}
.optionalCon1 .formOptions .layui-form-item .layui-form-checkbox[lay-skin=primary] {
  margin: 0;
  padding: 0;
  width: 100%;
}
.optionalCon1 .formOptions .layui-form-item .layui-form-checkbox[lay-skin=primary].layui-form-checked .row,
.optionalCon1 .formOptions .layui-form-item .layui-form-checkbox[lay-skin=primary]:hover .row {
  border: 1px solid var(--active_color);
}
.optionalCon1 .formOptions .layui-form-item .layui-form-checkbox[lay-skin=primary] > div {
  margin: 0;
  padding: 0;
  width: 100%;
}
.optionalCon1 .formOptions .layui-form-item .layui-form-checkbox[lay-skin=primary] > i {
  display: none;
}
.optionalCon1 .formOptions .layui-form-item .layui-form-checkbox[lay-skin=primary] .row {
  color: #000000;
  font-size: var(--font16);
  height: var(--font30);
  line-height: var(--font30);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.1rem;
  border-radius: 0.1rem;
  background: #F2F2F2;
}
.optionalCon1 .buttons {
  margin-top: 0.4rem;
}
@media (max-width:480px) {
  .optionalCon1 .w1480 {
    flex-direction: column;
  }
  .optionalCon1 .left {
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    bottom: unset;
    width: 100%;
  }
  .optionalCon1 .left .main {
    width: 100%;
    height: 7.02rem;
  }
  .optionalCon1 .left .swiper-box {
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    bottom: unset;
  }
  .optionalCon1 .right {
    padding-left: 0;
    margin-top: 0.4rem;
  }
  .optionalCon1 .download {
    margin-top: 0.2rem;
  }
  .optionalCon1 .download .layui-form-checkbox[lay-skin=primary] > i {
    margin-top: 0.8em;
    transform: translateY(-50%);
  }
  .optionalCon1 .download .layui-form-item {
    width: 50%;
  }
  .optionalCon1 .download .layui-form-item .row {
    font-size: var(--font14);
  }
  .optionalCon1 .download .layui-form-item .icon {
    margin-left: 0.12rem;
  }
  .optionalCon1 .download .buttons .btn {
    padding: 10px 0;
    flex: 1;
    justify-content: center;
    font-size: var(--font12);
    white-space: nowrap;
  }
}
.buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 0.18rem;
  gap: 0.2rem;
}
.buttons .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  flex: 1;
  height: 0.48rem;
  border-radius: 48px;
  border: 1px solid rgba(0, 0, 0, 0.6);
  padding: 0 0.3rem;
  cursor: pointer;
  color: #000;
  text-align: center;
  font-size: var(--font20);
  line-height: normal;
  text-transform: uppercase;
  gap: 0.1rem;
  white-space: nowrap;
}
.buttons .btn .icon {
  width: 0.18rem;
  height: 0.2rem;
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAUCAYAAACAl21KAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAQtJREFUeAG1VIERgjAMjJ4DMEJGYATdQDfoCDqB5wZuAE7gCLiBbgAb6AaY0OQsuRbh0L/7K1ySJy35AnyQEyvik9gmyLGCiGCwkNVJwotYyhoDEtfEjLghPmywlW4y+A7Or6U7DAOFBBDGA6WmDj+u+54KPlPdSQd+OQ4UVGGywV7rlzAPZ+KN6OYKgQjhL4Q6/E0IwR9sPlDDsTuYcYl1pGLbSMxBYnCtUAN+9Hm9gv+9Cn4uTE4PsTnKREiNqqaNdcO1beqw2bQ78HOihaV0EjX0SgIpsx6CwlMiBzVH76Axzo+JsHE7r4bmwwkimdRwLdqLrQE/8s0IEResFzBtstjQVRteub3BfQOcUVPNPg6sbAAAAABJRU5ErkJggg==") 0 0 no-repeat;
  background-size: 100% 100%;
}
.buttons .btn img {
  width: var(--font16);
}
.buttons .btn .select {
  width: 0.16rem;
  height: 0.16rem;
  margin-left: 0.12rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNiAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0Ljg0OTMgMC43MDc3ODZMNy43NzgyIDcuNzc4ODVMMC43MDcxMzEgMC43MDc3ODYiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjYiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K") center center no-repeat;
  background-size: 100% auto;
}
.buttons .btn:not(.noHover):hover,
.buttons .btn.active {
  background: rgba(0, 0, 0, 0.4);
  border-color: transparent;
  color: #fff !important;
}
.buttons .btn:not(.noHover):hover .icon,
.buttons .btn.active .icon {
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAUCAYAAACAl21KAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAShJREFUeAG1VAERwjAMzDgETEIlIIE5AAeTAAo4HOCgoAAJwwE4YA6Yg/LZMi7r2o3d4O/+0mvab9okJRI451ZgAb5cHOyzoCEPiYjkMBaswLPYEAy4BlMwS5LkQSoSI6dxNCmNQNY/JTqjHVYchr6EEnt+Dm/vTRMhb1rfpJ1gHAY2FJ/Ffd+u3b+gGcBjn2BuYD5LSHADzS+EavxHSNLKj7uKbZBs3f1yCUXEC1hsExDJ2UdNZccjQhZKmAxke+X0KhEeW/FlsrZzSq+OuFrBq2pUF2sj3suO4GPjtArcYnhS1zhjjiMJNvSSmk5PI4J7HFbJ+EhhmFpD/UGjne9DNa/tNJ+b9gOksodh/I+tpKbkyxEdjj5vLa598cO0bvirdSqThS7cN3BsZukY99faAAAAAElFTkSuQmCC") 0 0 no-repeat;
  background-size: 100% 100%;
}
.buttons .btn:not(.noHover):hover img,
.buttons .btn.active img {
  filter: grayscale(1) brightness(1000%) contrast(1);
}
.buttons .btn.grayHover:hover,
.buttons .btn.grayHover.active {
  background: rgba(0, 0, 0, 0.4);
  border-color: transparent;
}
.buttons .btn.type2 {
  border-color: var(--active_color);
  color: var(--active_color);
}
.buttons .btn.type2:hover,
.buttons .btn.type2.active {
  background: var(--active_color);
  border-color: transparent;
  color: #fff !important;
}
.buttons .btn.type3 {
  border-color: rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.4);
}
.buttons .btn.type3:hover,
.buttons .btn.type3.active {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-color: transparent;
}
.buttons .btn.type4 {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #ffffff;
}
.buttons .btn.type4:hover,
.buttons .btn.type4.active {
  background: rgba(0, 0, 0, 0.4);
  border-color: transparent;
}
.buttons .btn.type5 {
  border-color: var(--active_color);
  background: var(--active_color);
  color: #ffffff;
}
.buttons .btn.type5:hover,
.buttons .btn.type5.active {
  background: rgba(255, 107, 0, 0.6);
  border-color: transparent;
}
@media (max-width:480px) {
  .buttons .btn {
    font-size: var(--font16);
  }
}
.layui-form-checkbox[lay-skin=primary] > i {
  border-radius: 4px;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.05);
}
.layui-form-checkbox[lay-skin=primary]:hover > i {
  border-color: var(--active_color);
  color: transparent;
}
.layui-form-checkbox[lay-skin=primary].layui-form-checked > i {
  background: var(--active_color);
  color: #ffffff;
  font-weight: bold;
}
.heartAnimate {
  position: fixed;
  transform: translate(-50%, -50%);
  animation: zoomInC 0.5s forwards;
  transition: all 0.5s ease-in-out;
  z-index: 9999999999;
}
.heartAnimate i {
  display: block;
  width: 30px;
  height: 27px;
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAMNJREFUeAGtlNENwjAMRA8m6AgZgVG6QTsKG8AGwASICRih3aBskG5gbNVBIaKkbXzSfbQ5PTmOZUBFgGOf2J5N7IF9kf9RpkoyPs2EYBOFUgv4oJ7LiJu4MsrYZ2Ah46Alk5HPO7kS0h5s10uABEPt2SPsNAqwh516AT5gp1sYVk/lLzx8sPxRGwDbr1plhkrm72cD+KDbAOtmO6r9XAOVbIV/Uuh9AeyZhSXg4+qeLYC2NK2veKPUKBFN6+2qV3S5/BvtnF3hwpl6OAAAAABJRU5ErkJggg==") 0 0 no-repeat;
  background-size: 100% 100%;
}
.heartAnimate.move {
  animation: zoomOutC 0.5s 0.5s forwards;
}
.heartAnimate.move i {
  animation: heartBeat 0.5s linear;
}
@keyframes zoomInC {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  70% {
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes zoomOutC {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  30% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(0);
  }
}
@keyframes heartBeat {
  50% {
    transform: translateY(-200%);
  }
}
.optionalCon2 .stickyBox {
  padding-top: 0.4rem;
}
.relatedProducts {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}
.relatedProducts .section_til {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding-bottom: 0.2rem;
  font-size: var(--font40);
}
.relatedProducts .section_til .line {
  position: absolute;
  left: 0;
  bottom: 0;
}
.relatedProducts .swiper-box {
  width: 100%;
  margin-top: 0.4rem;
  clip-path: inset(0 -9999px 0 0);
}
.relatedProducts .swiper-box .swiper-slide {
  width: 3.4rem;
  min-height: 5.6rem;
  margin-right: 0.4rem;
}
.relatedProducts .swiper-box .swiper-slide:last-child {
  margin-right: 0;
}
.relatedProducts .product_item {
  cursor: pointer;
}
.relatedProducts .product_item .pb {
  padding: 0;
  height: 3.4rem;
  position: relative;
  background: #F2F2F2;
}
.relatedProducts .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;
}
.relatedProducts .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%;
}
.relatedProducts .product_item .pb .ab .img img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.relatedProducts .product_item .pb .new_img {
  position: absolute;
  top: 0;
  left: 0.2rem;
  display: none;
}
.relatedProducts .product_item .pb .hot_img {
  position: absolute;
  top: 0;
  left: 0.2rem;
  display: none;
}
.relatedProducts .product_item .productTag {
  right: auto;
  left: 0.1rem;
  top: 0.1rem;
}
.relatedProducts .product_item .tags {
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.04rem;
  width: 100%;
  flex-wrap: wrap;
}
.relatedProducts .product_item .tags .productTag {
  position: relative;
  left: unset;
  top: unset;
  right: unset;
  bottom: unset;
}
.relatedProducts .product_item .word .t1 {
  margin-top: 0.2rem;
  line-height: calc(26/21);
  font-size: var(--font21);
}
.relatedProducts .product_item .word .t2 {
  margin-top: 0.08rem;
  line-height: calc(20/16);
  font-size: var(--font16);
}
.relatedProducts .product_item .word .t3 {
  margin-top: 0.12rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font14);
}
.relatedProducts .product_item .word .t3 * {
  word-break: break-all;
  white-space: pre-line;
}
.relatedProducts .product_item .word .t3 b {
  color: var(--active_color);
}
.relatedProducts .product_item.new .pb .new_img {
  display: block;
}
.relatedProducts .product_item.hot .pb .hot_img {
  display: block;
}
.relatedProducts .product_item.col .pb .col_img {
  opacity: 1;
  pointer-events: auto;
}
.relatedProducts .product_item:hover .pb .ab .img {
  transform: scale(1.1);
}
.relatedProducts .product_item:hover.nocol .pb .nocol_img {
  opacity: 1;
  pointer-events: auto;
}
.relatedProducts .product_item:hover.col .pb .col_img {
  opacity: 1;
  pointer-events: auto;
}
.relatedProducts.productList {
  --gap: 0.4rem;
  --paddingR: 0rem;
  --column: 4;
  --column2: 2;
  width: calc(100% + var(--paddingR));
  gap: var(--gap);
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-top: 0.4rem;
  margin-bottom: 0;
}
.relatedProducts.productList .product_item {
  width: calc((100% - var(--paddingR) - calc((var(--column) - 1) * var(--gap))) / var(--column));
}
.relatedProducts.productList .product_item.column2 {
  width: calc((100% - var(--paddingR) - calc((var(--column) - 1) * var(--gap))) / var(--column) * var(--column2) + var(--gap));
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .tags,
.relatedProducts .product_item .tags {
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.04rem;
  width: 100%;
  flex-wrap: wrap;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .tags .productTag,
.relatedProducts .product_item .tags .productTag {
  position: relative;
  left: unset;
  top: unset;
  right: unset;
  bottom: unset;
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .pb .nocol_img,
.relatedProducts .product_item .pb .nocol_img {
  position: absolute;
  bottom: 0.1rem;
  right: 0.1rem;
  opacity: 0;
  pointer-events: none;
  -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 .nocol_img:hover,
.relatedProducts .product_item .pb .nocol_img:hover {
  transform: scale(1.1);
}
.idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .pb .col_img,
.relatedProducts .product_item .pb .col_img {
  position: absolute;
  bottom: 0.1rem;
  right: 0.1rem;
  opacity: 0;
  pointer-events: none;
  -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:hover,
.relatedProducts .product_item .pb .col_img:hover {
  transform: scale(1.1);
}
@media (max-width:480px) {
  .idx_productListCon2 .content .center_box .product_box .right_box .product_list .product_item .pb .nocol_img,
  .relatedProducts .product_item .pb .nocol_img {
    opacity: 1;
    pointer-events: auto;
  }
}
.idx_manufactureCon1 .content .center_box {
  text-transform: uppercase;
}
.inspirationsCon1 {
  margin-top: 0.4rem;
  margin-bottom: 1.2rem;
}
.inspirationsCon1 .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.inspirationsCon1 .title h1 {
  color: #000;
  font-size: var(--font24);
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.inspirationsCon1 .title .buttons {
  gap: 0.1rem;
  margin-top: 0;
}
.inspirationsCon1 .title .buttons .btn {
  padding: 0 0.2rem;
  height: 0.4rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
  min-width: 1.8rem;
}
.inspirationsCon1 .title .buttons .btn span {
  font-size: var(--font16);
}
.inspirationsCon1 .title .buttons .slide {
  margin-right: 0;
  margin-left: auto;
}
.inspirationsCon1 .title .buttons .slide .row {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  gap: 0.1rem;
}
.inspirationsCon1 .title .buttons .clear_btn {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.inspirationsCon1 .title .buttons .clear_btn.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.inspirationsCon1 .title .showFilter .hide {
  display: none;
}
.inspirationsCon1 .filter {
  display: none;
  margin-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.inspirationsCon1 .filter > .row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.1rem;
  flex-wrap: wrap;
}
.inspirationsCon1 .filter .layui-input-inline {
  width: calc((100% - 0.2rem) / 3);
}
.inspirationsCon1 .filter .layui-form-select .layui-input {
  background: #ffffff;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}
.inspirationsCon1 .filter .checkBox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  gap: 0.1rem;
  margin-top: 0.1rem;
}
.inspirationsCon1 .filter .layui-form-select dl dd:first-child {
  display: none;
  font-weight: 600;
}
.inspirationsCon1 .filter .active .layui-form-select dl dd:first-child {
  display: block;
}
.inspirationsCon1 .filter .active .layui-form-select dl dd.layui-this {
  display: none;
}
.inspirationsCon1 .filter .active .layui-form-select .layui-input {
  font-weight: 400;
}
.inspirationsCon1 .filterBox {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  padding-top: 0.2rem;
}
.inspirationsCon1 .filterBox.active .buttons .slide .row {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.inspirationsCon1 .filterBox.active .showFilter .select {
  transform: rotate(180deg);
}
.inspirationsCon1 .filterBox.active .showFilter .hide {
  display: block;
}
.inspirationsCon1 .filterBox.active .showFilter .show {
  display: none;
}
.inspirationsCon1 .layui-form-checkbox > div {
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font16);
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width:1600px) {
  .inspirationsCon1 .layui-form-checkbox > div {
    white-space: pre-line;
  }
}
@media (max-width:480px) {
  .inspirationsCon1 .title {
    flex-wrap: wrap;
    padding-bottom: 0;
    border-bottom: none;
  }
  .inspirationsCon1 .title h1 {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    padding-bottom: 0.2rem;
    margin-bottom: 0.1rem;
  }
  .inspirationsCon1 .title .buttons {
    margin-top: 0.1rem;
    margin-left: auto;
  }
  .inspirationsCon1 .filter .layui-input-inline {
    width: calc((100% - 0.1rem) / 2);
  }
  .inspirationsCon1 .filter .checkBox .layui-input-inline {
    width: 100%;
  }
}
.defaultNewsList {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}
.defaultNewsList .linkBox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  gap: 0.64rem 0.4rem;
  width: 100%;
}
.defaultNewsList .linkBox .item {
  width: calc((100% - 0.4rem) / 2);
}
.defaultNewsList .linkBox .item .image {
  height: 4rem;
}
.defaultNewsList .linkBox .image .link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
}
.defaultNewsList .linkBox .image .link img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.defaultNewsList .linkBox .image .link:hover {
  opacity: 1;
  transform: scale(1);
}
@media (max-width:480px) {
  .defaultNewsList .linkBox .image .link {
    opacity: 1;
    transform: scale(1);
  }
}
.defaultNewsList .linkBox .image .hover_box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
}
.defaultNewsList .linkBox .image .hover_box img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.defaultNewsList .linkBox .image .video_vi,
.defaultNewsList .linkBox .image .video_if {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
}
.defaultNewsList .linkBox .image .video_vi img,
.defaultNewsList .linkBox .image .video_if img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.defaultNewsList .linkBox .image .video_vi:hover,
.defaultNewsList .linkBox .image .video_if:hover {
  opacity: 1;
  transform: scale(1);
}
@media (max-width:480px) {
  .defaultNewsList .linkBox .image .video_vi,
  .defaultNewsList .linkBox .image .video_if {
    opacity: 1;
    transform: scale(1);
  }
}
.defaultNewsList .linkBox .image .video_vi img,
.defaultNewsList .linkBox .image .video_if img {
  width: 1rem;
  height: auto;
}
.defaultNewsList .list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: 100%;
}
.defaultNewsList .item {
  width: calc((100% - 1.2rem) / 4);
}
.defaultNewsList .item:hover .image > img {
  transform: scale(1.1);
}
.defaultNewsList .item:hover .image .more {
  opacity: 1;
}
.defaultNewsList .item .image {
  width: 100%;
  height: 1.8rem;
  overflow: hidden;
  position: relative;
}
.defaultNewsList .item .image img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.defaultNewsList .item .image .more {
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 0.48rem;
  gap: 0.4rem;
  padding: 0 0.4rem;
  border-radius: 0.4rem;
  white-space: nowrap;
  color: #FFF;
  font-size: var(--font20);
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  background: var(--active_color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.defaultNewsList .item .image .more img {
  width: 0.22rem;
  height: auto;
}
@media (max-width:480px) {
  .defaultNewsList .item .image .more {
    opacity: 1;
  }
}
.defaultNewsList .item h2 {
  color: #000;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.2rem;
}
.defaultNewsList .item h3 {
  color: #000;
  font-size: var(--font21);
  font-weight: 600;
  line-height: 1.18181818;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  height: 2.36em;
  margin-top: 0.1rem;
}
.defaultNewsList .item p {
  color: #000;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.75;
}
.defaultNewsList.column2 .list {
  gap: 0.64rem 0.4rem;
}
.defaultNewsList.column2 .list .item {
  width: calc((100% - 0.4rem) / 2);
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.defaultNewsList.column2 .list .item .image {
  width: 3rem;
  height: 3rem;
}
.defaultNewsList.column2 .list .item .word {
  flex: 1;
  padding: 0.4rem 0.4rem 0;
}
.defaultNewsList.column2 .list .item h2,
.defaultNewsList.column2 .list .item h3 {
  white-space: pre-line;
  word-break: break-word;
}
.defaultNewsList.column2 .list .item h2 {
  margin-top: 0;
}
.defaultNewsList.column2 .list .item h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  height: auto;
  margin-top: 0.2rem;
}
.defaultNewsList.column2 .list .item > a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}
.defaultNewsList.column1 .list .item {
  width: 100%;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 4rem;
}
.defaultNewsList.column1 .list .item .image {
  width: 7.4rem;
  height: 100%;
}
.defaultNewsList.column1 .list .item .word {
  flex: 1;
  padding: 0.4rem 0.4rem 1.2rem;
}
.defaultNewsList.column1 .list .item h2,
.defaultNewsList.column1 .list .item h3 {
  white-space: pre-line;
  word-break: break-word;
}
.defaultNewsList.column1 .list .item h2 {
  margin-top: 0;
}
.defaultNewsList.column1 .list .item h3 {
  -webkit-line-clamp: unset;
  height: auto;
  margin-top: 0.2rem;
}
.defaultNewsList.column1 .list .item > a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
}
.defaultNewsList.column1 .list .item p {
  margin-top: 0.4rem;
}
.defaultNewsList.column1 .list .item:hover .more {
  background: var(--active_color);
  border-color: var(--active_color);
  color: #ffffff;
}
.defaultNewsList.column1 .list .item:hover .more img {
  filter: brightness(1000%) invert(1000%);
}
.defaultNewsList.column1 .word {
  position: relative;
}
.defaultNewsList.column1 .more {
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 0.48rem;
  gap: 0.4rem;
  padding: 0 0.4rem;
  border-radius: 0.4rem;
  white-space: nowrap;
  color: #000;
  font-size: var(--font20);
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  background: none;
  border: 1px solid;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.defaultNewsList.column1 .more img {
  width: 0.22rem;
  height: auto;
}
@media (max-width:480px) {
  .defaultNewsList {
    gap: 0.2rem;
  }
  .defaultNewsList .item {
    width: calc((100% - 0.2rem) / 2);
  }
  .defaultNewsList .item h2 {
    font-size: var(--font14);
  }
  .defaultNewsList .item h3 {
    font-size: var(--font16);
  }
  .defaultNewsList .list {
    gap: 0.2rem;
  }
  .defaultNewsList .linkBox {
    gap: 0.2rem;
  }
  .defaultNewsList .linkBox .item {
    width: 100%;
  }
  .defaultNewsList.column2 .list .item {
    width: 100%;
  }
  .defaultNewsList.column2 .list .item h2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .defaultNewsList.column2 .list .item h3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }
  .defaultNewsList.column1 .list .item .image {
    width: 100%;
    height: 4rem;
  }
  .defaultNewsList.column1 .list .item > a {
    flex-direction: column;
  }
  .defaultNewsList.column1 .word {
    position: relative;
  }
  .defaultNewsList.column1 .more {
    position: absolute;
    left: 0.4rem;
    bottom: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 0.48rem;
    gap: 0.4rem;
    padding: 0 0.4rem;
    border-radius: 0.4rem;
    white-space: nowrap;
    color: #000;
    font-size: var(--font20);
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    background: none;
    border: 1px solid;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .defaultNewsList.column1 .more img {
    width: 0.22rem;
    height: auto;
  }
}
.layui-input-inline.active input.layui-input {
  color: #000 !important;
  font-weight: 600;
}
.newDetail .w1480 {
  margin-top: 0.4rem;
  padding: 0.8rem 1.4rem;
  background: rgba(0, 0, 0, 0.05);
}
.newDetail .title h1 {
  color: #FF6B00;
  font-size: var(--font40);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}
.newDetail .title h2 {
  color: #000;
  font-size: var(--font24);
  font-weight: 600;
  line-height: 1.16666667;
  margin-top: 0.2rem;
}
.newDetail .detail {
  margin-top: 0.6rem;
  color: #000;
  font-size: var(--font16);
  line-height: 1.5;
}
.newDetail .detail a {
  display: inline-block;
}
.newDetail .detail h1,
.newDetail .detail h2,
.newDetail .detail h3 {
  color: #000;
  font-size: var(--font30);
  font-weight: 600;
  line-height: 1.13333333;
  text-transform: uppercase;
  margin: 0.6rem 0 0.12rem;
}
.newDetail .detail p {
  margin: 0;
  display: block;
  min-height: 1em;
}
.newDetail .detail p:last-child {
  margin-bottom: 0;
}
.newDetail .detail p:last-child img {
  margin-bottom: 0;
}
.newDetail .detail img {
  margin: 0.4rem 0 0.6rem;
  height: auto!important;
}
.newsCon1 {
  margin-top: 0.4rem;
  margin-bottom: 1.6rem;
}
.newsCon1 .defaultTabBox .tabTitle {
  padding-top: 0.2rem;
}
.defaultTabBox .tabTitle,
.defaultTabBox .tabTitleIndex {
  color: #000;
  padding-top: 0.06rem;
  font-size: var(--font24);
  font-weight: 600;
  line-height: 1.20833333;
  text-transform: uppercase;
  position: relative;
  background: #ffffff;
  z-index: 9;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.4rem;
}
.defaultTabBox .tabTitle .row,
.defaultTabBox .tabTitleIndex .row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.4rem;
}
.defaultTabBox .tabTitle span,
.defaultTabBox .tabTitleIndex span {
  position: relative;
  z-index: 2;
  padding-bottom: 0.2rem;
  border-bottom: 4px solid transparent;
  cursor: pointer;
}
.defaultTabBox .tabTitle span.active,
.defaultTabBox .tabTitleIndex span.active {
  border-color: var(--active_color);
  color: var(--active_color);
}
.defaultTabBox .tabTitle .border,
.defaultTabBox .tabTitleIndex .border {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}
.defaultTabBox .tabList {
  margin-top: 0.4rem;
}
.defaultTabBox .tabList .tab {
  display: none;
}
.defaultTabBox .tabList .tab.active {
  display: block;
}
@media (max-width:480px) {
  .defaultTabBox .tabTitle .row,
  .defaultTabBox .tabTitleIndex .row {
    white-space: nowrap;
    overflow-x: auto;
  }
}
.slideBox .slideTitle {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.slideBox .slideTitle a {
  color: #000;
  font-size: var(--font16);
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.slideBox .slideTitle .icon {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0.16rem;
  height: 0.16rem;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1LjA3MTEgNi4wNzEwN0w4IDEzLjE0MjFMMC45Mjg5MzIgNi4wNzEwNyIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=") center center no-repeat;
  background-size: 100% auto;
}
.slideBox .item.active > .slideTitle .icon {
  transform: rotate(180deg);
}
.slideBox .item.slideUp > .slide {
  display: none;
  visibility: visible;
}
.slideBox .slide {
  display: none;
}
.searchBox {
  pointer-events: auto;
  width: 100%;
  background: #ffffff;
  padding: 0.3rem 0.32rem 0.5rem;
  text-align: center;
}
.searchBox .inputBox {
  margin: 0 auto;
  max-width: 12rem;
  width: 100%;
  height: 0.48rem;
  position: relative;
}
.searchBox .inputBox input {
  padding: 0 0.2rem;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: var(--font16);
}
.searchBox .inputBox .btn {
  position: absolute;
  cursor: pointer;
  right: 0;
  top: 0;
  width: 0.48rem;
  height: 0.48rem;
  border: none;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3LjYyMjMgMTYuMzIxM0MxNy4yMjUzIDE1LjkzNzMgMTYuNTkyMiAxNS45NDc4IDE2LjIwODIgMTYuMzQ0N0MxNS44MjQyIDE2Ljc0MTYgMTUuODM0NyAxNy4zNzQ3IDE2LjIzMTcgMTcuNzU4N0wxNi45MjcgMTcuMDRMMTcuNjIyMyAxNi4zMjEzWk0xOS4yODAxIDExLjQ0SDE4LjI4MDFDMTguMjgwMSAxNS4yMTc2IDE1LjIxNzcgMTguMjggMTEuNDQwMSAxOC4yOFYxOS4yOFYyMC4yOEMxNi4zMjIzIDIwLjI4IDIwLjI4MDEgMTYuMzIyMiAyMC4yODAxIDExLjQ0SDE5LjI4MDFaTTExLjQ0MDEgMTkuMjhWMTguMjhDNy42NjI0NyAxOC4yOCA0LjYwMDEgMTUuMjE3NiA0LjYwMDEgMTEuNDRIMy42MDAxSDIuNjAwMUMyLjYwMDEgMTYuMzIyMiA2LjU1NzkgMjAuMjggMTEuNDQwMSAyMC4yOFYxOS4yOFpNMy42MDAxIDExLjQ0SDQuNjAwMUM0LjYwMDEgNy42NjIzOCA3LjY2MjQ3IDQuNjAwMDEgMTEuNDQwMSA0LjYwMDAxVjMuNjAwMDFWMi42MDAwMUM2LjU1NzkgMi42MDAwMSAyLjYwMDEgNi41NTc4MSAyLjYwMDEgMTEuNDRIMy42MDAxWk0xMS40NDAxIDMuNjAwMDFWNC42MDAwMUMxNS4yMTc3IDQuNjAwMDEgMTguMjgwMSA3LjY2MjM4IDE4LjI4MDEgMTEuNDRIMTkuMjgwMUgyMC4yODAxQzIwLjI4MDEgNi41NTc4MSAxNi4zMjIzIDIuNjAwMDEgMTEuNDQwMSAyLjYwMDAxVjMuNjAwMDFaTTE2LjkyNyAxNy4wNEwxNi4yMzE3IDE3Ljc1ODdMMTkuNzA0OCAyMS4xMTg3TDIwLjQwMDEgMjAuNEwyMS4wOTU0IDE5LjY4MTNMMTcuNjIyMyAxNi4zMjEzTDE2LjkyNyAxNy4wNFoiIGZpbGw9ImJsYWNrIi8+Cjwvc3ZnPgo=") center center no-repeat;
  background-size: 0.24rem auto;
}
.searchBox .inputBox .btn:hover {
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3LjYyMjEgMTYuMzIxM0MxNy4yMjUyIDE1LjkzNzMgMTYuNTkyMSAxNS45NDc3IDE2LjIwODEgMTYuMzQ0N0MxNS44MjQxIDE2Ljc0MTYgMTUuODM0NiAxNy4zNzQ3IDE2LjIzMTUgMTcuNzU4N0wxNi45MjY4IDE3LjA0TDE3LjYyMjEgMTYuMzIxM1pNMTkuMjggMTEuNDRIMTguMjhDMTguMjggMTUuMjE3NiAxNS4yMTc2IDE4LjI4IDExLjQ0IDE4LjI4VjE5LjI4VjIwLjI4QzE2LjMyMjIgMjAuMjggMjAuMjggMTYuMzIyMiAyMC4yOCAxMS40NEgxOS4yOFpNMTEuNDQgMTkuMjhWMTguMjhDNy42NjIzNSAxOC4yOCA0LjU5OTk4IDE1LjIxNzYgNC41OTk5OCAxMS40NEgzLjU5OTk4SDIuNTk5OThDMi41OTk5OCAxNi4zMjIyIDYuNTU3NzggMjAuMjggMTEuNDQgMjAuMjhWMTkuMjhaTTMuNTk5OTggMTEuNDRINC41OTk5OEM0LjU5OTk4IDcuNjYyMzUgNy42NjIzNSA0LjU5OTk4IDExLjQ0IDQuNTk5OThWMy41OTk5OFYyLjU5OTk4QzYuNTU3NzggMi41OTk5OCAyLjU5OTk4IDYuNTU3NzggMi41OTk5OCAxMS40NEgzLjU5OTk4Wk0xMS40NCAzLjU5OTk4VjQuNTk5OThDMTUuMjE3NiA0LjU5OTk4IDE4LjI4IDcuNjYyMzUgMTguMjggMTEuNDRIMTkuMjhIMjAuMjhDMjAuMjggNi41NTc3OCAxNi4zMjIyIDIuNTk5OTggMTEuNDQgMi41OTk5OFYzLjU5OTk4Wk0xNi45MjY4IDE3LjA0TDE2LjIzMTUgMTcuNzU4N0wxOS43MDQ3IDIxLjExODdMMjAuNCAyMC40TDIxLjA5NTMgMTkuNjgxM0wxNy42MjIxIDE2LjMyMTNMMTYuOTI2OCAxNy4wNFoiIGZpbGw9IiNGRjZCMDAiLz4KPC9zdmc+Cg==") center center no-repeat;
  background-size: 0.24rem auto;
}
.searchBox .hot {
  margin-top: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.2rem;
  color: rgba(0, 0, 0, 0.4);
  font-feature-settings: 'liga' off;
  font-size: var(--font16);
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  flex-wrap: wrap;
}
.searchBox .hot a {
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width:480px) {
  .searchBox {
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  }
  .searchBox .hot {
    width: 100%;
    gap: 0.1rem 0.2rem;
  }
}
.right_fix .list .item .del_img {
  width: 0.3rem;
}
.right_fix .list .item {
  min-width: unset;
  min-height: unset;
}
.right_fix .list .item:hover .count {
  opacity: 0;
}
.right_fix .count {
  position: absolute;
  right: 0;
  top: 0;
  font-size: var(--font12);
  line-height: 1.2;
  padding: 0rem calc(var(--font12) * 0.25);
  background: var(--active_color);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  min-width: calc(var(--font12) * 1.2);
  opacity: 1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header.absolute .menu_btn .icon::after,
header:hover .menu_btn .icon::after,
header.absolute .menu_btn .icon::before,
header:hover .menu_btn .icon::before,
header.absolute .menu_btn .icon i,
header:hover .menu_btn .icon i {
  background: #000000;
}
header.slideDown:before {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffffff;
  content: '';
  z-index: 100;
}
header .header_box .center_box .column_right {
  justify-content: center;
  gap: 0.04rem;
}
header .header_box .center_box .column_right > .icon_img {
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0;
  position: relative;
}
header .header_box .center_box .column_right > .icon_img img {
  width: 0.24rem;
  min-width: unset;
  min-height: unset;
}
header .header_box .center_box .column_right > .icon_img .info {
  width: max-content;
  height: auto;
  position: absolute;
  top: calc(100% + 0.24rem);
  background: #FFFFFF;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  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;
  gap: 0.1rem;
  padding: 0.2rem;
  border-radius: 0.1rem;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: drop-shadow(0px 0 10px rgba(0, 0, 0, 0.1));
  color: #000000;
  font-size: var(--font16);
}
header .header_box .center_box .column_right > .icon_img .info b {
  color: var(--active_color);
}
header .header_box .center_box .column_right > .icon_img .info::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #FFFFFF transparent;
  position: absolute;
  bottom: 100%;
}
header .header_box .center_box .column_right > .icon_img:hover,
header .header_box .center_box .column_right > .icon_img.active {
  background: var(--active_color);
}
header .header_box .center_box .column_right > .icon_img:hover .hover_img,
header .header_box .center_box .column_right > .icon_img.active .hover_img {
  display: none!important;
}
header .header_box .center_box .column_right > .icon_img:hover .def_img,
header .header_box .center_box .column_right > .icon_img.active .def_img {
  display: block!important;
}
header .header_box .center_box .column_right > .icon_img:hover .count,
header .header_box .center_box .column_right > .icon_img.active .count {
  display: none;
}
header .header_box .center_box .column_right > .icon_img:hover .info,
header .header_box .center_box .column_right > .icon_img.active .info {
  opacity: 1;
  visibility: visible;
}
header .header_box .center_box .column_right > .icon_img .count {
  position: absolute;
  left: 55%;
  top: 50%;
  line-height: 1.2;
  padding: 0rem 0.03rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  min-width: calc(var(--font12) * 1.2);
  transform: translate(0, -140%);
  opacity: 1;
  letter-spacing: -0.72px;
  font-size: var(--font12);
  background: var(--active_color);
  color: #ffffff;
}
header .icon_img:hover .menu_btn .icon::after,
header .icon_img:hover .menu_btn .icon::before,
header .icon_img:hover .menu_btn .icon i {
  background: #ffffff;
}
header .container .center_box .language_box .icon_img img {
  width: 0.24rem;
  min-width: unset;
  min-height: unset;
}
header .container .center_box .language_box:hover {
  background: var(--active_color) !important;
}
header .container .center_box .language_box:hover .icon_img .txt {
  color: #ffffff;
}
header .container .center_box .language_box:hover .icon_img .hover_img {
  display: none!important;
}
header .container .center_box .language_box:hover .icon_img .def_img {
  display: block!important;
  opacity: 1!important;
  visibility: visible!important;
}
header .menu_btn {
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin: 0;
  position: relative;
  z-index: 101;
  cursor: pointer;
}
@media (min-width: 481px) {
  header .menu_btn:hover,
  header .menu_btn.active {
    background: var(--active_color);
  }
  header .menu_btn:hover .icon::after,
  header .menu_btn.active .icon::after,
  header .menu_btn:hover .icon::before,
  header .menu_btn.active .icon::before,
  header .menu_btn:hover .icon i,
  header .menu_btn.active .icon i {
    background: #ffffff;
  }
}
header .menu_btn .icon {
  width: 100%;
  height: 100%;
  position: relative;
}
header .menu_btn .icon::after,
header .menu_btn .icon::before,
header .menu_btn .icon i {
  width: 16px;
  height: 2px;
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -8px;
  transform-origin: center;
  transition: transform 0.3s ease-in-out, margin 0.3s ease-in-out;
}
header .menu_btn .icon::before {
  content: '';
  margin-top: -5px;
}
header .menu_btn .icon::after {
  content: '';
  margin-top: 3px;
}
header .menu_btn.active .icon i {
  opacity: 0;
}
header .menu_btn.active .icon::before {
  margin-top: -1px;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  border-radius: 5px;
  background: #fff;
}
header .menu_btn.active .icon::after {
  margin-top: -1px;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  border-radius: 5px;
  background: #fff;
}
header .header_box .center_box .column_right .icon_img {
  z-index: 99;
}
header .slideBox {
  position: absolute;
  left: 0;
  top: calc(var(--header-height));
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
header .slideBox .languageBox {
  display: none;
  pointer-events: auto;
  width: 100%;
  background: #ffffff;
  padding: 0.3rem 0 0.5rem;
  text-align: center;
}
header .slideBox .languageBox .row {
  max-width: 12rem;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}
header .slideBox .languageBox h1 {
  width: 100%;
  text-align: left;
  color: #000;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
header .slideBox .languageBox a {
  height: 0.48rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: calc(100% / 6);
}
header .slideBox .searchBox {
  display: none;
  pointer-events: auto;
}
header .slideBox .navBox {
  pointer-events: auto;
  display: none;
  width: 100%;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  height: auto;
  max-height: calc(100vh - var(--header-height));
  background: #ffffff;
  text-align: center;
}
header .slideBox .navBox .column {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  width: fit-content;
  margin: 0 auto;
  overflow-y: auto;
}
header .slideBox .navBox .item {
  width: 100%;
  margin: 0 auto;
}
header .slideBox .navBox .item.link:hover {
  background: var(--active_color);
}
header .slideBox .navBox .item.link:hover a {
  color: #ffffff;
}
header .slideBox .navBox .item.link a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
header .slideBox .navBox .item.active .title {
  background: var(--active_color);
}
header .slideBox .navBox .item.active .title a {
  color: #ffffff;
}
header .slideBox .navBox .item.active .title .icon {
  transform: rotate(180deg);
  filter: brightness(1000%) invert(1000%);
}
header .slideBox .navBox .item.active .slide {
  display: none;
  visibility: visible;
  height: auto;
}
header .slideBox .navBox .item.slideUp .slide {
  display: none;
  visibility: visible;
}
header .slideBox .navBox .title {
  height: 0.48rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0 0.2rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .slideBox .navBox .title a {
  color: #000;
  font-size: var(--font16);
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
header .slideBox .navBox .title .icon {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0.16rem;
  height: 0.16rem;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1LjA3MTEgNi4wNzEwN0w4IDEzLjE0MjFMMC45Mjg5MzIgNi4wNzEwNyIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=") center center no-repeat;
  background-size: 100% auto;
}
header .slideBox .navBox .slide {
  display: block;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font16);
  line-height: 1.25;
  font-weight: 400;
}
header .slideBox .navBox .slide a {
  padding: 0.1rem 0.2rem;
}
header .slideBox .navBox .slide a:hover,
header .slideBox .navBox .slide a.active {
  background: rgba(0, 0, 0, 0.05);
  color: #FF6B00 !important;
}
header .slideBox .navBox .slide .t1 {
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font16);
  font-weight: 600;
  line-height: calc(20/16);
  text-transform: uppercase;
  padding: 0 0.2rem;
  height: 0.4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
header .slideBox .navBox .slide .t1 h2 {
  font-size: var(--font16);
}
header .slideBox .navBox .slide .navDes {
  text-transform: capitalize;
}
header .header_box .center_box .item_box .item.active .Secondary_Navigation {
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
}
header .header_box .center_box .item_box .item .Secondary_Navigation {
  border-radius: 0;
  background: #ffffff;
}
header .header_box .center_box .item_box .item .Secondary_Navigation .navBox {
  padding: 0.2rem 0;
}
header .header_box .center_box .item_box .item .Secondary_Navigation .navBox .tOne {
  padding: 0.12rem 0.2rem;
  text-align: left;
  min-width: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
header .header_box .center_box .item_box .item .Secondary_Navigation .navBox .tOne:last-child {
  margin-bottom: 0;
}
header .header_box .center_box .item_box .item .Secondary_Navigation .navBox .tOne:hover {
  background: var(--active_color);
  color: #ffffff;
}
header .header_box .center_box .item_box .item .Secondary_Navigation .inspirationBox {
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  width: 11.8rem;
  padding: 0.2rem 0;
  gap: 0.2rem;
}
header .header_box .center_box .item_box .item .Secondary_Navigation .inspirationBox .item {
  width: calc((100% - 0.4rem) / 3);
}
header .header_box .center_box .item_box .item .Secondary_Navigation .inspirationBox .item .image {
  height: 2rem;
  overflow: hidden;
}
header .header_box .center_box .item_box .item .Secondary_Navigation .inspirationBox .item .image img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .header_box .center_box .item_box .item .Secondary_Navigation .inspirationBox .item p {
  padding: 0.1rem 0.2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: none;
  text-transform: uppercase;
  line-height: 1.25;
}
header .header_box .center_box .item_box .item .Secondary_Navigation .inspirationBox .item:hover .image img {
  transform: scale(1.1);
}
@media (max-width:990px) {
  header .header_box {
    display: block!important;
  }
  header .m_header_box {
    display: none;
  }
  header .w1480,
  header .container {
    width: 100%;
    padding: 0 0.24rem;
  }
}
@media (max-width:480px) {
  header .header_box .center_box .column_center {
    display: none;
  }
  header .header_box .center_box .column_right > .icon_img {
    text-align: center;
  }
  header .header_box .center_box .column_right > .icon_img img {
    width: 60%;
    margin: auto;
  }
  header .menu_btn.active .icon::before,
  header .menu_btn.active .icon::after {
    background: #000000;
  }
  header .slideBox .navBox {
    height: calc(100vh - var(--header-height));
  }
  header .slideBox .navBox .title {
    height: 0.64rem;
  }
  header .slideBox .navBox .title .icon {
    width: 0.6rem;
    height: 0.6rem;
    background-size: 0.3rem auto;
  }
  header .slideBox .navBox .slide a {
    padding: 0.2rem;
  }
  header .slideBox .languageBox {
    padding: 0.3rem 0.32rem 0.5rem;
  }
  header .slideBox .languageBox a {
    width: calc(100% / 3);
  }
}
.mt80 {
  margin-top: 0.8rem;
}
.defaultPopBox {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: fixed;
  height: 102%;
  width: 102%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  color: #000;
  transform: translate(-50%, 100%);
  pointer-events: none;
  opacity: 0;
}
.defaultPopBox.active {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  opacity: 1;
}
.defaultPopBox.active .main {
  opacity: 1;
}
.defaultPopBox .main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  background: #FFF;
  align-items: stretch;
  position: relative;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.defaultPopBox .close {
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  width: 0.44rem;
  cursor: pointer;
}
.defaultPopBox h1 {
  font-size: var(--font30);
  font-weight: 600;
  line-height: 1.23333333;
  text-transform: uppercase;
}
.defaultPopBox h2 {
  font-size: var(--font18);
  font-weight: 400;
  line-height: 1.22222222;
  text-transform: uppercase;
  margin-top: 0.12rem;
  margin-bottom: 0.8rem;
  white-space: pre-line;
  word-break: break-word;
}
.defaultPopBox h3 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.16rem;
}
.defaultPopBox h3 img {
  width: 1em;
  height: auto;
  margin-right: 0.1rem;
  margin-top: 0.15em;
}
.defaultPopBox h3 span {
  flex: 1;
}
.defaultPopBox p {
  color: #000;
  font-size: var(--font14);
  font-weight: 400;
  line-height: 1.21428571;
  padding-left: calc(var(--font16) + 0.1rem);
  margin-bottom: 0.4rem;
  margin-top: -0.02rem;
}
.defaultPopBox p:last-child {
  margin-bottom: 0;
}
@media (max-width:480px) {
  .defaultPopBox .main {
    width: 90%;
  }
  .defaultPopBox h1 {
    font-size: var(--font20);
  }
  .defaultPopBox h2 {
    font-size: var(--font14);
  }
  .defaultPopBox h3 {
    font-size: var(--font12);
  }
  .defaultPopBox p {
    font-size: var(--font12);
  }
}
.loginBox .left,
.loginBox .right {
  padding: 1.2rem 1rem;
  text-align: left;
  width: 8rem;
}
.loginBox .empty {
  height: 0.64rem;
}
.loginBox .layui-form-label {
  float: none;
  width: 100%;
  text-align: left;
  padding: 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font16);
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}
.loginBox .layui-input-affix {
  line-height: 0.4rem;
  padding-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.loginBox .layui-input-block,
.loginBox .layui-input-wrap {
  margin-left: 0;
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
  position: relative;
}
.loginBox .layui-icon-clear {
  display: inline-block;
  width: 0.24rem;
  height: 0.24rem;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC42Ij4KPHBhdGggZD0iTTUgMTlMMTkgNSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIi8+CjxwYXRoIGQ9Ik01IDVMMTkgMTkiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS13aWR0aD0iMiIvPgo8L2c+Cjwvc3ZnPgo=") 0 0 no-repeat;
  background-size: 100% 100%;
}
.loginBox .layui-icon-clear:before {
  display: none;
}
.loginBox .layui-icon-eye-invisible {
  display: inline-block;
  width: 0.24rem;
  height: 0.24rem;
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAPtJREFUeAHtki2zQVEUhteZe8sVr3ID5QZFIQhUgaIIikIQaMZ/8BN8JETFTxAElUoRqESC4l3jPWM7wxkfycx+Zp45a6+9z15r73NELJaPIybvc7XHlxE3YBY6cCmvkYNFGIcTb4EAjMII4xU8ymPo+jzMcDyCG28B7f6P8T9MwL270IckrLA5lwOca+AwkYYFuIV9WIJBzmluAddwx9wvDMv5vgPMaSNDWGVO47FbQDerwZ5cOtZvEpHHmMEO4xAsw5Y25/i81GThttFxinNTnujA0+pV1m9t8n1n8zCfej1zI+8WGBg5/XN+2MxWniTkGXepSVAsFosvJ5x5KKOAS8hMAAAAAElFTkSuQmCC") 0 0 no-repeat;
  background-size: 100% 100%;
}
.loginBox .layui-icon-eye-invisible:before {
  display: none;
}
.loginBox .layui-icon-eye {
  display: inline-block;
  width: 0.24rem;
  height: 0.24rem;
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAOdEVYdFNvZnR3YXJlAEZpZ21hnrGWYwAAAadJREFUeAHtU0tSAjEQfUHcjycQb8ANxBvACWR2FlolnoDhBGCVvx1wArkB4w24AeMJYK8SX3qSmSAjsHDndFUqSSd5/V53Byjt/5ruItAd1Dd819BmbPhu0NiFU/kFvIYPLKAww14mGDHokuO06Fh5oIEaYoWc7YJTjWNIkIA3jRqnKKZvRXrvnG85EvWEsyIs5TGecTdRD4js/tUD3GdzfKGlXpAwZRHWuOS4MPs0QAdtgo+s5DHXTa4Cj+2U8xv9S/GsSSBV1LB3Xbqm2V6jS1X3eYo66PEw8i6PCdQ3LDKXLShVxl46jNoel23vbUTwvllWM2cFJ7Y/VgwUqkdhvWk6K3pGjLlOOIUkaBQORLmS2lnYlFlTipU+DclwG3yPkbFJbWi3bcF0ASxgLEdrDPRVzuBQkz+jRYGxuSOZp+gYLdtJdRxhQQZ9fGLs1wB+nh0wW5L3ugTvWVcsWE5ZAZO82FrAY+qcECRxwURhVRif26Cu44as3Z2PtxXAsjKdYdq2gcMsZmoj9cxC/zC165UNZIrvfrFjmsjQ8kfiIuDSSvs7+wZLyqBWeJeYdQAAAABJRU5ErkJggg==") 0 0 no-repeat;
  background-size: 100% 100%;
}
.loginBox .layui-icon-eye:before {
  display: none;
}
.loginBox .layui-input {
  height: 0.4rem;
  padding: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}
.loginBox .buttons {
  margin-top: 0.8rem;
}
.loginBox .buttons .btn {
  border-width: 2px;
  font-weight: 600;
}
.loginBox .right {
  width: 6.8rem;
  flex: 1;
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
  padding-right: 0.8rem;
}
.loginBox .right h2 {
  margin-bottom: 0.4rem;
}
@media (max-width:480px) {
  .loginBox .main {
    flex-direction: column-reverse;
  }
  .loginBox .left,
  .loginBox .right {
    width: 100%;
    padding: 0.32rem;
  }
  .loginBox h2 {
    margin-bottom: 0.3rem;
  }
  .loginBox .buttons {
    margin-top: -0.2rem;
    margin-bottom: 0.3rem;
  }
  .loginBox .empty {
    height: 0.2rem;
  }
}
.userinfoCon {
  padding: 0.8rem 0 0.9rem;
  background: rgba(0, 0, 0, 0.05);
}
.userinfoCon .avatar {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.userinfoCon .avatar img {
  max-width: unset;
  max-height: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.userinfoCon .avatar .editAvatar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.userinfoCon .avatar .editAvatar:before {
  display: block;
  content: '';
  width: 0.48rem;
  height: 0.48rem;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNDgiIHZpZXdCb3g9IjAgMCA0OCA0OCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjQwMDggMTIuMjQwNVYxNC4yNDA1QzE1LjExMjEgMTQuMjQwNSAxNS43Njk5IDEzLjg2MjYgMTYuMTI4MyAxMy4yNDgyTDE0LjQwMDggMTIuMjQwNVpNMTcuNzYwOCA2LjQ4MDQ3VjQuNDgwNDdDMTcuMDQ5NCA0LjQ4MDQ3IDE2LjM5MTYgNC44NTgyOSAxNi4wMzMyIDUuNDcyNzNMMTcuNzYwOCA2LjQ4MDQ3Wk0zMC4yNDA4IDYuNDgwNDdMMzEuOTY4MyA1LjQ3MjczQzMxLjYwOTkgNC44NTgyOSAzMC45NTIxIDQuNDgwNDcgMzAuMjQwOCA0LjQ4MDQ3VjYuNDgwNDdaTTMzLjYwMDggMTIuMjQwNUwzMS44NzMyIDEzLjI0ODJDMzIuMjMxNiAxMy44NjI2IDMyLjg4OTQgMTQuMjQwNSAzMy42MDA4IDE0LjI0MDVWMTIuMjQwNVpNNC44MDA3OCAzNi43MjA1SDYuODAwNzhWMTcuMDQwNUg0LjgwMDc4SDIuODAwNzhWMzYuNzIwNUg0LjgwMDc4Wk05LjYwMDc4IDEyLjI0MDVWMTQuMjQwNUgxNC40MDA4VjEyLjI0MDVWMTAuMjQwNUg5LjYwMDc4VjEyLjI0MDVaTTE0LjQwMDggMTIuMjQwNUwxNi4xMjgzIDEzLjI0ODJMMTkuNDg4MyA3LjQ4ODIxTDE3Ljc2MDggNi40ODA0N0wxNi4wMzMyIDUuNDcyNzNMMTIuNjczMiAxMS4yMzI3TDE0LjQwMDggMTIuMjQwNVpNMTcuNzYwOCA2LjQ4MDQ3VjguNDgwNDdIMzAuMjQwOFY2LjQ4MDQ3VjQuNDgwNDdIMTcuNzYwOFY2LjQ4MDQ3Wk0zMC4yNDA4IDYuNDgwNDdMMjguNTEzMiA3LjQ4ODIxTDMxLjg3MzIgMTMuMjQ4MkwzMy42MDA4IDEyLjI0MDVMMzUuMzI4MyAxMS4yMzI3TDMxLjk2ODMgNS40NzI3M0wzMC4yNDA4IDYuNDgwNDdaTTMzLjYwMDggMTIuMjQwNVYxNC4yNDA1SDM4LjQwMDhWMTIuMjQwNVYxMC4yNDA1SDMzLjYwMDhWMTIuMjQwNVpNNDMuMjAwOCAxNy4wNDA1SDQxLjIwMDhWMzYuNzIwNUg0My4yMDA4SDQ1LjIwMDhWMTcuMDQwNUg0My4yMDA4Wk00My4yMDA4IDM2LjcyMDVINDEuMjAwOEM0MS4yMDA4IDM4LjI2NjkgMzkuOTQ3MiAzOS41MjA1IDM4LjQwMDggMzkuNTIwNVY0MS41MjA1VjQzLjUyMDVDNDIuMTU2MyA0My41MjA1IDQ1LjIwMDggNDAuNDc2IDQ1LjIwMDggMzYuNzIwNUg0My4yMDA4Wk0zOC40MDA4IDEyLjI0MDVWMTQuMjQwNUMzOS45NDcyIDE0LjI0MDUgNDEuMjAwOCAxNS40OTQxIDQxLjIwMDggMTcuMDQwNUg0My4yMDA4SDQ1LjIwMDhDNDUuMjAwOCAxMy4yODQ5IDQyLjE1NjMgMTAuMjQwNSAzOC40MDA4IDEwLjI0MDVWMTIuMjQwNVpNNC44MDA3OCAxNy4wNDA1SDYuODAwNzhDNi44MDA3OCAxNS40OTQxIDguMDU0MzggMTQuMjQwNSA5LjYwMDc4IDE0LjI0MDVWMTIuMjQwNVYxMC4yNDA1QzUuODQ1MjUgMTAuMjQwNSAyLjgwMDc4IDEzLjI4NDkgMi44MDA3OCAxNy4wNDA1SDQuODAwNzhaTTkuNjAwNzggNDEuNTIwNVYzOS41MjA1QzguMDU0MzggMzkuNTIwNSA2LjgwMDc4IDM4LjI2NjkgNi44MDA3OCAzNi43MjA1SDQuODAwNzhIMi44MDA3OEMyLjgwMDc4IDQwLjQ3NiA1Ljg0NTI0IDQzLjUyMDUgOS42MDA3OCA0My41MjA1VjQxLjUyMDVaTTMxLjIwMDggMjUuNjgwNUgyOS4yMDA4QzI5LjIwMDggMjguNTUyMyAyNi44NzI3IDMwLjg4MDUgMjQuMDAwOCAzMC44ODA1VjMyLjg4MDVWMzQuODgwNUMyOS4wODE4IDM0Ljg4MDUgMzMuMjAwOCAzMC43NjE1IDMzLjIwMDggMjUuNjgwNUgzMS4yMDA4Wk0yNC4wMDA4IDMyLjg4MDVWMzAuODgwNUMyMS4xMjg5IDMwLjg4MDUgMTguODAwOCAyOC41NTIzIDE4LjgwMDggMjUuNjgwNUgxNi44MDA4SDE0LjgwMDhDMTQuODAwOCAzMC43NjE1IDE4LjkxOTggMzQuODgwNSAyNC4wMDA4IDM0Ljg4MDVWMzIuODgwNVpNMTYuODAwOCAyNS42ODA1SDE4LjgwMDhDMTguODAwOCAyMi44MDg2IDIxLjEyODkgMjAuNDgwNSAyNC4wMDA4IDIwLjQ4MDVWMTguNDgwNVYxNi40ODA1QzE4LjkxOTggMTYuNDgwNSAxNC44MDA4IDIwLjU5OTQgMTQuODAwOCAyNS42ODA1SDE2LjgwMDhaTTI0LjAwMDggMTguNDgwNVYyMC40ODA1QzI2Ljg3MjcgMjAuNDgwNSAyOS4yMDA4IDIyLjgwODYgMjkuMjAwOCAyNS42ODA1SDMxLjIwMDhIMzMuMjAwOEMzMy4yMDA4IDIwLjU5OTQgMjkuMDgxOCAxNi40ODA1IDI0LjAwMDggMTYuNDgwNVYxOC40ODA1Wk0zOC40MDA4IDQxLjUyMDVWMzkuNTIwNUg5LjYwMDc4VjQxLjUyMDVWNDMuNTIwNUgzOC40MDA4VjQxLjUyMDVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K") 0 0 no-repeat;
  background-size: 100% 100%;
}
.userinfoCon .avatar .editAvatar:hover {
  opacity: 1;
}
.userinfoCon .row {
  align-items: stretch;
}
.userinfoCon .buttons {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: nowrap;
}
.userinfoCon .buttons .btn {
  flex: unset;
  height: 0.4rem;
  font-size: var(--font16);
  border-width: 2px;
  font-weight: 600;
}
.userinfoCon .info {
  margin-left: 0.8rem;
}
.userinfoCon .info .t1 {
  color: #FF6B00;
  font-size: var(--font40);
  font-weight: 600;
  line-height: 1.225;
  margin-bottom: 0.3rem;
}
.userinfoCon .info .t2 {
  color: #000;
  font-size: var(--font24);
  font-weight: 400;
  line-height: 1.20833333;
  margin-bottom: 0.12rem;
}
.userinfoCon .info .t3 {
  color: #000;
  font-size: var(--font24);
  font-weight: 600;
  line-height: 1.20833333;
  margin-bottom: 0.3rem;
}
.userinfoCon .info p {
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font24);
  font-weight: 400;
  line-height: 1.20833333;
  margin-bottom: 0.12rem;
}
@media (max-width:480px) {
  .userinfoCon .row {
    flex-wrap: wrap;
  }
  .userinfoCon .buttons {
    position: absolute;
    left: 0.24rem;
    top: 3.6rem;
    flex-direction: column;
    align-items: stretch;
    width: 1.8rem;
  }
  .userinfoCon .buttons .btn {
    font-size: 0.2rem;
    padding: 0;
    white-space: nowrap;
  }
  .userinfoCon .info {
    flex: 1;
    margin-left: 0.2rem;
    min-height: 3rem;
  }
  .userinfoCon .info .t1 {
    font-size: var(--font28);
  }
  .userinfoCon .info .t2 {
    font-size: var(--font16);
  }
  .userinfoCon .info .t3 {
    font-size: var(--font16);
  }
  .userinfoCon .info p {
    font-size: var(--font16);
  }
}
.userinfoPop .main {
  padding: 0.8rem 1rem;
  flex-direction: column;
}
.userinfoPop .main h2 {
  margin-bottom: 0.45rem;
}
.userinfoPop .info {
  width: 10.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.2rem;
  flex-wrap: wrap;
}
.userinfoPop .info > .layui-input-inline {
  width: calc((100% - 0.2rem) / 2);
}
.userinfoPop .info p {
  color: #000;
  font-size: var(--font14);
  font-weight: 400;
  line-height: 1.21428571;
}
.userinfoPop .layui-form-label {
  float: none;
  width: 100%;
  text-align: left;
  padding: 0;
  color: rgba(0, 0, 0, 0.4);
  font-size: var(--font16);
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 0.04rem;
}
.userinfoPop .layui-input-wrap {
  width: 100%;
}
.userinfoPop .layui-input,
.userinfoPop .layui-textarea {
  height: 0.5rem;
  padding: 0 0.2rem;
  border-radius: 0.1rem;
  border: 1px solid #cccccc;
}
.userinfoPop .layui-form-select .layui-select-title input {
  background: #ffffff;
  height: 0.5rem;
  padding: 0 0.2rem;
  border-radius: 0.1rem;
  border: 1px solid #cccccc;
}
.userinfoPop .buttons {
  margin-top: 0.2rem;
  margin-bottom: 0.28rem;
}
.userinfoPop .buttons .btn {
  flex: 1;
  height: 0.48rem;
  font-size: var(--font20);
}
@media (max-width:480px) {
  .userinfoPop .main {
    padding: 0.32rem;
  }
  .userinfoPop .row {
    flex-direction: column;
  }
  .userinfoPop .row .info {
    width: 100%;
    margin-left: 0;
  }
  .userinfoPop .row .avatar {
    margin: 0 auto 0.2rem;
  }
  .userinfoPop .row .buttons {
    position: relative;
    left: unset;
    top: unset;
    right: unset;
    bottom: unset;
    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
  }
  .userinfoPop .row .buttons .btn {
    font-size: var(--font16);
    padding: 0.05rem 0;
    white-space: nowrap;
  }
  .userinfoPop .row .full {
    width: 100%;
  }
  .userinfoPop .row .full p {
    margin-bottom: 0;
  }
}
.layui-input[disabled],
.layui-textarea[disabled] {
  border-radius: 0.1rem;
  border: 1px solid #cccccc;
  background: rgba(0, 0, 0, 0.05);
}
a.inline {
  display: inline-block;
}
userInfo {
  display: block;
}
.wishlistCon1,
.wishlistCon2 {
  margin-bottom: 1.6rem;
}
.wishlistCon1 .defaultTabBox,
.wishlistCon2 .defaultTabBox {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  z-index: 999;
}
.wishlistCon1 .defaultTabBox .tabTitle,
.wishlistCon2 .defaultTabBox .tabTitle {
  height: 0.64rem;
  text-align: right;
  padding-top: 0;
  font-size: var(--font16);
}
.wishlistCon1 .defaultTabBox .tabTitle span,
.wishlistCon2 .defaultTabBox .tabTitle span {
  margin-left: 0.24rem;
}
.wishlistCon1 .defaultTabBox .tabTitle span.active,
.wishlistCon2 .defaultTabBox .tabTitle span.active {
  border-color: transparent;
  color: var(--active_color);
}
.wishlistCon1 .buttons,
.wishlistCon2 .buttons {
  margin-left: auto;
  max-width: 4.8rem;
  margin-top: 0.8rem;
}
.wishlistCon1 .tabList,
.wishlistCon2 .tabList {
  margin-top: 0.8rem;
}
.wishlistCon1 .tableList,
.wishlistCon2 .tableList {
  margin-top: 0.8rem;
}
.wishlistCon1 .tableList > .item,
.wishlistCon2 .tableList > .item {
  margin-bottom: 0.6rem;
}
.wishlistCon1 .tableList > .item:last-child,
.wishlistCon2 .tableList > .item:last-child {
  margin-bottom: 0;
}
.wishlistCon1 .tableList .checkAll,
.wishlistCon2 .tableList .checkAll {
  position: absolute;
  right: 1px;
  bottom: 0;
}
.wishlistCon1 .tableList .checkAll .layui-form-checkbox[lay-skin=primary] > i,
.wishlistCon2 .tableList .checkAll .layui-form-checkbox[lay-skin=primary] > i {
  width: 100%;
  height: 100%;
}
.wishlistCon1 .tableList .checkAll .layui-form-checkbox,
.wishlistCon2 .tableList .checkAll .layui-form-checkbox {
  padding: 0;
}
.wishlistCon1 .tableList .title,
.wishlistCon2 .tableList .title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding-bottom: 0.16rem;
  margin-bottom: 0.2rem;
}
.wishlistCon1 .tableList .title .row,
.wishlistCon2 .tableList .title .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.wishlistCon1 .tableList .title .word,
.wishlistCon2 .tableList .title .word {
  margin-right: auto;
}
.wishlistCon1 .tableList .title .icon,
.wishlistCon2 .tableList .title .icon {
  width: 0.24rem;
  height: 0.24rem;
}
.wishlistCon1 .tableList .title h1,
.wishlistCon2 .tableList .title h1 {
  color: #FF6B00;
  font-size: var(--font30);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.wishlistCon1 .tableList .title h2,
.wishlistCon2 .tableList .title h2 {
  color: #000;
  font-size: var(--font21);
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.wishlistCon1 .tableList .title p,
.wishlistCon2 .tableList .title p {
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font21);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 0.1rem;
}
.wishlistCon1 .tableList .title .delete,
.wishlistCon2 .tableList .title .delete {
  margin: 0;
  margin-right: 0.4rem;
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font16);
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.wishlistCon1 .tableList .title .delete img,
.wishlistCon2 .tableList .title .delete img {
  width: 0.24rem;
  margin-right: 0.04rem;
}
.wishlistCon1 .tableList .parentTitle,
.wishlistCon2 .tableList .parentTitle {
  border-bottom: 2px solid #FF6B00;
}
.wishlistCon1 .tableList .parentTitle .checkAll,
.wishlistCon2 .tableList .parentTitle .checkAll {
  bottom: 0.18rem;
}
.wishlistCon1 .tableList .parentTitle .delete,
.wishlistCon2 .tableList .parentTitle .delete {
  position: absolute;
  bottom: 0.18rem;
  right: 0.3rem;
  height: 20px;
}
.wishlistCon1 .tableList .tableItem,
.wishlistCon2 .tableList .tableItem {
  margin-bottom: 0.2rem;
}
.wishlistCon1 .tableList .childBox .title .icon,
.wishlistCon2 .tableList .childBox .title .icon {
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIxLjUyMTggOC4wOTYwNkwxMi4wOTM4IDE3LjUyNDFMMi42NjU2NiA4LjA5NjA2IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjEuNSIvPgo8L3N2Zz4K") 0 0 no-repeat;
  background-size: 100% 100%;
  margin: 0;
}
.wishlistCon1 .title h1,
.wishlistCon2 .title h1 {
  color: #000;
  font-size: var(--font21);
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.wishlistCon1 .inputBox,
.wishlistCon2 .inputBox {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.wishlistCon1 .inputBox.isLogin .profile,
.wishlistCon2 .inputBox.isLogin .profile {
  display: none;
}
.wishlistCon1 .inputBox .title,
.wishlistCon2 .inputBox .title {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.wishlistCon1 .inputBox .title h1,
.wishlistCon2 .inputBox .title h1 {
  font-size: var(--font24);
  font-weight: 600;
  line-height: calc(29/24);
}
.wishlistCon1 .message,
.wishlistCon2 .message {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
}
.wishlistCon1 .message > *,
.wishlistCon2 .message > * {
  width: 100%;
}
.wishlistCon1 .message .title,
.wishlistCon2 .message .title {
  border-color: transparent;
  padding-bottom: 0.1rem;
}
.wishlistCon1 .message .buttons,
.wishlistCon2 .message .buttons {
  margin-top: 0;
  width: 1.6rem;
}
.wishlistCon1 .message .buttons .btn,
.wishlistCon2 .message .buttons .btn {
  height: 0.4rem;
  font-size: var(--font16);
}
.wishlistCon1 .message .textareaBox,
.wishlistCon2 .message .textareaBox {
  flex: 1;
}
.wishlistCon1 .message .textareaBox .layui-textarea,
.wishlistCon2 .message .textareaBox .layui-textarea {
  padding: 0.2rem;
  height: 100%;
  font-weight: 400;
  border: 1px solid rgba(0, 0, 0, 0.4) !important;
  min-height: 1.52rem;
}
.wishlistCon1 .message .textareaBox .layui-textarea::placeholder,
.wishlistCon2 .message .textareaBox .layui-textarea::placeholder {
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
}
.wishlistCon1 .profile,
.wishlistCon2 .profile {
  display: block;
  flex: 1;
}
.wishlistCon1 .profile .info .t1,
.wishlistCon2 .profile .info .t1 {
  color: #FF6B00;
  font-size: var(--font40);
  font-weight: 600;
  line-height: 1.225;
  margin-bottom: 0.3rem;
}
.wishlistCon1 .profile .info .t2,
.wishlistCon2 .profile .info .t2 {
  color: #000;
  font-size: var(--font24);
  font-weight: 400;
  line-height: 1.20833333;
  margin-bottom: 0.12rem;
}
.wishlistCon1 .profile .info .t3,
.wishlistCon2 .profile .info .t3 {
  color: #000;
  font-size: var(--font24);
  font-weight: 600;
  line-height: 1.20833333;
  margin-bottom: 0.3rem;
}
.wishlistCon1 .profile .info h3,
.wishlistCon2 .profile .info h3 {
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font16);
  font-weight: 600;
  line-height: calc(20/16);
  margin-bottom: 0.04rem;
}
.wishlistCon1 .profile .info p,
.wishlistCon2 .profile .info p {
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font24);
  font-weight: 400;
  line-height: 1.20833333;
  margin-bottom: 0.12rem;
}
.wishlistCon1 .profile .layui-form-item,
.wishlistCon2 .profile .layui-form-item {
  display: block;
  width: 100%;
  margin-top: 0.2rem;
  margin-bottom: 0;
}
.wishlistCon1 .profile .layui-form-item .row,
.wishlistCon2 .profile .layui-form-item .row {
  gap: 0.1rem;
}
.wishlistCon1 .profile .layui-form-select .layui-input,
.wishlistCon2 .profile .layui-form-select .layui-input {
  color: rgba(0, 0, 0, 0.4);
  font-size: var(--font16);
  font-weight: 600;
}
.wishlistCon1 .profile .layui-input-inline,
.wishlistCon2 .profile .layui-input-inline {
  flex: 1;
  margin: 0;
}
.wishlistCon1 .profile .layui-form-label,
.wishlistCon2 .profile .layui-form-label {
  float: none;
  width: 100%;
  text-align: left;
  padding: 0;
  color: rgba(0, 0, 0, 0.4);
  font-size: var(--font16);
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 0.04rem;
}
.wishlistCon1 .profile .layui-input-wrap,
.wishlistCon2 .profile .layui-input-wrap {
  width: 100%;
}
.wishlistCon1 .profile .layui-input,
.wishlistCon2 .profile .layui-input,
.wishlistCon1 .profile .layui-textarea,
.wishlistCon2 .profile .layui-textarea {
  height: 0.5rem;
  padding: 0 0.2rem;
  border-radius: 0.1rem;
  border: 1px solid rgba(0, 0, 0, 0.4) !important;
}
.wishlistCon1 .profile .layui-input::placeholder,
.wishlistCon2 .profile .layui-input::placeholder,
.wishlistCon1 .profile .layui-textarea::placeholder,
.wishlistCon2 .profile .layui-textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-size: var(--font16);
}
.wishlistCon1 .profile .layui-form-select .layui-select-title input,
.wishlistCon2 .profile .layui-form-select .layui-select-title input {
  background: #ffffff;
  height: 0.5rem;
  padding: 0 0.2rem;
  border-radius: 0.1rem;
  border: 1px solid #cccccc;
}
.wishlistCon1 .idx_productDetailCon12,
.wishlistCon2 .idx_productDetailCon12 {
  padding-top: 0.6rem;
}
.wishlistCon1 .tableBox,
.wishlistCon2 .tableBox {
  border: 1px solid rgba(0, 0, 0, 0.4);
  position: relative;
}
.wishlistCon1 .tableBox:before,
.wishlistCon2 .tableBox:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 30px;
  background: rgba(0, 0, 0, 0.6);
}
.wishlistCon1 .tableBox .layui-table-view,
.wishlistCon2 .tableBox .layui-table-view {
  margin: 0 auto;
}
@media (max-width:480px) {
  .wishlistCon1 .tableList .parentTitle,
  .wishlistCon2 .tableList .parentTitle {
    padding-bottom: 0.8rem;
  }
  .wishlistCon1 .buttons .submitAll,
  .wishlistCon2 .buttons .submitAll {
    width: auto;
    flex: 1;
  }
  .wishlistCon1 .buttons .btn,
  .wishlistCon2 .buttons .btn {
    padding: 0;
  }
}
.borderBottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 0.2rem;
}
.breadcrumbs-list.bdb {
  padding: 0;
}
.breadcrumbs-list.bdb .w1480 {
  padding: 0.24rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.inquiriesCon1,
.inquiriesCon2 {
  margin-bottom: 1.6rem;
}
.inquiriesCon1 .defaultTabBox,
.inquiriesCon2 .defaultTabBox {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  z-index: 2;
}
.inquiriesCon1 .defaultTabBox .tabTitle,
.inquiriesCon2 .defaultTabBox .tabTitle {
  height: 0.64rem;
  text-align: right;
  padding-top: 0;
  font-size: var(--font16);
}
.inquiriesCon1 .defaultTabBox .tabTitle span,
.inquiriesCon2 .defaultTabBox .tabTitle span {
  margin-left: 0.24rem;
  padding-bottom: calc(0.2rem - 3px);
}
.inquiriesCon1 .defaultTabBox .tabTitle span.active,
.inquiriesCon2 .defaultTabBox .tabTitle span.active {
  color: var(--active_color);
}
.inquiriesCon1 .tabList,
.inquiriesCon2 .tabList {
  margin-top: 0.8rem;
}
.inquiriesCon1 .inquiriesList,
.inquiriesCon2 .inquiriesList {
  margin-top: 0.8rem;
}
.inquiriesCon1 .inquiriesList li,
.inquiriesCon2 .inquiriesList li {
  margin-bottom: 0.6rem;
}
.inquiriesCon1 .inquiriesList li:last-child,
.inquiriesCon2 .inquiriesList li:last-child {
  margin-bottom: 0;
}
.inquiriesCon1 .inquiriesList .row,
.inquiriesCon2 .inquiriesList .row {
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.inquiriesCon1 .inquiriesList .buttons,
.inquiriesCon2 .inquiriesList .buttons {
  margin: 0;
  margin-left: auto;
  width: fit-content;
  gap: 0.1rem;
}
.inquiriesCon1 .inquiriesList .buttons .btn,
.inquiriesCon2 .inquiriesList .buttons .btn {
  flex: unset;
  padding: 0 0.36rem;
  min-width: 1.8rem;
  height: 0.4rem;
  border-width: 2px;
  font-size: var(--font16);
  font-weight: 600;
}
.inquiriesCon1 .inquiriesList .time,
.inquiriesCon2 .inquiriesList .time {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  color: #000;
  font-family: Montserrat;
  font-size: var(--font21);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}
.inquiriesCon1 .inquiriesList .time img,
.inquiriesCon2 .inquiriesList .time img {
  width: var(--font24);
  margin-right: 0.1rem;
}
.inquiriesCon1 .inquiriesList .word,
.inquiriesCon2 .inquiriesList .word {
  margin-top: 0.2rem;
  padding: 0.2rem;
  border-radius: 0.1rem;
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: #000;
  font-feature-settings: 'liga' off;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.75;
}
.inquiriesCon1 .inquiriesList .word p,
.inquiriesCon2 .inquiriesList .word p {
  white-space: pre-line;
  word-break: break-word;
}
@media (max-width:480px) {
  .inquiriesCon1 .inquiriesList .row,
  .inquiriesCon2 .inquiriesList .row {
    flex-wrap: wrap;
    border-bottom: none;
  }
  .inquiriesCon1 .inquiriesList .time,
  .inquiriesCon2 .inquiriesList .time {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
  }
  .inquiriesCon1 .inquiriesList .buttons .btn,
  .inquiriesCon2 .inquiriesList .buttons .btn {
    padding: 0.06rem 0.36rem;
    height: auto;
  }
}
.inquiriesCon2 {
  margin-top: 1rem;
  margin-bottom: 0;
}
.inquiriesCon2 .inquiriesList .row {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0.4rem;
}
.inquiriesCon2 .inquiriesList .buttons {
  margin: 0;
  margin-left: auto;
  width: fit-content;
  gap: 0.1rem;
}
.inquiriesCon2 .inquiriesList .buttons .btn {
  flex: unset;
  padding: 0 0.88rem;
  min-width: 1.8rem;
  height: 0.48rem;
  font-size: var(--font20);
}
.inquiriesCon2 .inquiriesList .time {
  font-size: var(--font24);
}
.inquiriesCon2 .inquiriesList .time img {
  width: var(--font48);
  margin-right: 0.2rem;
}
.inquiriesCon2 .inquiriesList .word {
  margin-top: 0.4rem;
  color: #000;
  border: none;
  padding: 0;
  font-size: var(--font16);
  font-weight: 400;
}
.inquiriesCon2 .inquiriesList .word p {
  white-space: pre-line;
  word-break: break-word;
}
.wishlistCon2 .tabList {
  margin-top: 0;
}
.inquiriesCon3 .idx_productDetailCon12 {
  padding-top: 0.8rem;
}
.inquiriesCon3 .idx_productDetailCon12 .section_til {
  font-size: var(--font24);
}
.faqCon1 .defaultTabBox .tabTitle {
  position: sticky;
  top: 0;
}
.faqCon1 .defaultTabBox .tabTitle .border {
  background: rgba(0, 0, 0, 0.2);
}
.faqCon1 .left {
  width: 7.2rem;
}
.faqCon1 .left .item {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  padding: 0.1rem 0 0.16rem;
  margin-bottom: 0.2rem;
  cursor: pointer;
}
.faqCon1 .left .item.active h1 {
  color: var(--active_color);
}
.faqCon1 .left .item.active i {
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyNSAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNzk2MjkgMTUuNDlINS40NDk5MkM2LjQzNTU1IDE1LjYgMTIuODI1MiAyNC4xNDIxIDEzLjI1IDIwLjIyMTJWMi4yNzY4M0MxMi44NDIyIC0xLjYzNDExIDYuNDAxNTcgNi44Nzc5NCA1LjQ0OTkyIDcuMDA3OThDNS4wMTY1OCA3LjIzODAzIDEuMjAxNTEgNi40Mzc4NCAxLjMxMTk3IDcuNTY4MTFDMS41MjQzOSA4LjAwODIyIDAuNzkzNjY3IDE1Ljc5MDEgMS43ODc3OSAxNS41TDEuNzk2MjkgMTUuNDlaIiBzdHJva2U9IiNGRjZCMDAiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KPHBhdGggZD0iTTE4LjI1IDExLjI1SDIzLjg3IiBzdHJva2U9IiNGRjZCMDAiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KPHBhdGggZD0iTTE4LjI1IDcuMDI4NzVMMjMuODcgNC4yMTg3NSIgc3Ryb2tlPSIjRkY2QjAwIiBzdHJva2Utd2lkdGg9IjIuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CjxwYXRoIGQ9Ik0xOC4yNSAxNS40NjA5TDIzLjg3IDE4LjI3MDkiIHN0cm9rZT0iI0ZGNkIwMCIgc3Ryb2tlLXdpZHRoPSIyLjUiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgo8L3N2Zz4K") 0 0 no-repeat;
  background-size: 100% 100%;
}
.faqCon1 .left .item:last-child {
  margin-bottom: 0;
}
.faqCon1 .left .item i {
  width: 0.24rem;
  height: 0.24rem;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjMiIHZpZXdCb3g9IjAgMCAyNSAyMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNzk2MjkgMTUuNDlINS40NDk5MkM2LjQzNTU1IDE1LjYgMTIuODI1MiAyNC4xNDIxIDEzLjI1IDIwLjIyMTJWMi4yNzY4M0MxMi44NDIyIC0xLjYzNDExIDYuNDAxNTcgNi44Nzc5NCA1LjQ0OTkyIDcuMDA3OThDNS4wMTY1OCA3LjIzODAzIDEuMjAxNTEgNi40Mzc4NCAxLjMxMTk3IDcuNTY4MTFDMS41MjQzOSA4LjAwODIyIDAuNzkzNjY3IDE1Ljc5MDEgMS43ODc3OSAxNS41TDEuNzk2MjkgMTUuNDlaIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC42IiBzdHJva2Utd2lkdGg9IjIuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CjxwYXRoIGQ9Ik0xOC4yNSAxMS4yNUgyMy44NyIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLW9wYWNpdHk9IjAuNiIgc3Ryb2tlLXdpZHRoPSIyLjUiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgo8cGF0aCBkPSJNMTguMjUgNy4wMjg3NUwyMy44NyA0LjIxODc1IiBzdHJva2U9ImJsYWNrIiBzdHJva2Utb3BhY2l0eT0iMC42IiBzdHJva2Utd2lkdGg9IjIuNSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+CjxwYXRoIGQ9Ik0xOC4yNSAxNS40NjA5TDIzLjg3IDE4LjI3MDkiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjYiIHN0cm9rZS13aWR0aD0iMi41IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz4KPC9zdmc+Cg==") 0 0 no-repeat;
  background-size: 100% 100%;
  margin-right: 0.2rem;
}
.faqCon1 .left .item .word {
  flex: 1;
}
.faqCon1 .left .item h2 {
  color: #000;
  font-size: var(--font16);
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}
.faqCon1 .left .item h1 {
  color: #000;
  font-size: var(--font16);
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}
.faqCon1 .right {
  width: 7.2rem;
  padding: 0.4rem;
  border-radius: 0.1rem;
  border: 1px solid #cccccc;
  color: #000;
  font-feature-settings: 'liga' off;
  font-size: var(--font16);
  font-weight: 400;
  line-height: 1.75;
  position: sticky;
  top: 1rem;
  height: calc(100vh - 1.3rem);
  overflow-y: auto;
}
.faqCon1 .right p {
  white-space: pre-line;
  word-break: break-word;
}
.faqCon1 .right h3 {
  color: #000;
  font-size: var(--font21);
  font-weight: 600;
  line-height: 1.23809524;
  text-transform: uppercase;
  margin-bottom: 0.14rem;
}
.faqCon1 .detail {
  display: none;
}
.faqCon1 .more {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 1rem;
  height: 0.48rem;
  width: fit-content;
  gap: 0.4rem;
  padding: 0 0.4rem;
  border-radius: 0.4rem;
  white-space: nowrap;
  color: #000;
  font-size: var(--font20);
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  background: none;
  border: 1px solid;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faqCon1 .more img {
  width: 0.22rem;
  height: auto;
}
.faqCon1 .more:hover {
  background: var(--active_color);
  color: #fff;
}
.faqCon1 .more:hover img {
  filter: invert(1);
}
@media (max-width:480px) {
  .faqCon1 .right {
    display: none;
  }
  .faqCon1 .left .item .detail {
    margin-top: 0.2rem;
    padding: 0.2rem 0.2rem 0.4rem;
    border-radius: 0.1rem;
    border: 1px solid #cccccc;
    color: #000;
    font-feature-settings: 'liga' off;
    font-size: var(--font16);
    font-weight: 400;
    line-height: 1.75;
  }
  .faqCon1 .left .item .detail p {
    white-space: pre-line;
    word-break: break-word;
  }
  .faqCon1 .left .item.active {
    border-bottom: none;
  }
  .faqCon1 .left .item.active .detail {
    display: block;
  }
}
.searchCon1 {
  margin-bottom: 1.2rem;
}
.searchCon1 .emptyBox {
  width: 100%;
  height: 7rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  padding-top: 1.8rem;
  border-radius: 8px;
  border: 1px solid #CCC;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  font-family: Montserrat;
  font-size: var(--font24);
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  gap: 0.4rem;
}
.searchCon1 .emptyBox img {
  width: 2.4rem;
}
.searchCon1 .emptyBox.is-show + .defaultTabBox {
  display: none;
}
.searchCon1 .searchBox {
  padding: 1.2rem 0 1rem;
}
.searchCon1 .defaultTabBox .tabTitle,
.searchCon1 .defaultTabBox .tabTitleIndex {
  margin-bottom: 0.4rem;
}
.searchCon1 .relatedProducts {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
  margin-bottom: 0;
}
.searchCon1 .relatedProducts .product_item {
  width: calc((100% - 1.2rem) / 4);
}
@media (max-width:480px) {
  .searchCon1 .searchBox {
    border-bottom: none;
  }
  .searchCon1 .relatedProducts {
    gap: 0.3rem 0.2rem;
  }
  .searchCon1 .relatedProducts .product_item {
    width: calc((100% - 0.2rem) / 2);
  }
}
@media (max-width:480px) {
  .breadcrumbs-list .w1480 {
    overflow-x: auto;
    white-space: nowrap;
  }
  .w1480 {
    width: 100%;
    padding: 0 0.24rem;
  }
  header .m_header_box .header_title {
    padding: 0 0.24rem;
  }
}
.popup_recommend {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  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-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  transform: translateY(100%);
}
.popup_recommend .w1480 {
  height: auto;
  max-height: 95%;
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding: 0.8rem 0.95rem 0.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  flex-direction: column;
}
.popup_recommend .title {
  width: 100%;
  align-items: flex-end;
}
.popup_recommend .title .word {
  flex: 1;
}
.popup_recommend .title h1 {
  color: #000;
  font-size: var(--font30);
  font-weight: 600;
  line-height: 1.23333333;
}
.popup_recommend .title p {
  color: #000;
  font-size: var(--font18);
  margin-top: 0.12rem;
  line-height: 1.22222222;
}
.popup_recommend .title h2 {
  color: #000;
  font-size: var(--font21);
  font-weight: 600;
  line-height: 1.05;
  margin-top: 2px;
}
.popup_recommend .title .btn {
  min-width: 12em;
  padding: 0 0.4rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.popup_recommend .title .more {
  border: 1px solid #000;
  color: #000000;
  gap: 0.36rem;
  font-weight: 400;
  text-transform: unset;
}
.popup_recommend .title .more img {
  width: 0.22rem;
  height: auto;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_recommend .title .more:hover img {
  filter: invert(1);
}
.popup_recommend .relatedProducts {
  width: 100%;
  margin-top: 0.6rem;
  margin-bottom: 0;
}
.popup_recommend .relatedProducts .title {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding-bottom: 0.2rem;
}
.popup_recommend .relatedProducts .title h1 {
  color: var(--active_color);
}
.popup_recommend .relatedProducts .swiper-box {
  overflow: hidden;
}
.popup_recommend .relatedProducts .swiper-box .swiper-slide {
  width: 3rem;
  margin-right: 0.3rem;
}
.popup_recommend .icon {
  width: 0.5rem;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_recommend .icon i {
  width: 0;
  height: 0;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.popup_recommend .icon i::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 0.2rem;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(45deg);
}
.popup_recommend .icon i::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 0.2rem;
  background: #000;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: rotate(-45deg);
}
.popup_recommend .icon:hover {
  background: var(--active_color);
}
.popup_recommend .icon:hover i {
  transform: rotate(360deg);
}
.popup_recommend .icon:hover i::after {
  background: #FFF;
}
.popup_recommend .icon:hover i::before {
  background: #FFF;
}
.popup_recommend.active {
  transform: translateY(0);
}
@media (max-width:990px) {
  .popup_recommend .images {
    max-width: 90%;
  }
  .popup_recommend .icon {
    top: 0.1rem;
    right: 0.1rem;
  }
  .popup_recommend .title .btn {
    padding: 0.08rem 0.4rem;
    height: auto;
  }
}
@media (max-width:480px) {
  .popup_recommend {
    padding: 0 0.32rem;
  }
  .popup_recommend .title {
    flex-direction: column;
  }
  .popup_recommend .title h1 {
    font-size: var(--font20);
  }
  .popup_recommend .title h2 {
    font-size: var(--font14);
  }
  .popup_recommend .title p {
    font-size: var(--font12);
  }
  .popup_recommend .title .word {
    width: 100%;
  }
  .popup_recommend .w1480 {
    padding: 0.5rem 0.32rem;
  }
  .popup_recommend .buttons {
    margin-top: 0.1rem;
  }
  .popup_recommend .relatedProducts {
    width: 100%;
    margin-top: 0.6rem;
    margin-bottom: 0;
  }
  .popup_recommend .relatedProducts .swiper-box {
    overflow: hidden;
  }
  .popup_recommend .relatedProducts .swiper-box .swiper-slide {
    width: 70%;
    margin-right: 0.3rem;
  }
}
.slideBox .slide {
  display: none;
}
.slideBox .item:not(.active) .slide {
  display: none;
}
.idx_productListCon2 .content .center_box .product_box .left_box.is-stuck .list {
  padding-top: 0;
}
.idx_productListCon2 .content .center_box .product_box .left_box .itemTitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  color: rgba(0, 0, 0, 0.6);
  font-size: var(--font16);
  font-weight: 600;
  line-height: calc(22/16);
  text-transform: uppercase;
  padding: 0.04rem 0.1rem;
  position: relative;
  cursor: pointer;
}
.idx_productListCon2 .content .center_box .product_box .left_box .itemTitle h2 {
  font-size: var(--font16);
  font-weight: 600;
}
.idx_productListCon2 .content .center_box .product_box .left_box .itemTitle:after {
  position: absolute;
  content: '';
  width: 0.18rem;
  height: 0.18rem;
  right: 0.1rem;
  background: transparent url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxNiAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0Ljg0OTMgMC43MDc3ODZMNy43NzgyIDcuNzc4ODVMMC43MDcxMzEgMC43MDc3ODYiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1vcGFjaXR5PSIwLjYiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K") 0 0 no-repeat;
  background-size: 100% 100%;
  -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 .active .itemTitle:after {
  transform: rotate(180deg);
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .series_til .t1 {
  font-weight: 400;
}
.productTag {
  position: absolute;
  left: 0.1rem;
  top: 0.1rem;
  padding: 0.02rem 0.06rem;
  text-align: center;
  font-size: var(--font16);
  font-weight: 700;
  line-height: calc(20/16);
  border-radius: 2px;
  background: linear-gradient(180deg, #F00 0%, rgba(255, 0, 0, 0.4) 100%);
  color: #FFF;
  text-transform: uppercase;
}
.productTag.hot {
  background: linear-gradient(180deg, #F00 0%, rgba(255, 0, 0, 0.4) 100%);
}
.productTag.new {
  background: linear-gradient(180deg, #008000 0%, rgba(0, 128, 0, 0.4) 100%);
}
.productTag.sale {
  background: linear-gradient(180deg, #C0C 0%, rgba(204, 0, 204, 0.4) 100%);
}
.productTag.early {
  background: linear-gradient(180deg, #0095B2 0%, rgba(0, 149, 178, 0.4) 100%);
}
.productTag.stock {
  background: linear-gradient(180deg, #FF6B00 0%, rgba(255, 107, 0, 0.4) 100%);
}
.productTag.custom {
  background: linear-gradient(180deg, #002BFF 0%, rgba(0, 43, 255, 0.4) 100%);
}
.productTag.tag-custom-color {
  background: var(--tag-color, #666666);
  background: linear-gradient(180deg, var(--tag-color, #666666) 0%, color-mix(in srgb, var(--tag-color, #666666) 40%, transparent) 100%);
}
.ProductNav .ProductTitle .ProductCon .navCon .word {
  position: relative;
}
.ProductNav .ProductTitle .ProductCon .navCon .word .tags {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.04rem;
  width: fit-content;
  flex-wrap: wrap;
}
.ProductNav .ProductTitle .ProductCon .navCon .word .tags .productTag {
  position: relative;
  left: unset;
  top: unset;
  right: unset;
  bottom: unset;
}
.checkTag {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.04rem;
  padding: 0.1rem 0;
}
.checkTag .layui-form-checkbox {
  background: none;
}
.checkTag > * {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.checkTag > * .layui-form-checkbox {
  height: 0.24rem !important;
  border-radius: 2px;
  padding: 0 0.06rem !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  margin: 0!important;
  min-width: unset;
  min-height: unset;
}
.checkTag > * .layui-form-checkbox > i {
  display: none;
}
.checkTag > * .layui-form-checkbox > div {
  padding: 0;
  margin: 0;
  font-size: var(--font14);
  font-weight: 700;
  line-height: 1;
}
.checkTag > *.hot .layui-form-checkbox > div {
  background: linear-gradient(180deg, #F00 0%, rgba(255, 0, 0, 0.4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.checkTag > *.hot .layui-form-checkbox.layui-form-checked {
  border-color: #ffffff !important;
  background: linear-gradient(180deg, #F00 0%, rgba(255, 0, 0, 0.4) 100%);
}
.checkTag > *.hot .layui-form-checkbox.layui-form-checked > div {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.checkTag > *.new .layui-form-checkbox > div {
  background: linear-gradient(180deg, #008000 0%, rgba(0, 128, 0, 0.4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.checkTag > *.new .layui-form-checkbox.layui-form-checked {
  border-color: #ffffff !important;
  background: linear-gradient(180deg, #008000 0%, rgba(0, 128, 0, 0.4) 100%);
}
.checkTag > *.new .layui-form-checkbox.layui-form-checked > div {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.checkTag > *.stock .layui-form-checkbox > div {
  background: linear-gradient(180deg, #FF6B00 0%, rgba(255, 107, 0, 0.4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.checkTag > *.stock .layui-form-checkbox.layui-form-checked {
  border-color: #ffffff !important;
  background: linear-gradient(180deg, #FF6B00 0%, rgba(255, 107, 0, 0.4) 100%);
}
.checkTag > *.stock .layui-form-checkbox.layui-form-checked > div {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.checkTag > *.sale .layui-form-checkbox > div {
  background: linear-gradient(180deg, #C0C 0%, rgba(204, 0, 204, 0.4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.checkTag > *.sale .layui-form-checkbox.layui-form-checked {
  border-color: #ffffff !important;
  background: linear-gradient(180deg, #C0C 0%, rgba(204, 0, 204, 0.4) 100%);
}
.checkTag > *.sale .layui-form-checkbox.layui-form-checked > div {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.checkTag > *.custom .layui-form-checkbox > div {
  background: linear-gradient(180deg, #002BFF 0%, rgba(0, 43, 255, 0.4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.checkTag > *.custom .layui-form-checkbox.layui-form-checked {
  border-color: #ffffff !important;
  background: linear-gradient(180deg, #002BFF 0%, rgba(0, 43, 255, 0.4) 100%);
}
.checkTag > *.custom .layui-form-checkbox.layui-form-checked > div {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.checkTag > *.early .layui-form-checkbox > div {
  background: linear-gradient(180deg, #0095B2 0%, rgba(0, 149, 178, 0.4) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.checkTag > *.early .layui-form-checkbox.layui-form-checked {
  border-color: #ffffff !important;
  background: linear-gradient(180deg, #0095B2 0%, rgba(0, 149, 178, 0.4) 100%);
}
.checkTag > *.early .layui-form-checkbox.layui-form-checked > div {
  color: #ffffff;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item form {
  padding-bottom: 0.2rem;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .btn_box {
  margin-top: 0.16rem;
}
.idx_productListCon2 .content .center_box .product_box .left_box .list .item .btn_box .clear_btn {
  width: 100%;
  flex: 1;
}
.idx_productDetailCon12 {
  padding-top: 0.8rem;
}
.idx_productDetailCon12 .stickyBox {
  padding-top: 0.2rem;
}
.idx_productDetailCon12 .buttons {
  margin-top: 0;
}
.idx_productDetailCon12 .buttons .btn {
  border-width: 1px;
  white-space: nowrap;
  height: 0.4rem;
  padding: 0 0.26rem;
  min-width: 1.4rem;
  width: fit-content;
  flex: unset;
}
@media (max-width:990px) {
  .idx_productDetailCon12 .section_til {
    display: block;
  }
  .idx_productDetailCon12 .section_til v {
    display: block;
  }
  .idx_productDetailCon12 .buttons {
    width: fit-content;
    margin-left: auto;
    margin-top: 0.2rem;
  }
}
.toolTips {
  position: relative;
}
.toolTips .icon {
  display: inline-block;
  margin-left: 0.1rem;
  width: 0.16rem;
  height: 0.16rem;
  background: transparent url("../images/img-2.svg") 0 0 no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}
.toolTips:hover .hide {
  opacity: 1;
  visibility: visible;
}
.toolTips .hide {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -0.24rem;
  bottom: 100%;
  padding-bottom: 0.15rem;
}
.toolTips .hide .word {
  border-radius: 0.1rem;
  background: #E5E5E5;
  padding: 0.15rem 0.2rem;
  padding-right: 0.16rem;
  width: 3rem;
  color: #000;
  font-size: var(--font14);
  line-height: calc(17/14);
  position: relative;
}
.toolTips .hide .word:after {
  position: absolute;
  background: none;
  width: 0;
  height: 0;
  left: 0.32rem;
  margin: auto;
  bottom: 0;
  transform: translateY(100%);
  border: 0.1rem solid #E5E5E5;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  content: '';
}
.cookies_box {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
}
.cookies_box .center_box .word {
  color: #000;
}
.cookies_box .center_box .word .t1 {
  font-size: var(--font24);
  font-weight: 600;
  line-height: calc(29 / 24);
}
.cookies_box .center_box .word .t2 {
  font-size: var(--font16);
  line-height: calc(20 / 16);
  margin-top: 0.08rem;
}
.cookies_box .center_box .word .t2 a {
  color: var(--active_color);
}
.cookies_box .center_box .icon .btn {
  width: 2.5rem;
  height: 0.7rem;
  font-size: var(--font20);
  border-color: #000;
}
@media (min-width: 992px) {
  .cookies_box {
    padding: 0.31rem 0;
  }
  .cookies_box .container {
    width: 90%;
  }
  .cookies_box .center_box .icon {
    flex-direction: row-reverse;
  }
}
footer .item_box .item {
  padding-right: 0.2rem;
}
footer .item_box .column {
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.2rem;
}
footer .item_box .column .item {
  padding-right: 0;
}
footer .item_box .column .item .list {
  display: none;
}
footer .item_box .column a:hover {
  color: var(--active_color);
  text-decoration: underline;
}
.idxPageShow_box .idxPageShow,
.idxPageShow_box2 .idxPageShow {
  width: 1.42rem;
  height: 0.14rem;
}
.idxPageShow_box .idxPageShow span,
.idxPageShow_box2 .idxPageShow span {
  position: absolute;
  left: 0.64rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.05rem;
  height: 0.05rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.idxPageShow_box .idxPageShow span[data-index],
.idxPageShow_box2 .idxPageShow span[data-index] {
  opacity: 1;
}
.idxPageShow_box .idxPageShow span[data-index="1"],
.idxPageShow_box2 .idxPageShow span[data-index="1"] {
  left: 0;
}
.idxPageShow_box .idxPageShow span[data-index="2"],
.idxPageShow_box2 .idxPageShow span[data-index="2"] {
  width: 0.09rem;
  height: 0.09rem;
  left: 0.3rem;
}
.idxPageShow_box .idxPageShow span[data-index="3"],
.idxPageShow_box2 .idxPageShow span[data-index="3"] {
  width: 0.14rem;
  height: 0.14rem;
  left: 0.64rem;
}
.idxPageShow_box .idxPageShow span[data-index="4"],
.idxPageShow_box2 .idxPageShow span[data-index="4"] {
  width: 0.09rem;
  height: 0.09rem;
  left: 1.03rem;
}
.idxPageShow_box .idxPageShow span[data-index="5"],
.idxPageShow_box2 .idxPageShow span[data-index="5"] {
  left: 1.37rem;
}
/*# sourceMappingURL=phase2.css.map */