@font-face {
  font-family: 'iconfont';  /* Project id 5180374 */
  src: url('//at.alicdn.com/t/c/font_5180374_c9v80yye50k.woff2?t=1785738163764') format('woff2'),
  url('//at.alicdn.com/t/c/font_5180374_c9v80yye50k.woff?t=1785738163764') format('woff'),
  url('//at.alicdn.com/t/c/font_5180374_c9v80yye50k.ttf?t=1785738163764') format('truetype');
}
@font-face {
  font-family: Georama;
  src: url('../fonts/Georama-Regular.ttf');
}
@font-face {
  font-family: SemiBold;
  src: url('../fonts/Georama-SemiBold.ttf');
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html,
body {
  color: #272727;
  font-family: Georama;
  background: #ffffff;
}
input,
textarea {
  font-family: 'SourceHanSans', "思源黑体", "Microsoft YaHei", '微软雅黑', "Arial";
}
:root {
  --mainC: #1A3BB2;
}
.iconfont {
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
/* 修改滚动条的样式 */
::-webkit-scrollbar {
  width: 8px;
  /* 滚动条宽度 */
  height: 8px;
  /* 滚动条高度 */
}
/* 修改滚动条滑块的样式 */
::-webkit-scrollbar-thumb {
  background-color: #1A3BB2;
  /* 滑块背景颜色 */
  border-radius: 6px;
  /* 滑块圆角 */
}
@keyframes fadeIniup {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bulrAnmkey {
  0% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0);
  }
}
.bulrAnm {
  -webkit-animation: bulrAnmkey 1s ease both;
  animation: bulrAnmkey 1s ease both;
  -ms-animation: bulrAnmkey 1s ease both;
  animation-delay: 0.3s;
}
.he_fadeup1 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.3s;
}
.he_fadeup2 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.4s;
}
.he_fadeup3 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.5s;
}
.he_fadeup4 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.6s;
}
.he_fadeup5 {
  -webkit-animation: fadeIniup 1s ease both;
  animation: fadeIniup 1s ease both;
  -ms-animation: fadeInUp 1s ease both;
  animation-delay: 0.7s;
}
.cpthActive.animated {
  -webkit-clip-path: polygon(100% 0, 0 0, 0% 100%, 100% 100%) !important;
}
.cpth {
  -webkit-clip-path: polygon(0% 0, 0 0, 0% 100%, 0% 100%);
  -webkit-transition: 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s;
}
.imgAnimation {
  width: 100%;
  position: relative;
  opacity: 0;
}
.imgAnimation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  transform: scaleY(1);
  transform-origin: top center;
  z-index: 1;
  -webkit-transition: 1.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.imgAnimation.animated {
  opacity: 1;
}
.imgAnimation.animated::before {
  transform: scaleY(0);
}
.animate-on-scroll {
  /* 初始状态：透明 + 偏移 */
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
  /* 1.8秒慢动画（时长可调） */
  transform-origin: center center;
  /* skew倾斜中心点（避免变形偏移） */
  transform: translateY(60px) skewY(1deg);
}
/* 动画触发后的状态 */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0) skew(0);
  /* 重置偏移和skew */
}
.animate-img {
  overflow: hidden;
  transition: 3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.animate-img img {
  transform: scale(1.2, 1.2);
  transition: 2s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}
.animate-img .img {
  transform: scale(1.2, 1.2);
  transition: 2s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}
.animate-img.active {
  opacity: 1;
}
.animate-img.active img {
  transform: scale(1);
}
.animate-img.active .img {
  transform: scale(1);
}
.img-popup-layer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 9999;
  cursor: zoom-out;
}
.img-popup-layer img {
  position: absolute;
  width: auto;
  max-height: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}
.videoBoxs {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  background: rgba(55, 52, 56, 0.7);
  z-index: 999;
  display: none;
}
.videoBoxs .videos {
  width: 50vw;
  position: absolute;
  top: 50%;
  left: 50%;
  background: white;
  border-radius: 10px;
  padding: 10px;
  transform: translate(-50%, -50%);
}
.videoBoxs .videos video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.videoBoxs .videos .close {
  width: 2vw;
  color: white;
  position: absolute;
  right: -2vw;
  top: -2vw;
  font-size: 1.2vw;
  cursor: pointer;
}
.videoBoxs.active {
  display: block;
}
header {
  width: 100%;
  position: fixed;
  z-index: 999;
  -webkit-transition: all 0.5s;
}
header .w1400 {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .w1400 .logo {
  width: 8vw;
}
header .w1400 .logo img:nth-child(1) {
  display: none;
}
header .w1400 nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .w1400 nav ul li {
  transition: 0.3s all;
  padding: 1.5vw 1.1vw;
}
header .w1400 nav ul li a {
  color: white;
  font-size: 16px;
  position: relative;
  text-transform: capitalize;
  transition: none;
  font-family: SemiBold;
}
header .w1400 nav ul li a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: white;
  transform: scaleX(0);
  bottom: -10px;
  left: 0;
  transition: all 0.3s ease-in-out;
}
header .w1400 nav ul li i {
  color: white;
  cursor: pointer;
  transition: none;
}
header .w1400 nav ul li .sub-menu {
    background: #F5F5F7;
    border-top: 1px solid #e6e6e6;
    -webkit-clip-path: inset(0 -100vw 100%);
    clip-path: inset(0 -100vw 100%);
    display: block;
    margin-left: -1vw;
    margin-top: 1.5vw;
    padding: 1vw 1.5vw;
    position: absolute;
    box-shadow: 0 10px 2px rgba(0, 0, 0, 0.05);
    transition: -webkit-clip-path 0.55s ease;
    transition: clip-path 0.55s ease, -webkit-clip-path 0.55s ease;
    visibility: hidden;
}
/* 桥接 li1 与 sub-menu 之间的 1.5vw 间隙，
   鼠标从触发器快速下移到子菜单时不会穿过"无人区"导致 hover 断开。
   伪元素随父级 clip-path 一起裁剪，隐藏时不会露馅。 */
header .w1400 nav ul li .sub-menu::before {
    content: '';
    position: absolute;
    top: -1.5vw;
    left: 0;
    right: 0;
    height: 1.5vw;
}
header .w1400 nav ul li .sub-menu.a2{
  -webkit-clip-path: inset(0 -100vw 0);
  clip-path: inset(0 -100vw 0);
  pointer-events: all;
  visibility: visible;
}
header .w1400 nav ul li .sub-menu.sub-menu2{
  width: 50vw;
  height: auto;
  display: flex;
  justify-content: space-between;
}
header .w1400 nav ul li .sub-menu.sub-menu2 .sub-menu2A{
  width: 13vw;
  display: block;
  transition: none;
}
header .w1400 nav ul li .sub-menu.sub-menu2 .sub-menu2A a{
  display: block;
  padding: .3vw 0;
  transition: none;
}
header .w1400 nav ul li .sub-menu.sub-menu2 .sub-menu2A a:before{
  content: inherit;
}
header .w1400 nav ul li .sub-menu.sub-menu2 .sub-menu2A .liTit {
  font-weight: bold;
  font-size: 15px;
  display: flex;
  margin-bottom: 1vw;
  align-items: center;
  transition: none;
}
header .w1400 nav ul li .sub-menu.sub-menu2 .sub-menu2A .liTit.active{
  color: #1A3BB2;
}
header .w1400 nav ul li .sub-menu.sub-menu2 .sub-menu2A .liTit:hover{
  color: #1A3BB2;
}
header .w1400 nav ul li .sub-menu.sub-menu2 .sub-menu2A .liTit i{
  position: absolute;
  right: 0;
  font-size: 8px;
}
header .w1400 nav ul li .sub-menu.sub-menu2 .sub-menu2A .liTit.active i{
  color: #1A3BB2;
}
header .w1400 nav ul li .sub-menu.sub-menu2 .sub-menu2A .liTit:hover i{
  color: #1A3BB2;
}
.liTitTwo{
  font-size: 15px !important;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: none;
}
.liTitTwo:hover {
  color: #1A3BB2;
}
.liTitTwo i{
  font-size: 8px;
  margin-left: 1vw;
  transition: .3s all ease-in-out;
}
.liTitTwo:hover i{
  /*transform: translateX(.5vw);*/
  color: #1A3BB2;
}
header .w1400 nav ul li .sub-menu li {
  line-height: 2;
  margin-left: 0;
  padding: 0.2vw 0;
  transition: none;
}
header .w1400 nav ul li .sub-menu li a {
  color: #333333;
  transition: none;
  font-family: Georama;
  font-size: 14px;
}
header .w1400 nav ul li .sub-menu li a::before {
  content: inherit;
}
header .w1400 nav ul li .sub-menu li a:hover {
  color: #1A3BB2;
}
header .w1400 nav ul li .sub-menu li.active a{
  color: #1A3BB2;
}
header .w1400 nav ul li:nth-child(2) ul {
  width: 13vw;
}
header .w1400 nav ul li:hover .li1 {
  color: #1A3BB2;
}
header .w1400 nav ul li:hover .li1:before {
  transform: scaleX(1);
}
header .w1400 nav ul li:hover .sub-menu {
  -webkit-clip-path: inset(0 -100vw 0);
  clip-path: inset(0 -100vw 0);
  pointer-events: all;
  visibility: visible;
}
.sub-menu2Ul{
  width: calc(100% - 15vw);
  min-height: auto;
  max-height: 80vh;
  padding-top: .3vw;
  padding-bottom: 1vw;
  overflow-y: hidden;
  overflow-x: hidden;
  transition: none;
}
.sub-menu2Li{
  width: 100%;
  height: 0;
  position: relative;
  display: block;
  column-count: 3;      /* 固定2列，一排两个 */
  column-gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: none;
}
.menu2LiTwo{
  width: 90%;
  break-inside: avoid; /* 关键！防止一个menu2LiTwo被分割到两列 */
  box-sizing: border-box;
  margin-bottom: 1vw;
  transition: none;
}
.sub-menu2Li.active {
  height: auto;
  opacity: 1;
  pointer-events: all;
}
.sub-menu2Li a{
  padding: 0 0 .3vw 0 !important;
  transition: none;
}
.sub-menu2Li .it{
  padding: .3vw 0 !important;
  font-family: Georama;
  font-size: 14px !important;
  display: block;
  transition: none;
  color: #666666;
}
.sub-menu2Li .it:hover{
  color: #1A3BB2;
}
header.active {
  background: white;
  border-bottom: 1px solid #e6e6e6;
}
header.active .logo img:nth-child(1) {
  display: block;
}
header.active .logo img:nth-child(2) {
  display: none;
}
header.active nav ul li a {
  color: #333333;
}
header.active nav ul li .li1:before {
  background: #333333;
}
header.active nav ul li i {
  color: #333333;
}
footer {
  width: 100%;
  position: relative;
  background: #314396;
  border-radius: 3vw 3vw 0 0;
  padding: 3vw 6vw 0 6vw;
  color: white;
  overflow: hidden;
}
footer .footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .footer .left {
  position: relative;
  z-index: 2;
}
footer .footer .left .logo {
  width: 8vw;
}
footer .footer .left .des {
  font-size: 2vw;
  font-family: SemiBold;
  text-transform: capitalize;
  margin-top: 3vw;
}
footer .footer .center {
  position: relative;
  z-index: 2;
}
footer .footer .center .tit {
  font-size: 1.3vw;
  font-family: SemiBold;
  text-transform: capitalize;
}
footer .footer .center .its {
  width: 20vw;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3vw;
}
footer .footer .center .its .link {
  width: 50%;
  font-size: 0.85vw;
  position: relative;
  margin-bottom: 1.5vw;
  font-family: SemiBold;
  text-transform: capitalize;
}
footer .footer .center .its .link a {
  width: auto;
  color: white;
  position: relative;
}
footer .footer .center .its .link a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: white;
  transform: scaleX(0);
  bottom: -10px;
  left: 0;
  transition: all 0.3s;
}
footer .footer .center .its .link:hover a:before {
  transform: scaleX(1);
}
footer .footer .right {
  position: relative;
  z-index: 2;
}
footer .footer .right .tit {
  font-size: 1.3vw;
  font-family: SemiBold;
  text-transform: capitalize;
}
footer .footer .right .its {
  margin-top: 3vw;
}
footer .footer .right .its .it {
  display: flex;
  margin-bottom: 1.5vw;
}
footer .footer .right .its .it .t {
  width: 6vw;
  font-family: SemiBold;
  text-transform: capitalize;
  font-size: 0.85vw;
}
footer .footer .right .its .it .d {
  font-size: 0.85vw;
}
.df{
  display: flex;
  align-items: center;
}
.linkBtn{
  background: white;
  font-size: .9vw;
  padding: .5vw 1vw;
  display: inline-flex;
}
footer .footer .right .meiti {
  display: flex;
  margin-left: 2vw;
}
footer .footer .right .meiti .icon {
  display: block;
  font-size: 1.2vw;
  color: white;
  margin-right: 1.5vw;
}
footer .footerInfo {
  width: 100%;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5vw 0;
  margin-top: 3vw;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
footer .footerInfo a {
  font-size: 0.8vw;
  color: white;
  opacity: 0.5;
}
footer::before {
  content: '';
  position: absolute;
  width: 40vw;
  height: 25vw;
  background: url('../images/footer.png') center no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}
.more {
  display: inline-flex;
  color: white;
  font-size: 0.9vw;
  align-items: center;
}
.more .icon {
  width: 2.2vw;
  height: 2.2vw;
  margin-right: 0.3vw;
  border-radius: 0.2vw;
  background: white;
  padding: 0.7vw;
  position: relative;
  transition: 0.5s cubic-bezier(0.23, 0.75, 0.57, 0.94);
}
.more .icon img {
  position: relative;
  z-index: 2;
  transition: filter 0.21s;
}
.more .t {
  border: 1px solid white;
  height: 2.2vw;
  padding: 0 1vw;
  line-height: 2.2vw;
  border-radius: 0.2vw;
  position: relative;
  z-index: 2;
}
.more .t::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  border-radius: 0.2vw;
  background: #1A3BB2;
  transition: width 0.5s cubic-bezier(0.23, 0.75, 0.57, 0.94);
}
.more .t2 {
  border: 1px solid #EEEEEE;
  color: #333333;
  height: 2.2vw;
  padding: 0 1vw;
  line-height: 2.2vw;
  border-radius: 0.2vw;
  position: relative;
  z-index: 2;
}
.more .t2::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  border-radius: 0.2vw;
  background: #1A3BB2;
  transition: width 0.5s cubic-bezier(0.23, 0.75, 0.57, 0.94);
}
.more:hover .icon {
  background: #1A3BB2 !important;
}
.more:hover .icon img {
  filter: brightness(0) invert(1);
}
.more:hover .t {
  border: 1px solid #1A3BB2 !important;
  color: white !important;
}
.more:hover .t2 {
  border: 1px solid #1A3BB2 !important;
  color: white !important;
}
.more:hover .t::before {
  width: 100%;
  left: 0;
}
.more:hover .t2::before {
  width: 100%;
  left: 0;
}
.titBox .tit {
  font-size: 2vw;
  text-transform: capitalize;
  font-family: SemiBold;
  padding-left: 2vw;
  position: relative;
}
.titBox .tit::after {
  content: "";
  position: absolute;
  width: 0.7vw;
  height: 3vw;
  background: #E41B4B;
  border-radius: 1vw 0;
  left: 0;
  top: -1vw;
  transition: all 0.3s;
}
.formBox {
  width: 100%;
  position: relative;
  padding: 3vw 0 6vw 0;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.formBox .left .titBox {
  margin-top: 1vw;
}
.formBox .left .contBox {
  margin-top: 3vw;
}
.formBox .left .contBox .it {
  display: flex;
  align-items: center;
  font-size: 0.9vw;
  margin-top: 2vw;
}
.formBox .left .contBox .it .icon {
  width: 1vw;
}
.formBox .left .contBox .it .t {
  width: 3vw;
  font-weight: bold;
  margin: 0 2vw;
}
.formBox .left .contBox .it .d {
  color: #666666;
}
.formBox form {
  width: 55%;
  border-radius: 16px;
  background: rgba(245, 245, 247, 0.7);
  backdrop-filter: blur(25px);
  padding: 2vw;
  position: relative;
  z-index: 4;
}
.formBox form .inputBox {
  width: 100%;
  margin-bottom: 1.5vw;
}
.formBox form .inputBox .name {
  font-size: 1vw;
}
.formBox form .inputBox input {
  width: 100%;
  margin-top: 1vw;
  border: 1px solid #D1D5DC;
  background: rgba(245, 245, 247, 0.7);
  border-radius: 0.5vw;
  height: 2.5vw;
  padding: 0 1vw;
  font-size: 0.9vw;
  font-family: Georama;
}
.formBox form .inputBox textarea {
  width: 100%;
  margin-top: 1vw;
  border: 1px solid #D1D5DC;
  background: rgba(245, 245, 247, 0.7);
  border-radius: 0.5vw;
  height: 10vw;
  padding: 1vw;
  font-size: 0.9vw;
  resize: none;
  font-family: Georama;
}
.formBox form .submit {
  display: inline-flex;
  font-size: 0.9vw;
  align-items: center;
  cursor: pointer;
}
.formBox form .submit .icon {
  width: 2.2vw;
  height: 2.2vw;
  margin-right: 0.3vw;
  border-radius: 0.2vw;
  background: white;
  padding: 0.7vw;
  position: relative;
  transition: 0.5s cubic-bezier(0.23, 0.75, 0.57, 0.94);
}
.formBox form .submit .icon img {
  position: relative;
  z-index: 2;
  transition: filter 0.21s;
}
.formBox form .submit .t {
  border: 1px solid #1A3BB2;
  height: 2.2vw;
  padding: 0 2vw;
  line-height: 2.2vw;
  border-radius: 0.2vw;
  position: relative;
  color: #1A3BB2;
}
.formBox form .submit .t::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  border-radius: 0.2vw;
  background: #1A3BB2;
  transition: width 0.5s cubic-bezier(0.23, 0.75, 0.57, 0.94);
}
.formBox form .submit:hover .icon {
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.formBox form .submit:hover .icon img {
  filter: brightness(0) invert(1);
}
.formBox form .submit:hover .t {
  color: white;
}
.formBox form .submit:hover .t::before {
  width: 100%;
  left: 0;
}
.formBoxinfoImg {
  width: 25vw;
  position: absolute;
  right: -10vw;
  bottom: -5vw;
  pointer-events: none;
}
.index {
  width: 100%;
  position: relative;
}
.index .f1 {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.index .f1::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.25);
  z-index: 1;
}
.index .f1 .bannerBg {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.index .f1 .bannerBg img {
  width: auto;
  height: 100%;
  max-width: inherit;
}
.index .f1 .bannerText {
  width: auto;
  position: absolute;
  top: 25%;
  left: 13.5vw;
  z-index: 10;
  display: flex;
}
.index .f1 .bannerText .text1 {
  width: 100vw;
  position: relative;
}
.index .f1 .bannerText .text1 .t {
  color: white;
  font-size: 5vw;
  line-height: 1.1;
  text-transform: capitalize;
  font-family: SemiBold;
}
.index .f1 .bannerText .text1 .t::after {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  left: 0;
  margin-top: 6.5vw;
  transition: all 0.3s;
}
.index .f1 .bannerText .text2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0vw;
}
.index .f1 .bannerText .text2 .txt {
  width: 26vw;
}
.index .f1 .bannerText .text2 .txt .des {
  color: white;
  font-size: 1.2vw;
  line-height: 1.7;
}
.index .f1 .bannerText .text2 .txt .more {
  margin-top: 10vw;
}
.index .f1 .bannerText .text2 .itemBox {
  width: 55vw;
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  margin-left: 10vw;
}
.index .f1 .bannerText .text2 .itemBox .item {
  width: 15vw;
  border-radius: 1vw;
  border-top: 10px solid #1A3BB2;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(25px);
  padding: 1.5vw;
  color: white;
  font-size: 0.9vw;
  transform: translateY(30px);
  opacity: 0;
}
.index .f1 .bannerText .text2 .itemBox .item .icon {
  width: 2vw;
}
.index .f1 .bannerText .text2 .itemBox .item .num {
  font-size: 2.5vw;
  font-weight: bold;
  font-family: "Inter";
  margin-top: 1vw;
}
.index .f1 .bannerText .text2 .itemBox .item:first-child span {
  font-weight: normal;
  font-size: 1.5vw;
}
.index .f1 .scroll {
  position: absolute;
  bottom: 3vw;
  left: 13.5vw;
  color: white;
  font-size: 0.9vw;
  display: flex;
  align-items: center;
}
.index .f1 .scroll i {
  font-size: 1.5vw;
  margin-right: 0.5vw;
}
.index .f2 {
  width: 100%;
  position: relative;
  background: white;
  z-index: 2;
  padding: 6vw 0 2vw 0;
}
.index .f2 .f2Txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index .f2 .f2Txt .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
}
.index .f2 .f2Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.index .f2 .f2Box .item {
  width: 49%;
  height: 23vw;
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
}
.index .f2 .f2Box .item .imgBox {
  width: 100%;
  height: 100%;
  position: relative;
}
.index .f2 .f2Box .item .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all;
}
.index .f2 .f2Box .item .text {
  height: 100%;
  position: absolute;
  top: 0;
  padding: 3vw;
  z-index: 1;
}
.index .f2 .f2Box .item .text .tit {
  color: white;
  font-size: 1.5vw;
  text-transform: capitalize;
  font-family: SemiBold;
}
.index .f2 .f2Box .item .text .des{
  font-size: .9vw;
  line-height: 1.7;
  margin-top: 1vw;
  color: white;
  opacity: 0;
  transition: .3s all;
}
.index .f2 .f2Box .item:hover .des{
  opacity: 1;
}
.index .f2 .f2Box .item .text .more {
  position: absolute;
  bottom: 3vw;
}
.index .f2 .f2Box .item:hover .imgBox img {
  transform: scale(1.05);
}
.index .f2 .f2Box .item:last-child {
  margin-top: 3vw;
}
.index .f3 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.index .f3 .f3BgImg {
  width: 1400px;
  height: 100vh;
  margin: 0 auto;
  position: fixed;
  top: 0;
}
.index .f3 .f3BgImg img {
  width: 100%;
  height: 100%;
}
.index .f3 .f3Img {
  width: 100%;
  position: relative;
}
.index .f3 .f3Img img {
  width: 100%;
  height: 100%;
}
.index .f4 {
  width: 100%;
  position: relative;
  display: inline-block;
  z-index: 2;
  background: white;
  margin-top: -0.1vw;
}
.index .f4 .f4Video {
  width: 50%;
  position: sticky;
  top: 10vw;
  display: inline-block;
  float: left;
}
.index .f4 .f4Video video {
  width: 100%;
  object-fit: cover !important;
}
.index .f4 .f4Text {
  width: 50%;
  position: relative;
  display: inline-block;
}
.index .f4 .f4Text .item {
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3vw 0;
}
.index .f4 .f4Text .item .tit {
  display: flex;
  align-items: center;
}
.index .f4 .f4Text .item .tit .num {
  background: #314396;
  color: white;
  font-size: 1.2vw;
  font-family: "Inter";
  border-radius: 50%;
  font-weight: bold;
  width: 3vw;
  height: 3vw;
  line-height: 3vw;
  text-align: center;
}
.index .f4 .f4Text .item .tit .t {
  width: calc(100% - 5vw);
  font-size: 1.5vw;
  font-family: SemiBold;
  margin-left: 1vw;
  text-transform: capitalize;
}
.index .f4 .f4Text .item .des {
  font-size: 1vw;
  line-height: 1.7;
  margin-top: 1vw;
  padding-left: 4.2vw;
}
.index .f5 {
  width: 100%;
  position: relative;
  padding: 6vw 0 3vw 0;
  z-index: 2;
  background: white;
}
.index .f5 .f5Txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index .f5 .f5Txt .more .icon {
  background: #EEEEEE;
}
.index .f5 .f5Txt .more .t {
  border: 1px solid #EEEEEE;
  color: #333333;
}
.index .f5 .f5Swiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  overflow: hidden;
  padding-left: 13vw;
}
.index .f5 .f5Swiper .swiper-slide {
  width: 100%;
  display: flex;
}
.index .f5 .f5Swiper .swiper-slide .imgBox {
  width: 45vw;
  height: 30vw;
  border-radius: 1vw;
  overflow: hidden;
}
.index .f5 .f5Swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.index .f5 .f5Swiper .swiper-slide .textBox {
  width: 55vw;
  height: 30vw;
  background: #F8F8FA;
  position: relative;
  border-radius: 1vw;
  margin-left: 1vw;
  padding: 2vw;
}
.index .f5 .f5Swiper .swiper-slide .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.index .f5 .f5Swiper .swiper-slide .textBox .name {
  font-size: 1.8vw;
  margin: 2vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index .f5 .f5Swiper .swiper-slide .textBox .des {
  font-size: 1vw;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.index .f5 .f5Swiper .swiper-slide .textBox .mores {
  width: calc(100% - 4vw);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 2vw;
  padding-top: 1vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.index .f5 .f5Swiper .swiper-slide .textBox .mores .icon {
  width: 1vw;
}
.index .f5 .f5Swiper .swiper-slide .textBox .mores .t {
  font-size: 0.9vw;
  margin-left: 1vw;
}
.index .f5 .f5Swiper .swiper-slide .textBox .mores:hover {
  color: #1A3BB2;
}
.index .f5 .f5Swiper .swiper-slide:hover .imgBox img {
  transform: scale(1.05);
}
.index .f5 .f5Swiper .swiper-slide:hover .mores {
  border-top: 1px solid #1A3BB2;
}
.industryHome {
  width: 100%;
  position: relative;
}
.industryHomeBanner{
  width: 100%;
  height: 35vw;
  position: relative;
  background-size: cover !important;
}
.industryHomeBanner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(26, 59, 178, 0) 0%, rgba(26, 59, 178, 0.7) 100%);
}
.industryHomeBanner .more{
  margin-top: 2vw;
  font-size: 1.2vw;
}
.industryHomeBanner .more .t{
  margin-left: 1vw;
  font-size: .9vw;
}
.breadcrumbs{
  margin-bottom: 1vw;
}
.breadcrumbs a{
  color: white;
  font-size: .9vw;
}
.breadcrumbs a:hover{
  color: #1A3BB2;
}
.breadcrumbs span{
  margin: 0 .5vw;
}
.industryHome .titItem {
  width: 100%;
  position: relative;
  padding: 8vw 0 0 0;
  color: white;
}
.industryHome .titItem .tit {
  font-size: 4vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.industryHome .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.industryHome .titItem .des {
  width: 60%;
  font-size: 1vw;
  line-height: 1.7;
  opacity: 0;
  margin-top: 2vw;
}
.industryHome .f1{
  width: 100%;
  position: relative;
  padding: 5vw 0;
}
.industryHome .f1 .f1Item{
  width: 100%;
  margin-top: 3vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F8F8FA;
  padding: .5vw;
  border-radius: .5vw;
  transition: .3s all ease-in-out;
  border: 1px solid transparent;
}
.industryHome .f1 .f1Item:hover{
  border: 1px solid #1A3BB2;
}
.industryHome .f1 .f1Item .img{
  width: 20vw;
  height: 16vw;
  position: relative;
  border-radius: .5vw;
  overflow: hidden;
}
.industryHome .f1 .f1Item .img img{
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}
.industryHome .f1 .f1Item .text{
  width: calc(100% - 23vw);
}
.industryHome .f1 .f1Item .text .txt{
  width: 100%;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 2vw;
}
.industryHome .f1 .f1Item .text .txt .t{
  font-size: 1.2vw;
  font-weight: 550;
  display: flex;
  align-items: center;
}
.industryHome .f1 .f1Item .text .txt .t .icons{
  width: auto;
  height: 1.5vw;
  margin-right: 1vw;
}
.industryHome .f1 .f1Item .text .txt .d{
  font-size: .9vw;
  margin-top: 1vw;
  color: #666666;
}
.industryHome .f1 .f1Item .text:hover .txt .t{
  color: #1A3BB2;
}
.industryHome .f1 .f1Item .its{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: .5vw;
  margin-top: 1vw;
}
.industryHome .f1 .f1Item .its .it{
  width: auto;
  display: flex;
  align-items: center;
  font-size: .9vw;
  font-weight: 550;
  margin-right: 1vw;
  margin-top: 1vw;
}
.industryHome .f1 .f1Item .its .it i{
  font-size: .6vw;
  margin-left: .7vw;
  color: #1A3BB2;
  position: relative;
  transition: .3s all ease-in-out;
}
.industryHome .f1 .f1Item .its .it:hover{
  color: #1A3BB2;
}
.industryHome .f1 .f1Item .its .it:hover i{
  /*margin-left: 1.5vw;*/
}
.powerSupply{
  width: 100%;
  position: relative;
}
.powerSupply .titItem {
  width: 100%;
  position: relative;
  padding: 8vw 0 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.powerSupply .titItem .tit {
  font-size: 4vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.powerSupply .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.powerSupply .titItem .des {
  width: 70%;
  font-size: 1vw;
  line-height: 1.7;
  opacity: 0;
}
.powerSupply .powerSupplyBox {
  width: 100%;
  position: relative;
  padding: 6vw 0 3vw 0;
}
.powerSupply .powerSupplyBox .item {
  width: 100%;
  height: 23vw;
  position: relative;
  margin-bottom: 3vw;
  border-radius: 1vw;
  display: block;
  opacity: 0;
  background-size: cover !important;
  transition: 0.5s all;
  overflow: hidden;
}
.powerSupply .powerSupplyBox .item::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(270deg, rgba(26, 59, 178, 0) 0%, rgba(26, 59, 178, 0.7) 100%);
}
.powerSupply .powerSupplyBox .item .text {
  position: absolute;
  z-index: 2;
  transform: translateY(-50%);
  top: 50%;
  left: 5vw;
  color: #ffffff;
}
.powerSupply .powerSupplyBox .item .text .name {
  font-size: 1.8vw;
  font-weight: 600;
}
.powerSupply .powerSupplyBox .item .text .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
  margin: 2vw 0;
}
.powerSupply .powerSupplyBox .item :hover .imgBox .img {
  transform: scale(1.05);
}
.industryList {
  width: 100%;
  position: relative;
}
.industryList .titItem {
  width: 100%;
  position: relative;
  padding: 8vw 0 0 0;
}
.Industrial .titItem .more{
  color: #333333;
  margin: 2vw 0 0 0;
  font-size: 1.2vw;
}
.Industrial .titItem .more .t{
  border: 1px solid #333333;
  margin-left: 1vw;
  font-size: .9vw;
}
.industryList .breadcrumbs a{
  color: #333333;
}
.industryList .breadcrumbs a:hover{
  color: #1A3BB2;
}
.industryList .titItem .txt{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.industryList .titItem .tit {
  font-size: 4vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.industryList .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.industryList .titItem .des {
  max-width: 70%;
  font-size: 1vw;
  line-height: 1.7;
  opacity: 0;
  margin-top: 5vw;
}
.industryList .f1{
  width: 100%;
  position: relative;
  padding: 5vw 0;
}
.industryList .f1 .f1Item{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}
.industryList .f1 .f1Item .textBox{
  width: 48%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F8F8FA;
  padding: .5vw;
  border-radius: .5vw;
}
.industryList .f1 .f1Item .textBox .img{
  width: 8vw;
  height: 8vw;
  position: relative;
  border-radius: .5vw;
  overflow: hidden;
}
.industryList .f1 .f1Item .textBox .img img{
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}
.industryList .f1 .f1Item .textBox .txt{
  width: 72%;
  position: relative;
}
.industryList .f1 .f1Item .textBox .txt .t{
  font-size: 1.2vw;
  font-weight: 550;
  display: flex;
  align-items: center;
}
.industryList .f1 .f1Item .textBox .txt .t i{
  font-size: .6vw;
  margin-left: 1vw;
  color: #1A3BB2;
  position: relative;
  transition: .3s all ease-in-out;
}
.industryList .f1 .f1Item .textBox:hover{
  color: #1A3BB2;
}
.industryList .f1 .f1Item .textBox:hover i{
  margin-left: 1.5vw;
}
.industryList .f1 .f1Item .textBox .txt .d{
  font-size: .9vw;
  margin-top: 1vw;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.industryList .f1 .f1Item .textBox:hover .txt .t{
  color: #1A3BB2;
}
.Industrial {
  width: 100%;
  position: relative;
}
.Industrial .titItem {
  width: 100%;
  position: relative;
  padding: 8vw 0 0 0;
}
.Industrial .titItem .tit {
  font-size: 4vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.Industrial .titItem .breadcrumbs a{
  color: #333333;
}
.Industrial .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.Industrial .titItem .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
  opacity: 0;
}
.Industrial .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 0 0 0;
}
.Industrial .f1 .titBox {
  opacity: 0;
}
.Industrial .f1 .f1TabSwiper {
  width: 100%;
  position: relative;
  margin: 3vw 0;
  overflow: hidden;
  opacity: 0;
}
.Industrial .f1 .f1TabSwiper .swiper-slide {
  font-size: 1vw;
  color: #333333;
  padding: 0.7vw 1.2vw;
  text-align: center;
  border: 1px solid #666666;
  border-radius: 5vw;
  cursor: pointer;
}
.Industrial .f1 .f1TabSwiper .swiper-slide-active {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.Industrial .f1 .f1TabSwiper .swiper-slide:hover {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.Industrial .f1 .f1Swiper {
  width: 100%;
  position: relative;
  opacity: 0;
}
.Industrial .f1 .f1Swiper .swiper-slide {
  position: relative;
}
.Industrial .f1 .f1Swiper .swiper-slide-active{
  z-index: 9;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top {
  width: 100%;
  position: relative;
  /*display: flex;*/
  /*justify-content: space-between;*/
  border-radius: 1vw;
  /*background: #F8F8FA;*/
  overflow: hidden;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .left {
  width: 100%;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .left .imgBox {
  width: 100%;
  height: 40vw;
  border-radius: 1vw;
  position: relative;
  background-size: cover !important;
  padding: 3vw;
  overflow: hidden;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .left .text {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 3vw;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .left .text .des {
  font-size: 0.9vw;
  line-height: 1.7;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .left .text .tit {
  font-size: 2.5vw;
  position: absolute;
  bottom: 3vw;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .left .imgBox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(26, 59, 178, 0) 25.85%, rgba(26, 59, 178, 0.8) 100%);
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right {
  width: 100%;
  padding: 3vw 0;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits {
  display: flex;
  justify-content: space-between;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits .tit {
  font-size: 1.5vw;
  font-family: SemiBold;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits .swiper-button-next {
  width: 4vw;
  right: 3vw;
  top: 4vw;
  border: 1px solid #666666;
  border-radius: 3vw;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits .swiper-button-next img {
  width: 1vw;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits .swiper-button-prev {
  width: 4vw;
  left: inherit;
  right: 8vw;
  top: 4vw;
  border: 1px solid #666666;
  border-radius: 3vw;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits .swiper-button-prev img {
  width: 1vw;
  transform: rotate(180deg);
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits .swiper-button-next:after,
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits .swiper-button-prev:after {
  content: inherit;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper {
  width: 100%;
  height: 15vw;
  position: relative;
  margin-top: 3vw;
  overflow: hidden;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper .swiper-wrapper{
  flex-wrap: wrap;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper .swiper-slide {
  height: 14vw;
  display: block;
  pointer-events: auto;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper .swiper-slide .imgBox {
  width: 100%;
  height: 12vw;
  border-radius: 0.5vw;
  border: 1px solid #E9E9E9;
  background: white;
  padding: 1vw;
  position: relative;
  overflow: hidden;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper .swiper-slide .imgBox::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E9E9E9;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.6s cubic-bezier(0.63, 0, 0, 0.99);
  z-index: 0;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper .swiper-slide .name {
  text-align: center;
  font-size: 0.9vw;
  margin-top: 0.5vw;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper .swiper-slide:hover .imgBox::before {
  transform: scaleY(1);
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper .swiper-slide:hover .imgBox img {
  transform: scale(1.05);
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Bottom {
  width: 100%;
  position: relative;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Bottom .tit {
  font-size: 1.5vw;
  font-family: SemiBold;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Bottom .f1BottomSwiper {
  width: 100%;
  position: relative;
  margin-top: 1vw;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Bottom .f1BottomSwiper .swiper-slide {
  height: 3.5vw;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 0.5vw;
  border-radius: 0.5vw;
  position: relative;
}
.Industrial .f1 .f1Swiper .swiper-slide .f1Bottom .f1BottomSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  object-fit: cover;
}
.Industrial .f2 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.Industrial .f2 .f2Swiper {
  width: 100%;
  position: relative;
  margin-top: 2vw;
}
.Industrial .f2 .f2Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 16vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.Industrial .f2 .f2Swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
  object-fit: cover !important;
}
.Industrial .f2 .f2Swiper .swiper-slide .textBox {
  width: 100%;
  position: relative;
  border-radius: 1vw;
  padding: 1vw 0;
}
.Industrial .f2 .f2Swiper .swiper-slide .textBox .lab {
  font-size: 0.8vw;
  color: #666666;
  position: relative;
  display: flex;
}
.Industrial .f2 .f2Swiper .swiper-slide .textBox .lab .it {
  border: 1px solid #CCC;
  background: #F7F7F7;
  border-radius: 5vw;
  padding: 0.1vw 0.5vw;
  margin-right: 0.5vw;
}
.Industrial .f2 .f2Swiper .swiper-slide .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.Industrial .f2 .f2Swiper .swiper-slide .textBox .name {
  font-size: 1.2vw;
  margin: 0.5vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.Industrial .f2 .f2Swiper .swiper-slide .textBox .des {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 0.5vw;
}
.Industrial .f2 .f2Swiper .swiper-slide:hover .imgBox img {
  transform: scale(1.1);
}
.Industrial .f2 .swiper-button-next {
  width: 4vw;
  right: 0;
  top: 1vw;
  border: 1px solid #666666;
  border-radius: 3vw;
}
.Industrial .f2 .swiper-button-next img {
  width: 1vw;
}
.Industrial .f2 .swiper-button-prev {
  width: 4vw;
  left: inherit;
  right: 4.5vw;
  top: 1vw;
  border: 1px solid #666666;
  border-radius: 3vw;
}
.Industrial .f2 .swiper-button-prev img {
  width: 1vw;
  transform: rotate(180deg);
}
.Industrial .f2 .swiper-button-next:after,
.Industrial .f2 .swiper-button-prev:after {
  content: inherit;
}
.Industrial .f3 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
  background: #f5f5f5;
}
.Industrial .f3 .f3Txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Industrial .f3 .f3Txt .des {
  width: 40%;
  font-size: 0.9vw;
  line-height: 1.7;
}
.Industrial .f3 .f3Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1vw;
  margin-top: 3vw;
}
.Industrial .f3 .f3Box .item {
  width: 23.5%;
  background: white;
  border-radius: 1vw;
  padding: 1vw;
  margin-top: 1vw;
}
.Industrial .f3 .f3Box .item .icon {
  width: auto;
  height: 4vw;
}
.Industrial .f3 .f3Box .item .icon img {
  width: auto;
  height: 100%;
  margin: 1vw auto 0 auto;
}
.Industrial .f3 .f3Box .item .name {
  text-align: center;
  font-size: 0.9vw;
  margin-top: 2vw;
}
.Industrial .f4 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
  z-index: 1;
}
.Industrial .f4 .f4Txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Industrial .f4 .f4Txt .more .icon {
  background: #EEEEEE;
}
.Industrial .f4 .f4Txt .more .t {
  border: 1px solid #EEEEEE;
  color: #333333;
}
.Industrial .f4 .f4Swiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  overflow: hidden;
  padding-left: 13vw;
}
.Industrial .f4 .f4Swiper .swiper-slide {
  width: 100%;
  display: flex;
}
.Industrial .f4 .f4Swiper .swiper-slide .imgBox {
  width: 45vw;
  height: 30vw;
  border-radius: 1vw;
  overflow: hidden;
}
.Industrial .f4 .f4Swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.Industrial .f4 .f4Swiper .swiper-slide .textBox {
  width: 55vw;
  height: 30vw;
  background: #F8F8FA;
  position: relative;
  border-radius: 1vw;
  margin-left: 1vw;
  padding: 2vw;
}
.Industrial .f4 .f4Swiper .swiper-slide .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.Industrial .f4 .f4Swiper .swiper-slide .textBox .name {
  font-size: 1.8vw;
  margin: 2vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.Industrial .f4 .f4Swiper .swiper-slide .textBox .des {
  font-size: 1vw;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.Industrial .f4 .f4Swiper .swiper-slide .textBox .mores {
  width: calc(100% - 4vw);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 2vw;
  padding-top: 1vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.Industrial .f4 .f4Swiper .swiper-slide .textBox .mores .icon {
  width: 1vw;
}
.Industrial .f4 .f4Swiper .swiper-slide .textBox .mores .t {
  font-size: 0.9vw;
  margin-left: 1vw;
}
.Industrial .f4 .f4Swiper .swiper-slide .textBox .mores:hover {
  color: #1A3BB2;
}
.Industrial .f4 .f4Swiper .swiper-slide:hover .imgBox img {
  transform: scale(1.05);
}
.Industrial .f4 .f4Swiper .swiper-slide:hover .mores {
  border-top: 1px solid #1A3BB2;
}
.newEnergy {
  width: 100%;
  position: relative;
}
.newEnergy .titItem {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8vw 0 0 0;
}
.newEnergy .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.newEnergy .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.newEnergy .titItem .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
  opacity: 0;
}
.newEnergy .f1 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.newEnergy .f1 .tabBox {
  display: flex;
  justify-content: left;
  gap: 1vw;
  align-items: center;
  opacity: 0;
}
.newEnergy .f1 .tabBox .tab {
  font-size: .95vw;
  color: #333333;
  padding: 0.7vw 1vw;
  text-align: center;
  transition: 0.5s all;
  border: 1px solid #666666;
  border-radius: 5vw;
  cursor: pointer;
}
.newEnergy .f1 .tabBox .tab.active {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.newEnergy .f1 .tabBox .tab:hover {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.newEnergy .f1 .f1Box {
  width: 100%;
  height: 35vw;
  position: relative;
  margin-top: 2vw;
  border-radius: 1vw;
  overflow: hidden;
  opacity: 0;
}
.newEnergy .f1 .f1Box .imgBox {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.newEnergy .f1 .f1Box .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.newEnergy .f1 .f1Box .imgBox::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(270deg, rgba(26, 59, 178, 0) 0%, rgba(26, 59, 178, 0.7) 100%);
}
.newEnergy .f1 .f1Box .text {
  position: absolute;
  z-index: 2;
  transform: translateY(-50%);
  top: 50%;
  left: 5vw;
  color: #ffffff;
}
.newEnergy .f1 .f1Box .text .name {
  font-size: 1.8vw;
  font-weight: 600;
}
.newEnergy .f1 .f1Box .text .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
  margin: 2vw 0;
}
.newEnergy .f1 .f1Box:hover .imgBox .img {
  transform: scale(1.05);
}
.newEnergy .f2 {
  width: 100%;
  position: relative;
}
.newEnergy .f2 .f2Txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newEnergy .f2 .f2Txt .more .icon {
  background: #EEEEEE;
}
.newEnergy .f2 .f2Txt .more .t {
  border: 1px solid #EEEEEE;
  color: #333333;
}
.newEnergy .f2 .f2Box {
  width: 100%;
  position: relative;
  display: flex;
  gap: 2vw;
  margin-top: 2vw;
}
.newEnergy .f2 .f2Box .left {
  width: 65%;
  height: 35vw;
}
.newEnergy .f2 .f2Box .left .item {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.newEnergy .f2 .f2Box .left .item .img {
  width: 100%;
  height: 100%;
  background: #E9E9E9;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.newEnergy .f2 .f2Box .left .item .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 0.3s all;
}
.newEnergy .f2 .f2Box .left .item .img::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f1f1f1;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.6s cubic-bezier(0.63, 0, 0, 0.99);
  z-index: 0;
}
.newEnergy .f2 .f2Box .left .item .text {
  margin-top: 1vw;
}
.newEnergy .f2 .f2Box .left .item .text .name {
  font-size: 1.2vw;
  font-family: SemiBold;
  margin-bottom: 0.5vw;
}
.newEnergy .f2 .f2Box .left .item .text .des {
  font-size: 0.9vw;
  border: 1px solid #666666;
  border-radius: 3vw;
  display: inline;
  padding: 0.1vw 0.5vw;
  color: #666666;
}
.newEnergy .f2 .f2Box .left .item:hover .img::before {
  transform: scaleY(1);
}
.newEnergy .f2 .f2Box .left .item:hover .img img {
  transform: translate(-50%, -50%) scale(1.05);
}
.newEnergy .f2 .f2Box .right {
  width: 35%;
}
.newEnergy .f2 .f2Box .right .item {
  width: 100%;
  height: 14.7vw;
  position: relative;
  display: block;
  margin-bottom: 5.5vw;
}
.newEnergy .f2 .f2Box .right .item .img {
  width: 100%;
  height: 100%;
  background: #E9E9E9;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.newEnergy .f2 .f2Box .right .item .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 0.3s all;
}
.newEnergy .f2 .f2Box .right .item .img::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f1f1f1;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.6s cubic-bezier(0.63, 0, 0, 0.99);
  z-index: 0;
}
.newEnergy .f2 .f2Box .right .item .text {
  margin-top: 1vw;
}
.newEnergy .f2 .f2Box .right .item .text .name {
  font-size: 1.2vw;
  font-family: SemiBold;
  margin-bottom: 0.5vw;
}
.newEnergy .f2 .f2Box .right .item .text .des {
  font-size: 0.9vw;
  border: 1px solid #666666;
  border-radius: 3vw;
  display: inline;
  padding: 0.1vw 0.5vw;
  color: #666666;
}
.newEnergy .f2 .f2Box .right .item:hover .img::before {
  transform: scaleY(1);
}
.newEnergy .f2 .f2Box .right .item:hover .img img {
  transform: translate(-50%, -50%) scale(1.05);
}
.newEnergy .f3 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.newEnergy .f3 .f3Swiper {
  width: 100%;
  position: relative;
  margin-top: 2vw;
}
.newEnergy .f3 .f3Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 16vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.newEnergy .f3 .f3Swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
  object-fit: cover !important;
}
.newEnergy .f3 .f3Swiper .swiper-slide .textBox {
  width: 100%;
  position: relative;
  border-radius: 1vw;
  padding: 1vw 0;
}
.newEnergy .f3 .f3Swiper .swiper-slide .textBox .lab {
  font-size: 0.8vw;
  color: #666666;
  position: relative;
  display: flex;
}
.newEnergy .f3 .f3Swiper .swiper-slide .textBox .lab .it {
  border: 1px solid #CCC;
  background: #F7F7F7;
  border-radius: 5vw;
  padding: 0.1vw 0.5vw;
  margin-right: 0.5vw;
}
.newEnergy .f3 .f3Swiper .swiper-slide .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.newEnergy .f3 .f3Swiper .swiper-slide .textBox .name {
  font-size: 1.2vw;
  margin: 0.5vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.newEnergy .f3 .f3Swiper .swiper-slide .textBox .des {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 0.5vw;
}
.newEnergy .f3 .f3Swiper .swiper-slide:hover .imgBox img {
  transform: scale(1.1);
}
.newEnergy .f3 .swiper-button-next {
  width: 4vw;
  right: 0;
  top: 1vw;
  border: 1px solid #666666;
  border-radius: 3vw;
}
.newEnergy .f3 .swiper-button-next img {
  width: 1vw;
}
.newEnergy .f3 .swiper-button-prev {
  width: 4vw;
  left: inherit;
  right: 4.5vw;
  top: 1vw;
  border: 1px solid #666666;
  border-radius: 3vw;
}
.newEnergy .f3 .swiper-button-prev img {
  width: 1vw;
  transform: rotate(180deg);
}
.newEnergy .f3 .swiper-button-next:after,
.newEnergy .f3 .swiper-button-prev:after {
  content: inherit;
}
.newEnergy .f4 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
  background: #f5f5f5;
}
.newEnergy .f4 .f4Txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newEnergy .f4 .f4Txt .des {
  width: 40%;
  font-size: 0.9vw;
  line-height: 1.7;
}
.newEnergy .f4 .f4Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1vw;
  margin-top: 3vw;
}
.newEnergy .f4 .f4Box .item {
  width: 23.5%;
  background: white;
  border-radius: 1vw;
  padding: 1vw;
  margin-top: 1vw;
}
.newEnergy .f4 .f4Box .item .icon {
  width: auto;
  height: 4vw;
}
.newEnergy .f4 .f4Box .item .icon img {
  width: auto;
  height: 100%;
  margin: 1vw auto 0 auto;
}
.newEnergy .f4 .f4Box .item .name {
  text-align: center;
  font-size: 0.9vw;
  margin-top: 2vw;
}
.newEnergy .f6{
  width: 100%;
  position: relative;
  padding: 5vw 4vw 0 4vw;
}
.newEnergy .f6 .f6Box{
  width: 100%;
  height: 35vw;
  position: relative;
  background-size: cover !important;
  border-radius: 1vw;
  color: white;
}
.newEnergy .f6 .f6Box .f6Text{
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 8vw;
}
.newEnergy .f6 .f6Box .f6Text .des{
  font-size: 1vw;
  margin: 2.5vw 0;
}
.newEnergy .f5 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
  z-index: 1;
}
.newEnergy .f5 .f5Txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newEnergy .f5 .f5Txt .more .icon {
  background: #EEEEEE;
}
.newEnergy .f5 .f5Txt .more .t {
  border: 1px solid #EEEEEE;
  color: #333333;
}
.newEnergy .f5 .f5Swiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  overflow: hidden;
  padding-left: 13vw;
}
.newEnergy .f5 .f5Swiper .swiper-slide {
  width: 100%;
  display: flex;
}
.newEnergy .f5 .f5Swiper .swiper-slide .imgBox {
  width: 45vw;
  height: 30vw;
  border-radius: 1vw;
  overflow: hidden;
}
.newEnergy .f5 .f5Swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.newEnergy .f5 .f5Swiper .swiper-slide .textBox {
  width: 55vw;
  height: 30vw;
  background: #F8F8FA;
  position: relative;
  border-radius: 1vw;
  margin-left: 1vw;
  padding: 2vw;
}
.newEnergy .f5 .f5Swiper .swiper-slide .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.newEnergy .f5 .f5Swiper .swiper-slide .textBox .name {
  font-size: 1.8vw;
  margin: 2vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.newEnergy .f5 .f5Swiper .swiper-slide .textBox .des {
  font-size: 1vw;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.newEnergy .f5 .f5Swiper .swiper-slide .textBox .mores {
  width: calc(100% - 4vw);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 2vw;
  padding-top: 1vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.newEnergy .f5 .f5Swiper .swiper-slide .textBox .mores .icon {
  width: 1vw;
}
.newEnergy .f5 .f5Swiper .swiper-slide .textBox .mores .t {
  font-size: 0.9vw;
  margin-left: 1vw;
}
.newEnergy .f5 .f5Swiper .swiper-slide .textBox .mores:hover {
  color: #1A3BB2;
}
.newEnergy .f5 .f5Swiper .swiper-slide:hover .imgBox img {
  transform: scale(1.05);
}
.newEnergy .f5 .f5Swiper .swiper-slide:hover .mores {
  border-top: 1px solid #1A3BB2;
}
.solutions {
  width: 100%;
  position: relative;
}
.solutions .titItem {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8vw 0 0 0;
}
.solutions .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.solutions .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.solutions .titItem .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
}
.solutions .f1 {
  width: 100%;
  position: relative;
  padding: 6vw 0 3vw 0;
}
.solutions .f1 .f1Box {
  width: 100%;
  height: 35vw;
  position: relative;
  margin-bottom: 3vw;
  border-radius: 1vw;
  opacity: 0;
  overflow: hidden;
}
.solutions .f1 .f1Box .imgBox {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.solutions .f1 .f1Box .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s all;
}
.solutions .f1 .f1Box .imgBox::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(270deg, rgba(26, 59, 178, 0) 0%, rgba(26, 59, 178, 0.7) 100%);
}
.solutions .f1 .f1Box .text {
  position: absolute;
  z-index: 2;
  transform: translateY(-50%);
  top: 50%;
  left: 5vw;
  color: #ffffff;
}
.solutions .f1 .f1Box .text .name {
  font-size: 1.8vw;
  font-weight: 600;
}
.solutions .f1 .f1Box .text .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
  margin: 2vw 0;
}
.solutions .f1 .f1Box:hover .imgBox .img {
  transform: scale(1.05);
}
.news {
  width: 100%;
  position: relative;
}
.news .titItem {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8vw 0 0 0;
}
.news .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.news .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.news .titItem .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
  text-align: right;
}
.news .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 0 0 0;
}
.news .f1 .f1Swiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  padding-bottom: 3vw;
  overflow: hidden;
}
.news .f1 .f1Swiper .swiper-slide {
  width: 100%;
  display: flex;
}
.news .f1 .f1Swiper .swiper-slide .imgBox {
  width: 45vw;
  height: 22vw;
  border-radius: 1vw;
  overflow: hidden;
}
.news .f1 .f1Swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.news .f1 .f1Swiper .swiper-slide .textBox {
  width: 55vw;
  height: 22vw;
  background: #F8F8FA;
  position: relative;
  border-radius: 1vw;
  margin-left: 1vw;
  padding: 2vw;
}
.news .f1 .f1Swiper .swiper-slide .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.news .f1 .f1Swiper .swiper-slide .textBox .name {
  font-size: 1.8vw;
  margin: 1.5vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news .f1 .f1Swiper .swiper-slide .textBox .des {
  font-size: 1vw;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news .f1 .f1Swiper .swiper-slide .textBox .mores {
  width: calc(100% - 4vw);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 2vw;
  padding-top: 1vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.news .f1 .f1Swiper .swiper-slide .textBox .mores .icon {
  width: 1vw;
}
.news .f1 .f1Swiper .swiper-slide .textBox .mores .t {
  font-size: 0.9vw;
  margin-left: 1vw;
}
.news .f1 .f1Swiper .swiper-slide .textBox .mores:hover {
  color: #1A3BB2;
}
.news .f1 .f1Swiper .swiper-slide:hover .imgBox img {
  transform: scale(1.05);
}
.news .f1 .f1Swiper .swiper-slide:hover .mores {
  border-top: 1px solid #1A3BB2;
}
.news .f2 {
  width: 100%;
  position: relative;
  padding: 0 0 6vw 0;
}
.news .f2 .f2Box {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1vw;
  margin-top: 2vw;
}
.news .f2 .f2Box .item {
  width: 32%;
  position: relative;
  margin-top: 2vw;
}
.news .f2 .f2Box .item .imgBox {
  width: 100%;
  height: 14vw;
  border-radius: 1vw;
  overflow: hidden;
}
.news .f2 .f2Box .item .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.news .f2 .f2Box .item .textBox {
  width: 100%;
  position: relative;
  border-radius: 1vw;
  padding: 1vw 0;
}
.news .f2 .f2Box .item .textBox .lab {
  font-size: 0.8vw;
  color: #666666;
  position: relative;
  display: flex;
}
.news .f2 .f2Box .item .textBox .lab .it {
  border: 1px solid #CCC;
  background: #F7F7F7;
  border-radius: 5vw;
  padding: 0.1vw 0.5vw;
  margin-right: 0.5vw;
}
.news .f2 .f2Box .item .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.news .f2 .f2Box .item .textBox .name {
  font-size: 1.2vw;
  margin: 0.5vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news .f2 .f2Box .item .textBox .des {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 0.5vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news .f2 .f2Box .item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: #1A3BB2;
  bottom: 0;
  transition: 0.5s all;
}
.news .f2 .f2Box .item:hover .imgBox img {
  transform: scale(1.05);
}
.news .f2 .f2Box .item:hover::before {
  width: 100%;
}
.cases {
  width: 100%;
  position: relative;
}
.cases .titItem {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8vw 0 0 0;
}
.cases .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.cases .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.cases .titItem .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
  text-align: right;
}
.cases .f1 {
  width: 100%;
  position: relative;
  padding: 5vw 0 8vw 0;
}
.cases .f1 .itemBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.cases .f1 .itemBox .imgBox {
  width: 66%;
  height: 30vw;
  border-radius: 1vw;
  overflow: hidden;
}
.cases .f1 .itemBox .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.cases .f1 .itemBox .textBox {
  width: 32%;
  height: 30vw;
  background: #F8F8FA;
  position: relative;
  border-radius: 1vw;
  margin-left: 1vw;
  padding: 2vw;
}
.cases .f1 .itemBox .textBox .lab {
  font-size: 0.9vw;
  color: #999999;
  position: relative;
  padding-left: 1vw;
}
.cases .f1 .itemBox .textBox .lab::before {
  content: "";
  position: absolute;
  width: 0.5vw;
  height: 0.5vw;
  background: #1A3BB2;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.cases .f1 .itemBox .textBox .time {
  font-size: 0.9vw;
  color: #999999;
  margin-top: 12vw;
}
.cases .f1 .itemBox .textBox .name {
  font-size: 1.8vw;
  margin: 1vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.cases .f1 .itemBox .textBox .des {
  font-size: 1vw;
  line-height: 1.7;
}
.cases .f1 .itemBox .textBox .mores {
  width: calc(100% - 4vw);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 2vw;
  padding-top: 1vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cases .f1 .itemBox .textBox .mores .icon {
  width: 1vw;
}
.cases .f1 .itemBox .textBox .mores .t {
  font-size: 0.9vw;
  margin-left: 1vw;
}
.cases .f1 .itemBox .textBox .mores:hover {
  color: #1A3BB2;
}
.cases .f1 .itemBox:hover .imgBox img {
  transform: scale(1.05);
}
.cases .f1 .itemBox:hover .mores {
  border-top: 1px solid #1A3BB2;
}
.cases .f1 .f1Box {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1vw;
  margin-top: 2vw;
}
.cases .f1 .f1Box .item {
  width: 32%;
  position: relative;
  margin-top: 2vw;
}
.cases .f1 .f1Box .item .imgBox {
  width: 100%;
  height: 14vw;
  border-radius: 1vw;
  overflow: hidden;
}
.cases .f1 .f1Box .item .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.cases .f1 .f1Box .item .textBox {
  width: 100%;
  position: relative;
  border-radius: 1vw;
  padding: 1vw 0;
}
.cases .f1 .f1Box .item .textBox .lab {
  font-size: 0.8vw;
  color: #666666;
  position: relative;
  display: flex;
}
.cases .f1 .f1Box .item .textBox .lab .it {
  border: 1px solid #CCC;
  background: #F7F7F7;
  border-radius: 5vw;
  padding: 0.1vw 0.5vw;
  margin-right: 0.5vw;
}
.cases .f1 .f1Box .item .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.cases .f1 .f1Box .item .textBox .name {
  font-size: 1.2vw;
  margin: 0.5vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.cases .f1 .f1Box .item .textBox .des {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 0.5vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.cases .f1 .f1Box .item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: #1A3BB2;
  bottom: 0;
  transition: 0.5s all;
}
.cases .f1 .f1Box .item:hover .imgBox img {
  transform: scale(1.05);
}
.cases .f1 .f1Box .item:hover::before {
  width: 100%;
}
.datasheets {
  width: 100%;
  position: relative;
}
.datasheets .titItem {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8vw 0 0 0;
}
.datasheets .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.datasheets .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.datasheets .titItem .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
  text-align: right;
}
.datasheets .f1 {
  width: 100%;
  position: relative;
  border-radius: 16px;
  background: rgba(245, 245, 247, 0.7);
  backdrop-filter: blur(25px);
  padding: 2vw;
  margin: 5vw 0;
}
.datasheets .f1 .tit {
  font-size: 1.2vw;
  position: relative;
  margin-bottom: 2vw;
}
.datasheets .f1 form {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.datasheets .f1 form .inputBox {
  width: 49%;
  margin-bottom: 1.5vw;
}
.datasheets .f1 form .inputBox .name {
  font-size: 1vw;
}
.datasheets .f1 form .inputBox input {
  width: 100%;
  margin-top: 1vw;
  border: 1px solid #D1D5DC;
  background: rgba(245, 245, 247, 0.7);
  border-radius: 0.5vw;
  height: 2.5vw;
  padding: 0 1vw;
  font-size: 0.9vw;
  font-family: Georama;
}
.datasheets .f1 .labelBox {
  color: #666666;
  font-size: 0.9vw;
  margin-top: 2vw;
}
.datasheets .f1 .labelBox label {
  cursor: pointer;
}
.datasheets .f1 .labelBox input {
  -webkit-appearance: auto;
}
.datasheets .f1 .labelBox .des {
  margin-top: 1vw;
}
.datasheets .f1 .submit {
  display: inline-flex;
  font-size: 0.9vw;
  align-items: center;
  cursor: pointer;
  margin-top: 2vw;
}
.datasheets .f1 .submit .icon {
  width: 2.2vw;
  height: 2.2vw;
  margin-right: 0.3vw;
  border-radius: 0.2vw;
  background: white;
  padding: 0.7vw;
  position: relative;
  transition: 0.5s cubic-bezier(0.23, 0.75, 0.57, 0.94);
}
.datasheets .f1 .submit .icon img {
  position: relative;
  z-index: 2;
  transition: filter 0.21s;
}
.datasheets .f1 .submit .t {
  border: 1px solid #1A3BB2;
  height: 2.2vw;
  padding: 0 2vw;
  line-height: 2.2vw;
  border-radius: 0.2vw;
  position: relative;
  color: #1A3BB2;
}
.datasheets .f1 .submit .t::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  border-radius: 0.2vw;
  background: #1A3BB2;
  transition: width 0.5s cubic-bezier(0.23, 0.75, 0.57, 0.94);
}
.datasheets .f1 .submit:hover .icon {
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.datasheets .f1 .submit:hover .icon img {
  filter: brightness(0) invert(1);
}
.datasheets .f1 .submit:hover .t {
  color: white;
}
.datasheets .f1 .submit:hover .t::before {
  width: 100%;
  left: 0;
}
.datasheetsModal{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,.4);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: .3s all;
}
.datasheetsModal.active{
  opacity: 1;
  pointer-events: all;
}
.datasheetsBox .close{
  color: #1A3BB2;
  font-size: 1.2vw;
  position: absolute;
  right: 2vw;
  top: 2vw;
  cursor: pointer;
}
.datasheetsBox{
  width: 80%;
  height: 80vh;
  overflow-y: scroll;
  background: white;
  border-radius: 1vw;
  padding: 3vw;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.datasheetsBox .tit{
  font-size: 2vw;
  text-transform: capitalize;
}
.datasheetsBox .itemBox{
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  margin-top: 2vw;
}
.datasheetsBox .item{
  width: 22.8%;
  position: relative;
}
.datasheetsBox .item .img{
  width: 100%;
  height: 10vw;
  background-size: cover !important;
}
.datasheetsBox .item .downBtn{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9vw;
  padding: 1vw;
}
.datasheetsBox .item .downBtn:hover{
  color: #1A3BB2;
}
.glossary {
  width: 100%;
  position: relative;
}
.glossary .titItem {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8vw 0 0 0;
}
.glossary .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.glossary .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.glossary .titItem .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
  text-align: right;
}
.glossary .glossaryBox {
  width: 100%;
  position: relative;
  margin: 5vw 0 8vw 0;
}
.glossary .glossaryBox .glossaryNum {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 1vw;
  position: sticky;
  top: 4vw;
  background: white;
  z-index: 1;
}
.glossary .glossaryBox .glossaryNum .num {
  font-size: 1vw;
  color: #CCCCCC;
  cursor: pointer;
}
.glossary .glossaryBox .glossaryNum .active {
  color: #666666;
}
.glossary .glossaryBox .glossaryItem {
  width: 100%;
  margin-top: 2vw;
}
.glossary .glossaryBox .glossaryItem .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vw 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.glossary .glossaryBox .glossaryItem .item .nums {
  font-size: 4vw;
  font-family: SemiBold;
}
.glossary .glossaryBox .glossaryItem .item .its {
  width: calc(100% - 10vw);
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  font-size: 0.9vw;
}
.glossary .glossaryBox .glossaryItem .item .its .it {
  width: 30%;
  color: #666666;
}
.glossary .glossaryBox .glossaryItem .item .its .it:hover {
  color: #333333;
}
.glossary-detail {
  width: 100%;
  position: relative;
  padding-top: 10vw;
}
.glossary-detail .detailBox {
  width: 100%;
  position: relative;
  background: #F3F3F3;
  padding: 2vw;
  border-radius: 1vw;
}
.glossary-detail .detailBox .Txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.glossary-detail .detailBox .Txt .tit {
  font-size: 2vw;
  text-transform: capitalize;
  font-family: SemiBold;
  padding-left: 2vw;
  position: relative;
}
.glossary-detail .detailBox .Txt .more .icon {
  background: #EEEEEE;
  border: 1px solid #666666;
}
.glossary-detail .detailBox .Txt .more .t {
  border: 1px solid #666666;
  color: #333333;
}
.glossary-detail .detailBox .des {
  width: 100%;
  padding: 3vw 2vw;
}
.glossary-detail .detailBox .des .t {
  font-size: 1.2vw;
  font-family: SemiBold;
  margin-bottom: 1vw;
}
.glossary-detail .detailBox .des .d {
  font-size: 1vw;
  line-height: 1.7;
  color: #666666;
}
.glossary-detail .f1 {
  width: 100%;
  position: relative;
  padding: 0 0 6vw 0;
}
.glossary-detail .f1 .itemBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.glossary-detail .f1 .itemBox .imgBox {
  width: 40%;
  height: 20vw;
  border-radius: 1vw;
  overflow: hidden;
}
.glossary-detail .f1 .itemBox .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.glossary-detail .f1 .itemBox .textBox {
  width: 60%;
  height: 20vw;
  background: #F8F8FA;
  position: relative;
  border-radius: 1vw;
  margin-left: 1vw;
  padding: 2vw;
}
.glossary-detail .f1 .itemBox .textBox .lab {
  font-size: 0.9vw;
  color: #999999;
  position: relative;
  padding-left: 1vw;
}
.glossary-detail .f1 .itemBox .textBox .lab::before {
  content: "";
  position: absolute;
  width: 0.5vw;
  height: 0.5vw;
  background: #1A3BB2;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.glossary-detail .f1 .itemBox .textBox .time {
  font-size: 0.9vw;
  color: #999999;
  margin-top: 2vw;
}
.glossary-detail .f1 .itemBox .textBox .name {
  font-size: 1.8vw;
  margin: 1vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.glossary-detail .f1 .itemBox .textBox .des {
  font-size: 1vw;
  line-height: 1.7;
}
.glossary-detail .f1 .itemBox .textBox .mores {
  width: calc(100% - 4vw);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 2vw;
  padding-top: 1vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.glossary-detail .f1 .itemBox .textBox .mores .icon {
  width: 1vw;
}
.glossary-detail .f1 .itemBox .textBox .mores .t {
  font-size: 0.9vw;
  margin-left: 1vw;
}
.glossary-detail .f1 .itemBox .textBox .mores:hover {
  color: #1A3BB2;
}
.glossary-detail .f1 .itemBox:hover .imgBox img {
  transform: scale(1.05);
}
.glossary-detail .f1 .itemBox:hover .mores {
  border-top: 1px solid #1A3BB2;
}
.whyInjet {
  width: 100%;
  position: relative;
}
.whyInjet .titItem {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8vw 0 0 0;
}
.whyInjet .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.whyInjet .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.whyInjet .titItem .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
  text-align: right;
}
.whyInjet .f1Box {
  width: 100%;
  position: relative;
  margin: 8vw 0;
}
.whyInjet .f1Box .item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5vw;
}
.whyInjet .f1Box .item .imgBox {
  width: 50%;
  height: 35vw;
  border-radius: 1vw;
  overflow: hidden;
}
.whyInjet .f1Box .item .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.whyInjet .f1Box .item .imgBox:hover img {
  transform: scale(1.05);
}
.whyInjet .f1Box .item .textBox {
  width: 40%;
  position: relative;
  padding-bottom: 2vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.whyInjet .f1Box .item .textBox .num {
  width: 3vw;
  height: 3vw;
  background: #314396;
  border-radius: 50%;
  text-align: center;
  line-height: 3vw;
  color: white;
  font-size: 1.2vw;
}
.whyInjet .f1Box .item .textBox .name {
  font-size: 1.8vw;
  margin: 1vw 0;
  font-family: SemiBold;
}
.whyInjet .f1Box .item .textBox .des {
  font-size: 1vw;
  line-height: 1.7;
  color: #666666;
}
.factoryView {
  width: 100%;
  position: relative;
  padding-bottom: 8vw;
}
.factoryView .titItem {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8vw 0 0 0;
}
.factoryView .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.factoryView .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.factoryView .titItem .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.7;
  text-align: right;
}
.factoryView .tabBox {
  display: flex;
  margin: 6vw 0 3vw 0;
  opacity: 0;
}
.factoryView .tabBox .tab {
  color: #333333;
  border: 1px solid #666666;
  border-radius: 5vw;
  padding: 0.5vw 2vw;
  font-size: 0.9vw;
  margin-right: 1vw;
  cursor: pointer;
  transition: 0.3s all;
}
.factoryView .tabBox .tab:hover {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.factoryView .tabBox .active {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.factoryView .photosBox {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  gap: 1vw;
}
.factoryView .photosBox .imgs {
  width: 32.3%;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
}
.factoryView .photosBox .imgs .img{
  width: 100%;
  height: 15vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.factoryView .photosBox .img img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.factoryView .photosBox .name{
  font-size: .9vw;
  margin-top: .5vw;
}
.factoryView .photosBox .img:hover img {
  transform: scale(1.05);
}
.factoryView .photosBox.active {
  display: flex;
}
.factoryView .videosBox {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  gap: 1vw;
}
.factoryView .videosBox .imgs {
  width: 32.3%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.factoryView .videosBox .imgs .img{
  width: 100%;
  height: 15vw;
  border-radius: 0.5vw;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.factoryView .videosBox .img img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.factoryView .videosBox .name{
  font-size: .9vw;
  margin-top: .5vw;
}
.factoryView .videosBox .img .play {
  width: 5vw;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.factoryView .videosBox .img:hover img {
  transform: scale(1.05);
}
.factoryView .videosBox.active {
  display: flex;
}
.contactUs {
  width: 100%;
  position: relative;
}
.contactUs .titItem {
  width: 100%;
  position: relative;
  padding: 8vw 0 0 0;
}
.contactUs .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.contactUs .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.contactUs .f1 {
  width: 100%;
  position: relative;
  padding-bottom: 5vw;
  margin-top: -7vw;
}
.contactUs .f1 .mapImg{
  width: 100%;
  pointer-events: none;
}
.contactUs .f1 .itemBox {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: -12vw;
}
.contactUs .f1 .itemBox .items {
  width: 32%;
  position: absolute;
}
.contactUs .f1 .itemBox .items:nth-child(1) {
  left: 10%;
  top: -21vw;
}
.contactUs .f1 .itemBox .items:nth-child(2) {
  left: 47%;
  top: -32vw;
}
.contactUs .f1 .itemBox .items:nth-child(3) {
  left: 68%;
  top: -25vw;
}
.contactUs .f1 .itemBox .items:nth-child(4) {
  left: 68%;
  top: -25vw;
}
.contactUs .f1 .itemBox .items:nth-child(5) {
  left: 68%;
  top: -25vw;
}
.contactUs .f1 .itemBox .items .item{
  width: 100%;
  border-radius: 20px;
  border: 1px solid #FFF;
  background: linear-gradient(180deg, rgba(26, 59, 178, 0.13) 0%, rgba(26, 59, 178, 0.03) 100%);
  backdrop-filter: blur(12.5px);
  padding: 2vw;
  position: absolute;
  transition: .3s all;
  opacity: 0;
  pointer-events: none;
}
.contactUs .f1 .itemBox .items.active .item{
  opacity: 1;
  pointer-events: all;
}
.contactUs .f1 .itemBox .item .name {
  font-size: 1.2vw;
  font-family: SemiBold;
}
.contactUs .f1 .itemBox .item .contBox {
  margin-top: 2vw;
}
.contactUs .f1 .itemBox .item .contBox .it {
  display: flex;
  align-items: center;
  font-size: 0.9vw;
  margin-top: 1.2vw;
}
.contactUs .f1 .itemBox .item .contBox .it .icon {
  width: 1vw;
}
.contactUs .f1 .itemBox .item .contBox .it .t {
  width: 3vw;
  font-weight: bold;
  margin: 0 1vw;
}
.contactUs .f1 .itemBox .item .contBox .it .d {
  color: #666666;
}
.contactUs .f1 .itemBox .items .icons {
  position: absolute;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.contactUs .f1 .itemBox .items .icons img{
  width: 8vw;
  animation: itemBefore 2s infinite;
}
.contactUs .f1 .itemBox .items .icons .name{
  font-size: 1.2vw;
  font-family: SemiBold;
  position: absolute;
}
@keyframes itemBefore {
  0% {
    transform: scale(0.3);
  }
  50% {
    transform: scale(.6);
  }
  100% {
    transform: scale(0.3);
  }
}
.contactUs .f1 .itemBox .items:nth-child(1) .icons {
  top: 3vw;
  right: -7vw;
}
.contactUs .f1 .itemBox .items:nth-child(1) .icons .name {
  left: -6vw;
}
.contactUs .f1 .itemBox .items:nth-child(2) .icons {
  top: 15.5vw;
  left: -2.5vw;
}
.contactUs .f1 .itemBox .items:nth-child(2) .icons .name {
  width: 10vw;
  left: 7vw;
}
.contactUs .f1 .itemBox .items:nth-child(3) .icons {
  top: 13.5vw;
  left: 2vw;
}
.contactUs .f1 .itemBox .items:nth-child(3) .icons .name {
  left: -12vw;
}
.contactUs .f1 .itemBox .items:nth-child(4) .icons {
  top: 14.5vw;
  left: 1vw;
}
.contactUs .f1 .itemBox .items:nth-child(4) .icons .name {
  width: 18vw;
  left: 8vw;
}
.contactUs .f1 .itemBox .items:nth-child(5) .icons {
  top: 15.5vw;
  left: 3vw;
}
.contactUs .f1 .itemBox .items:nth-child(5) .icons .name {
  top: 4vw;
  left: -12vw;
  width: 14vw;
}
.about {
  width: 100%;
  position: relative;
}
.about .titItem {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 8vw 0 0 0;
}
.about .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.about .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.about .titItem .des {
  width: 50%;
  font-size: 1vw;
  line-height: 1.2;
  text-align: right;
}
.about .titItem .des .year {
  font-size: 3vw;
  font-family: SemiBold;
}
.about .f1 {
  width: 100%;
  position: relative;
  padding-top: 6vw;
}
.about .f1 .f1Box {
  width: 100%;
  height: 35vw;
  background-size: cover !important;
  border-radius: 2vw;
  position: relative;
  padding: 5vw 3vw 0 3vw;
  color: white;
}
.about .f1 .f1Box .tit {
  font-size: 2.2vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
}
.about .f1 .f1Box .tit::before {
  content: "";
  position: absolute;
  width: 0.7vw;
  height: 3vw;
  background: #E41B4B;
  border-radius: 1vw 0;
  right: 0;
  top: 0;
}
.about .f1 .f1Box .itemBox {
  width: 60%;
  display: flex;
  justify-content: space-between;
  margin-top: 4vw;
  position: absolute;
  right: 3vw;
}
.about .f1 .f1Box .itemBox .item {
  width: 32%;
  height: 20vw;
  border-radius: 20px;
  border-top: 10px solid #1A3BB2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  border-radius: 1vw;
  position: relative;
  padding: 1vw;
}
.about .f1 .f1Box .itemBox .item .head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about .f1 .f1Box .itemBox .item .head .icon {
  width: 2vw;
}
.about .f1 .f1Box .itemBox .item .head .num {
  font-size: 2vw;
  font-family: SemiBold;
  opacity: 0.3;
}
.about .f1 .f1Box .itemBox .item .t {
  font-size: 1.5vw;
  font-family: SemiBold;
  margin: 1vw 0;
}
.about .f1 .f1Box .itemBox .item .d {
  font-size: 0.9vw;
  line-height: 1.7;
}
.about .f1 .f1Box .itemBox .item .d p {
  padding-left: 1vw;
  position: relative;
}
.about .f1 .f1Box .itemBox .item .d p::before {
  content: "";
  position: absolute;
  width: 0.2vw;
  height: 0.2vw;
  background: #ffffff;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about .f2 {
  width: 100%;
  position: relative;
  padding: 8vw 0;
}
.about .f2 .f2Item {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.about .f2 .f2Item .left {
  width: 44%;
}
.about .f2 .f2Item .left .des {
  font-size: 0.9vw;
  margin-top: 3vw;
  line-height: 1.7;
}
.about .f2 .f2Item .right {
  width: 50%;
  height: 22vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.about .f2 .f2Item .right video {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover !important;
}
.about .f2 .f2Item .right .play {
  width: 5vw;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  cursor: pointer;
  z-index: 2;
}
.about .f2 .f2Item .right .play.active {
  display: none;
}
.about .f2 .f2Item .right::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1vw;
  z-index: 1;
}
.about .f2 .f2Item .right.active::before {
  content: inherit;
}
.about .f3 {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #FFF 1%, #1A3BB2 101.55%);
}
.about .f3 .f3Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.about .f3 .f3Box .item .icon {
  width: 2vw;
}
.about .f3 .f3Box .item .num {
  font-size: 2.5vw;
  font-weight: bold;
  font-family: SemiBold;
  margin-top: 1vw;
  color: #1A3BB2;
}
.about .f3 .f3Box .item .d {
  font-size: 0.9vw;
  line-height: 1.7;
  color: #666666;
}
.about .f3 .f3History {
  width: 100%;
  position: relative;
  padding-bottom: 5vw;
}
.about .f3 .f3History .tit {
  color: white;
  font-size: 2vw;
  font-weight: bold;
  margin-top: 5vw;
  text-transform: capitalize;
  text-align: center;
}
.about .f3 .f3History .f3Swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 3vw;
}
.about .f3 .f3History .f3Swiper .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about .f3 .f3History .f3Swiper .swiper-slide .img {
  width: 50%;
  height: 22vw;
  border-radius: 1vw;
  overflow: hidden;
}
.about .f3 .f3History .f3Swiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.about .f3 .f3History .f3Swiper .swiper-slide .text {
  width: 40%;
  color: white;
}
.about .f3 .f3History .f3Swiper .swiper-slide .text .year {
  font-family: SemiBold;
  font-size: 5vw;
}
.about .f3 .f3History .f3Swiper .swiper-slide .text .des {
  font-size: 1vw;
  margin-top: 2vw;
  line-height: 1.7;
}
.about .f3 .f3History .f3Swiper .swiper-slide .text .des p {
  padding-left: 1vw;
  position: relative;
}
.about .f3 .f3History .f3Swiper .swiper-slide .text .des p::before {
  content: '';
  position: absolute;
  width: 0.3vw;
  height: 0.3vw;
  border-radius: 50%;
  background: white;
  transform: translateY(-50%);
  top: 25%;
  left: -0.1vw;
}
.about .f3 .f3History .f3SwiperYear {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 4vw;
  padding-top: 2vw;
}
.about .f3 .f3History .f3SwiperYear .year {
  color: white;
  font-size: 1.2vw;
  font-weight: bold;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.about .f3 .f3History .f3SwiperYear .year::before {
  content: '';
  position: absolute;
  width: 0.3vw;
  height: 0.3vw;
  border-radius: 50%;
  background: white;
  transform: translateX(-50%);
  left: 50%;
  top: -1.1vw;
}
.about .f3 .f3History .f3SwiperYear .swiper-slide-thumb-active .year::after {
  content: '';
  position: absolute;
  width: 1.5vw;
  height: 1.5vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translateX(-50%);
  left: 50%;
  top: -1.7vw;
}
.about .f3 .f3History .f3SwiperYear .swiper-slide-thumb-active .year::before {
  content: '';
  position: absolute;
  width: 0.8vw;
  height: 0.8vw;
  background: url('../images/icon18.png') center no-repeat;
  background-size: cover;
  transform: translateX(-50%);
  left: 50%;
  top: -1.35vw;
  z-index: 2;
}
.about .f3 .f3History .f3SwiperYear::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: white;
  left: 0;
  top: 1vw;
}
.about .f4 {
  width: 100%;
  position: relative;
  padding: 6vw 0 0 0;
}
.about .f4 .f4Box {
  width: 100%;
  height: 27vw;
  position: relative;
  margin-top: 3vw;
  border-radius: 1vw;
  overflow: hidden;
}
.about .f4 .f4Box .imgBox {
  width: 100%;
  height: 100%;
  position: absolute;
}
.about .f4 .f4Box .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.about .f4 .f4Box .imgBox::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(26, 59, 178, 0) 0%, rgba(26, 59, 178, 0.7) 100%);
}
.about .f4 .f4Box .f4Item {
  width: 100%;
  position: relative;
  padding: 3vw;
  color: white;
}
.about .f4 .f4Box .f4Item .f4Tab {
  display: flex;
}
.about .f4 .f4Box .f4Item .f4Tab .tab {
  text-align: center;
  font-size: 1.3vw;
  font-family: SemiBold;
  cursor: pointer;
  margin-right: 2vw;
  position: relative;
}
.about .f4 .f4Box .f4Item .f4Tab .tab.active::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: white;
  left: 0;
  bottom: -0.3vw;
}
.about .f4 .f4Box .f4Item .f4Text {
  width: 60%;
  margin-top: 3vw;
}
.about .f4 .f4Box .f4Item .f4Text .item {
  display: none;
}
.about .f4 .f4Box .f4Item .f4Text .item .des {
  font-size: 0.9vw;
  line-height: 1.7;
}
.about .f4 .f4Box .f4Item .f4Text .item.active {
  display: block;
}
.about .f5 {
  width: 100%;
  position: relative;
  padding: 6vw 0 0 0;
}
.about .f5 .tabBox {
  display: flex;
  margin: 2vw 0;
}
.about .f5 .tabBox .tab {
  color: #333333;
  border: 1px solid #666666;
  border-radius: 5vw;
  padding: 0.5vw 2vw;
  font-size: 0.9vw;
  margin-right: 1vw;
  text-transform: capitalize;
  cursor: pointer;
  transition: 0.3s all;
}
.about .f5 .tabBox .tab:hover {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.about .f5 .tabBox .active {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.about .f5 .f5Swiper {
  width: 100%;
  position: relative;
  padding-bottom: 3vw;
  display: none;
}
.about .f5 .f5Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 16vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.about .f5 .f5Swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
  object-fit: cover !important;
}
.about .f5 .f5Swiper .swiper-slide .name {
  font-size: 0.9vw;
  margin-top: 1vw;
}
.about .f5 .f5Swiper .swiper-slide:hover .imgBox img {
  transform: scale(1.1);
}
.about .f5 .f5Swiper.active {
  display: block;
}
.about .f6 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.about .f6 .f6Box {
  width: 100%;
  position: relative;
  margin: 3vw 0;
  display: flex;
  align-items: center;
  gap: 1vw;
}
.about .f6 .f6Box .item {
  flex: 1;
  height: 22vw;
  background-size: cover !important;
  border-radius: 1vw;
  position: relative;
  cursor: pointer;
  transition: 0.5s all;
  overflow: hidden;
}
.about .f6 .f6Box .item .text {
  width: 100%;
  position: absolute;
  color: white;
  padding: 2vw;
  font-size: 0.9vw;
  line-height: 1.7;
  bottom: 0;
  left: 0;
  transition: 0.5s all;
  border-radius: 20px;
  transform: translateY(2vw);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) -3.79%, rgba(0, 0, 0, 0.75) 100%);
}
.about .f6 .f6Box .item .text .name {
  font-size: 1.2vw;
}
.about .f6 .f6Box .item .text .des {
  width: 30vw;
  font-size: 0.9vw;
  line-height: 1.5;
  margin: 1vw 0;
  height: 0;
  opacity: 0;
}
.about .f6 .f6Box .item .text .info {
  font-size: 1vw;
  display: inline;
  border-bottom: 1px solid white;
  height: 0;
  opacity: 0;
}
.about .f6 .f6Box .item.active {
  flex: 2.5;
}
.about .f6 .f6Box .item.active .text {
  transform: translateY(0);
}
.about .f6 .f6Box .item.active .text .des {
  height: auto;
  opacity: 1;
  transition: 0.3s all;
}
.about .f6 .f6Box .item.active .text .info {
  height: auto;
  opacity: 1;
  transition: 0.3s all;
}
.about .f6 .download {
  width: 100%;
  background-size: cover !important;
  border-radius: 1vw;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  text-align: center;
  color: white;
  padding: 3vw;
}
.about .f6 .download .text {
  width: 100%;
  position: relative;
  z-index: 2;
}
.about .f6 .download .text .tit {
  font-size: 1.5vw;
  font-family: SemiBold;
  position: relative;
}
.about .f6 .download .text .des {
  width: 70%;
  margin: 1.5vw auto;
  font-size: 0.9vw;
  line-height: 1.5;
}
.about .f6 .download .text .more {
  justify-content: center;
}
.about .f6 .download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(26, 59, 178, 0) 0%, rgba(26, 59, 178, 0.7) 100%);
}
.services {
  width: 100%;
  position: relative;
}
.services .f1 {
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  position: relative;
}
.services .f1 .titItem {
  width: 100%;
  position: relative;
  padding-top: 15vw;
}
.services .f1 .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
  color: white;
}
.services .f1 .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: white;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.services .f1 .titItem .des {
  width: 50%;
  font-size: 1.2vw;
  line-height: 1.7;
  text-transform: capitalize;
  color: white;
  margin: 5vw 0;
}
.services .f2 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.services .f2 .itemBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.services .f2 .itemBox .item {
  width: 32%;
  height: auto;
  border-radius: 20px;
  border-top: 10px solid #1A3BB2;
  background: #F5F5F7;
  backdrop-filter: blur(25px);
  border-radius: 1vw;
  position: relative;
  padding: 2vw;
}
.services .f2 .itemBox .item .head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services .f2 .itemBox .item .head .icon {
  width: 2vw;
}
.services .f2 .itemBox .item .head .num {
  font-size: 1.5vw;
  font-family: SemiBold;
  opacity: 0.3;
}
.services .f2 .itemBox .item .t {
  font-size: 1.5vw;
  font-family: SemiBold;
  margin: 1vw 0;
}
.services .f2 .itemBox .item .d {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 3vw;
  color: #666666;
}
.services .f3 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
  background: #f5f5f5;
}
.services .f3 .f3Txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services .f3 .f3Txt .des {
  width: 40%;
  font-size: 0.9vw;
  line-height: 1.7;
}
.services .f3 .f3Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1vw;
  margin-top: 3vw;
}
.services .f3 .f3Box .item {
  width: 32%;
  background: white;
  border-radius: 1vw;
  padding: 2vw;
  margin-top: 1vw;
}
.services .f3 .f3Box .item .icon {
  width: auto;
  height: 3vw;
}
.services .f3 .f3Box .item .icon img {
  width: auto;
  height: 100%;
  margin: 1vw auto 0 auto;
}
.services .f3 .f3Box .item .name {
  text-align: center;
  font-size: 1vw;
  margin-top: 2vw;
}
.services .f3 .f3Box .item .des {
  text-align: center;
  font-size: .9vw;
  margin-top: 1vw;
}
.services .f4 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
  display: flex;
  justify-content: space-between;
}
.services .f4 .left {
  width: 40%;
}
.services .f4 .left .f4Tab {
  width: 100%;
  margin: 3vw 0;
}
.services .f4 .left .f4Tab .tab {
  font-size: 1.2vw;
  font-family: SemiBold;
  padding-left: 1.5vw;
  cursor: pointer;
  border-left: 3px solid #D9D9D9;
}
.services .f4 .left .f4Tab .tab:nth-child(2) {
  padding: 1vw 1.5vw;
}
.services .f4 .left .f4Tab .active {
  color: #1A3BB2;
  border-left: 3px solid #1A3BB2;
}
.services .f4 .left .des {
  font-size: 0.9vw;
  line-height: 1.7;
}
.services .f4 .left .des2 .des2Item {
  display: none;
}
.services .f4 .left .des2 .des2Item.active {
  display: block;
}
.services .f4 .right {
  width: 50%;
  height: 25vw;
  border-radius: 1vw;
  overflow: hidden;
}
.services .f4 .right .img {
  width: 100%;
  height: 100%;
  position: relative;
}
.services .f4 .right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services .f5 {
  width: 100%;
  position: relative;
  padding: 6vw 0 3vw 0;
}
.services .f5 .f5Img {
  width: 100%;
  position: relative;
  margin-top: -3vw;
}
.services .f5 .f5Box {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  line-height: 1.7;
  font-size: .9vw;
}
.services .f5 .f5Box img{
  width: 100%;
  margin: 2vw 0;
}
.services .f5 .f5Box .item {
  display: flex;
  position: relative;
  align-items: center;
}
.services .f5 .f5Box .item .txt .t {
  font-size: 1.1vw;
  font-family: SemiBold;
}
.services .f5 .f5Box .item .txt .d {
  color: #666666;
  font-size: 0.9vw;
}
.services .f5 .f5Box .item .num {
  font-size: 7vw;
  font-family: 'Barlow Condensed';
  font-weight: bold;
  opacity: 0.1;
  position: relative;
  margin-top: -2vw;
  margin-left: 1vw;
}
.services .f5 .f5Box .item:nth-child(1) {
  top: 21vw;
}
.services .f5 .f5Box .item:nth-child(2) {
  top: 24vw;
}
.services .f5 .f5Box .item:nth-child(3) {
  top: 18vw;
}
.services .f5 .f5Box .item:nth-child(4) {
  top: 17vw;
}
.services .f5 .f5Box .item:nth-child(5) {
  top: 8vw;
}
.solutionsDetail {
  width: 100%;
  position: relative;
}
.solutionsDetail .f1 {
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  position: relative;
}
.solutionsDetail .f1::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.3);
  top: 0;
  left: 0;
}
.solutionsDetail .f1 .titItem {
  width: 100%;
  position: relative;
  padding-top: 10vw;
}
.solutionsDetail .f1 .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
  color: white;
}
.solutionsDetail .f1 .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: white;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.solutionsDetail .f1 .titItem .des {
  width: 50%;
  font-size: 1.2vw;
  line-height: 1.7;
  text-transform: capitalize;
  color: white;
  margin: 5vw 0;
}
.solutionsDetail .f2 {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 6vw 0;
}
.solutionsDetail .f2 .imgBox {
  width: 50%;
  height: 25vw;
  border-radius: 1vw;
  overflow: hidden;
}
.solutionsDetail .f2 .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solutionsDetail .f2 .textBox {
  width: 50%;
  padding-top: 1vw;
  padding-left: 5vw;
}
.solutionsDetail .f2 .textBox .t {
  margin: 3vw 0;
  font-size: 1.5vw;
  font-family: SemiBold;
}
.solutionsDetail .f2 .textBox .d {
  font-size: 1vw;
  color: #666666;
  padding-bottom: 3vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.7;
}
.solutionsDetail .f2 .textBox .d span {
  color: #333333;
}
.solutionsDetail .f3 {
  width: 100%;
  position: relative;
}
.solutionsDetail .f3 .itemBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.solutionsDetail .f3 .itemBox .item {
  width: 32%;
  height: auto;
  border-radius: 20px;
  border-top: 10px solid #1A3BB2;
  background: #F5F5F7;
  backdrop-filter: blur(25px);
  border-radius: 1vw;
  position: relative;
  padding: 2vw;
}
.solutionsDetail .f3 .itemBox .item .head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.solutionsDetail .f3 .itemBox .item .head .icon {
  width: 2vw;
}
.solutionsDetail .f3 .itemBox .item .head .num {
  font-size: 1.5vw;
  font-family: SemiBold;
  opacity: 0.3;
}
.solutionsDetail .f3 .itemBox .item .t {
  font-size: 1.5vw;
  font-family: SemiBold;
  margin: 1vw 0;
}
.solutionsDetail .f3 .itemBox .item .d {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 3vw;
  color: #666666;
}
.solutionsDetail .f4 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
  display: flex;
  justify-content: space-between;
}
.solutionsDetail .f4 .left {
  width: 40%;
}
.solutionsDetail .f4 .left .f4Tab {
  width: 100%;
  margin: 3vw 0;
  border-left: 3px solid #D9D9D9;
}
.solutionsDetail .f4 .left .f4Tab .tab {
  font-size: 1.2vw;
  font-family: SemiBold;
  padding-left: 1.5vw;
  cursor: pointer;
  position: relative;
  left: -0.18vw;
  margin: .7vw 0;
}
.solutionsDetail .f4 .left .f4Tab .active {
  color: #1A3BB2;
  border-left: 3px solid #1A3BB2;
}
.solutionsDetail .f4 .left .des {
  font-size: 0.9vw;
  line-height: 1.7;
}
.solutionsDetail .des2Item {
  display: none;
}
.solutionsDetail .des2Item.active {
  display: block;
}
.solutionsDetail .f4 .right {
  width: 50%;
  height: 25vw;
  border-radius: 1vw;
  overflow: hidden;
}
.solutionsDetail .f4 .right .img {
  width: 100%;
  height: 100%;
  position: relative;
}
.solutionsDetail .f4 .right .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solutionsDetail .f5 {
  width: 100%;
  position: relative;
  background: #F5F5F7;
  padding: 6vw 0;
}
.solutionsDetail .f5 .w1400 {
  display: flex;
  align-items: center;
}
.solutionsDetail .f5 .w1400 .imgBox {
  width: 40%;
  height: 30vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.solutionsDetail .f5 .w1400 .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s all;
}
.solutionsDetail .f5 .w1400 .textBox {
  width: 60%;
  padding: 5vw 0 5vw 3vw;
}
.solutionsDetail .f5 .w1400 .textBox .tabBox {
  display: flex;
  align-items: center;
  margin: 2vw 0;
}
.solutionsDetail .f5 .w1400 .textBox .tabBox .tab {
  font-size: .9vw;
  color: #333333;
  padding: 0.6vw;
  text-align: center;
  transition: 0.5s all;
  border: 1px solid #666666;
  border-radius: 5vw;
  cursor: pointer;
  margin-right: 1vw;
}
.solutionsDetail .f5 .w1400 .textBox .tabBox .tab.active {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.solutionsDetail .f5 .w1400 .textBox .tabBox .tab:hover {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.solutionsDetail .f5 .w1400 .textBox .des .t {
  font-size: 1.2vw;
}
.solutionsDetail .f5 .w1400 .textBox .des .d {
  font-size: 0.9vw;
  line-height: 1.7;
  color: #666666;
  margin-top: 1vw;
}
.solutionsDetail .f6 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.solutionsDetail .f6 .f6Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.solutionsDetail .f6 .f6Box .left {
  width: 48%;
}
.solutionsDetail .f6 .f6Box .left .item {
  background: #F8F8FA;
  border-radius: 0.5vw;
  margin-bottom: 1vw;
  padding: 1.2vw 2vw;
  cursor: pointer;
}
.solutionsDetail .f6 .f6Box .left .item .tit {
  display: flex;
  font-size: 1.1vw;
  font-family: SemiBold;
  justify-content: space-between;
}
.solutionsDetail .f6 .f6Box .left .item .tit .icon::before {
  content: '+';
  font-size: 1.5vw;
  font-family: inherit;
  font-weight: normal;
}
.solutionsDetail .f6 .f6Box .left .item .des {
  height: 0;
  opacity: 0;
  font-size: 0.9vw;
  line-height: 1.7;
  pointer-events: none;
  transition: 0.3s all;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.solutionsDetail .f6 .f6Box .left .active .tit .icon::before {
  content: '-';
}
.solutionsDetail .f6 .f6Box .left .active .des {
  padding-bottom: 1vw;
  height: auto;
  opacity: 1;
  margin-top: 1vw;
}
.solutionsDetail .f6 .f6Box .right {
  width: 48%;
  height: 25vw;
  position: relative;
  background: #F8F8FA;
}
.solutionsDetail .f6 .f6Box .right img {
  width: 95%;
  height: auto;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  object-fit: cover;
}
.solutionsDetail .f61 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.solutionsDetail .f61 .f61Box {
  width: 100%;
  margin-top: 3vw;
}
.solutionsDetail .f61 .f61Swiper {
  width: 100%;
  height: 30vw;
  overflow: hidden;
  padding: 2vw 0;
}
.solutionsDetail .f61 .f61Swiper .swiper-slide {
  position: relative;
  transition: opacity 0.4s ease;
  opacity: 0.3;
}
.solutionsDetail .f61 .f61Swiper .swiper-slide-active {
  opacity: 1;
}
.solutionsDetail .f61 .f61Swiper .swiper-slide .imgBox {
  width: 100% !important;
  height: 28vw !important;
  position: relative;
  border-radius: 1vw;
  overflow: hidden;
  background: #F8F8FA;
}
.solutionsDetail .f61 .f61Swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}
.solutionsDetail .f61 .f61TabBox {
  display: flex;
  justify-content: center;
  gap: 4vw;
  border-bottom: 1px solid #E5E5E5;
  margin-top: 2vw;
  padding: 0 2vw;
}
.solutionsDetail .f61 .f61TabBox .tab {
  padding: 1.5vw 0;
  font-size: 1.1vw;
  color: #999999;
  cursor: pointer;
  position: relative;
  transition: 0.3s all;
  white-space: nowrap;
}
.solutionsDetail .f61 .f61TabBox .tab:hover {
  color: #333333;
}
.solutionsDetail .f61 .f61TabBox .tab.active {
  color: #1A3BB2;
}
.solutionsDetail .f61 .f61TabBox .tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: #1A3BB2;
  border-radius: 2px;
}
.solutionsDetail .f61 .f61Des {
  text-align: center;
  font-size: 1vw;
  color: #666666;
  line-height: 1.7;
  margin-top: 2vw;
  padding: 0 10vw;
  min-height: 3vw;
}
.solutionsDetail .f7 {
  width: 100%;
  position: relative;
  background: #F5F5F7;
  padding: 6vw 0;
}
.solutionsDetail .f7 .w1400 {
  width: 100%;
}
.solutionsDetail .f7 .w1400 .tit {
  font-size: 2vw;
  font-family: SemiBold;
  text-transform: capitalize;
  margin-bottom: 2vw;
  text-align: center;
}
.solutionsDetail .f7 .w1400 .f7Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 5vw;
}
.solutionsDetail .f7 .w1400 .f7Box .item {
  width: 23%;
  text-align: center;
}
.solutionsDetail .f7 .w1400 .f7Box .item .icon {
  width: auto;
  height: 2.5vw;
  margin: 0 auto;
}
.solutionsDetail .f7 .w1400 .f7Box .item .t {
  font-size: 1.1vw;
  font-family: SemiBold;
  margin: 2vw 0;
}
.solutionsDetail .f7 .w1400 .f7Box .item .d {
  font-size: 0.9vw;
  color: #666666;
  line-height: 1.7;
}
.solutionsDetail .f8 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.solutionsDetail .f8 .f8Swiper {
  width: 100%;
  position: relative;
  margin-top: 2vw;
}
.solutionsDetail .f8 .f8Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 16vw;
  background: #E9E9E9;
  position: relative;
  border-radius: 0.5vw;
  overflow: hidden;
}
.solutionsDetail .f8 .f8Swiper .swiper-slide .imgBox img {
  width: auto;
  height: 80%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 0.3s all;
  object-fit: cover !important;
}
.solutionsDetail .f8 .f8Swiper .swiper-slide .textBox {
  width: 100%;
  position: relative;
  border-radius: 1vw;
  padding: 1vw 0;
}
.solutionsDetail .f8 .f8Swiper .swiper-slide .textBox .name {
  font-size: 1vw;
  font-family: SemiBold;
}
.solutionsDetail .f8 .f8Swiper .swiper-slide:hover .imgBox img {
  transform: translate(-50%, -50%) scale(1.1);
}
.solutionsDetail .f9 {
  width: 100%;
  position: relative;
}
.solutionsDetail .f9 .f9Swiper {
  width: 100%;
  position: relative;
  margin-top: 2vw;
}
.solutionsDetail .f9 .f9Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 16vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.solutionsDetail .f9 .f9Swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
  object-fit: cover !important;
}
.solutionsDetail .f9 .f9Swiper .swiper-slide .textBox {
  width: 100%;
  position: relative;
  border-radius: 1vw;
  padding: 1vw 0;
}
.solutionsDetail .f9 .f9Swiper .swiper-slide .textBox .lab {
  font-size: 0.8vw;
  color: #666666;
  position: relative;
  display: flex;
}
.solutionsDetail .f9 .f9Swiper .swiper-slide .textBox .lab .it {
  border: 1px solid #CCC;
  background: #F7F7F7;
  border-radius: 5vw;
  padding: 0.1vw 0.5vw;
  margin-right: 0.5vw;
}
.solutionsDetail .f9 .f9Swiper .swiper-slide .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.solutionsDetail .f9 .f9Swiper .swiper-slide .textBox .name {
  font-size: 1.2vw;
  margin: 0.5vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.solutionsDetail .f9 .f9Swiper .swiper-slide .textBox .des {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 0.5vw;
}
.solutionsDetail .f9 .f9Swiper .swiper-slide:hover .imgBox img {
  transform: scale(1.1);
}
.solutionsDetail .f9 .swiper-button-next {
  width: 4vw;
  right: 0;
  top: 7vw;
  border: 1px solid #666666;
  border-radius: 3vw;
}
.solutionsDetail .f9 .swiper-button-next img {
  width: 1vw;
}
.solutionsDetail .f9 .swiper-button-prev {
  width: 4vw;
  left: inherit;
  right: 4.5vw;
  top: 7vw;
  border: 1px solid #666666;
  border-radius: 3vw;
}
.solutionsDetail .f9 .swiper-button-prev img {
  width: 1vw;
  transform: rotate(180deg);
}
.solutionsDetail .f9 .swiper-button-next:after,
.solutionsDetail .f9 .swiper-button-prev:after {
  content: inherit;
}
.solutionsDetail .f10 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.solutionsDetail .f10 .f10Txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.solutionsDetail .f10 .f10Txt .more .icon {
  background: #EEEEEE;
}
.solutionsDetail .f10 .f10Txt .more .t {
  border: 1px solid #EEEEEE;
  color: #333333;
}
.solutionsDetail .f10 .f10Swiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  overflow: hidden;
  padding-left: 13vw;
}
.solutionsDetail .f10 .f10Swiper .swiper-slide {
  width: 100%;
  display: flex;
}
.solutionsDetail .f10 .f10Swiper .swiper-slide .imgBox {
  width: 45vw;
  height: 30vw;
  border-radius: 1vw;
  overflow: hidden;
}
.solutionsDetail .f10 .f10Swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.solutionsDetail .f10 .f10Swiper .swiper-slide .textBox {
  width: 55vw;
  height: 30vw;
  background: #F8F8FA;
  position: relative;
  border-radius: 1vw;
  margin-left: 1vw;
  padding: 2vw;
}
.solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .name {
  font-size: 1.8vw;
  margin: 2vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .des {
  font-size: 1vw;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .mores {
  width: calc(100% - 4vw);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 2vw;
  padding-top: 1vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .mores .icon {
  width: 1vw;
}
.solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .mores .t {
  font-size: 0.9vw;
  margin-left: 1vw;
}
.solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .mores:hover {
  color: #1A3BB2;
}
.solutionsDetail .f10 .f10Swiper .swiper-slide:hover .imgBox img {
  transform: scale(1.05);
}
.solutionsDetail .f10 .f10Swiper .swiper-slide:hover .mores {
  border-top: 1px solid #1A3BB2;
}
.products {
  width: 100%;
  position: relative;
}
.products .f1 {
  width: 100%;
  height: auto;
  background-size: cover !important;
  position: relative;
}
.products .f1 .titItem {
  width: 100%;
  position: relative;
  padding-top: 8vw;
}
.products .f1 .titItem .breadcrumbs{
  /*color: white;*/
}
.products .f1 .titItem .breadcrumbs a{
  color: #666666;
}
.products .f1 .titItem .breadcrumbs a:hover{
  color: #1A3BB2;
}
.products .f1 .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
  /*color: white;*/
}
.products .f1 .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.products .f1 .titItem .des{
  font-size: 1vw;
  /*color: white;*/
  margin: 3vw 0;
}
.products .f1 .titItem .more .icon {
  background: #EEEEEE;
}
.products .f2 {
  width: 100%;
  position: relative;
  padding: 3vw 0;
}
.products .f2 .f2Box {
  width: 100%;
  position: relative;
  margin-top: 5vw;
}
.products .f2 .f2Box .itemBox {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}
.products .f2 .f2Box .itemBox .item {
  width: 31.5%;
  position: relative;
}
.products .f2 .f2Box .itemBox .item .imgBox {
  width: 100%;
  height: 16vw;
  background: #F3F3F3;
  position: relative;
  border-radius: 0.5vw;
  overflow: hidden;
}
.products .f2 .f2Box .itemBox .item .imgBox img {
  width: 90%;
  height: 90%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 0.3s all;
  object-fit: contain !important;
}
.products .f2 .f2Box .itemBox .item .imgBox::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #E9E9E9;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.6s cubic-bezier(0.63, 0, 0, 0.99);
  z-index: 0;
}
.products .f2 .f2Box .itemBox .item .textBox {
  width: 100%;
  position: relative;
  border-radius: 1vw;
  padding: 1vw 0;
}
.products .f2 .f2Box .itemBox .item .textBox .name {
  font-size: 1vw;
  font-family: SemiBold;
}
.products .f2 .f2Box .itemBox .item:hover .imgBox::before {
  transform: scaleY(1);
}
.products .f2 .f2Box .itemBox .item:hover .imgBox img {
  transform: translate(-50%, -50%) scale(1.1);
}
.productsDetail1 {
  width: 100%;
  position: relative;
}
.productsDetail1 .proFixed {
  width: 100%;
  position: fixed;
  bottom: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  z-index: 3;
}
.productsDetail1 .proFixed .item {
  min-width: 5vw;
  border-radius: 0.5vw;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  padding: 0.5vw;
  cursor: pointer;
}
.productsDetail1 .proFixed .item img {
  width: auto;
  height: 3vw;
  margin: 0 auto;
}
.productsDetail1 .proFixed .item .t {
  color: white;
  font-size: 0.9vw;
  font-family: SemiBold;
  display: none;
}
.productsDetail1 .proFixed .item.active .t {
  display: block;
}
.productsDetail1 .f1 {
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  position: relative;
}
.productsDetail1 .f1 .titItem {
  width: 100%;
  position: relative;
  padding-top: 20vw;
}
.productsDetail1 .f1 .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
  color: white;
}
.productsDetail1 .f1 .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.productsDetail1 .f2 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.productsDetail1 .f2 .f2Top {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.productsDetail1 .f2 .f2Top .left {
  width: 40%;
  background: #F3F3F3;
  padding: 2vw;
  border-radius: 1vw;
}
.productsDetail1 .f2 .f2Top .left .iconLogo {
  width: 10vw;
}
.productsDetail1 .f2 .f2Top .left .tit {
  display: flex;
  align-items: center;
  margin: 1vw 0;
}
.productsDetail1 .f2 .f2Top .left .tit .name {
  font-size: 1.2vw;
  font-family: SemiBold;
}
.productsDetail1 .f2 .f2Top .left .tit .label {
  background: white;
  border-radius: 3vw;
  font-size: 0.9vw;
  padding: 0.3vw 0.5vw;
  margin-left: 1vw;
}
.productsDetail1 .f2 .f2Top .left .des {
  font-size: 0.9vw;
  line-height: 1.7;
  color: #666666;
}
.productsDetail1 .f2 .f2Top .right {
  width: 58%;
  height: 22vw;
  background: #F3F3F3;
  padding: 2vw;
  border-radius: 1vw;
  position: relative;
}
.productsDetail1 .f2 .f2Top .right img {
  width: 100%;
  height: 80%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 0.3s all;
  object-fit: contain;
}
.productsDetail1 .f2 .f2Bottom {
  width: 100%;
  position: relative;
  margin-top: 2vw;
  display: flex;
  justify-content: space-between;
}
.productsDetail1 .f2 .f2Bottom .item {
  width: 23.5%;
  background: #F9F9F9;
  padding: 1.5vw;
  border-radius: 1vw;
}
.productsDetail1 .f2 .f2Bottom .item .icon {
  width: 2vw;
}
.productsDetail1 .f2 .f2Bottom .item .t {
  color: #1A3BB2;
  font-size: 1.2vw;
  font-family: SemiBold;
  margin: 1.5vw 0;
  position: relative;
  text-transform: capitalize;
}
.productsDetail1 .f2 .f2Bottom .item .t::before {
  content: "";
  position: absolute;
  width: 1.2vw;
  height: 0.25vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -0.5vw;
}
.productsDetail1 .f2 .f2Bottom .item .des {
  line-height: 1.7;
  font-size: 0.9vw;
  color: #666666;
}
.productsDetail1 .f2 .f2Bottom .item .des p {
  padding-left: 0.6vw;
  position: relative;
}
.productsDetail1 .f2 .f2Bottom .item .des p::before {
  content: "";
  position: absolute;
  width: 0.2vw;
  height: 0.2vw;
  background: #666666;
  border-radius: 50%;
  left: 0;
  top: 0.7vw;
}
.productsDetail1 .f3 {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 4vw;
}
.productsDetail1 .f3 .left {
  width: 50%;
  position: relative;
}
.productsDetail1 .f3 .left .img {
  width: 100%;
  height: 25vw;
  background: #F3F3F3;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
}
.productsDetail1 .f3 .left .img img {
  width: 100%;
  height: 90%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.productsDetail1 .f3 .right {
  width: 50%;
  padding-left: 5vw;
}
.productsDetail1 .f3 .right .tabBox {
  display: flex;
  align-items: center;
}
.productsDetail1 .f3 .right .tabBox .tab {
  font-size: 1vw;
  color: #333333;
  padding: 0.6vw 1.2vw;
  text-align: center;
  transition: 0.5s all;
  border: 1px solid #666666;
  border-radius: 5vw;
  cursor: pointer;
  margin-right: 1vw;
}
.productsDetail1 .f3 .right .tabBox .tab.active {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.productsDetail1 .f3 .right .tabBox .tab:hover {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.productsDetail1 .f3 .right .text {
  padding-top: 2vw;
}
.productsDetail1 .f3 .right .text .tit {
  font-size: 1.2vw;
  font-family: SemiBold;
  margin: 1.5vw 0;
  position: relative;
  text-transform: capitalize;
}
.productsDetail1 .f3 .right .text .des {
  font-size: 0.9vw;
  color: #666666;
  line-height: 1.7;
}
.productsDetail1 .f3 .right .text .more {
  margin-top: 2vw;
}
.productsDetail1 .f3 .right .text .more .icon {
  background: #EEEEEE;
}
.productsDetail1 .f3 .right .text .more .t {
  border: 1px solid #EEEEEE;
  color: #333333;
}
.productsDetail1 .f4{
  width: 100%;
  position: relative;
  padding: 3vw 0;
}
.productsDetail1 .f4 .f4Box{
  width: 100%;
  margin-top: 3vw;
}
.productsDetail1 .f4 .f4Box .item{
  background: #F8F8FA;
  border-radius: 0.5vw;
  margin-bottom: 1vw;
  padding: 1.2vw 2vw;
  cursor: pointer;
}
.productsDetail1 .f4 .f4Box .item .tit {
  display: flex;
  font-size: 1.1vw;
  font-family: SemiBold;
  justify-content: space-between;
}
.productsDetail1 .f4 .f4Box .item .tit .icon::before {
  content: '+';
  font-size: 1.5vw;
  font-family: inherit;
  font-weight: normal;
}
.productsDetail1 .f4 .f4Box .item .des {
  height: 0;
  opacity: 0;
  font-size: 0.9vw;
  line-height: 1.7;
  pointer-events: none;
  transition: 0.3s all;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.productsDetail1 .f4 .f4Box .item.active .tit .icon::before {
  content: '-';
}
.productsDetail1 .f4 .f4Box .item.active .des {
  padding-bottom: 1vw;
  height: auto;
  opacity: 1;
  margin-top: 1vw;
}
.productsDetail2 {
  width: 100%;
  position: relative;
}
.productsDetail2 .proFixed {
  width: 100%;
  position: fixed;
  bottom: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
  z-index: 3;
}
.productsDetail2 .proFixed .item {
  min-width: 5vw;
  border-radius: 0.5vw;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  padding: 0.5vw;
  cursor: pointer;
}
.productsDetail2 .proFixed .item img {
  width: auto;
  height: 3vw;
  margin: 0 auto;
}
.productsDetail2 .proFixed .item .t {
  color: white;
  font-size: 0.9vw;
  font-family: SemiBold;
  display: none;
}
.productsDetail2 .proFixed .item.active .t {
  display: block;
}
.productsDetail2 .f1 {
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  position: relative;
  overflow: hidden;
}
.productsDetail2 .f1 .f1Video{
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover !important;
  opacity: 0;
  pointer-events: none;
}
.productsDetail2 .f1 .f1Video.active{
  opacity: 1;
  pointer-events: all;
}
.productsDetail2 .f1 .play{
  position: absolute;
  top: 80%;
  left: 50%;
  color: white;
  font-size: .9vw;
  border: 1px solid white;
  padding: 1vw 2vw;
  border-radius: .5vw;
  transform: translate(-50%,-50%);
  z-index: 9;
  cursor: pointer;
}
.productsDetail2 .f1 .titItem {
  width: 100%;
  position: relative;
  padding-top: 20vw;
}
.productsDetail2 .f1 .titItem .tit {
  font-size: 5vw;
  font-family: SemiBold;
  position: relative;
  text-transform: capitalize;
  color: white;
}
.productsDetail2 .f1 .titItem .tit::before {
  content: "";
  position: absolute;
  width: 3vw;
  height: 0.7vw;
  background: #E41B4B;
  border-radius: 0 1vw;
  bottom: -1vw;
}
.productsDetail2 .f2 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.productsDetail2 .f2 .tabBox {
  display: flex;
  align-items: center;
  margin: 2vw 0;
}
.productsDetail2 .f2 .tabBox .tab {
  font-size: 1vw;
  color: #333333;
  padding: 0.6vw 1.2vw;
  text-align: center;
  transition: 0.5s all;
  border: 1px solid #666666;
  border-radius: 5vw;
  cursor: pointer;
  margin-right: 1vw;
}
.productsDetail2 .f2 .tabBox .tab.active {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.productsDetail2 .f2 .tabBox .tab:hover {
  color: white;
  background: #1A3BB2;
  border: 1px solid #1A3BB2;
}
.productsDetail2 .f2 .f2Box {
  width: 100%;
  position: relative;
}
.productsDetail2 .f2 .f2Box .itemBg {
  width: 100%;
  height: 35vw;
  border-radius: 1vw;
  background-size: cover !important;
  padding: 3vw 2vw;
  display: none;
  overflow: hidden;
  transition: .5s all;
}
.productsDetail2 .f2 .f2Box .itemBg .itemBox {
  position: relative;
}
.productsDetail2 .f2 .f2Box .itemBg .itemBox .item {
  width: 26vw;
  border-radius: 3vw;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  padding: 1vw;
  cursor: pointer;
  margin-bottom: 1.5vw;
  transition: .5s all;
}
.productsDetail2 .f2 .f2Box .itemBg .itemBox .item .tit {
  display: flex;
  align-items: center;
  font-size: 1.1vw;
  font-family: SemiBold;
}
.productsDetail2 .f2 .f2Box .itemBg .itemBox .item .tit .icon {
  width: 1vw;
  margin-right: 1vw;
}
.productsDetail2 .f2 .f2Box .itemBg .itemBox .item .des {
  font-size: 0.9vw;
  line-height: 1.7;
  opacity: 0;
  height: 0;
  pointer-events: none;
  margin-top: 0;
}
.productsDetail2 .f2 .f2Box .itemBg .itemBox .active {
  width: 30vw;
  border-radius: 1vw;
}
.productsDetail2 .f2 .f2Box .itemBg .itemBox .active .tit .icon {
  display: none;
}
.productsDetail2 .f2 .f2Box .itemBg .itemBox .active .des {
  height: auto;
  opacity: 1;
  margin-top: 0.5vw;
}
.productsDetail2 .f2 .f2Box .itemBg.active {
  display: block;
}
.productsDetail2 .f2 .des{
  font-size: 1vw;
  line-height: 1.7;
  margin-top: 2vw;
}
.productsDetail2 .f3 {
  width: 100%;
  position: relative;
}
.productsDetail2 .f3 .f3Box {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  display: flex;
  justify-content: space-between;
}
.productsDetail2 .f3 .f3Box2{
  margin-top: 5vw;
  align-items: center;
}
.productsDetail2 .f3 .f3Box .left {
  width: 40%;
  padding-top: 5vw;
}
.productsDetail2 .f3 .f3Box .left .downBox{
  width: 100%;
  background-size: cover !important;
  overflow: hidden;
  position: relative;
  text-align: left;
  color: #333333;
}
.productsDetail3 .f3 .f3Box .left .downBox{
  width: 100%;
  background-size: cover !important;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  text-align: center;
  color: white;
  padding: 3vw;
}
.productsDetail3 .f3 .f3Box .left .downBox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(26, 59, 178, 0) 0%, rgba(26, 59, 178, 0.7) 100%);
}
.productsDetail2 .f3 .f3Box .left .downBox .tits{
  font-size: 1.2vw;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.productsDetail2 .f3 .f3Box .left .downBox .d{
  font-size: .9vw;
  line-height: 1.7;
  margin: 1vw 0 2vw 0;
  position: relative;
  z-index: 1;
}
.productsDetail2 .f3 .f3Box .more{
  position: relative;
  z-index: 1;
}
.productsDetail2 .f3 .f3Box .more .icon{
  background: #EEEEEE;
}
.productsDetail2 .f3 .f3Box .more .t {
  border: 1px solid #EEEEEE;
  color: #333333;
}
.productsDetail3 .f3 .f3Box .more .t {
  border: 1px solid #EEEEEE;
  color: white;
}
.productsDetail2 .f3 .f3Box .left .imgBox {
  width: 100%;
  height: 22vw;
  border-radius: 1vw;
  position: relative;
  background: #f3f3f3;
  border: 1px solid #d2d2d2;
  overflow: hidden;
}
.productsDetail2 .f3 .f3Box .left .imgBox img {
  width: 100%;
  height: 95%;
  object-fit: contain;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: .5s all;
}
.productsDetail2 .f3 .f3Box .left .f3Swiper {
  width: 100%;
  position: relative;
  margin-top: 1vw;
}
.productsDetail2 .f3 .f3Box .left .f3Swiper .swiper-slide {
  position: relative;
  cursor: pointer;
}
.productsDetail2 .f3 .f3Box .left .f3Swiper .swiper-slide .img {
  width: 100%;
  height: 6vw;
  border-radius: 1vw;
  position: relative;
  background: #f3f3f3;
  /*border: 1px solid #d2d2d2;*/
}
.productsDetail2 .f3 .f3Box .left .f3Swiper .swiper-slide .img img {
  width: 90%;
  height: 80%;
  object-fit: contain;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.productsDetail2 .f3 .f3Box .left .f3Swiper .swiper-slide-active .img {
  border: 1px solid #d2d2d2;
}
.productsDetail2 .f3 .f3Box .right {
  width: 60%;
  padding-left: 2vw;
  position: relative;
}
.productsDetail2 .f3 .f3Box .right .desContent{
  padding-left: 3vw;
  font-size: 1vw;
  line-height: 2;
}
.productsDetail2 .f3 .f3Box .right .desContent .t{
  font-size: 1.5vw;
  font-weight: bold;
}
.productsDetail2 .f3 .f3Box .right .desContent .d{
  font-size: 1vw;
  line-height: 2;
  margin-top: 1vw;
}
.productsDetail3 .f3 .f3Box .right table{
  width: 100%;
  position: relative;
  /* 关键：强制边框合并，彻底消除单元格间隙 */
  border-collapse: collapse;
  /* 禁止单元格间距兜底 */
  border-spacing: 0;
  margin: 0;
  padding: 0;
}
.productsDetail3 .f3 .f3Box .right table td {
  border: 1px solid rgba(0,0,0,.05);
  padding: 15px 10px;
  vertical-align: middle;
}
.productsDetail3 .f3 .f3Box .right table td:first-child {
  font-weight: bold;
  white-space: nowrap;
}
.productsDetail2 .f3 .f3Box .right .item {
  width: 100%;
  background: #F8F8FA;
  border-radius: 1vw;
  padding: 1.3vw 1.5vw;
  margin-bottom: 1vw;
  cursor: pointer;
  overflow: hidden;
}
.productsDetail2 .f3 .f3Box .right .item .tit {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.productsDetail2 .f3 .f3Box .right .item .tit .t {
  font-size: 1.1vw;
  font-family: SemiBold;
  text-transform: capitalize;
}
.productsDetail2 .f3 .f3Box .right .item .tit .icon::before {
  content: '+';
  position: absolute;
  font-size: 1.3vw;
  font-weight: bold;
  right: 0;
}
.productsDetail2 .f3 .f3Box .right .item .des {
  display: none;
  font-size: 0.85vw;
  color: #666666;
}
.productsDetail2 .f2 .f3Box .right .item .des table {
  width: 100%;
}
.productsDetail2 .f3 .f3Box .right .item .des table tr td {
  padding: 0.7vw 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.productsDetail2 .f3 .f3Box .right .item .des table tr td:last-child {
  text-align: right;
}
.productsDetail2 .f3 .f3Box .right .item.active .tit .icon::before {
  content: '-';
}
.productsDetail2 .f3 .f3Box .right .item.active .des {
  display: block;
  margin-top: 1vw;
}
.productsDetail2 .f4 {
  width: 100%;
  position: relative;
  z-index: 1;
}
.productsDetail2 .f4 .f4Txt {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.productsDetail2 .f4 .f4Txt .more .icon {
  background: #EEEEEE;
}
.productsDetail2 .f4 .f4Txt .more .t {
  border: 1px solid #EEEEEE;
  color: #333333;
}
.productsDetail2 .f4 .f4Swiper {
  width: 100%;
  position: relative;
  margin-top: 3vw;
  overflow: hidden;
  padding-left: 13vw;
}
.productsDetail2 .f4 .f4Swiper .swiper-slide {
  width: 100%;
  display: flex;
}
.productsDetail2 .f4 .f4Swiper .swiper-slide .imgBox {
  width: 45vw;
  height: 30vw;
  border-radius: 1vw;
  overflow: hidden;
}
.productsDetail2 .f4 .f4Swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.productsDetail2 .f4 .f4Swiper .swiper-slide .textBox {
  width: 55vw;
  height: 30vw;
  background: #F8F8FA;
  position: relative;
  border-radius: 1vw;
  margin-left: 1vw;
  padding: 2vw;
}
.productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .name {
  font-size: 1.8vw;
  margin: 2vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .des {
  font-size: 1vw;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
}
.productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .mores {
  width: calc(100% - 4vw);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 2vw;
  padding-top: 1vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .mores .icon {
  width: 1vw;
}
.productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .mores .t {
  font-size: 0.9vw;
  margin-left: 1vw;
}
.productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .mores:hover {
  color: #1A3BB2;
}
.productsDetail2 .f4 .f4Swiper .swiper-slide:hover .imgBox img {
  transform: scale(1.05);
}
.productsDetail2 .f4 .f4Swiper .swiper-slide:hover .mores {
  border-top: 1px solid #1A3BB2;
}
.productsDetail2 .f5 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.productsDetail2 .f5 .f5Swiper {
  width: 100%;
  position: relative;
  margin-top: 2vw;
}
.productsDetail2 .f5 .f5Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 16vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.productsDetail2 .f5 .f5Swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  transition: 0.3s all;
  object-fit: cover !important;
}
.productsDetail2 .f5 .f5Swiper .swiper-slide .textBox {
  width: 100%;
  position: relative;
  border-radius: 1vw;
  padding: 1vw 0;
}
.productsDetail2 .f5 .f5Swiper .swiper-slide .textBox .lab {
  font-size: 0.8vw;
  color: #666666;
  position: relative;
  display: flex;
}
.productsDetail2 .f5 .f5Swiper .swiper-slide .textBox .lab .it {
  border: 1px solid #CCC;
  background: #F7F7F7;
  border-radius: 5vw;
  padding: 0.1vw 0.5vw;
  margin-right: 0.5vw;
}
.productsDetail2 .f5 .f5Swiper .swiper-slide .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.productsDetail2 .f5 .f5Swiper .swiper-slide .textBox .name {
  font-size: 1.2vw;
  margin: 0.5vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.productsDetail2 .f5 .f5Swiper .swiper-slide .textBox .des {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 0.5vw;
}
.productsDetail2 .f5 .f5Swiper .swiper-slide:hover .imgBox img {
  transform: scale(1.1);
}
.productsDetail2 .f5 .swiper-button-next {
  width: 4vw;
  right: 0;
  top: 7vw;
  border: 1px solid #666666;
  border-radius: 3vw;
}
.productsDetail2 .f5 .swiper-button-next img {
  width: 1vw;
}
.productsDetail2 .f5 .swiper-button-prev {
  width: 4vw;
  left: inherit;
  right: 4.5vw;
  top: 7vw;
  border: 1px solid #666666;
  border-radius: 3vw;
}
.productsDetail2 .f5 .swiper-button-prev img {
  width: 1vw;
  transform: rotate(180deg);
}
.productsDetail2 .f5 .swiper-button-next:after,
.productsDetail2 .f5 .swiper-button-prev:after {
  content: inherit;
}
.productsDetail2 .f6 {
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.productsDetail2 .f6 .f6Swiper {
  width: 100%;
  position: relative;
  margin-top: 2vw;
}
.productsDetail2 .f6 .f6Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 16vw;
  border: 1px solid #E9E9E9;
  position: relative;
  border-radius: 0.5vw;
  overflow: hidden;
}
.productsDetail2 .f6 .f6Swiper .swiper-slide .imgBox img {
  width: 90%;
  height: 80%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: 0.3s all;
  object-fit: contain !important;
}
.productsDetail2 .f6 .f6Swiper .swiper-slide .textBox {
  width: 100%;
  position: relative;
  border-radius: 1vw;
  padding: 1vw 0;
}
.productsDetail2 .f6 .f6Swiper .swiper-slide .textBox .name {
  font-size: 1vw;
  font-family: SemiBold;
}
.productsDetail2 .f6 .f6Swiper .swiper-slide:hover .imgBox img {
  transform: translate(-50%, -50%) scale(1.1);
}
.productsDetail2 .f7 {
  width: 100%;
  position: relative;
  padding-bottom: 2vw;
  display: flex;
  justify-content: space-between;
}
.productsDetail2 .f7 .f7Box {
  width: 60%;
  position: relative;
}
.productsDetail2 .f7 .f7Box .item {
  width: 100%;
  border-top: 1px solid #E5E5E5;
  padding: 3vw 0;
  cursor: pointer;
  overflow: hidden;
}
.productsDetail2 .f7 .f7Box .item .tit {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.productsDetail2 .f7 .f7Box .item .tit .t {
  font-size: 1.1vw;
  font-family: SemiBold;
  text-transform: capitalize;
}
.productsDetail2 .f7 .f7Box .item .tit .icon::before {
  content: '+';
  position: absolute;
  font-size: 1.3vw;
  font-weight: bold;
  right: 0;
}
.productsDetail2 .f7 .f7Box .item .des {
  display: none;
  font-size: 0.85vw;
  line-height: 1.7;
  color: #666666;
}
.productsDetail2 .f7 .f7Box .item.active .tit .icon::before {
  content: '-';
}
.productsDetail2 .f7 .f7Box .item.active .des {
  display: block;
  margin-top: 1vw;
}
.blog_detail{
  width: 100%;
  position: relative;
  padding-top: 3vw;
}
.blog_detail .f1 {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 6vw 0;
}
.blog_detail .f1 .imgBox {
  width: 50%;
  height: 25vw;
  border-radius: 1vw;
  overflow: hidden;
}
.blog_detail .f1 .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog_detail .f1 .textBox {
  width: 50%;
  padding-top: 1vw;
  padding-left: 5vw;
}
.blog_detail .f1 .textBox .tit {
  font-size: 1.5vw;
  font-family: SemiBold;
}
.blog_detail .f1 .textBox .des {
  font-size: 1vw;
  color: #666666;
  padding: 2vw 0;
  margin-bottom: 2vw;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.7;
}
.blog_detail .f1 .textBox .des span {
  color: #333333;
}
.blog_detail .f1 .textBox .more .icon {
  background: #EEEEEE;
}
.blog_detail .f1 .textBox .more .t {
  border: 1px solid #EEEEEE;
  color: #333333;
}
.blog_detail .f2{
  width: 100%;
  position: relative;
}
.blog_detail .f2 .des{
  width: 100%;
  font-size: 1vw;
  line-height: 1.7;
  margin-top: 2vw;
}
.blog_detail .f2 .more{
  margin-top: 2vw;
}
.blog_detail .f2 .more .icon {
  background: #EEEEEE;
}
.blog_detail .f2 .more .t {
  border: 1px solid #EEEEEE;
  color: #333333;
}
.blog_detail .f3{
  width: 100%;
  position: relative;
  padding: 6vw 0;
}
.blog_detail .f3 .f3Box{
  width: 100%;
  margin-top: 3vw;
}
.blog_detail .f3 .f3Box .item{
  background: #F8F8FA;
  border-radius: 0.5vw;
  margin-bottom: 1vw;
  padding: 1.2vw 2vw;
  cursor: pointer;
}
.blog_detail .f3 .f3Box .item .tit {
  display: flex;
  font-size: 1.1vw;
  font-family: SemiBold;
  justify-content: space-between;
}
.blog_detail .f3 .f3Box .item .tit .icon::before {
  content: '+';
  font-size: 1.5vw;
  font-family: inherit;
  font-weight: normal;
}
.blog_detail .f3 .f3Box .item .des {
  height: 0;
  opacity: 0;
  font-size: 0.9vw;
  line-height: 1.7;
  pointer-events: none;
  transition: 0.3s all;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.blog_detail .f3 .f3Box .item.active .tit .icon::before {
  content: '-';
}
.blog_detail .f3 .f3Box .item.active .des {
  padding-bottom: 1vw;
  height: auto;
  opacity: 1;
  margin-top: 1vw;
}
.blog_detail .f4{
  width: 100%;
  padding-bottom: 3vw;
}
.blog_detail .f4 .f4Box {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1vw;
}
.blog_detail .f4 .f4Box .item {
  width: 32%;
  position: relative;
  margin-top: 2vw;
}
.blog_detail .f4 .f4Box .item .imgBox {
  width: 100%;
  height: 14vw;
  border-radius: 1vw;
  overflow: hidden;
}
.blog_detail .f4 .f4Box .item .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.blog_detail .f4 .f4Box .item .textBox {
  width: 100%;
  position: relative;
  border-radius: 1vw;
  padding: 1vw 0;
}
.blog_detail .f4 .f4Box .item .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.blog_detail .f4 .f4Box .item .textBox .name {
  font-size: 1.2vw;
  margin: 0.5vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.blog_detail .f4 .f4Box .item .textBox .des {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 0.5vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.blog_detail .f4 .f4Box .item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: #1A3BB2;
  bottom: 0;
  transition: 0.5s all;
}
.blog_detail .f4 .f4Box .item:hover .imgBox img {
  transform: scale(1.05);
}
.blog_detail .f4 .f4Box .item:hover::before {
  width: 100%;
}
.blog_detail .f5{
  padding-top: 2vw;
}
.ctaBox{
  width: 100%;
  background: #F8F8FA;
  position: relative;
  border-radius: 1vw;
  padding: 3vw;
  text-align: center;
  margin: 3vw auto;
}
.ctaBox .tit{
  font-size: 1.2vw;
  font-weight: bold;
}
.ctaBox .des{
  font-size: 1vw;
  line-height: 1.7;
  margin: 1vw 0;
}
.ctaBox .more .icon {
  background: #1A3BB2 !important;
}
.ctaBox .more .icon img{
  filter: brightness(0) invert(1);
}
.ctaBox .more .t {
  border: 1px solid #1A3BB2 !important;
  color: white !important;
}
.ctaBox .more .t::before{
  width: 100%;
  left: 0;
}
.logosBox{
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
}
.logosBox .logoIcon{
  width: auto;
  height: 2vw;
}
.logosBox .logoIcon img{
  width: auto;
  height: 2vw;
  object-fit: cover !important;
}
.honorIcons{
  width: 100%;
  margin-top: 3vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1vw;
}
.honorIcons .logoIcon{
  width: auto;
  height: 2vw;
}
.honorIcons .logoIcon img{
  width: auto;
  height: 2vw;
  object-fit: cover !important;
}
.honorBox{
  width: 100%;
  position: relative;
  margin-top: 3vw;
}
.honorSwiper{
  width: 100%;
  position: relative;
  padding-bottom: 3vw;
  overflow: hidden;
}
.honorSwiper .swiper-slide .img{
  width: 100%;
  height: 20vw;
  cursor: pointer;
  overflow: hidden;
}
.honorSwiper .swiper-slide .img img{
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}
.honorSwiper .swiper-slide .name{
  text-align: center;
  font-size: .9vw;
  margin-top: 1vw;
}
.honorSwiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
  background: #1A3BB2;
}
.img-popup-layer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 9999;
  cursor: zoom-out;
}
.img-popup-layer img {
  position: absolute;
  width: auto;
  max-height: 90%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}
.industries{
  width: 100%;
  position: relative;
  padding-bottom: 8vw;
}
.industriesBox{
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 2vw;
  margin-top: 3vw;
}
.industriesItem{
  width: 20%;
  position: relative;
}
.industriesItem .textBox{
  width: 100%;
  position: relative;
}
.industriesItem .textBox .img{
  width: 14vw;
  height: 14vw;
  border-radius: .5vw;
  position: relative;
  overflow: hidden;
}
.industriesItem .textBox .img::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
  top: 0;
  left: 0;
  transition: .3s all ease-in-out;
  z-index: 1;
}
.industriesItem .textBox .img img{
  width: 100%;
  height: 100%;
  transition: .3s all;
  object-fit: cover !important;
}
.industriesItem .textBox .txt{
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
  z-index: 1;
}
.industriesItem .textBox .txt .t{
  font-weight: 550;
  font-size: 1.3vw;
  color: white;
}
.industriesItem .textBox .txt .d{
  font-size: .9vw;
  margin-top: 1vw;
  color: #666666;
}
.industriesItem:hover .img img{
  transform: scale(1.05);
}
.industriesItem:hover .img::before{
  background: rgba(0,0,0,.1);
}

.newsBox {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1vw;
}
.newsBox .item {
  width: 32%;
  position: relative;
  margin-top: 2vw;
}
.newsBox .item .imgBox {
  width: 100%;
  height: 14vw;
  border-radius: 1vw;
  overflow: hidden;
}
.newsBox .item .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  transition: 0.5s all;
}
.newsBox .item .textBox {
  width: 100%;
  position: relative;
  border-radius: 1vw;
  padding: 1vw 0;
}
.nnewsBox .item .textBox .lab {
  font-size: 0.8vw;
  color: #666666;
  position: relative;
  display: flex;
}
.newsBox .item .textBox .lab .it {
  border: 1px solid #CCC;
  background: #F7F7F7;
  border-radius: 5vw;
  padding: 0.1vw 0.5vw;
  margin-right: 0.5vw;
}
.newsBox .item .textBox .time {
  font-size: 0.9vw;
  color: #999999;
}
.newsBox .item .textBox .name {
  font-size: 1.2vw;
  margin: 0.5vw 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.newsBox .item .textBox .des {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 0.5vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.newsBox .item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: #1A3BB2;
  bottom: 0;
  transition: 0.5s all;
}
.newsBox .item:hover .imgBox img {
  transform: scale(1.05);
}
.newsBox .item:hover::before {
  width: 100%;
}
.pc {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (max-width: 1660px) {
  .formBoxinfoImg {
    right: -7vw;
  }
  .index .f3 .f3BgImg{
    width: 1380px;
  }
}
@media screen and (max-width: 1440px) {
  header nav ul li a {
    font-size: 15px;
  }
  header .w1400 nav ul li {
    margin-left: .5vw;
    padding: 1.5vw .6vw;
  }
  header .w1400 {
    padding: 0 8vw;
  }
  .formBoxinfoImg {
    right: 0;
  }
  .index .f3 .f3BgImg {
    width: 1150px;
  }
}
@media screen and (max-width: 1366px) {
  .index .f3 .f3BgImg {
    width: 1050px;
  }
}
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  .sp_header {

    height: 50px;

    overflow: hidden;

    background: white;

    position: fixed;

    z-index: 999;

    width: 100%;

    top: 0;

  }

  .sp_logo {
    padding: 12px;
    float: left;
  }

  .sp_logo img {
    margin: auto;
    width: 120px;
    transition: .35s all ease-in-out;
  }

  .sp_nav {
    width: 50px;
    height: 50px;
    float: right;
    position: relative;
    cursor: pointer;
    margin: 0 2vw;
  }

  .sp_nav span {

    display: block;

    background: #1A3BB2;

    width: 30px;

    height: 3px;
    border-radius: 10px;
    position: absolute;

    left: 10px;

    transition: all ease .35s

  }

  .sp_nav span:nth-of-type(1) {

    top: 15px;

  }

  .sp_nav span:nth-of-type(2) {

    top: 25px

  }

  .sp_nav span:nth-of-type(3) {

    top: 35px

  }

  .sp_nav_se span:nth-of-type(1) {

    top: 25px;

    transform: rotate(45deg)

  }

  .sp_nav_se span:nth-of-type(2) {

    width: 0

  }

  .sp_nav_se span:nth-of-type(3) {

    top: 25px;

    transform: rotate(-45deg)

  }
  .nav_sp_logo{
    width: 40px !important;
    position: fixed;
    z-index: 999;
  }
  .sp_flex{
    display: flex;
  }
  .sp_black{
    width: 50px;
    height: 100%;
    position: fixed;
    background: black;
    right: -100%;
    top: 0;
    transition: top ease .35s
  }
  .sjj_nav {
    position: fixed;
    z-index: 999;
    background: white;
    width: 85%;
    height: 100%;
    font-size: 14px;
    line-height: 40px;
    top: 0;
    right: -100%;
    padding-top: 15vw;
    overflow: auto;
    overflow-x: hidden;
    transition: right ease .35s
  }
  .sp_flex .mengBan{
    width: 15%;
    height: 100%;
    background: rgba(0,0,0,.5);
    position: fixed;
    z-index: 999;
    top: 0;
    right: -100%;
    transition: right ease .35s
  }
  .nav_show2 {

    right: 85% !important;

  }
  .nav_show {

    right: 0;

  }
  .sp_bottom{
    width: 100%;
    margin: 8vw auto;
    display: inline-block;
    text-align: center;
  }
  .sp_bottom .sp_serach{
    width: 31vw;
    height: 12vw;
    background-color: #ffffff;
    border-radius: 30px;
    border: 1px solid #777777;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    margin-right: 5vw;
  }
  .sp_bottom .sp_serach i{
    color: black;
    font-size: 16px;
    margin-right: 2vw;
  }
  .sp_bottom .sp_lag{
    width: 31vw;
    height: 12vw;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 30px;
    border: 1px solid #777777;
    text-align: center;
  }
  .sp_bottom .sp_lag i{
    color: black;
    font-size: 16px;
    margin-right: 2vw;
  }
  .sjj_nav > ul > li:first-child {

    overflow: hidden;

    border-top: 0

  }

  .sjj_nav > ul > li:first-child > a {

    /*float: left;*/

    /*width: calc(100% - 70px)*/

  }

  .sjj_nav > ul > li:first-child .language {

    float: right;

    width: 70px;

    overflow: hidden;

    line-height: 30px;

    margin-top: 5px

  }

  .sjj_nav > ul > li:first-child .language a {

    width: 35px;

    float: left;

    border-left: 1px #ddd solid;

    text-align: center;

    color: #999

  }

  .sjj_nav ul li i {

    position: absolute;

    top: 5px;

    right: 0;

    height: 30px;

    padding: 0 7px

  }

  .sjj_nav ul li i svg {

    transform: rotate(-90deg);

    transition: all ease .35s

  }

  .sjj_nav ul li .sjj_nav_i_se svg {

    transform: rotate(0)

  }

  .sjj_nav ul li {

    border-top: 1px #ddd solid;

    position: relative;

    line-height: 55px;

    font-size: 14px

  }
  .sjj_nav ul li.active{
    background: #f3f3f3;
  }
  .sjj_nav ul li.active a{
    color: #1A3BB2;
  }
  .sjj_nav > ul > li:last-child {

    /*border-bottom: 1px #ddd solid*/

  }

  .sjj_nav ul li ul {
    background: #f3f3f3;
    display: none;
    border-top: 1px #ddd solid;
    padding: 10px 0;
  }
  .sjj_nav ul li.lang ul{
    display: flex;
  }
  .sjj_nav ul li.lang a i{
    position: relative;
  }
  .sjj_nav ul li.lang ul li a{
    width: 100%;
    display: flex;
    padding-left: 25px;
  }
  .sjj_nav ul li.lang ul li a img{
    width: 25px;
    object-fit: contain;
    margin-right: 5px;
  }
  .sjj_nav ul li a {

    color: rgba(0, 0, 0, .8);

    width: 80%;

    display: block;

    font-size: 16px;

    padding-left: 25px;
    text-transform: capitalize;
  }
  .sjj_nav ul li ul li{
    border: transparent;
    line-height: 30px;
  }
  .sjj_nav ul li ul li a {

    color: rgba(0, 0, 0, .5);

    display: block;

    text-align: left;

    font-size: 14px;
    padding-left: 45px;

  }

  .sjj_nav ul li i svg {

    width: 20px;

    height: 20px;

    fill: #432883;

  }

  .sjj_nav ul li .sjj_nav_i_se svg {

    fill: #432883;

  }

  .sjj_nav ul li ul li > ul {

    margin-left: 10px

  }
  .sjj_nav .iconBox{
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 15vw;
  }
  .sjj_nav .iconBox .icon{
    width: 50px;
    margin: 0 3vw;
    display: inline-block;
  }
  .sp_flex .sjj_nav .close{
    position: absolute;
    right: 4vw;
    top: 1vw;
    font-size: 22px;
    color: #1A3BB2;
  }
  .sp_flex .sjj_nav .bgImg{
    position: absolute;
    width: 70vw;
    top: 60vw;
    z-index: -1;
    right: 0;
  }
  header{
    padding: 0;
    left: 0;
  }
  main{
    margin-top: 50px;
  }
  .more {
    font-size: 12px;
  }
  .more .icon {
    width: 7.5vw;
    height: 7.5vw;
    margin-right: 2.5vw;
    border-radius: 1vw;
    background: white;
    padding: 2vw;
  }
  .more .t {
    height: 7.5vw;
    line-height: 7.5vw;
    padding: 0 3vw;
  }
  .titBox .tit {
    font-size: 22px;
    padding-left: 3vw;
  }
  .titBox .tit::after {
    width: 1.8vw;
    height: 8vw;
    border-radius: 5vw 0;
    top: -2vw;
  }
  .formBox {
    background: white;
    padding: 2vw 5vw 10vw 5vw;
    display: block;
    margin-top: -1.1vw;
  }
  .formBox .left .contBox {
    margin: 5vw 0;
  }
  .formBox .left .contBox .it {
    font-size: 14px;
  }
  .formBox .left .contBox .it .icon {
    width: 4vw;
  }
  .formBox .left .contBox .it .t {
    width: auto;
    margin: 0 3vw;
  }
  .formBox form {
    width: 100%;
    padding: 5vw;
    border-radius: 1vw;
  }
  .formBox form .inputBox {
    margin-bottom: 5vw;
  }
  .formBox form .inputBox .name {
    font-size: 14px;
  }
  .formBox form .inputBox input {
    font-size: 14px;
    height: 10vw;
    padding: 0 3vw;
    margin-top: 3vw;
  }
  .formBox form .inputBox textarea {
    margin-top: 5vw;
    height: 30vw;
    padding: 3vw;
    font-size: 14px;
  }
  .formBox form .submit {
    font-size: 14px;
  }
  .formBox form .submit .icon {
    width: 7.5vw;
    height: 7.5vw;
    margin-right: 2.5vw;
    border-radius: 1vw;
    background: white;
    padding: 2vw;
  }
  .formBox form .submit .t {
    height: 7.5vw;
    line-height: 7.5vw;
    padding: 0 3vw;
  }
  footer {
    padding: 10vw 5vw 0 5vw;
  }
  footer::before {
    width: 100%;
    height: 80%;
  }
  footer .footer {
    display: block;
  }
  footer .footer .left .logo {
    width: 25vw;
  }
  .index .f1{
    height: 115vh;
  }
  .index .f1 .bannerText {
    display: block;
    left: 0;
    padding: 0 5vw;
    top: 5%;
  }
  footer .footer .left .des {
    font-size: 22px;
  }
  footer .footer .center {
    display: none;
  }
  footer .footer .right {
    margin-top: 5vw;
  }
  .index .f1 .bannerText .text1 {
    width: 100%;
  }
  .index .f1 .bannerText .text1 .t {
    font-size: 9vw;
  }
  footer .footer .right .tit {
    font-size: 16px;
  }
  footer .footer .right .its .it .t {
    width: 22vw;
    font-size: 14px;
  }
  footer .footer .right .its .it .d {
    font-size: 14px;
  }
  footer .footer .right .meiti {
    justify-content: right;
    margin-left: 22vw;
  }
  footer .footer .right .meiti .icon {
    font-size: 16px;
    margin-right: 3vw;
  }
  footer .footerInfo {
    padding: 3vw 0;
    display: block;
    text-align: center;
  }
  footer .footerInfo a {
    font-size: 12px;
  }
  .index .f1 .bannerText .text1 .t::after {
    width: 10vw;
    height: 1.7vw;
    margin-top: 11.5vw;
  }
  .index .f1 .bannerText .text2 {
    display: block;
    margin-top: 10vw;
  }
  .index .f1 .bannerText .text2 .txt {
    width: 100%;
  }
  .index .f1 .bannerText .text2 .txt .more {
    margin-top: 5vw;
  }
  .index .f1 .bannerText .text2 .txt .des {
    font-size: 14px;
  }
  .index .f1 .bannerText .text2 .itemBox {
    width: 100%;
    margin-left: 0;
    margin-top: 10vw;
    gap: 3vw;
  }
  .index .f1 .bannerText .text2 .itemBox .item {
    width: 48%;
    opacity: 1;
    font-size: 14px;
    padding: 3vw;
    border-top: 5px solid #1A3BB2;
    border-radius: 3vw;
  }
  .index .f1 .bannerText .text2 .itemBox .item .icon {
    width: 6vw;
  }
  .index .f1 .bannerText .text2 .itemBox .item .num {
    font-size: 22px;
  }
  .index .f1 .bannerText .text2 .itemBox .item:first-child span {
    font-size: 14px;
  }
  .index .f1 .scroll {
    display: none;
  }
  .index .f2 {
    padding: 10vw 5vw;
  }
  .index .f2 .f2Txt {
    display: block;
  }
  .index .f2 .f2Txt .des {
    width: 100%;
    font-size: 14px;
    margin-top: 3vw;
  }
  .index .f2 .f2Box {
    display: block;
  }
  .index .f2 .f2Box .item {
    width: 100%;
    height: 55vw;
    border-radius: 3vw;
    margin-top: 5vw !important;
  }
  .index .f2 .f2Box .item .text {
    padding: 5vw;
  }
  .index .f2 .f2Box .item .text .tit {
    font-size: 18px;
  }
  .index .f2 .f2Box .item .text .more {
    margin-top: 31vw;
    position: relative;
    bottom: inherit;
  }
  .index .f4 {
    display: block;
  }
  .index .f4 .f4Video {
    width: 100%;
    position: relative;
    top: inherit;
    display: block;
    float: inherit;
  }
  .index .f4 .f4Text {
    width: 100%;
    padding: 0 5vw;
  }
  .index .f4 .f4Text .item {
    padding: 5vw 0;
  }
  .index .f4 .f4Text .item .tit .num {
    font-size: 14px;
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
  }
  .index .f4 .f4Text .item .tit .t {
    width: calc(100% - 10vw);
    font-size: 16px;
    margin-left: 3vw;
  }
  .index .f4 .f4Text .item .des {
    font-size: 14px;
    margin-top: 2vw;
    padding-left: 12vw;
  }
  .index .f5 {
    padding: 10vw 5vw;
  }
  .index .f5 .f5Swiper {
    padding-left: 0;
    margin-top: 5vw;
  }
  .index .f5 .f5Swiper .swiper-slide {
    display: block;
  }
  .index .f5 .f5Swiper .swiper-slide .imgBox {
    width: 100%;
    height: 55vw;
  }
  .index .f5 .f5Swiper .swiper-slide .textBox {
    width: 100%;
    height: auto;
    padding: 5vw;
    margin-left: 0;
  }
  .index .f5 .f5Swiper .swiper-slide .textBox .time {
    font-size: 12px;
  }
  .index .f5 .f5Swiper .swiper-slide .textBox .name {
    font-size: 16px;
  }
  .index .f5 .f5Swiper .swiper-slide .textBox .des {
    display: none;
  }
  .index .f5 .f5Swiper .swiper-slide .textBox .mores {
    padding-top: 5vw;
    margin-top: 5vw;
    position: relative;
    bottom: inherit;
  }
  .index .f5 .f5Swiper .swiper-slide .textBox .mores .icon {
    width: 3vw;
  }
  .index .f5 .f5Swiper .swiper-slide .textBox .mores .t {
    font-size: 12px;
    margin-left: 3vw;
  }
  .Industrial .titItem {
    display: block;
    padding: 10vw 5vw;
  }
  .Industrial .titItem .tit {
    font-size: 26px;
  }
  .Industrial .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .Industrial .titItem .des {
    width: 100%;
    font-size: 14px;
    margin-top: 10vw;
  }
  .Industrial .f1 {
    padding: 0 5vw 10vw 5vw;
  }
  .Industrial .f1 .f1TabSwiper{
    margin: 5vw 0;
  }
  .Industrial .f1 .f1TabSwiper .swiper-slide {
    font-size: 14px;
    padding: 1.5vw 1vw;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top {
    display: block;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .left {
    width: 100%;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .left .imgBox {
    height: auto;
    padding: 5vw;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .left .text {
    padding-top: 0;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .left .text .des {
    font-size: 14px;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .left .text .tit {
    position: relative;
    bottom: inherit;
    font-size: 18px;
    margin-top: 5vw;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .right {
    width: 100%;
    padding: 5vw 0;
    position: relative;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits .tit {
    font-size: 18px;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper {
    height: auto;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper .swiper-slide {
    width: 47% !important;
    height: auto;
    margin-bottom: 5vw;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper .swiper-slide .imgBox {
    height: 30vw;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .f1ProductsSwiper .swiper-slide .name {
    font-size: 14px;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits .swiper-button-next {
    width: 10vw;
    height: 6vw;
    top: 9vw;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits .swiper-button-next img {
    width: 2vw;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits .swiper-button-prev {
    width: 10vw;
    height: 6vw;
    right: 15vw;
    top: 9vw;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Top .right .tits .swiper-button-prev img {
    width: 2vw;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Bottom {
    margin-top: 5vw;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Bottom .tit {
    font-size: 18px;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Bottom .f1BottomSwiper {
    margin-top: 3vw;
  }
  .Industrial .f1 .f1Swiper .swiper-slide .f1Bottom .f1BottomSwiper .swiper-slide {
    height: 10vw;
  }
  .Industrial .f2 {
    padding: 10vw 5vw;
  }
  .Industrial .f2 .swiper-button-next {
    width: 10vw;
    height: 6vw;
    top: 5vw;
  }
  .Industrial .f2 .swiper-button-next img {
    width: 2vw;
  }
  .Industrial .f2 .swiper-button-prev {
    width: 10vw;
    height: 6vw;
    right: 12vw;
    top: 5vw;
  }
  .Industrial .f2 .swiper-button-prev img {
    width: 2vw;
  }
  .Industrial .f2 .f2Swiper {
    margin-top: 5vw;
  }
  .Industrial .f2 .f2Swiper .swiper-slide .imgBox {
    height: 50vw;
  }
  .Industrial .f2 .f2Swiper .swiper-slide .textBox {
    padding: 3vw 0;
  }
  .Industrial .f2 .f2Swiper .swiper-slide .textBox .time {
    font-size: 12px;
  }
  .Industrial .f2 .f2Swiper .swiper-slide .textBox .name {
    font-size: 16px;
    margin: 2vw 0;
  }
  .Industrial .f2 .f2Swiper .swiper-slide .textBox .lab {
    font-size: 12px;
  }
  .Industrial .f2 .f2Swiper .swiper-slide .textBox .lab .it {
    padding: 0.5vw 3vw;
    margin-right: 2vw;
  }
  .Industrial .f2 .f2Swiper .swiper-slide .textBox .des {
    font-size: 14px;
    margin-top: 2vw;
  }
  .Industrial .f3 {
    padding: 10vw 5vw;
  }
  .Industrial .f3 .f3Txt {
    display: block;
  }
  .Industrial .f3 .f3Txt .des {
    width: 100%;
    font-size: 14px;
    margin-top: 3vw;
  }
  .Industrial .f3 .f3Box .item {
    width: 47%;
    padding: 3vw;
    margin-top: 3vw;
  }
  .Industrial .f3 .f3Box .item .icon {
    height: 10vw;
  }
  .Industrial .f3 .f3Box .item .name {
    font-size: 14px;
    margin-top: 3vw;
  }
  .Industrial .f4 {
    padding: 10vw 5vw;
  }
  .Industrial .f4 .f4Swiper {
    padding-left: 0;
    margin-top: 5vw;
  }
  .Industrial .f4 .f4Swiper .swiper-slide {
    display: block;
  }
  .Industrial .f4 .f4Swiper .swiper-slide .imgBox {
    width: 100%;
    height: 55vw;
  }
  .Industrial .f4 .f4Swiper .swiper-slide .textBox {
    width: 100%;
    height: auto;
    padding: 5vw;
    margin-left: 0;
  }
  .Industrial .f4 .f4Swiper .swiper-slide .textBox .time {
    font-size: 12px;
  }
  .Industrial .f4 .f4Swiper .swiper-slide .textBox .name {
    font-size: 16px;
  }
  .Industrial .f4 .f4Swiper .swiper-slide .textBox .des {
    display: none;
  }
  .Industrial .f4 .f4Swiper .swiper-slide .textBox .mores {
    padding-top: 5vw;
    margin-top: 5vw;
    position: relative;
    bottom: inherit;
  }
  .Industrial .f4 .f4Swiper .swiper-slide .textBox .mores .icon {
    width: 3vw;
  }
  .Industrial .f4 .f4Swiper .swiper-slide .textBox .mores .t {
    font-size: 12px;
    margin-left: 3vw;
  }
  .newEnergy .titItem {
    display: block;
    padding: 10vw 5vw;
  }
  .newEnergy .titItem .tit {
    font-size: 26px;
  }
  .newEnergy .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .newEnergy .titItem .des {
    width: 100%;
    font-size: 14px;
    margin-top: 10vw;
  }
  .newEnergy .f1 {
    padding: 0 5vw;
  }
  .newEnergy .f1 .tabBox {
    justify-content: left;
    flex-wrap: wrap;
    gap: 2vw;
  }
  .newEnergy .f1 .tabBox .tab {
    font-size: 14px;
    padding: 1.5vw 2.5vw;
  }
  .newEnergy .f1 .f1Box {
    height: 80vw;
    margin-top: 5vw;
  }
  .newEnergy .f1 .f1Box .text .name {
    font-size: 20px;
  }
  .newEnergy .f1 .f1Box .text .des {
    width: 100%;
    font-size: 14px;
  }
  .newEnergy .f2 {
    padding: 10vw 5vw;
  }
  .newEnergy .f2 .f2Box {
    display: block;
    margin-top: 5vw;
  }
  .newEnergy .f2 .f2Box .left {
    width: 100%;
    height: auto;
  }
  .newEnergy .f2 .f2Box .left .item .img {
    height: 50vw;
  }
  .newEnergy .f2 .f2Box .left .item .text {
    margin-top: 3vw;
  }
  .newEnergy .f2 .f2Box .left .item .text .name {
    font-size: 16px;
  }
  .newEnergy .f2 .f2Box .left .item .text .des {
    font-size: 14px;
    padding: 1vw 3vw;
    margin-top: 1vw;
    display: inline-block;
  }
  .newEnergy .f2 .f2Box .right {
    width: 100%;
  }
  .newEnergy .f2 .f2Box .right .item {
    height: auto;
    margin-bottom: 0;
    margin-top: 5vw;
  }
  .newEnergy .f2 .f2Box .right .item .img {
    height: 50vw;
  }
  .newEnergy .f2 .f2Box .right .item .text {
    margin-top: 3vw;
  }
  .newEnergy .f2 .f2Box .right .item .text .name {
    font-size: 16px;
  }
  .newEnergy .f2 .f2Box .right .item .text .des {
    font-size: 14px;
    padding: 1vw 3vw;
    margin-top: 1vw;
    display: inline-block;
  }
  .newEnergy .f3 {
    padding: 0 5vw 10vw 5vw;
  }
  .newEnergy .f3 .swiper-button-next {
    width: 10vw;
    height: 6vw;
    top: 5vw;
  }
  .newEnergy .f3 .swiper-button-next img {
    width: 2vw;
  }
  .newEnergy .f3 .swiper-button-prev {
    width: 10vw;
    height: 6vw;
    right: 15vw;
    top: 5vw;
  }
  .newEnergy .f3 .swiper-button-prev img {
    width: 2vw;
  }
  .newEnergy .f3 .f3Swiper {
    margin-top: 5vw;
  }
  .newEnergy .f3 .f3Swiper .swiper-slide .imgBox {
    height: 50vw;
  }
  .newEnergy .f3 .f3Swiper .swiper-slide .textBox {
    padding: 3vw 0;
  }
  .newEnergy .f3 .f3Swiper .swiper-slide .textBox .time {
    font-size: 12px;
  }
  .newEnergy .f3 .f3Swiper .swiper-slide .textBox .name {
    font-size: 16px;
    margin: 2vw 0;
  }
  .newEnergy .f3 .f3Swiper .swiper-slide .textBox .lab {
    font-size: 12px;
  }
  .newEnergy .f3 .f3Swiper .swiper-slide .textBox .lab .it {
    padding: 0.5vw 3vw;
    margin-right: 2vw;
  }
  .newEnergy .f3 .f3Swiper .swiper-slide .textBox .des {
    font-size: 14px;
    margin-top: 2vw;
  }
  .newEnergy .f4 {
    padding: 10vw 5vw;
  }
  .newEnergy .f4 .f4Txt {
    display: block;
  }
  .newEnergy .f4 .f4Txt .des {
    width: 100%;
    font-size: 14px;
    margin-top: 3vw;
  }
  .newEnergy .f4 .f4Box .item {
    width: 47%;
    padding: 3vw;
    margin-top: 3vw;
  }
  .newEnergy .f4 .f4Box .item .icon {
    height: 10vw;
  }
  .newEnergy .f4 .f4Box .item .name {
    font-size: 14px;
    margin-top: 3vw;
  }
  .newEnergy .f5 {
    padding: 10vw 5vw;
  }
  .newEnergy .f5 .f5Swiper {
    padding-left: 0;
    margin-top: 5vw;
  }
  .newEnergy .f5 .f5Swiper .swiper-slide {
    display: block;
  }
  .newEnergy .f5 .f5Swiper .swiper-slide .imgBox {
    width: 100%;
    height: 55vw;
  }
  .newEnergy .f5 .f5Swiper .swiper-slide .textBox {
    width: 100%;
    height: auto;
    padding: 5vw;
    margin-left: 0;
  }
  .newEnergy .f5 .f5Swiper .swiper-slide .textBox .time {
    font-size: 12px;
  }
  .newEnergy .f5 .f5Swiper .swiper-slide .textBox .name {
    font-size: 16px;
  }
  .newEnergy .f5 .f5Swiper .swiper-slide .textBox .des {
    display: none;
  }
  .newEnergy .f5 .f5Swiper .swiper-slide .textBox .mores {
    padding-top: 5vw;
    margin-top: 5vw;
    position: relative;
    bottom: inherit;
  }
  .newEnergy .f5 .f5Swiper .swiper-slide .textBox .mores .icon {
    width: 3vw;
  }
  .newEnergy .f5 .f5Swiper .swiper-slide .textBox .mores .t {
    font-size: 12px;
    margin-left: 3vw;
  }
  .solutions .titItem {
    display: block;
    padding: 10vw 5vw;
  }
  .solutions .titItem .tit {
    font-size: 26px;
  }
  .solutions .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .solutions .f1 {
    padding: 0 5vw;
  }
  .solutions .f1 .f1Box {
    height: 55vw;
    margin-bottom: 5vw;
  }
  .solutions .f1 .f1Box .text .name {
    font-size: 18px;
    margin-bottom: 10vw;
  }
  .solutions .f1 .f1Box .text .des {
    width: 95%;
    font-size: 14px;
    display: none;
  }
  .solutionsDetail .f1 {
    height: 60vw;
  }
  .solutionsDetail .f1 .titItem {
    padding: 10vw 5vw;
  }
  .solutionsDetail .f1 .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .solutionsDetail .f1 .titItem .des {
    width: 100%;
    font-size: 14px;
  }
  .solutionsDetail .f2 {
    padding: 10vw 5vw;
    display: block;
  }
  .solutionsDetail .f2 .textBox {
    width: 100%;
    padding: 0;
  }
  .solutionsDetail .f2 .textBox .t {
    font-size: 16px;
  }
  .solutionsDetail .f2 .textBox .d {
    font-size: 14px;
    padding-bottom: 5vw;
  }
  .solutionsDetail .f2 .imgBox {
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
  }
  .solutionsDetail .f3 {
    padding: 0 5vw;
  }
  .solutionsDetail .f3 .itemBox {
    display: block;
    margin-top: 0;
  }
  .solutionsDetail .f3 .itemBox .item {
    width: 100%;
    padding: 5vw;
    margin-top: 5vw;
    border-top: 5px solid #1A3BB2;
    border-radius: 3vw;
  }
  .solutionsDetail .f3 .itemBox .item .head .icon {
    width: 7vw;
  }
  .solutionsDetail .f3 .itemBox .item .head .num {
    font-size: 20px;
  }
  .solutionsDetail .f3 .itemBox .item .t {
    font-size: 18px;
    margin: 5vw 0;
  }
  .solutionsDetail .f3 .itemBox .item .d {
    font-size: 14px;
  }
  .solutionsDetail .f4 {
    padding: 10vw 5vw;
    display: block;
  }
  .solutionsDetail .f4 .left {
    width: 100%;
  }
  .solutionsDetail .f4 .left .f4Tab {
    margin: 5vw 0;
  }
  .solutionsDetail .f4 .left .f4Tab .tab {
    font-size: 16px;
    padding-left: 3vw;
    margin: 3vw 0;
    left: -.6vw;
  }
  .solutionsDetail .f4 .left .des {
    font-size: 14px;
  }
  .solutionsDetail .f4 .right {
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
  }
  .solutionsDetail .f5 {
    padding: 10vw 5vw;
  }
  .index .f2 .f2Box .item .text .des{
    display: none;
  }
  .solutionsDetail .f5 .w1400 {
    display: block;
  }
  .solutionsDetail .f5 .w1400 .textBox {
    width: 100%;
    padding: 0;
  }
  .solutionsDetail .f5 .w1400 .textBox .tabBox {
    margin: 5vw 0;
  }
  .solutionsDetail .f5 .w1400 .textBox .tabBox .tab {
    font-size: 14px;
    padding: 1vw 2vw;
    margin-right: 2vw;
  }
  .solutionsDetail .f5 .w1400 .textBox .des {
    margin: 5vw 0;
  }
  .solutionsDetail .f5 .w1400 .textBox .des .t {
    font-size: 16px;
  }
  .solutionsDetail .f5 .w1400 .textBox .des .d {
    font-size: 14px;
    margin-top: 2vw;
  }
  .solutionsDetail .f5 .w1400 .imgBox {
    width: 100%;
    height: 50vw;
  }
  .solutionsDetail .f6 {
    padding: 10vw 5vw;
  }
  .solutionsDetail .f6 .f6Box {
    display: block;
    margin-top: 5vw;
  }
  .solutionsDetail .f6 .f6Box .left {
    width: 100%;
  }
  .solutionsDetail .f6 .f6Box .left .item {
    margin-bottom: 5vw;
    padding: 5vw;
  }
  .solutionsDetail .f6 .f6Box .left .item .tit {
    font-size: 16px;
    align-items: center;
  }
  .solutionsDetail .f6 .f6Box .left .item .des {
    font-size: 14px;
  }
  .solutionsDetail .f6 .f6Box .left .active .des {
    margin-top: 5vw;
    padding-bottom: 5vw;
  }
  .solutionsDetail .f6 .f6Box .left .item .tit .icon::before {
    font-size: 20px;
  }
  .solutionsDetail .f6 .f6Box .right {
    width: 100%;
    height: 65vw;
  }
  .solutionsDetail .f61 {
    padding: 10vw 5vw;
  }
  .solutionsDetail .f61 .f61Swiper .swiper-slide .imgBox {
    height: 50vw;
  }
  .solutionsDetail .f61 .f61TabBox {
    gap: 5vw;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0;
    -webkit-overflow-scrolling: touch;
  }
  .solutionsDetail .f61 .f61TabBox .tab {
    font-size: 14px;
    padding: 4vw 0;
  }
  .solutionsDetail .f61 .f61Des {
    font-size: 14px;
    margin-top: 4vw;
    padding: 0;
    text-align: left;
  }
  .solutionsDetail .f7 {
    padding: 10vw 5vw;
  }
  .solutionsDetail .f7 .w1400 .tit {
    font-size: 22px;
  }
  .solutionsDetail .f7 .w1400 .f7Box {
    display: block;
    margin-top: 0;
  }
  .solutionsDetail .f7 .w1400 .f7Box .item {
    width: 100%;
    margin-top: 5vw;
    text-align: left;
  }
  .solutionsDetail .f7 .w1400 .f7Box .item .icon {
    width: 7vw;
    margin: 0;
  }
  .solutionsDetail .f7 .w1400 .f7Box .item .t {
    font-size: 16px;
    margin: 4vw 0 2vw 0;
  }
  .solutionsDetail .f7 .w1400 .f7Box .item .d {
    font-size: 14px;
  }
  .solutionsDetail .f8 {
    padding: 10vw 5vw;
  }
  .solutionsDetail .f8 .f8Swiper {
    margin-top: 5vw;
  }
  .solutionsDetail .f8 .f8Swiper .swiper-slide .imgBox {
    height: 50vw;
  }
  .solutionsDetail .f8 .f8Swiper .swiper-slide .imgBox img {
    height: 90%;
  }
  .solutionsDetail .f8 .f8Swiper .swiper-slide .textBox {
    margin-top: 2vw;
  }
  .solutionsDetail .f8 .f8Swiper .swiper-slide .textBox .name {
    font-size: 16px;
  }
  .solutionsDetail .f9 {
    padding: 0 5vw;
  }
  .solutionsDetail .f9 .swiper-button-next {
    width: 10vw;
    height: 6vw;
    top: 5vw;
  }
  .solutionsDetail .f9 .swiper-button-next img {
    width: 2vw;
  }
  .solutionsDetail .f9 .swiper-button-prev {
    width: 10vw;
    height: 6vw;
    right: 15vw;
    top: 5vw;
  }
  .solutionsDetail .f9 .swiper-button-prev img {
    width: 2vw;
  }
  .solutionsDetail .f9 .f9Swiper {
    margin-top: 5vw;
  }
  .solutionsDetail .f9 .f9Swiper .swiper-slide .imgBox {
    height: 50vw;
  }
  .solutionsDetail .f9 .f9Swiper .swiper-slide .textBox {
    padding: 3vw 0;
  }
  .solutionsDetail .f9 .f9Swiper .swiper-slide .textBox .time {
    font-size: 12px;
  }
  .solutionsDetail .f9 .f9Swiper .swiper-slide .textBox .name {
    font-size: 16px;
    margin: 2vw 0;
  }
  .solutionsDetail .f9 .f9Swiper .swiper-slide .textBox .lab {
    font-size: 12px;
  }
  .solutionsDetail .f9 .f9Swiper .swiper-slide .textBox .lab .it {
    padding: 0.5vw 3vw;
    margin-right: 2vw;
  }
  .solutionsDetail .f9 .f9Swiper .swiper-slide .textBox .des {
    font-size: 14px;
    margin-top: 2vw;
  }
  .solutionsDetail .f10 {
    padding: 10vw 5vw;
  }
  .solutionsDetail .f10 .f10Swiper {
    padding-left: 0;
    margin-top: 5vw;
  }
  .solutionsDetail .f10 .f10Swiper .swiper-slide {
    display: block;
  }
  .solutionsDetail .f10 .f10Swiper .swiper-slide .imgBox {
    width: 100%;
    height: 55vw;
  }
  .solutionsDetail .f10 .f10Swiper .swiper-slide .textBox {
    width: 100%;
    height: auto;
    padding: 5vw;
    margin-left: 0;
  }
  .solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .time {
    font-size: 12px;
  }
  .solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .name {
    font-size: 16px;
  }
  .solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .des {
    display: none;
  }
  .solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .mores {
    padding-top: 5vw;
    margin-top: 5vw;
    position: relative;
    bottom: inherit;
  }
  .solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .mores .icon {
    width: 3vw;
  }
  .solutionsDetail .f10 .f10Swiper .swiper-slide .textBox .mores .t {
    font-size: 12px;
    margin-left: 3vw;
  }
  .products .f1 {
    height: 60vw;
  }
  .products .f1 .titItem {
    padding: 15vw 5vw;
  }
  .products .f1 .titItem .tit {
    font-size: 28px;
  }
  .products .f2 {
    padding: 5vw 5vw 10vw 5vw;
  }
  .products .f2 .f2Box {
    margin-top: 10vw;
  }
  .products .f2 .f2Box .itemBox {
    display: block;
  }
  .products .f2 .f2Box .itemBox .item {
    width: 100%;
    display: block;
    margin-top: 5vw;
  }
  .products .f2 .f2Box .itemBox .item .imgBox {
    height: 50vw;
  }
  .products .f2 .f2Box .itemBox .item .textBox .name {
    font-size: 16px;
  }
  .products .f2 .f2Box .itemBox .item .textBox {
    padding: 2vw 0;
  }
  .productsDetail2 .f1 {
    height: 60vw;
  }
  .productsDetail2 .proFixed {
    bottom: 3vw;
    gap: 3vw;
  }
  .productsDetail2 .proFixed .item {
    min-width: 15vw;
    padding: 2vw;
    border-radius: 1vw;
  }
  .productsDetail2 .proFixed .item img {
    height: 6vw;
  }
  .productsDetail2 .proFixed .item .t {
    font-size: 12px;
  }
  .productsDetail2 .f2 {
    padding: 10vw 5vw;
  }
  .productsDetail2 .f2 .tabBox {
    margin: 5vw 0;
  }
  .productsDetail2 .f2 .tabBox .tab {
    font-size: 14px;
    padding: 1.5vw 4vw;
    margin-right: 3vw;
  }
  .productsDetail2 .f2 .f2Box .itemBg {
    height: auto;
    padding: 5vw;
  }
  .productsDetail2 .f2 .f2Box .itemBg .itemBox .item {
    width: 100%;
    padding: 3vw;
    border-radius: 1vw;
    margin-bottom: 5vw;
  }
  .productsDetail2 .f2 .f2Box .itemBg .itemBox .item:last-child {
    margin-bottom: 0;
  }
  .productsDetail2 .f2 .f2Box .itemBg .itemBox .item .tit {
    font-size: 16px;
  }
  .productsDetail2 .f2 .f2Box .itemBg .itemBox .active {
    width: 100%;
  }
  .productsDetail2 .f2 .f2Box .itemBg .itemBox .active .des {
    margin-top: 3vw;
  }
  .productsDetail2 .f2 .f2Box .itemBg .itemBox .item .des {
    font-size: 14px;
    opacity: 1;
    height: auto;
    margin-top: 3vw;
  }
  .productsDetail2 .f3 {
    padding: 0 5vw;
  }
  .productsDetail2 .f3 .f3Box {
    display: block;
    margin-top: 5vw;
  }
  .productsDetail2 .f3 .f3Box .left {
    width: 100%;
    padding-top: 0;
  }
  .productsDetail2 .f3 .f3Box .left .imgBox {
    height: 50vw;
  }
  .productsDetail2 .f3 .f3Box .left .f3Swiper {
    margin-top: 3vw;
  }
  .productsDetail2 .f3 .f3Box .left .f3Swiper .swiper-slide .img {
    height: 14vw;
  }
  .productsDetail2 .f3 .f3Box .right {
    width: 100%;
    margin-top: 5vw;
    padding-left: 0;
  }
  .productsDetail2 .f3 .f3Box .right .item {
    padding: 5vw;
    margin-top: 3vw;
  }
  .productsDetail2 .f3 .f3Box .right .item .tit .t {
    font-size: 16px;
  }
  .productsDetail2 .f3 .f3Box .right .item .tit .icon::before {
    font-size: 20px;
  }
  .productsDetail2 .f3 .f3Box .right .item.active .des {
    margin-top: 3vw;
  }
  .productsDetail2 .f3 .f3Box .right .item .des {
    font-size: 14px;
  }
  .productsDetail2 .f3 .f3Box .right .item .des table tr td {
    padding: 2vw 0;
  }
  .productsDetail2 .f4 {
    padding: 10vw 5vw 0 5vw;
  }
  .productsDetail2 .f4 .f4Swiper {
    padding-left: 0;
    margin-top: 5vw;
  }
  .productsDetail2 .f4 .f4Swiper .swiper-slide {
    display: block;
  }
  .productsDetail2 .f4 .f4Swiper .swiper-slide .imgBox {
    width: 100%;
    height: 55vw;
  }
  .productsDetail2 .f4 .f4Swiper .swiper-slide .textBox {
    width: 100%;
    height: auto;
    padding: 5vw;
    margin-left: 0;
  }
  .productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .time {
    font-size: 12px;
  }
  .productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .name {
    font-size: 16px;
  }
  .productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .des {
    display: none;
  }
  .productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .mores {
    padding-top: 5vw;
    margin-top: 5vw;
    position: relative;
    bottom: inherit;
  }
  .productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .mores .icon {
    width: 3vw;
  }
  .productsDetail2 .f4 .f4Swiper .swiper-slide .textBox .mores .t {
    font-size: 12px;
    margin-left: 3vw;
  }
  .productsDetail2 .f5 {
    padding: 10vw 5vw;
  }
  .productsDetail2 .f5 .swiper-button-next {
    width: 10vw;
    height: 6vw;
    right: 5vw;
    top: 16vw;
  }
  .productsDetail2 .f5 .swiper-button-next img {
    width: 2vw;
  }
  .productsDetail2 .f5 .swiper-button-prev {
    width: 10vw;
    height: 6vw;
    right: 18vw;
    top: 16vw;
  }
  .productsDetail2 .f5 .swiper-button-prev img {
    width: 2vw;
  }
  .productsDetail2 .f5 .f5Swiper {
    margin-top: 5vw;
  }
  .productsDetail2 .f5 .f5Swiper .swiper-slide .imgBox {
    height: 50vw;
  }
  .productsDetail2 .f5 .f5Swiper .swiper-slide .textBox {
    padding: 3vw 0;
  }
  .productsDetail2 .f5 .f5Swiper .swiper-slide .textBox .time {
    font-size: 12px;
  }
  .productsDetail2 .f5 .f5Swiper .swiper-slide .textBox .name {
    font-size: 16px;
    margin: 2vw 0;
  }
  .productsDetail2 .f5 .f5Swiper .swiper-slide .textBox .lab {
    font-size: 12px;
  }
  .productsDetail2 .f5 .f5Swiper .swiper-slide .textBox .lab .it {
    padding: 0.5vw 3vw;
    margin-right: 2vw;
  }
  .productsDetail2 .f5 .f5Swiper .swiper-slide .textBox .des {
    font-size: 14px;
    margin-top: 2vw;
  }
  .productsDetail2 .f6 {
    padding: 10vw 5vw;
  }
  .productsDetail2 .f6 .f6Swiper {
    margin-top: 5vw;
  }
  .productsDetail2 .f6 .f6Swiper .swiper-slide .imgBox {
    height: 50vw;
  }
  .productsDetail2 .f6 .f6Swiper .swiper-slide .textBox {
    margin-top: 2vw;
  }
  .productsDetail2 .f6 .f6Swiper .swiper-slide .textBox .name {
    font-size: 16px;
  }
  .productsDetail2 .f7 {
    padding: 0 5vw 6vw 5vw;
    display: block;
  }
  .productsDetail2 .f7 .f7Box {
    width: 100%;
    margin-top: 5vw;
  }
  .productsDetail2 .f7 .f7Box .item {
    padding: 5vw 0;
  }
  .productsDetail2 .f7 .f7Box .item .tit .t {
    font-size: 16px;
  }
  .productsDetail2 .f7 .f7Box .item .tit .icon::before {
    font-size: 20px;
    top: -5px;
  }
  .productsDetail2 .f7 .f7Box .item.active .des {
    margin-top: 3vw;
  }
  .productsDetail2 .f7 .f7Box .item .des {
    font-size: 14px;
  }
  .productsDetail1 .f1 {
    height: 60vw;
  }
  .productsDetail1 .proFixed {
    bottom: 3vw;
    gap: 3vw;
  }
  .productsDetail1 .proFixed .item {
    min-width: 15vw;
    padding: 2vw;
    border-radius: 1vw;
  }
  .productsDetail1 .proFixed .item img {
    height: 6vw;
  }
  .productsDetail1 .proFixed .item .t {
    font-size: 12px;
  }
  .productsDetail1 .f2 {
    padding: 10vw 5vw;
  }
  .productsDetail1 .f2 .f2Top {
    display: block;
  }
  .productsDetail1 .f2 .f2Top .left {
    width: 100%;
    padding: 5vw;
  }
  .productsDetail1 .f2 .f2Top .left .iconLogo {
    width: 25vw;
  }
  .productsDetail1 .f2 .f2Top .left .tit {
    margin: 3vw 0;
  }
  .productsDetail1 .f2 .f2Top .left .tit .name {
    font-size: 16px;
  }
  .productsDetail1 .f2 .f2Top .left .tit .label {
    font-size: 14px;
    padding: 1vw 2vw;
  }
  .productsDetail1 .f2 .f2Top .left .des {
    font-size: 14px;
  }
  .productsDetail1 .f2 .f2Top .right {
    width: 100%;
    height: 50vw;
    padding: 5vw;
    margin-top: 5vw;
  }
  .productsDetail1 .f2 .f2Bottom {
    margin-top: 0;
    display: block;
  }
  .productsDetail1 .f2 .f2Bottom .item {
    width: 100%;
    padding: 5vw;
    margin-top: 5vw;
  }
  .productsDetail1 .f2 .f2Bottom .item .icon {
    width: 7vw;
    margin: 0;
  }
  .productsDetail1 .f2 .f2Bottom .item .t {
    font-size: 18px;
    margin: 3vw 0;
    text-align: left;
  }
  .productsDetail1 .f2 .f2Bottom .item .t::before {
    width: 7.2vw;
    height: 1vw;
    bottom: -1.5vw;
  }
  .productsDetail1 .f2 .f2Bottom .item .des {
    font-size: 14px;
    text-align: left;
  }
  .productsDetail1 .f3 {
    padding: 0 5vw 10vw 5vw;
    display: block;
  }
  .productsDetail1 .f3 .right {
    width: 100%;
    padding: 0;
  }
  .productsDetail1 .f3 .right .tabBox .tab {
    font-size: 14px;
    padding: 1vw 5vw;
    margin-right: 3vw;
  }
  .productsDetail1 .f3 .right .text {
    margin-top: 3vw;
  }
  .productsDetail1 .f3 .right .text .tit {
    font-size: 16px;
    margin-top: 0;
  }
  .productsDetail1 .f3 .right .text .des {
    font-size: 14px;
  }
  .productsDetail1 .f3 .left {
    width: 100%;
    margin-top: 5vw;
  }
  .productsDetail1 .f3 .left .img {
    height: 50vw;
  }
  .news .titItem {
    padding: 10vw 5vw;
    display: block;
  }
  .news .titItem .tit {
    font-size: 26px;
  }
  .news .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .news .titItem .des {
    width: 100%;
    font-size: 14px;
    text-align: left;
    margin-top: 5vw;
  }
  .news .f1 {
    padding: 0 5vw;
  }
  .news .f1 .f1Swiper {
    padding-left: 0;
    margin-top: 0;
    padding-bottom: 10vw;
  }
  .news .f1 .f1Swiper .swiper-slide {
    display: block;
  }
  .news .f1 .f1Swiper .swiper-slide .imgBox {
    width: 100%;
    height: 55vw;
  }
  .news .f1 .f1Swiper .swiper-slide .textBox {
    width: 100%;
    height: auto;
    padding: 5vw;
    margin-left: 0;
  }
  .news .f1 .f1Swiper .swiper-slide .textBox .time {
    font-size: 12px;
  }
  .news .f1 .f1Swiper .swiper-slide .textBox .name {
    font-size: 16px;
  }
  .news .f1 .f1Swiper .swiper-slide .textBox .des {
    display: none;
  }
  .news .f1 .f1Swiper .swiper-slide .textBox .mores {
    padding-top: 5vw;
    margin-top: 5vw;
    position: relative;
    bottom: inherit;
  }
  .news .f1 .f1Swiper .swiper-slide .textBox .mores .icon {
    width: 3vw;
  }
  .news .f1 .f1Swiper .swiper-slide .textBox .mores .t {
    font-size: 12px;
    margin-left: 3vw;
  }
  .news .f2 .f2Box {
    padding: 0 5vw 10vw 5vw;
    display: block;
  }
  .news .f2 .f2Box .item {
    width: 100%;
    margin-top: 5vw;
    display: block;
  }
  .news .f2 .f2Box .item .imgBox {
    height: 50vw;
  }
  .news .f2 .f2Box .item .textBox {
    padding: 5vw;
    background: #F8F8FA;
  }
  .news .f2 .f2Box .item .textBox .time {
    font-size: 12px;
  }
  .news .f2 .f2Box .item .textBox .name {
    font-size: 16px;
    margin: 3vw 0;
  }
  .news .f2 .f2Box .item .textBox .des {
    display: none;
  }
  .news .f2 .f2Box .item .textBox .lab {
    font-size: 12px;
  }
  .news .f2 .f2Box .item .textBox .lab .it {
    margin-right: 2vw;
    padding: 1vw 3vw;
  }
  .cases .titItem {
    padding: 10vw 5vw;
    display: block;
  }
  .cases .titItem .tit {
    font-size: 26px;
  }
  .cases .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .cases .titItem .des {
    width: 100%;
    font-size: 14px;
    text-align: left;
    margin-top: 5vw;
  }
  .cases .f1 {
    padding: 0 5vw 10vw 5vw;
  }
  .cases .f1 .itemBox {
    display: block;
  }
  .cases .f1 .itemBox .imgBox {
    width: 100%;
    height: 50vw;
  }
  .cases .f1 .itemBox .textBox {
    width: 100%;
    height: auto;
    padding: 5vw;
    margin-left: 0;
  }
  .cases .f1 .itemBox .textBox .lab {
    display: none;
  }
  .cases .f1 .itemBox .textBox .time {
    font-size: 14px;
    margin-top: 0;
  }
  .cases .f1 .itemBox .textBox .name {
    font-size: 16px;
    margin-top: 3vw;
  }
  .cases .f1 .itemBox .textBox .mores {
    display: none;
  }
  .cases .f1 .f1Box {
    padding: 0;
    display: block;
  }
  .cases .f1 .f1Box .item {
    width: 100%;
    margin-top: 5vw;
    display: block;
  }
  .cases .f1 .f1Box .item .imgBox {
    height: 50vw;
  }
  .cases .f1 .f1Box .item .textBox {
    padding: 5vw;
    background: #F8F8FA;
  }
  .cases .f1 .f1Box .item .textBox .time {
    font-size: 12px;
  }
  .cases .f1 .f1Box .item .textBox .name {
    font-size: 16px;
    margin: 3vw 0;
  }
  .cases .f1 .f1Box .item .textBox .des {
    display: none;
  }
  .cases .f1 .f1Box .item .textBox .lab {
    font-size: 12px;
  }
  .cases .f1 .f1Box .item .textBox .lab .it {
    margin-right: 2vw;
    padding: 1vw 3vw;
  }
  .glossary .titItem {
    padding: 10vw 5vw;
    display: block;
  }
  .glossary .titItem .tit {
    font-size: 26px;
  }
  .glossary .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .glossary .titItem .des {
    width: 100%;
    font-size: 14px;
    text-align: left;
    margin-top: 5vw;
  }
  .glossary .glossaryBox {
    padding: 0 5vw 10vw 5vw;
  }
  .glossary .glossaryBox .glossaryNum {
    display: none;
  }
  .glossary .glossaryBox .glossaryItem {
    margin-top: 0;
  }
  .glossary .glossaryBox .glossaryItem .item {
    padding: 5vw 0;
  }
  .glossary .glossaryBox .glossaryItem .item .nums {
    font-size: 24px;
  }
  .glossary .glossaryBox .glossaryItem .item .its {
    font-size: 14px;
  }
  .glossary .glossaryBox .glossaryItem .item .its .it {
    width: 49%;
  }
  .glossary-detail .detailBox {
    padding: 10vw 5vw;
  }
  .glossary-detail .detailBox .Txt .tit {
    font-size: 22px;
    padding-left: 0;
  }
  .glossary-detail .detailBox .Txt .more{
    display: none;
  }
  .glossary-detail .detailBox .des {
    margin-top: 5vw;
    padding: 0;
  }
  .glossary-detail .detailBox .des .t {
    font-size: 16px;
  }
  .glossary-detail .detailBox .des .d {
    font-size: 14px;
  }
  .glossary-detail .f1 {
    padding: 0 5vw 10vw 5vw;
  }
  .glossary-detail .f1 .itemBox {
    display: block;
    margin-top: 5vw;
  }
  .glossary-detail .f1 .itemBox .imgBox {
    width: 100%;
    height: 50vw;
  }
  .glossary-detail .f1 .itemBox .textBox {
    width: 100%;
    height: auto;
    padding: 5vw;
    margin-left: 0;
  }
  .glossary-detail .f1 .itemBox .textBox .lab {
    display: none;
  }
  .glossary-detail .f1 .itemBox .textBox .time {
    font-size: 14px;
    margin-top: 0;
  }
  .glossary-detail .f1 .itemBox .textBox .name {
    font-size: 16px;
    margin-top: 3vw;
  }
  .glossary-detail .f1 .itemBox .textBox .mores {
    display: none;
  }
  .datasheets .titItem {
    padding: 10vw 5vw;
    display: block;
  }
  .datasheets .titItem .tit {
    font-size: 26px;
  }
  .datasheets .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .datasheets .titItem .des {
    width: 100%;
    font-size: 14px;
    text-align: left;
    margin-top: 5vw;
  }
  .datasheets .f1 {
    padding: 10vw 5vw;
    margin-top: 0;
    border-radius: 0;
  }
  .datasheets .f1 .tit {
    font-size: 16px;
  }
  .datasheets .f1 form {
    display: block;
  }
  .datasheets .f1 form .inputBox {
    width: 100%;
    margin-top: 5vw;
  }
  .datasheets .f1 form .inputBox .name {
    font-size: 14px;
  }
  .datasheets .f1 form .inputBox input {
    font-size: 14px;
    margin-top: 3vw;
    height: 8vw;
    padding: 0 5vw;
  }
  .datasheets .f1 .labelBox {
    font-size: 14px;
    margin-top: 10vw;
  }
  .datasheets .f1 .submit {
    font-size: 12px;
    margin-top: 5vw;
  }
  .datasheets .f1 .submit .icon {
    width: 7.5vw;
    height: 7.5vw;
    margin-right: 2.5vw;
    border-radius: 1vw;
    background: white;
    padding: 2vw;
  }
  .datasheets .f1 .submit .t {
    height: 7.5vw;
    line-height: 7.5vw;
    padding: 0 3vw;
  }
  .factoryView .titItem {
    padding: 10vw 5vw;
    display: block;
  }
  .factoryView .titItem .tit {
    font-size: 26px;
  }
  .factoryView .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .factoryView .tabBox {
    margin: 0;
    padding: 0 5vw;
  }
  .factoryView .tabBox .tab {
    font-size: 14px;
    padding: 1vw 5vw;
    margin-right: 3vw;
  }
  .factoryView .photosBox {
    padding: 5vw 5vw 10vw 5vw;
  }
  .factoryView .photosBox.active {
    display: block;
  }
  .factoryView .photosBox .imgs {
    width: 100%;
    margin-top: 5vw;
  }
  .factoryView .photosBox .imgs .img{
    height: 50vw;
  }
  .factoryView .photosBox .name{
    font-size: 16px;
    margin-top: 1vw;
  }
  .factoryView .videosBox {
    padding: 5vw 5vw 10vw 5vw;
  }
  .factoryView .videosBox.active {
    display: block;
  }
  .factoryView .videosBox .imgs {
    width: 100%;
    margin-top: 5vw;
  }
  .factoryView .videosBox .imgs .img{
    height: 50vw;
  }
  .factoryView .videosBox .name{
    font-size: 16px;
    margin-top: 1vw;
  }
  .factoryView .videosBox .img .play {
    width: 15vw;
  }
  .videoBoxs .videos {
    width: 90%;
  }
  .videoBoxs .videos .close {
    width: 7vw;
    top: -9vw;
  }
  .whyInjet .titItem {
    padding: 10vw 5vw;
    display: block;
  }
  .whyInjet .titItem .tit {
    font-size: 26px;
  }
  .whyInjet .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .whyInjet .f1Box {
    padding: 0 5vw;
  }
  .whyInjet .f1Box .item {
    display: block;
    margin-top: 0;
    margin-bottom: 10vw;
  }
  .whyInjet .f1Box .item .textBox {
    width: 100%;
    padding-bottom: 5vw;
  }
  .whyInjet .f1Box .item .textBox .num {
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    font-size: 14px;
  }
  .whyInjet .f1Box .item .textBox .name {
    font-size: 16px;
    margin: 3vw 0;
  }
  .whyInjet .f1Box .item .textBox .des {
    font-size: 14px;
  }
  .whyInjet .f1Box .item .imgBox {
    width: 100%;
    height: 80vw;
    margin-top: 5vw;
  }
  .about .titItem {
    padding: 10vw 5vw;
  }
  .about .titItem .tit {
    font-size: 26px;
  }
  .about .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .about .titItem .des {
    font-size: 14px;
    margin-top: 5vw;
  }
  .about .titItem .des .year {
    font-size: 20px;
  }
  .about .f1 {
    padding: 0 5vw;
  }
  .about .f1 .f1Box {
    height: 40vw;
    padding: 5vw;
  }
  .about .f1 .f1Box .tit {
    font-size: 16px;
  }
  .about .f1 .f1Box .tit::before {
    width: 1.5vw;
    height: 6vw;
  }
  .about .f1 .f1Box2{
    height: auto;
    padding: 0;
  }
  .about .f1 .f1Box .itemBox {
    width: 100%;
    right: inherit;
    position: relative;
    display: block;
  }
  .about .f1 .f1Box .itemBox .item {
    width: 100%;
    height: auto;
    padding: 5vw;
    border-top: 5px solid #1A3BB2;
    border-radius: 3vw;
    margin-top: 5vw;
    color: #333333;
    background: #f1f1f1;
  }
  .about .f1 .f1Box .itemBox .item .head .icon {
    width: 8vw;
  }
  .about .f1 .f1Box .itemBox .item .head .num {
    font-size: 20px;
  }
  .about .f1 .f1Box .itemBox .item .t {
    font-size: 16px;
    margin: 3vw 0;
  }
  .about .f1 .f1Box .itemBox .item .d {
    font-size: 14px;
  }
  .about .f2 {
    padding: 10vw 5vw;
  }
  .about .f2 .f2Item {
    display: block;
  }
  .about .f2 .f2Item .left {
    width: 100%;
  }
  .about .f2 .f2Item .left .des {
    font-size: 14px;
    margin-top: 5vw;
  }
  .about .f2 .f2Item .right {
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
  }
  .about .f2 .f2Item .right .play {
    width: 15vw;
  }
  .about .f3 .f3Box {
    flex-wrap: wrap;
    padding: 0 5vw;
  }
  .about .f3 .f3Box .item {
    width: 33%;
    margin-top: 3vw;
  }
  .about .f3 .f3Box .item .icon {
    width: 6vw;
  }
  .about .f3 .f3Box .item .num {
    font-size: 20px;
  }
  .about .f3 .f3Box .item .d {
    font-size: 14px;
  }
  .about .f3 .f3History {
    padding: 5vw 5vw 10vw 5vw;
  }
  .about .f3 .f3History .tit {
    font-size: 22px;
  }
  .about .f3 .f3History .f3Swiper {
    margin-top: 5vw;
  }
  .about .f3 .f3History .f3Swiper .swiper-slide {
    display: block;
  }
  .about .f3 .f3History .f3Swiper .swiper-slide .text {
    width: 100%;
    text-align: center;
  }
  .about .f3 .f3History .f3Swiper .swiper-slide .text .year {
    font-size: 36px;
  }
  .about .f3 .f3History .f3Swiper .swiper-slide .text .des {
    font-size: 14px;
  }
  .about .f3 .f3History .f3Swiper .swiper-slide .img {
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
  }
  .about .f3 .f3History .f3SwiperYear .year {
    font-size: 12px;
  }
  .about .f3 .f3History .f3SwiperYear {
    margin-top: 5vw;
    padding-top: 3vw;
  }
  .about .f3 .f3History .f3SwiperYear .year::before {
    width: 1.3vw;
    height: 1.3vw;
    top: -2.5vw;
  }
  .about .f3 .f3History .f3SwiperYear .swiper-slide-thumb-active .year::before {
    width: 3vw;
    height: 3vw;
    top: -3.35vw;
  }
  .about .f3 .f3History .f3SwiperYear .swiper-slide-thumb-active .year::after {
    content: inherit;
  }
  .about .f4 {
    padding: 10vw 5vw;
  }
  .about .f4 .f4Box {
    margin-top: 5vw;
    height: auto;
  }
  .about .f4 .f4Box .f4Item {
    padding: 5vw;
  }
  .about .f4 .f4Box .f4Item .f4Tab .tab {
    font-size: 16px;
    margin-right: 5vw;
  }
  .about .f4 .f4Box .f4Item .f4Tab .tab.active::before {
    bottom: -1.5vw;
  }
  .about .f4 .f4Box .f4Item .f4Text {
    width: 100%;
    margin-top: 5vw;
  }
  .about .f4 .f4Box .f4Item .f4Text .item .des {
    font-size: 14px;
  }
  .about .f5 {
    padding: 0 5vw;
  }
  .about .f5 .tabBox {
    margin: 5vw 0;
  }
  .about .f5 .tabBox .tab {
    font-size: 14px;
    padding: 1vw 3vw;
    margin-right: 3vw;
  }
  .about .f5 .f5Swiper {
    padding-bottom: 8vw;
  }
  .about .f5 .f5Swiper .swiper-slide .imgBox {
    height: 50vw;
  }
  .about .f5 .f5Swiper .swiper-slide .name {
    font-size: 14px;
    margin-top: 2vw;
  }
  .about .f6 {
    padding: 10vw 5vw;
  }
  .about .f6 .f6Box {
    display: block;
    margin: 5vw 0;
  }
  .about .f6 .f6Box .item {
    width: 100%;
    height: auto;
    border-radius: 3vw;
    margin-top: 5vw;
  }
  .about .f6 .f6Box .item .text {
    position: relative;
    padding: 5vw;
  }
  .about .f6 .f6Box .item .text .name {
    font-size: 16px;
  }
  .about .f6 .f6Box .item .text .des {
    width: 100%;
    font-size: 14px;
    margin: 5vw 0;
    opacity: 1;
    height: auto;
  }
  .about .f6 .f6Box .item .text .info {
    font-size: 16px;
  }
  .about .f6 .download {
    padding: 10vw 5vw;
    border-radius: 3vw;
  }
  .about .f6 .download .text .tit {
    font-size: 22px;
  }
  .about .f6 .download .text .des {
    width: 100%;
    font-size: 14px;
    margin: 5vw auto;
  }
  .contactUs .titItem {
    padding: 10vw 5vw;
  }
  .contactUs .titItem .tit {
    font-size: 26px;
  }
  .contactUs .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .contactUs .f1 {
    padding-bottom: 10vw;
    margin-top: 0;
  }
  .contactUs .f1 .mapImg {
    margin-top: -25vw;
  }
  .contactUs .f1 .mapImg .icons .iconsImg{
    width: 10vw;
    position: absolute;
    animation: itemBefore 2s infinite;
  }
  .contactUs .f1 .mapImg .icons .iconsImg:nth-child(1) {
    top: 10vw;
    left: 41vw;
  }
  .contactUs .f1 .mapImg .icons .iconsImg:nth-child(2) {
    top: 13vw;
    left: 46vw;
  }
  .contactUs .f1 .mapImg .icons .iconsImg:nth-child(3) {
    top: 18vw;
    left: 70vw;
  }
  .contactUs .f1 .mapImg .icons .iconsImg:nth-child(4) {
    top: 20vw;
    left: 69vw;
  }
  .contactUs .f1 .mapImg .icons .iconsImg:nth-child(5) {
    top: 21vw;
    left: 73vw;
  }
  .contactUs .f1 .itemBox .items{
    width: 100%;
    position: relative;
    left: inherit !important;
    top: inherit !important;
    margin-bottom: 5vw;
  }
  .contactUs .f1 .itemBox {
    margin-top: 0;
    display: block;
    padding: 0 5vw;
  }
  .contactUs .f1 .itemBox .items .item{
    opacity: 1;
    pointer-events: all;
    padding: 5vw;
    position: relative;
  }
  .contactUs .f1 .itemBox .item::before {
    content: inherit;
  }
  .contactUs .f1 .itemBox .item::after {
    content: inherit;
  }
  .contactUs .f1 .itemBox .item .name {
    font-size: 16px;
  }
  .contactUs .f1 .itemBox .item .contBox .it {
    font-size: 14px;
    margin-top: 5vw;
    display: block;
    position: relative;
    padding-left: 5vw;
  }
  .contactUs .f1 .itemBox .item .contBox .it .icon {
    width: 4vw;
    position: absolute;
    top: 0.35vw;
    left: 0;
  }
  .contactUs .f1 .itemBox .item .contBox .it .d {
    margin-top: 1vw;
  }
  .newEnergy .f6 .f6Box{
    height: 45vw;
  }
  .newEnergy .f6 .f6Box .f6Text .des{
    font-size: 14px;
    margin: 5vw 0;
  }
  .productsDetail2 .f3 .f3Box .right .desContent{
    font-size: 14px;
    margin-top: 5vw;
    padding: 0;
    line-height: 1.7;
  }
  .productsDetail2 .f3 .f3Box .left .downBox{
    margin-top: 3vw;
  }
  .productsDetail2 .f3 .f3Box .left .downBox .tits{
    font-size: 16px;
  }
  .productsDetail2 .f3 .f3Box .left .downBox .d{
    font-size: 14px;
    margin: 3vw 0;
  }
  .services .f1{
    height: 60vw;
  }
  .services .f1 .titItem{
    padding-left: 5vw;
  }
  .services .f1 .titItem .tit{
    font-size: 28px;
  }
  .services .f1 .titItem .tit::before{
    width: 12vw;
    bottom: -2vw;
  }
  .services .f1 .titItem .des{
    width: 100%;
    font-size: 14px;
  }
  .services .f2{
    padding: 5vw 5vw 10vw 5vw;
  }
  .services .f2 .itemBox{
    display: block;
  }
  .services .f2 .itemBox .item{
    width: 100%;
    margin-top: 5vw;
    padding: 5vw;
    border-top: 5px solid #1A3BB2;
  }
  .services .f2 .itemBox .item .head .icon{
    width: 7vw;
  }
  .services .f2 .itemBox .item .head .num{
    font-size: 28px;
  }
  .services .f2 .itemBox .item .t{
    font-size: 18px;
    margin: 3vw 0;
  }
  .services .f2 .itemBox .item .d{
    font-size: 14px;
  }
  .services .f3{
    padding: 10vw 5vw;
  }
  .services .f3 .f3Txt{
    display: block;
  }
  .services .f3 .f3Txt .des{
    width: 100%;
    font-size: 14px;
    margin: 5vw 0;
  }
  .services .f3 .f3Box .item{
    width: 48%;
    padding: 5vw;
    margin-top: 3vw;
  }
  .services .f3 .f3Box .item .icon{
    height: 6vw;
  }
  .services .f3 .f3Box .item .name{
    font-size: 14px;
    margin-top: 3vw;
  }
  .services .f4{
    padding: 10vw 5vw;
    display: block;
  }
  .services .f4 .left{
    width: 100%;
  }
  .services .f4 .right{
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
  }
  .services .f4 .left .f4Tab{
    margin: 5vw 0;
  }
  .services .f4 .left .f4Tab .tab{
    font-size: 16px;
    padding-left: 3.5vw;
  }
  .services .f4 .left .f4Tab .tab:nth-child(2){
    padding: 3vw 3.5vw;
  }
  .services .f4 .left .des{
    font-size: 14px;
  }
  .services .f5{
    padding: 10vw 5vw;
  }
  .services .f5 .f5Box .item .txt .t{
    font-size: 14px;
  }
  .services .f5 .f5Box .item .txt .d{
    font-size: 12px;
  }
  .services .f5 .f5Box .item .num{
    font-size: 28px;
  }
  .services .f5 .f5Img{
    margin-top: 5vw;
  }
  .services .f5 .f5Box{
    font-size: 14px;
  }
  .datasheetsBox{
    width: 90%;
    top: 50%;
  }
  .datasheetsBox .tit{
    font-size: 18px;
  }
  .datasheetsBox .close{
    font-size: 16px;
    top: 3vw;
  }
  .datasheetsBox .itemBox{
    margin-top: 5vw;
    gap: 5vw;
  }
  .datasheetsBox .item{
    width: 46%;
  }
  .datasheetsBox .item .img{
    height: 25vw;
  }
  .datasheetsBox .item .downBtn{
    font-size: 14px;
    padding: 2vw;
  }
  .contactUs .f1 .itemBox .items .icons{
    display: none;
  }
  .blog_detail{
    padding-top: 0;
  }
  .blog_detail .f1{
    padding: 10vw 5vw;
    display: block;
  }
  .blog_detail .f1 .textBox{
    width: 100%;
    padding: 0;
  }
  .blog_detail .f1 .imgBox{
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
  }
  .blog_detail .f1 .textBox .tit{
    font-size: 18px;
  }
  .blog_detail .f1 .textBox .des{
    font-size: 14px;
    padding: 5vw 0;
    margin-bottom: 5vw;
  }
  .blog_detail .f2{
    padding: 0 5vw;
  }
  .blog_detail .f2 .des{
    font-size: 14px;
    margin-top: 3vw;
  }
  .blog_detail .f3{
    padding: 10vw 5vw;
  }
  .blog_detail .f3 .f3Box .item{
    margin-bottom: 5vw;
    padding: 5vw;
  }
  .blog_detail .f3 .f3Box .item .tit{
    font-size: 16px;
  }
  .blog_detail .f3 .f3Box .item .des{
    font-size: 14px;
  }
  .blog_detail .f3 .f3Box .item.active .des {
    margin-top: 5vw;
    padding-bottom: 5vw;
  }
  .blog_detail .f3 .f3Box .item .tit .icon::before {
    font-size: 20px;
  }
  .blog_detail .f4{
    padding: 0 5vw 10vw 5vw;
  }
  .blog_detail .f4 .f4Box{
    display: block;
  }
  .blog_detail .f4 .f4Box .item{
    width: 100%;
    margin-top: 5vw;
  }
  .blog_detail .f4 .f4Box .item {
    width: 100%;
    margin-top: 5vw;
    display: block;
  }
  .blog_detail .f4 .f4Box .item .imgBox {
    height: 50vw;
  }
  .blog_detail .f4 .f4Box .item .textBox {
    padding: 5vw;
    background: #F8F8FA;
  }
  .blog_detail .f4 .f4Box .item .textBox .time {
    font-size: 12px;
  }
  .blog_detail .f4 .f4Box .item .textBox .name {
    font-size: 16px;
    margin: 3vw 0;
  }
  .blog_detail .f4 .f4Box .item .textBox .des {
    display: none;
  }
  .linkBtn{
    font-size: 14px;
    padding: 1.5vw 3vw;
    margin-top: 2vw;
  }
  .productsDetail1 .f4{
    padding: 10vw 5vw;
  }
  .productsDetail1 .f4 .f4Box .item{
    margin-bottom: 5vw;
    padding: 5vw;
  }
  .productsDetail1 .f4 .f4Box .item .tit{
    font-size: 16px;
  }
  .productsDetail1 .f4 .f4Box .item .des{
    font-size: 14px;
  }
  .productsDetail1 .f4 .f4Box .item.active .des {
    margin-top: 5vw;
    padding-bottom: 5vw;
  }
  .productsDetail1 .f4 .f4Box .item .tit .icon::before {
    font-size: 20px;
  }
  .ctaBox{
    width: 90%;
    margin: 10vw auto 0 auto;
    padding: 10vw 5vw;
  }
  .ctaBox .tit{
    font-size: 16px;
  }
  .ctaBox .des{
    font-size: 14px;
    margin: 3vw 0;
  }
  .productsDetail2 .f2 .f2Box .itemBg .itemBox .item .tit .icon{
    display: none;
  }
  .services .f3 .f3Box .item .des{
    font-size: 12px;
  }
  .productsDetail2 .f2 .des{
    font-size: 14px;
    margin-top: 3vw;
  }
  .productsDetail2 .f3 .f3Box .right .desContent .t{
    font-size: 16px;
  }
  .productsDetail2 .f3 .f3Box .right .desContent .d{
    font-size: 14px;
    margin-top: 3vw;
  }
  .industryHome .titItem{
    padding: 10vw 5vw;
  }
  .industryHome .titItem .tit{
    font-size: 26px;
  }
  .industryHome .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .industryHome .titItem .des {
    width: 100%;
    font-size: 14px;
    margin-top: 5vw;
  }
  .industryHome .f1{
    padding: 10vw 5vw;
  }
  .industryHome .f1 .f1Item{
    display: block;
    margin-top: 5vw;
    padding: 3vw;
  }
  .industryHome .f1 .f1Item .img{
    width: 100%;
    height: 50vw;
  }
  .industryHome .f1 .f1Item .text{
    width: 100%;
  }
  .industryHome .f1 .f1Item .textBox{
    display: block;
  }
  .industryHome .f1 .f1Item .textBox .img{
    width: 100%;
    height: 50vw;
  }
  .industryHome .f1 .f1Item .textBox .txt{
    width: 100%;
    margin-top: 3vw;
    padding: 3vw;
  }
  .industryHome .f1 .f1Item .textBox .txt .t{
    font-size: 18px;
  }
  .industryHome .f1 .f1Item .textBox .txt .d{
    font-size: 14px;
  }
  .industryHome .f1 .f1Item .its{
    margin-top: 5vw;
    gap: 3vw;
  }
  .industryHome .f1 .f1Item .its .it{
    width: 48%;
    font-size: 14px;
  }
  .industryHome .f1 .f1Item .its .it i{
    font-size: 10px;
    margin-left: 3vw;
  }
  .industryList .titItem{
    padding: 10vw 5vw;
  }
  .industryList .titItem .tit{
    font-size: 26px;
  }
  .industryList .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .industryList .titItem .des{
    max-width: 100%;
    text-align: left;
    font-size: 14px;
  }
  .industryList .f1{
    padding: 0 5vw 5vw 5vw;
  }
  .industryList .f1 .f1Item{
    display: block;
  }
  .industryList .f1 .f1Item .textBox{
    width: 100%;
    display: block;
    margin-bottom: 5vw;
    padding: 3vw;
  }
  .industryList .titItem .txt{
    display: block;
  }
  .industryList .f1 .f1Item .textBox .img{
    width: 100%;
    height: 50vw;
  }
  .industryList .f1 .f1Item .textBox .txt{
    width: 100%;
  }
  .industryList .f1 .f1Item .textBox .txt .t{
    font-size: 18px;
    margin-top: 3vw;
  }
  .industryList .f1 .f1Item .textBox .txt .d{
    font-size: 16px;
  }
  .industryList .f1 .f1Item .textBox .txt .t i{
    font-size: 10px;
    margin-left: 3vw;
  }
  .honorIcons{
    margin-top: 5vw;
  }
  .honorIcons .logoIcon{
    height: 6vw;
  }
  .honorIcons .logoIcon img{
    height: 6vw;
  }
  .honorBox{
    margin-top: 5vw;
  }
  .honorSwiper{
    padding-bottom: 10vw;
  }
  .honorSwiper .swiper-slide .img{
    height: 55vw;
  }
  .honorSwiper .swiper-slide .name{
    font-size: 14px;
  }
  .logosBox .logoIcon{
    height: 6vw;
  }
  .logosBox .logoIcon img{
    height: 6vw;
  }
  .industries{
    padding: 10vw 5vw;
  }
  .industriesBox{
    display: block;
  }
  .industriesItem{
    width: 100%;
    margin-top: 8vw;
  }
  .industriesItem .textBox{
    display: block;
  }
  .industriesItem .textBox .img{
    height: 50vw;
  }
  .industriesItem .textBox .txt .t{
    font-size: 18px;
    margin-top: 3vw;
  }
  .industriesItem .textBox .txt .d{
    font-size: 16px;
  }
  .products .f1 .titItem .des{
    font-size: 14px;
  }
  .newsBox{
    padding: 0;
    display: block;
  }
  .newsBox .item{
    width: 100%;
    margin-top: 5vw;
    display: block;
  }
  .newsBox .item .imgBox{
    height: 50vw;
  }
  .newsBox .item .textBox{
    padding: 3vw 0;
  }
  .newsBox .item .textBox .time{
    font-size: 14px;
  }
  .newsBox .item .textBox .name{
    font-size: 16px;
  }
  .newsBox .item .textBox .des{
    display: none;
  }
  .powerSupply .titItem{
    padding: 10vw 5vw;
    display: block;
  }
  .powerSupply .titItem .tit{
    font-size: 26px;
  }
  .powerSupply .titItem .tit::before {
    width: 7vw;
    height: 1.2vw;
    bottom: -2vw;
  }
  .powerSupply .titItem .des{
    width: 100%;
    margin-top: 5vw;
    font-size: 14px;
  }
  .powerSupply .powerSupplyBox{
    padding: 0 5vw 10vw 5vw;
  }
  .powerSupply .powerSupplyBox .item{
    height: 45vw;
    margin-bottom: 5vw;
  }
  .powerSupply .powerSupplyBox .item .text .name{
    font-size: 18px;
    margin-bottom: 5vw;
  }
  .powerSupply .powerSupplyBox .item .text .des{
    display: none;
  }
  .breadcrumbs{
    margin-bottom: 5vw;
  }
  .breadcrumbs a{
    font-size: 14px;
  }
  .breadcrumbs span{
    margin: 0 1vw;
  }
  .industryHomeBanner{
    height: auto;
  }
  .industryHomeBanner .more{
    margin-top: 5vw;
    font-size: 14px;
  }
  .industryHomeBanner .more .t{
    font-size: 14px;
    margin-left: 5vw;
  }
  .Industrial .titItem .more{
    font-size: 14px;
  }
  .Industrial .titItem .more .t{
    font-size: 14px;
    margin-left: 3vw;
  }
  .industryHome .f1 .f1Item .text .txt .t .icons{
    height: 5vw;
    margin-right: 3vw;
  }
}


