/* 公共样式 */
body {
  margin: 0;
  font-size: 0.625vw;
  line-height: 1;
  color: #333;
  background-color: #fff;
  height: auto !important;
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

/* 公共container */
.container {
  max-width: 75vw !important;
  margin: auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 列表为空 占位图 */
.no-data-box {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.no-data-box .no-data-img {
  width: 16.1458vw;
  height: 12.7083vw;
  margin: 0 auto;
}

.no-data-box .no-data-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-data-box .no-data-message {
  margin-top: 0.9375vw;
  color: #9fa0a0;
  text-align: center;
  font-family: Montserrat;
  font-size: 0.9375vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 155.556% */
}

.no-search-banner {
  max-width: 75vw;
  margin: auto;
  height: 27.6042vw;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  font-size: 4.1667vw;
  font-family: "Montserrat-SemiBold";
  color: #ffffff;
  line-height: 150%;
  letter-spacing: 0.1042vw;
  font-style: normal;
  padding-left: 4.1667vw;
  padding-right: 4.1667vw;
  margin-top: 8.125vw;
  position: relative;
}

.no-search-banner.smb-public-banner {
  padding-left: 0;
  padding-right: 0;
  margin-top: 2.0833vw;
}

.no-search-banner .scenarios_banner_description {
  font-size: 1.25vw;
  font-family: "none";
  width: 26.3542vw;
  margin-top: 1.25vw;
  line-height: 150%;
}

.no-search-banner .banner-shade {
  background: linear-gradient(269deg,
      rgba(3, 12, 43, 0) 0.46%,
      rgba(17, 62, 86, 0.5) 97.33%);
  width: 40%;
  height: 100%;
  position: absolute;
  left: 0;
}

.no-search-banner .banner-title {
  position: absolute;
  width: 70%;
}

/* 面包屑 */
.crumbs {
  display: flex;
  align-items: center;
  color: #231815;
  font-size: 0.8333vw;
  line-height: 150%;
  padding-top: 1.25vw;
  /* padding-bottom: 4.1667vw; */
  padding-bottom: 2.0833vw;
  animation-fill-mode: backwards !important;
  /* 动画开始前回到初始状态 */
}

.crumbs a,
.crumbs .iconfont,
.crumbs .crumbs-grey {
  color: #9fa0a0;
  white-space: nowrap;
  flex-shrink: 0;
}

.crumbs a:hover {
  color: #231815;
}

.crumbs .iconfont {
  font-size: 1.25vw;
  padding: 0 0.4167vw;
}

.crumbs p {
  max-width: 12.5vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 公共导航菜单 */
.publicMenu-sticky {
  position: sticky;
  z-index: 1003;
  top: -0.1042vw;
}

.publicMenu-sticky .publicMenu {
  background: #fff;
  position: relative;
}

.publicMenu h2 {
  margin: 0;
  color: var(--BrandColor_black, #231815);
  font-size: 1.25vw;
  font-style: normal;
  font-family: "Montserrat-SemiBold";
  line-height: 150%;
  text-transform: capitalize;
}

.publicMenu .line {
  width: 100%;
  height: auto;
  background: unset;
  border-bottom: 0.0521vw solid rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
}

.publicMenu .publicMenu-tab {
  font-size: 0.7292vw;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 150%;
  color: #231815;
  overflow: hidden;
  overflow-x: auto;
}

.publicMenu .publicMenu-tab a {
  font-family: Montserrat;
  padding-top: 0.8333vw;
  padding-bottom: 0.8333vw;
  margin-right: 2.0833vw;
  color: #231815;
  border-bottom: 0.0521vw solid transparent;
  white-space: nowrap;
  position: relative;
}

.publicMenu .publicMenu-tab a:hover {
  color: #729b5f;
  font-weight: 600;
}

.publicMenu .publicMenu-tab .publicactive-tab-hover.active {
  border-bottom: 0.0521vw solid #729b5f;
  color: #729b5f;
  font-weight: 600;
}

.publicMenu .publicMenu-tab .publicactive-tab-hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.0521vw;
  height: 0.0521vw;
  background-color: #729b5f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-out;
}

.publicMenu .publicMenu-tab .publicactive-tab-hover:hover::after {
  transform: scaleX(1);
}

a:hover {
  color: #3a66fb;
}

/* 单行超出隐藏，...结尾 */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.twice-line-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 限制为2行 */
  overflow: hidden;
}

.multi-line-ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* 限制为3行 */
  overflow: hidden;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/* 清除浮动 */
.clearfix:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* 主题色 */
:root {
  --theme-color: #21a13b;
  --background-color: #f4f4f4;
}

/* 字体库 */
@font-face {
  font-family: "Montserrat";
  src: url("/assets/fonts/Montserrat-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("/assets/fonts/Montserrat-SemiBold.ttf") format("truetype");
}

/* 鼠标Hover时增加下滑线，下滑线自左向右滑动出现 */
/* 使用时，在需要添加下滑线的标签上添加.hover-effect类名并且添加position: relative即可 */
.hover-effect::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #3a66fb;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-out;
}

.hover-effect:hover::after {
  transform: scaleX(1);
}

/* 公共按钮 */
/* view all */
.public-btn-view-all {
  margin-top: 2.0833vw;
  display: flex;
}

.public-btn-view-all .btn-box {
  min-width: 7.1354vw;
  border: 0.0521vw solid #231815;
  border-radius: 2.6042vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 0.4167vw;
}

.public-btn-view-all .btn-box .btn-title {
  font-size: 0.8333vw;
  font-family: "Montserrat-SemiBold" !important;
  color: #231815;
  line-height: 150%;
  font-style: normal;
  text-transform: none;
  padding: 0.4167vw 0;
  transition: all 0.4s ease;
}

.public-btn-view-all .btn-box img {
  max-width: 1.5104vw;
  margin-right: 0.4167vw;
  opacity: 1;
  transition: all 0.4s ease-in-out;
  font-size: 1.6667vw;
}

.public-btn-view-all .btn-box .iconfont {
  font-size: 1.25vw;
  margin-left: 0.4167vw;
  margin-right: -1.0417vw;
  opacity: 0;
  color: #231815;
  transition: all 0.4s ease-in-out;
}

.public-btn-view-all .btn-box:hover span {
  transform: translateX(-1.0417vw);
}

.public-btn-view-all .btn-box:hover img {
  transform: translateX(-1.0417vw);
  opacity: 0;
}

.public-btn-view-all .btn-box:hover .iconfont {
  opacity: 1;
  transform: translateX(-1.0417vw);
}

/* learn more */
.public-btn-learn-more {
  display: inline-block;
  background-color: #fff;
  border: 0.0521vw solid #fff;
  border-radius: 1.5625vw;
  margin-top: 2.9167vw;
  transition: all 0.6s;
}

.public-btn-learn-more .btn-box {
  display: flex;
  align-items: center;
  padding: 0.4167vw 0.8333vw;
}

.public-btn-learn-more .btn-box .btn-title {
  margin-right: 0.4167vw;
  font-size: 0.8333vw;
  font-family: "Montserrat-SemiBold";
  line-height: 150%;
}

.public-btn-learn-more:hover .btn-box .btn-title {
  color: #ffffff;
}

.public-btn-learn-more .btn-box p {
  height: 1.25vw;
  width: 1.25vw;
  background: #3a66fb;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  position: relative;
}

.public-btn-learn-more .btn-box p .iconfont {
  font-size: 1.0417vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.public-btn-learn-more:hover {
  background: #3a66fb;
  border-color: #3a66fb;
}

.public-btn-learn-more:hover .btn-box p {
  color: #3a66fb;
  background: #ffffff;
}

/* 产品所有页面标题统一 */
.products-title {
  max-width: 75vw;
  margin: 0 auto 2.0833vw;
  font-family: "Montserrat-SemiBold";
  font-size: 3.125vw;
  line-height: 150%;
  letter-spacing: 0%;
  translate: none;
  animation-fill-mode: backwards !important;
  /* 动画开始前回到初始状态 */
  will-change: transform, opacity;
  /* 告知浏览器优化这两个属性 */
}

.third-title {
  font-size: 3.125vw !important;
}

/* 公共标题自下向上渐显动画 */
/* 使用案例：
 * .products .products-title {
      animation: public-title-animation 2s forwards;
    }
*/
@keyframes public-title-animation {
  from {
    transform: translateY(2.6042vw);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* 按钮 hover 阴影效果 */
/* 使用案例：目标元素添加 btn-mask 类名，父级元素添加 position: relative; overflow: hidden;
*/
.btn-mask::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(35, 24, 21, 0.2);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50%;
  /* 添加过渡效果，使阴影变化更平滑 */
}

.btn-mask:hover::before {
  opacity: 1;
  /* 悬停时显示阴影 */
}

/* 产品列表卡片动效 */
/* 使用案例：
   需要动画的标签 添加 product-card-animation 类名即可 
*/
.product-card-animation {
  opacity: 0;
  animation-name: productTxtAnimation;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes productTxtAnimation {
  from {
    transform: translateY(2.6042vw);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes titleAnimationOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes titleAnimation {
  0% {
    transform: translateY(0.7813vw);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bannerAnimation {
  0% {
    transform: translateY(1.5625vw);
  }

  100% {
    transform: translateY(0);
  }
}

/* 产品列表卡片依次从下到上动效 */
/* 使用案例：复制js 修改目标动画元素
    const technologySection = document.querySelector('.technology'); // 包裹元素
    const items = document.querySelectorAll('.technology-item');// 需要动画的元素
    const observer = new IntersectionObserver((entries) => {
      entries.forEach(entry => {
        if (entry.isIntersecting) {
          items.forEach((item, index) => {
            setTimeout(() => {
              item.classList.add(`animation${(index % 4) + 1}`); // 4 表示4列，根据实际情况调整
            }, 100 * Math.floor(index / 4)); // 4 表示4列，根据实际情况调整
          });
          observer.unobserve(technologySection); // 一旦触发，停止观察
        }
      });
    }, {
      threshold: 0.1 // 当元素的10%进入视口时触发
    });

    observer.observe(technologySection);
*/
.animation1 {
  /* animation: productTxtAnimation .8s 0.06s backwards cubic-bezier(0,0,0.5,1); */
  animation: productTxtAnimation 1s 0.2s forwards;
}

.animation2 {
  /* animation: productTxtAnimation .8s 0.12s backwards cubic-bezier(0,0,0.5,1); */
  animation: productTxtAnimation 1s 0.4s forwards;
}

.animation3 {
  /* animation: productTxtAnimation .8s 0.18s backwards cubic-bezier(0,0,0.5,1); */
  animation: productTxtAnimation 1s 0.6s forwards;
}

.animation4 {
  /* animation: productTxtAnimation .8s 0.24s backwards cubic-bezier(0,0,0.5,1); */
  animation: productTxtAnimation 1s 0.8s forwards;
}

.animation5 {
  animation: productTxtAnimation 1s 1s forwards;
}

.animation6 {
  animation: homeSolutionAnimation 1s 0.2s forwards;
}

@keyframes homeSolutionAnimation {
  from {
    transform: translateX(-50%) translateY(2.6042vw);
    opacity: 0;
  }

  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* 标题 banner 面包屑 依次执行动画 */
.animationT1 {
  animation-name: titleAnimationOpacity, bannerAnimation;
  animation-duration: calc(0.9 * 1s), calc(0.7 * 1s);
  animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-fill-mode: both;
}

.animationT2 {
  /* animation-delay: 0.1s; */
  animation-delay: 0.45s;
  animation-name: titleAnimationOpacity, bannerAnimation;
  animation-duration: calc(0.7 * 1s), calc(0.7 * 1s);
  animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-fill-mode: both;
}

.animationT3 {
  /* animation-delay: 0.2s; */
  animation-delay: 0.7s;
  animation-name: titleAnimationOpacity, bannerAnimation;
  animation-duration: calc(0.7 * 1s), calc(0.7 * 1s);
  animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-fill-mode: both;
}

.animationT4 {
  /* animation-delay: 0.2s; */
  animation-delay: 0.9s;
  animation-name: titleAnimationOpacity, bannerAnimation;
  animation-duration: calc(0.7 * 1s), calc(0.7 * 1s);
  animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  animation-fill-mode: both;
}

/* hover后，文字出现下滑线效果，底部图片放大15% */
.publicImg-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25vw;
  padding-bottom: 1.25vw;
}

.publicImg-box .publicImg-box-item {
  position: relative;
  flex: 0 0 calc((100% - 3 * 1.25vw) / 4);
  overflow: hidden;
}

.publicImg-box .publicImg-box-item img {
  width: 100%;
  height: 10vw;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.publicImg-box .publicImg-box-item:hover img {
  transform: scale(1.5);
}

.publicImg-box .publicImg-box-item:hover .hover-effect::after {
  transform: scaleX(1);
}

/* 公共滚动条样式 */
.scroll-box {
  overflow-y: auto;
}

.scroll-box::-webkit-scrollbar {
  width: 0.5333vw;
  /* 滚动条的宽度 */
}

/* 自定义滚动条轨道的样式 */
.scroll-box::-webkit-scrollbar-track {
  background-color: #eee;
  /* 轨道区域的背景颜色 */
  border-radius: 13.3333vw;
  /* 轨道区域的圆角 */
}

/* 自定义滚动条滑块的样式 */
.scroll-box::-webkit-scrollbar-thumb {
  background-color: #3A66FB;
  /* 滚动区域的颜色 */
  border-radius: 13.3333vw;
  /* 滚动区域的圆角 */
}

.publicImg-box .publicImg-box-item .publicImg-box-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 24, 21, 0.5);
}

.publicImg-box .publicImg-box-item .publicImg-box-text {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  color: #fff;
  font-family: "Montserrat-SemiBold";
  line-height: 150%;
  font-size: 0.8333vw;
  text-align: center;
  transform: translate(-50%, -50%);
}

.publicImg-box .publicImg-box-item .hover-effect::after {
  background-color: #fff;
}

.mb-0 {
  margin-bottom: 0vw !important;
}

#shareTipModal {
  /* display: flex !important;
    align-items: center !important; */
}

#loginTipModal .modal-dialog {
  justify-content: center;
}

/* 提示登录弹框 */
#loginTipModal .modal-content,
#shareTipModal .modal-content {
  width: 27.0833vw;
  border-radius: 0.8333vw;
}

#loginTipModal .modal-header,
#shareTipModal .modal-header {
  border: 0;
  justify-content: flex-end;
}

#shareTipModal .modal-header .close,
#loginTipModal .modal-header .close {
  padding: 1.25vw 1.25vw 0 0;
}

#shareTipModal .modal-header .close .iconfont,
#loginTipModal .modal-header .close .iconfont {
  font-size: 1.25vw;
  line-height: normal;
  color: #231815;
}

#loginTipModal .modal-body {
  text-align: center;
  color: #231815;
  padding: 0;
  margin-top: 2.6042vw;
}

#shareTipModal .modal-body {
  text-align: center;
  color: #231815;
  padding: 0;
  margin-top: 1.6667vw;
}

#shareTipModal .modal-body .model-logo,
#loginTipModal .modal-body .model-logo {
  width: 7.7083vw;
  height: 2.0833vw;
  margin: 0 auto;
}

#shareTipModal .modal-body .model-logo img,
#loginTipModal .modal-body .model-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#shareTipModal .modal-body .model-title,
#loginTipModal .modal-body .model-title {
  /* Heading7-S-24 */
  font-family: "Montserrat-SemiBold" !important;
  font-size: 1.25vw;
  font-style: normal;
  line-height: 150%;
  /* 150% */
  margin-top: 1.0417vw;
  margin-bottom: 0.8333vw;
}

#shareTipModal .modal-body .model-title {
  margin-top: 2.0833vw;
  margin-bottom: 2.8646vw;
}

#shareTipModal .modal-body .model-text,
#loginTipModal .modal-body .model-text {
  max-width: 18.75vw;
  margin: 0 auto;
  font-family: Montserrat;
  font-size: 0.7292vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 3.2292vw;
}

#loginTipModal .modal-body .model-text {
  font-size: 0.8333vw;
}

#loginTipModal .modal-footer {
  border: 0;
  justify-content: center;
  padding-bottom: 4.1667vw;
  padding-top: 0;
}

#shareTipModal .modal-footer {
  border: none;
  padding-bottom: 4.1667vw;
  padding-top: 0;
  flex-direction: column;
  align-items: stretch;
  align-content: center;
}

#shareTipModal .modal-footer a {
  width: 10.1042vw;
  border-radius: 1.25vw;
  border: 0.0521vw solid #231815;
  backdrop-filter: blur(0.7813vw);
  padding: 0.4167vw 2.0833vw;
  display: flex;
  align-items: center;
  margin: 0 0 1.3021vw;
  font-family: "Montserrat-SemiBold" !important;
  transition: all 0.3s ease;
  cursor: pointer;
}

#shareTipModal .modal-footer a:last-child {
  margin: 0 0 0;
}

#shareTipModal .modal-footer a span {
  color: #231815;
  font-size: 0.8333vw;
  font-style: normal;
  line-height: 100%;
}

#shareTipModal .modal-footer a img {
  width: 1.25vw;
  margin-right: 0.4167vw;
}

#shareTipModal .modal-footer a:hover {
  background-color: #3a66fb;
  border-color: #3a66fb;
}

#shareTipModal .modal-footer a:hover span {
  color: #fff;
}

#loginTipModal .modal-footer .sign-in {
  width: 7.1875vw;
  height: 2.0833vw;
  text-align: center;
  border-radius: 1.25vw;
  background: #3a66fb;
  padding: 0.4167vw 2.0833vw;
  margin: 0 !important;
  cursor: pointer;
  color: #fff;
  text-align: center;

  /* Large2-S-16 */
  font-family: "Montserrat-SemiBold";
  font-size: 0.8333vw;
  font-style: normal;
  line-height: 150%;
  /* 150% */
}

/* view more 按钮 */
.container .view-more {
  width: fit-content;
  height: 2.0833vw;
  padding: 0.4167vw 0.8333vw;
  border-radius: 6.4vw;
  border: 0.0521vw solid #231815;
  color: #231815;
  text-align: center;

  /* Small-12-S */
  font-family: "Montserrat-SemiBold";
  font-size: 0.8333vw;
  font-style: normal;
  line-height: 150%;
  /* 150% */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.8333vw auto 4.1667vw;
  cursor: pointer;
}

.container .view-more span {
  width: fit-content;
  white-space: nowrap;
}

.container .view-more .iconfont {
  font-size: 1.25vw;
  line-height: 1.25vw;
  margin-left: 0.4167vw;
  background: #3a66fb;
  border-radius: 50%;
  color: #fff;
}

.container .view-more:hover {
  background: #3a66fb;
  color: #fff;
  border-color: #3a66fb;
}

.container .view-more:hover .iconfont {
  background: #fff;
  color: #3a66fb;
}

/* 公共收藏提示框 */
.toast {
  width: 17.0313vw;
  height: auto;
  position: absolute;
  top: 1.875vw;
  left: 0vw;
  z-index: 2;
  border-radius: 0.4167vw !important;
  box-shadow: 0vw -0.1042vw 1.8229vw 0vw rgba(35, 24, 21, 0.1) !important;
  padding: 1.25vw;
  background: #fff !important;
  color: #231815;
  font-family: Montserrat;
  font-style: normal;
  border: 0 !important;
  border: 0 !important;
}

.toast .toast-body {
  padding: 0;
  /* Large3-R-14-22 */
  font-size: 0.7292vw;
  font-weight: 400;
  line-height: 150%;
  /* 157.143% */
}

.toast .toast-body .toast-view-more {
  font-size: 0.625vw;
  font-family: "Montserrat-SemiBold";
  line-height: 150%;
  /* 150% */
  margin-top: 0.8333vw;
  display: flex;
  color: #231815;
}

/* 产品列表加载中 */
.loading-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: rgba(35, 24, 21, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.spinner {
  border: 0.2083vw solid rgba(0, 0, 0, 0.1);
  border-top: 0.2083vw solid #3a66fb;
  border-radius: 50%;
  width: 2.0833vw;
  height: 2.0833vw;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* 定义提示框的样式 */
.message-box {
  position: fixed;
  top: 1.0417vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  display: none;
  width: 35.416vw;
  padding: 0.8333vw 2.083vw;
  background: #FFF;
  box-shadow: 0 -0.104vw 1.822vw 0 rgba(35, 24, 21, 0.10);
  /* 默认不显示 */
}

.message-box .message {
  display: flex;
  align-items: center;
  gap: 0.8333vw;
  word-break: break-word;
}

.message-box .message .exclamationMark {
  color: #E60012;
  font-size: 1.25vw;
  line-height: 1.25vw;
}

.message-box .message .circleCheck {
  color: #fff;
  width: 1.25vw;
  height: 1.25vw;
  height: 1.25vw;
  background: #25CD94;
  text-align: center;
  border-radius: 0.625vw;
}

.message-box .message .message-text {
  flex: 1;
  color: #231815;
  font-size: 0.7292vw;
  line-height: 150%;
}

/* 表单样式更改 */
.form-control:focus {
  box-shadow: none !important;
  border: 0.0521vw solid #3a66fb !important;
}

.form-country {
  position: relative;
}

.form-country .custom-datalist {
  display: none;
  position: absolute;
  background: #fff;
  width: 100%;
  border: 0.0521vw solid #3a66fb;
  max-height: 15.625vw;
  overflow: auto;
  top: 2.9167vw;
  padding: 0.8333vw 0;
  z-index: 1000;
}

.form-country .custom-datalist::-webkit-scrollbar {
  width: 0.1042vw;
}

.form-country .custom-datalist::-webkit-scrollbar {
  background: #fff;
  border-radius: 0.5208vw;
}

.form-country .custom-datalist::-webkit-scrollbar-thumb {
  background: #3a66fb;
  border-radius: 0.5208vw;
  height: 5.2083vw;
}

.form-country .custom-datalist::-webkit-scrollbar-button {
  display: none !important;
}

.form-country .custom-datalist div {
  padding: 0.4167vw 0.7813vw;
  cursor: pointer;
  font-size: 0.625vw;
}

.form-country .custom-datalist div.active {
  background-color: #f3f6ff;
  color: #3a66fb;
  font-family: "Montserrat-SemiBold";
}

.form-country .custom-datalist div:hover {
  background-color: #fafafa;
}

.form-country #arrow {
  transition: transform 0.3s ease;
  position: absolute;
  top: 0.625vw;
  right: 0.8333vw;
  font-size: 1.25vw;
  line-height: normal;
  cursor: pointer;
}

.form-country #arrow.rotate {
  transform: rotate(180deg);
}

.form-country .arrow {
  transition: transform 0.3s ease;
  position: absolute;
  top: 0.625vw;
  right: 0.8333vw;
  font-size: 1.25vw;
  line-height: 1.25vw;
}

.form-country .arrow.rotate {
  transform: rotate(180deg);
}

/* 表单样式更改 */
.customForm .invalid-feedback {
  display: block;
  font-size: 0.625vw;
  opacity: 0;
}

.is-invalid~.invalid-tooltip,
.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip {
  opacity: 1 !important;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.customForm label {
  color: #231815;
  font-family: Montserrat;
  font-size: 0.8333vw;
  font-weight: 400;
  line-height: 1.25vw;
  display: flex;
  align-items: center;
  gap: 0.4167vw;
}

.customForm label .input-prompt {
  color: #9fa0a0;
  font-family: Montserrat;
  font-size: 0.625vw;
  font-weight: 400;
  line-height: 1.25vw;
}

.customForm .input-remind {
  color: rgba(35, 24, 21, 0.4);
  font-family: Montserrat;
  font-size: 0.7292vw;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9375vw;
  margin-top: 0.4167vw;
}

.customForm .form-control {
  border: 0.0521vw solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  padding: 0.7813vw 2.0833vw 0.7813vw 0.8333vw;
  font-weight: 400;
  line-height: 0.9375vw;
  font-size: 0.7292vw;
  height: 2.5vw;
  background-image: unset !important;
  background-color: #fff;
  color: #231815;
}

.customForm .form-control:disabled,
.customForm .form-control[readonly] {
  background-color: transparent;
}

.customForm .form-control:focus {
  color: #231815;
}

.customForm .form-control::-webkit-input-placeholder {
  color: rgba(35, 24, 21, 0.4);
}

.customForm .email-box {
  position: relative;
}

.customForm .email-box .form-control {
  width: calc(100% - 6.875vw);
  padding-right: 0.2083vw;
}

.customForm .email-box .verify {
  position: absolute;
  top: 0;
  right: 0;
  background: #3a66fb;
  height: 2.5vw;
  padding: 0 2.3438vw 0 2.0313vw;
  font-size: 0.8333vw;
  line-height: 2.5vw;
  color: #fff;
  cursor: pointer;
  width: 6.875vw;
  text-align: center;
  font-family: "Montserrat-SemiBold" !important;
}

.was-validated .form-check-input:invalid~.form-check-label {
  color: #231815 !important;
}

.embed-responsive-item {
  cursor: pointer;
}

.video-model-play {
  width: 1.875vw;
  height: 1.875vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.1667vw !important;
  color: #3a66fb;
  line-height: normal;
  background: #fff;
  border-radius: 50%;
  display: none;
}

.video-model-play:hover {
  color: #3556cd;
  cursor: pointer;
}

table thead tr th {
  font-weight: 400 !important;
}

.customForm .input-group {
  position: relative;
}

.customForm .input-group .toggle-password {
  position: absolute;
  top: 0.625vw;
  right: 0.8333vw;
  font-size: 1.25vw;
  height: 1.25vw;
  width: 1.25vw;
  cursor: pointer;
  z-index: 999;
  line-height: 1.25vw;
}

.customForm .input-group .toggle-password .iconfont {
  font-size: 1.25vw;
  color: #231815;
}

.customForm .form-check label {
  padding-left: 0.4167vw;
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
  color: #231815 !important;
}

.customForm .form-check .form-check-input[type="checkbox"] {
  border-radius: 0 !important;
  width: 0.8333vw;
  height: 0.8333vw;
  margin-top: 0.1563vw;
}

.customForm .agreement {
  color: #231815;
  font-family: Montserrat;
  font-size: 0.7292vw;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0.8333vw;
}

.customForm .agreement a {
  color: var(--BrandColor, #3a66fb);
  font-size: 0.7292vw;
  font-style: normal;
  font-family: "Montserrat-SemiBold";
  line-height: 150%;
}

.customForm .form-submit {
  text-align: center;
}

.customForm .btn-primary {
  border-radius: 1.25vw;
  border: 0.0521vw solid #231815;
  /* backdrop-filter: blur(0.7813vw); */
  padding: 0.4167vw 2.0833vw;
  color: #231815;
  font-size: 0.8333vw;
  font-style: normal;
  font-family: "Montserrat-SemiBold";
  line-height: 150%;
  background: #fff;
  text-align: center;
}

.customForm .btn-primary:disabled {
  border: 0.0521vw solid #9fa0a0;
  color: #9fa0a0;
  opacity: 1;
}

.customForm .btn-primary:disabled:hover {
  background-color: transparent;
  border-color: #9fa0a0;
  color: #9fa0a0;
}

.customForm .btn.focus,
.btn:focus {
  box-shadow: none !important;
}

.customForm .btn-primary.focus,
.customForm .btn-primary:focus {
  background-color: unset;
  border-color: #231815;
  color: #231815;
}

.customForm .btn-primary:hover {
  background: #3a66fb;
  border: 0.0521vw solid #3a66fb;
  color: #fff;
}

.customForm .form-submit .submitbtn {
  border-radius: 1.25vw;
  border: 0.0521vw solid #231815;
  /* backdrop-filter: blur(0.7813vw); */
  padding: 0.4167vw 2.0833vw;
  color: #231815;
  text-align: center;
  font-size: 0.8333vw;
  font-style: normal;
  font-family: "Montserrat-SemiBold" !important;
  line-height: 150%;
  background: transparent;
  text-align: center;
  cursor: pointer;
}

.customForm .form-submit .submitbtn:disabled {
  border: 0.0521vw solid #9fa0a0;
  color: #9fa0a0;
  opacity: 1;
  cursor: auto;
}

.customForm .form-submit .submitbtn:hover {
  background-color: #3a66fb;
  border-color: #3a66fb;
  color: #fff;
}

.customForm .form-submit .submitbtn:disabled:hover {
  border: 0.0521vw solid #9fa0a0;
  background-color: transparent;
  color: #9fa0a0;
}

/* 解决方案banner */
.public-solutions-banner {
  text-align: center;
  position: relative;
}

.public-solutions-banner img {
  width: 100%;
  max-width: 91.6667vw;
}

.public-solutions-banner p {
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 150%;
  font-size: 3.125vw;
  font-style: normal;
  font-family: "Montserrat-SemiBold" !important;
  color: #fff;
  text-align: left;
  transform: translate(-50%, -50%);
}

.public-solutions-banner p span {
  width: 21.4583vw;
  display: inline-block;
  overflow-wrap: normal;
}

/* 下拉菜单 */
.public-select {
  margin: 2.0833vw 0;
  height: 2.9167vw;
  position: relative;
}

.public-select .public-select-title {
  display: flex;
  justify-content: space-between;
  background: rgba(58, 102, 251, 0.06);
  height: 2.9167vw;
  border-radius: 0.4167vw;
  align-items: center;
  padding: 0 1.25vw;
}

.public-select .public-select-title .text {
  line-height: 150%;
  font-size: 0.7292vw;
  font-family: "Montserrat-SemiBold";
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.public-select .public-select-title .iconfont {
  font-size: 1.25vw;
}

.public-select .public-select-title .arrow {
  transition: transform 0.3s ease;
  font-size: 1.25vw;
  line-height: 1.25vw;
}

.public-select .public-select-title .arrow.rotate {
  transform: rotate(180deg);
}

.public-select .public-select-list {
  display: none;
  position: absolute;
  /* background: rgba(58, 102, 251, 0.06); */
  background: #f3f6ff;
  width: 100%;
  margin-top: 0.4167vw;
  border-radius: 0.4167vw;
  padding: 0.8333vw 0;
  margin-bottom: 0;
  z-index: 9;
}

.public-select .public-select-list .public-select-item {
  padding: 0.4167vw 1.25vw;
  line-height: 150%;
  font-size: 0.7292vw;
  font-family: Montserrat;
}

.public-select .public-select-list .public-select-item.active {
  background: #fafafa;
  color: #3a66fb;
  font-family: "Montserrat-SemiBold";
}

.container .mob-quick-btn,
.container .mob-filter-btn {
  display: none;
}

.container .quick-list {
  display: none;
}

@media screen and (max-width: 1440px) {
  .container {
    max-width: 75vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .products-title {
    max-width: 75vw !important;
  }

  /* .crumbs {
    padding-bottom: 5.5556vw;
  } */

  /* .no-search-banner {
    max-width: 75vw;
    height: 29.1667vw;
    padding-right: 20.7639vw;
  } */

  #shareTipModal .modal-body .model-title {
    font-size: 1.6667vw;
  }

  #shareTipModal .modal-footer a {
    margin-bottom: 1.1111vw;
  }

  .customForm label {
    font-size: 1.1111vw;
  }
}

@media screen and (max-width: 1240px) {
  .container {
    width: 100% !important;
  }

  #shareTipModal .modal-body .model-title {
    font-size: 1.25vw;
  }

  #shareTipModal .modal-footer a {
    margin-bottom: 0.8333vw;
  }
}

@media screen and (max-width: 768px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
    max-width: 100% !important;
    padding-left: 6.4vw !important;
    padding-right: 6.4vw !important;
  }

  .products-title {
    margin: 19.2vw 6.4vw 0;
  }

  .mob-title {
    max-width: 100% !important;
    font-size: 8.5333vw !important;
  }

  .search-results .search-content .search-keywords {
    margin-right: 0vw;
    line-height: 3.7333vw;
    padding: 2.6667vw;
  }

  .container .view-more {
    width: 32vw;
    margin: 0 auto;
    margin-top: 6.4vw;
    height: 9.0667vw;
    font-size: 3.2vw;
    border-radius: 6.4vw;
  }

  .container .view-more span {
    width: 18.1333vw;
  }

  .container .view-more .iconfont {
    margin-left: 1.0667vw;
    font-size: 4.2667vw;
    line-height: normal;
    background-color: #3a66fb;
    color: #fff;
  }

  .crumbs {
    font-size: 2.667vw;
    padding-bottom: 10.6667vw;
    padding-top: 2.1333vw;
  }

  .crumbs .iconfont {
    font-size: 3.2vw;
    line-height: 1;
    padding: 0 1.0667vw;
  }

  #shareTipModal .modal-header .close .iconfont,
  #loginTipModal .modal-header .close .iconfont {
    font-size: 6.4vw;
  }

  #loginTipModal .modal-content,
  #shareTipModal .modal-content {
    width: 87.2vw;
    border-radius: 4.2666vw;
  }

  .modal.fade .modal-dialog {
    justify-content: center;
  }

  .modal-dialog {
    max-width: 100% !important;
  }

  #loginTipModal .modal-body {
    margin-top: 2.1333vw;
  }

  #loginTipModal .modal-header,
  #shareTipModal .modal-header {
    padding: 6.4vw;
  }

  #shareTipModal .modal-body .model-logo,
  #loginTipModal .modal-body .model-logo {
    width: 39.466vw;
    height: 10.6667vw;
  }

  #shareTipModal .modal-body .model-title,
  #loginTipModal .modal-body .model-title {
    margin-top: 6.4vw;
    font-size: 6.4vw;
    margin-bottom: 4.2666vw;
  }

  #shareTipModal .modal-body .model-title,
  #loginTipModal .modal-body .model-title {
    font-size: 4.2667vw;
  }

  .toast {
    padding: 4.2667vw;
  }

  .toast .toast-body {
    font-size: 3.2vw;
  }

  .toast .toast-body .toast-view-more {
    font-size: 3.2vw;
    margin-top: 4.2667vw;
  }

  #shareTipModal .modal-body .model-text,
  #loginTipModal .modal-body .model-text {
    max-width: 65.8667vw;
    margin-bottom: 10.6667vw;
    font-size: 3.7333vw;
  }

  #loginTipModal .modal-footer .sign-in {
    width: 65.8667vw;
    height: 9.6vw;
    font-size: 3.2vw;
    border-radius: 6.4vw;
    padding: 2.1333vw 6.4vw;
  }

  #loginTipModal .modal-footer {
    padding-bottom: 21.3333vw;
  }

  .toast {
    width: 87.2vw;
    top: 12.5333vw;
    border-radius: 0 !important;
    box-shadow: 0vw 0.5333vw 9.3333vw 0vw rgba(35, 24, 21, 0.1);
  }

  .modal-open .modal {
    padding: 0 6.4vw !important;
  }

  .modal .modal-dialog {
    margin: 0 auto !important;
  }

  .modal-header .close {
    top: 0 !important;
    right: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  /* 头部的banner图 文本定位到图上 */
  .mobileBannerHead {
    margin-top: 23.4667vw;
    padding: 0 6.4vw;
  }

  .mobileBannerHead .imgBox {
    margin: 0 auto;
    position: relative;
  }

  .mobileBannerHead .imgBox img {
    width: 100%;
    height: 49.0667vw;
  }

  .mobileBannerHead .imgBox p {
    width: 21.3333vw;
    position: absolute;
    top: calc(50% - 9.6vw);
    left: 6.4vw;
    color: #fff;
    font-family: "Montserrat-SemiBold" !important;
    font-size: 6.4vw;
    font-style: normal;
    line-height: 150%;
    /* 150% */
    white-space: break-spaces;
  }

  .video-model-play {
    font-size: 10.6667vw !important;
  }

  /* 表单 */
  .customForm .email-box .form-control {
    width: calc(100% - 25.6vw);
  }

  .customForm .email-box .verify {
    width: 25.6vw;
    padding: 0;
    height: 12.8vw;
    line-height: 12.8vw;
    font-size: 4.2666vw;
  }

  .customForm label {
    font-size: 4.2666vw;
    line-height: 150%;
    gap: 2.1333vw;
  }

  .customForm label .input-prompt {
    font-size: 3.2vw;
  }

  .customForm .agreement {
    font-size: 3.2vw;
  }

  .customForm .agreement a {
    font-size: 3.2vw;
  }

  .customForm .form-control {
    height: 12.8vw;
    font-size: 3.2vw;
    padding: 4.2666vw;
  }

  .customForm .invalid-feedback {
    font-size: 3.2vw;
  }

  .customForm .input-group>.form-control {
    width: unset;
  }

  .customForm .input-group .toggle-password {
    top: 3.2vw;
    right: 2.1333vw;
    font-size: 6.4vw;
    height: 6.4vw;
    width: 6.4vw;
    line-height: 6.4vw;
  }

  .customForm .input-group .toggle-password .iconfont {
    font-size: 6.4vw;
  }

  .customForm .input-remind {
    font-size: 3.2vw;
    line-height: 150%;
    margin-top: 1.0666vw;
  }

  .customForm .form-check .form-check-input[type="checkbox"] {
    width: 4.2666vw;
    height: 4.2666vw;
    margin-top: .3rem;
  }

  .customForm .btn-primary {
    border-radius: 6.4vw;
    padding: 2.1333vw 6.4vw;
  }

  .customForm .form-submit .submitbtn {
    font-size: 3.2vw;
    padding: 2.1333vw 6.4vw;
    border-radius: 6.4vw;
  }

  .customForm .form-submit .submitbtn:disabled {
    border: 0.2666vw solid #9fa0a0;
  }

  /* 移动端 锚点定位;产品筛选按钮弹框 */
  .container .mob-quick-btn,
  .container .mob-filter-btn {
    position: fixed;
    bottom: 6.4vw;
    background: #fff;
    border-radius: 8vw;
    background: #3a66fb;
    padding: 2.1333vw 2.1333vw 2.1333vw 6.4vw;
    z-index: 998;
    display: flex;
    color: #231815;
    /* Large2-S-16 */
    font-family: "Montserrat-SemiBold";
    font-size: 4.2667vw;
    font-style: normal;
    line-height: 150%;
    /* 150% */
  }

  .no-data-box .no-data-img {
    width: 92%;
    height: auto;
    margin: 0 auto;
  }

  .no-data-box .no-data-message {
    margin-top: 4.8vw;
    font-size: 4.8vw;
  }

  .container .mob-quick-btn {
    background: #3a66fb;
    color: #fff;
    left: 6.4vw;
  }

  .container .quick-list {
    width: 87.2vw;
    border: 0.2667vw solid rgba(35, 24, 21, 0.1);
    background: #fafafa;
    position: fixed;
    bottom: 19.2vw;
    left: 6.4vw;
    padding: 4.2667vw;
    display: none;
    z-index: 998;
  }

  .container .quick-list .quick-item {
    color: #231815;

    /* Large3-R-14-22 */
    font-family: Montserrat;
    font-size: 3.7333vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 4.2667vw;
  }

  .container .quick-list .quick-item:last-child {
    margin-bottom: 0;
  }

  .container .quick-list .quick-item.active {
    color: #3a66fb;
    font-family: "Montserrat-SemiBold";
  }

  .container .mob-quick-btn .iconfont,
  .container .mob-filter-btn .iconfont {
    width: 6.4vw;
    height: 6.4vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4.2667vw;
    font-size: 4.2667vw;
    border-radius: 50%;
  }

  .container .mob-quick-btn .iconfont {
    background-color: #fff;
    color: #231815;
  }

  .container .mob-filter-btn {
    background: #fff;
    color: #231815;
    right: 6.4vw;
    border: 0.2667vw solid #231815;
  }

  .container .mob-filter-btn .iconfont {
    background-color: #3a66fb;
    color: #fff;
  }

  .container .view-more:hover {
    background: #fff;
    color: #231815;
    border-color: #231815;
  }

  .container .view-more:hover .iconfont {
    color: #fff;
    background: #3a66fb;
  }

  div img {
    transform: scale(1) !important;
  }

  .public-select {
    height: 14.933vw;
  }

  .public-select .public-select-title {
    height: 14.933vw;
    padding: 0 6.4vw;
    border-radius: 2.1333vw;
  }

  .public-select .public-select-title .text {
    font-size: 3.7333vw;
  }

  .public-select .public-select-title .arrow {
    font-size: 6.4vw;
    line-height: 6.4vw;
  }

  .public-select .public-select-list {
    border-radius: 2.1333vw;
    padding: 4.2666vw 0;
    margin-top: 2.1333vw;
  }

  .public-select .public-select-list .public-select-item {
    padding: 2.1333vw 6.4vw;
    font-size: 3.733vw;
    font-family: "Montserrat-SemiBold";
  }

  .spinner {
    border: 1.06vw solid rgba(0, 0, 0, 0.1);
    border-top: 1.06vw solid #3a66fb;
    width: 10.6667vw;
    height: 10.6667vw;
  }

  .form-country .custom-datalist {
    border: 0.2666vw solid #3a66fb;
    max-height: 80vw;
    overflow: auto;
    top: 14.93vw;
    padding: 4.2666vw 0;
  }

  .form-country .custom-datalist div {
    padding: 2.1333vw 4vw;
    font-size: 3.2vw;
  }

  .form-country #arrow {
    width: 6.4vw;
    height: 6.4vw;
    top: 3.4667vw;
    right: 4.2666vw;
    font-size: 6.4vw;
  }

  .no-data-box .no-data-img {
    width: 82.66vw;
    height: 65.06vw;
  }

  .no-data-box .no-data-message {
    margin-top: 4.8vw;
    font-size: 4.8vw;
  }

  .message-box {
    width: 91.4666vw;
    padding: 4.2666vw 6.4vw;
    top: 4.2666vw;
  }

  .message-box .message .message-text {
    font-size: 3.7333vw;
  }

  .message-box .message .exclamationMark {
    font-size: 6.4vw;
    line-height: 6.4vw;
  }

  .message-box .message .circleCheck {
    width: 6.4vw;
    height: 6.4vw;
    border-radius: 3.2vw;
  }

  .video-model-play {
    width: 6.4vw;
    height: 6.4vw;
  }

  #shareTipModal .modal-body .model-logo,
  #loginTipModal .modal-body .model-logo {
    width: 39.4667vw;
    height: auto;
  }

  #shareTipModal .modal-footer a {
    width: 40vw;
    border-radius: 6vw;
    margin-bottom: 4.2667vw;
    padding: 2vw 6vw;
  }

  #shareTipModal .modal-footer a img {
    width: 6.4vw;
    margin-right: 2.133vw;
  }

  #shareTipModal .modal-footer a span {
    font-size: 4.2667vw;
  }

  #shareTipModal .modal-footer {
    padding-bottom: 14.1667vw;
  }

  #shareTipModal .modal-header .close {
    font-size: 6.4vw;
  }

  #shareTipModal .modal-header .close .iconfont,
  #loginTipModal .modal-header .close .iconfont {
    font-size: 6.4vw;
  }
}