@font-face {
  font-family: 'iconfont';  /* Project id 4805197 */
  src: url('//at.alicdn.com/t/c/font_4805197_v3ejlx12exs.woff2?t=1744701364698') format('woff2'),
  url('//at.alicdn.com/t/c/font_4805197_v3ejlx12exs.woff?t=1744701364698') format('woff'),
  url('//at.alicdn.com/t/c/font_4805197_v3ejlx12exs.ttf?t=1744701364698') format('truetype');
}
@font-face {
  font-family: Medium;
  /*src: url('../fonts/MiSans-Medium.otf');*/
  src: url('https://website-ishutime.oss-cn-chengdu.aliyuncs.com/font/MiSans-Medium.otf');
}
@font-face {
  font-family: Regular;
  /*src: url('../fonts/MiSans-Regular.otf');*/
  src: url('https://website-ishutime.oss-cn-chengdu.aliyuncs.com/font/MiSans-Regular.otf');
}
@font-face {
  font-family: Demibold;
  /*src: url('../fonts/MiSans-Demibold.otf');*/
  src: url('https://website-ishutime.oss-cn-chengdu.aliyuncs.com/font/MiSans-Demibold.otf');
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html,
body {
  color: #272727;
  font-family: Regular;
}
input,
textarea {
  font-family: 'SourceHanSans', "思源黑体", "Microsoft YaHei", '微软雅黑', "Arial";
}
.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: #6eb92d;
  /* 滑块背景颜色 */
  border-radius: 6px;
  /* 滑块圆角 */
}
@keyframes fadeIniup {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.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;
}
.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;
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-between;
  padding: 1vw 10vw 1vw 5vw;
  transition: 0.5s all ease-in-out;
  z-index: 99;
}
header.activeHome{
  opacity: 0;
}
header::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 10vw;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  transition: 1s all;
  background: linear-gradient(to bottom, rgba(0,0,0,.5) 0%, transparent 100%);
}
header .logo {
  width: 140px;
}
header nav ul {
  display: flex;
}
header nav ul li {
  width: 7vw;
  position: relative;
  text-align: center;
  color: #ffffff;
  font-size: 22px;
}
header nav ul li a {
  color: #ffffff;
  font-size: 18px;
  position: relative;
}
header nav ul .serach {
  width: auto;
  cursor: pointer;
  display: flex;
}
header nav ul .serach input{
  width: 0;
  background: transparent;
  border: transparent;
  outline: none;
  border-bottom: 1px solid white;
  font-size: 16px;
  color: white;
  font-family: Regular;
  transition: .3s all ease-in-out;
}
header nav ul .serach i{
  position: relative;
  top: 4px;
}
header nav ul .serach.active input{
  width: 8vw;
}
header nav ul li a::after {
  width: 0%;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: -.5vw;
  content: '';
  background: white;
  transition: all 0.35s cubic-bezier(0.215, 0.61, 0.355, 1);
}
header nav ul li a:hover::after {
  width: 100%;
  left: 0%;
}
header .lan {
  position: absolute;
  right: 4%;
  margin-top: 0.2vw;
  color: white;
  font-size: 16px;
  border: 1px solid #ffffff;
  border-radius: 5vw;
  padding: 0 10px;
}
header.active {
  padding: 1vw 10vw 1vw 5vw;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}
header.active::after{
  opacity: 0;
}
footer {
  width: 100%;
  background: #232020;
  padding: 3vw 5vw 0 5vw;
}
footer .footer {
  display: flex;
  justify-content: space-between;
}
footer .footer .left .logo {
  width: 9vw;
}
footer .footer .left .serachBox {
  width: 19vw;
  height: 3vw;
  background-color: #393232;
  border-radius: 0.2vw;
  margin: 2vw 0;
}
footer .footer .left .serachBox input {
  width: 88%;
  height: 3vw;
  line-height: 3vw;
  padding: 0 1vw;
  font-size: 0.9vw;
  background: transparent;
  border: transparent;
  outline: none;
  color: white;
}
footer .footer .left .serachBox i {
  color: #cccccc;
  font-size: 1.2vw;
  cursor: pointer;
}
footer .footer .left .text {
  color: #cccccc;
  font-size: 1vw;
  line-height: 2;
}
footer .footer .left .text a{
  color: #cccccc;
}
footer .footer .right {
  position: relative;
}
footer .footer .right ul {
  display: flex;
}
footer .footer .right ul li {
  margin-left: 3vw;
}
footer .footer .right ul li a {
  color: white;
  font-size: 1vw;
}
footer .footer .right .qrcodeBox {
  width: 6vw;
  color: #cccccc;
  font-size: 0.9vw;
  text-align: center;
  position: absolute;
  right: 0;
  bottom: 0;
}
footer .footer .right .qrcodeBox .img {
  margin: 0 auto 0.5vw auto;
}
footer .footerInfo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #999999;
  font-size: 0.9vw;
  border-top: 1px solid #524C4C;
  padding: 1vw 0;
  margin-top: 3vw;
}
footer .footerInfo a {
  color: #999999;
}
.titBox {
  display: flex;
  font-family: Demibold;
  font-size: 2.2vw;
  color: white;
}
.titBox img {
  width: 1vw;
  height: 1.5vw;
  position: relative;
  margin: 0.5vw 0.5vw 0.5vw 0;
}
.more {
  width: 8vw;
  height: 2.5vw;
  display: flex;
  color: white;
  font-size: 0.9vw;
  padding-left: 1vw;
  line-height: 2.5vw;
  justify-content: center;
  background-color: #6eb92d;
  transition: 0.3s all ease;
  box-shadow: 0vw 1vw 1vw 0vw rgba(110, 185, 45, 0.45);
  border-radius: 0.5vw;
  cursor: pointer;
}
.more .icon {
  width: 2vw;
  position: relative;
  transition: 0.3s all ease;
  overflow: hidden;
  margin-left: 1.2vw;
}
.more .icon .em {
  display: flex;
  position: absolute;
}
.more .icon .em i {
  position: absolute;
  font-size: 1.2vw;
  transition: 0.3s all ease;
}
.more .icon .em i:nth-child(2) {
  margin-left: -2vw;
}
.more:hover .icon {
  color: white;
}
@keyframes arrAni {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.more:hover .icon .em {
  animation: arrAni 0.5s 0.1s both;
  animation-iteration-count: infinite;
}
.bannerBox {
  width: 100%;
  height: 42vw;
  overflow: hidden;
}
.bannerBox .imgBox {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s allease-in-out;
  animation: bannerBoxidentifier 2s forwards;
}
@keyframes bannerBoxidentifier {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.bannerBox .text {
  color: white;
  font-family: Demibold;
  font-size: 3.5vw;
  position: absolute;
  z-index: 1;
  top: 27vw;
  left: 5vw;
}
.progress-bar{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 25vw;
  padding: 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6eb92d;
}
.index {
  width: 100%;
}
.index .f1 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  top: 0;
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  clip-path: polygon(0% 45%, 0% 45%, 0% 55%, 0% 55%);
  will-change: clip-path;
  z-index: 9;
}
.index .f1 .videoText {
  position: absolute;
  z-index: 1;
  margin-left: 8vw;
  margin-top: 18vw;
  color: white;
  font-family: Demibold;
  font-size: 3vw;
  opacity: 0;
}
.index .f1 .shubiao {
  color: white;
  font-size: 1.5vw;
  position: absolute;
  bottom: 5vw;
  left: 49vw;
  z-index: 1;
}
.index .f1 .videoBoxs {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(20% 20%, 80% 20%, 80% 80%, 20% 80%);
  will-change: transform, clip-path;
  overflow: hidden;
}
.index .f1 .videoBoxs video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.index .f2 {
  width: 100%;
  height: 100vh;
  padding: 5vw;
  overflow: hidden;
}
.index .f2 .f2Box {
  width: 100%;
  border-radius: 3vw;
  position: relative;
  overflow: hidden;
}
.index .f2 .f2Box .f2Text {
  width: 100%;
  position: absolute;
  z-index: 9;
}
.index .f2 .f2Box .f2Text .f2Img {
  width: 40vw;
  position: absolute;
  top: 10vw;
  right: 5vw;
}
.index .f2 .f2Box .f2Text .textBox {
  width: 50vw;
  color: white;
  padding: 5vw 8vw;
}
.index .f2 .f2Box .f2Text .textBox .text {
  margin-top: 5vw;
  text-align: justify;
}
.index .f2 .f2Box .f2Text .textBox .text .t {
  font-family: Medium;
  font-size: 1.8vw;
  letter-spacing: 1px;
  line-height: 1.7;
}
.index .f2 .f2Box .f2Text .textBox .text .d {
  font-size: 1vw;
  line-height: 2;
  margin-top: 2vw;
}
.index .f2 .f2Box .f2Text .textBox .more {
  margin-top: 3vw;
}
.index .f2 .f2Box .videos {
  width: 100%;
  height: 100vh;
}
.index .f2 .f2Box .videos video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.index .f3 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-size: cover !important;
  padding: 8vw;
  position: relative;
  transition: 0.5s all ease-in-out;
}
.index .f3 .tit {
  width: 12vw;
  position: absolute;
}
.index .f3 .f3Swiper {
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 4vw;
  padding-top: 2vw;
}
.index .f3 .f3Swiper .swiper-slide {
  width: 26vw;
  transform: translateY(10vw);
  transition: 0.5s all ease-in-out;
  margin-right: 3vw;
}
.index .f3 .f3Swiper .swiper-slide .item {
  height: 6vw;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 1vw;
  padding: 2vw;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.8s, -webkit-backdrop-filter 1.2s, -webkit-backdrop-filter 1.2s, backdrop-filter 1.2s;
}
.index .f3 .f3Swiper .swiper-slide .item .mores {
  width: 5vw;
  height: 5vw;
  display: none;
  position: absolute;
  right: 1vw;
  margin-top: -3vw;
  transition: 0.5s all ease-in-out;
  color: white;
  font-size: 0.9vw;
  text-align: center;
  line-height: 2.5vw;
  justify-content: center;
  background-color: #6eb92d;
  transition: 0.3s all ease;
  box-shadow: 0vw 1vw 1vw 0vw rgba(110, 185, 45, 0.45);
  border-radius: 0.5vw;
}
.index .f3 .f3Swiper .swiper-slide .item .mores .icons {
  width: 2vw;
  height: 2vw;
  position: relative;
  transition: 0.3s all ease;
  overflow: hidden;
  margin: 0.5vw auto 0 auto;
}
.index .f3 .f3Swiper .swiper-slide .item .mores .icons .em {
  display: flex;
  position: absolute;
  margin-left: 0.2vw;
}
.index .f3 .f3Swiper .swiper-slide .item .mores .icons .em i {
  position: absolute;
  font-size: 1.5vw;
  transition: 0.3s all ease;
}
.index .f3 .f3Swiper .swiper-slide .item .mores .icons .em i:nth-child(2) {
  margin-left: -2vw;
}
.index .f3 .f3Swiper .swiper-slide .item .mores:hover .icons {
  color: white;
}
@keyframes arrAni {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.index .f3 .f3Swiper .swiper-slide .item .mores:hover .icons .em {
  animation: arrAni 0.5s 0.1s both;
  animation-iteration-count: infinite;
}
.index .f3 .f3Swiper .swiper-slide .item .icon {
  width: 3vw;
  position: absolute;
  right: 2vw;
  top: 1.5vw;
  transition: 0.5s all ease-in-out;
}
.index .f3 .f3Swiper .swiper-slide .item .name {
  font-weight: bold;
  font-size: 1.4vw;
}
.index .f3 .f3Swiper .swiper-slide .item .des {
  font-size: 1vw;
  line-height: 2;
  text-align: justify;
  opacity: 0;
  height: 0;
  margin-top: 1vw;
  position: relative;
  transition: 0.5s all ease-in-out;
}
.index .f3 .f3Swiper .active {
  transform: translateY(0);
}
.index .f3 .f3Swiper .active .item {
  height: 16vw;
  background: rgba(255, 255, 255, 0.9);
  color: #272727;
}
.index .f3 .f3Swiper .active .item .mores {
  display: block;
}
.index .f3 .f3Swiper .active .item .icon {
  transform: translateX(-19vw);
}
.index .f3 .f3Swiper .active .item .name {
  margin-top: 4vw;
}
.index .f3 .f3Swiper .active .item .des {
  height: 3vw;
  opacity: 1;
}
.index .f3 .f3Swiper .active .item .des::before {
  content: '';
  position: absolute;
  background: #6EB92D;
  width: 100%;
  height: 4px;
  bottom: -4.1vw;
}
.index .f4 {
  width: 100%;
  padding: 6vw 5vw;
}
.index .f4 .titBox {
  color: #6eb92d;
}
.index .f4 .f4Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.index .f4 .f4Box .item {
  flex: 1;
  height: 35vw;
  margin-right: 1vw;
  background-size: cover !important;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
  transition: 0.5s all ease-in-out;
}
.index .f4 .f4Box .item .textBox {
  width: 100%;
  height: 5vw;
  position: absolute;
  bottom: 0;
  z-index: 9;
  background: rgba(255, 255, 255, 0);
  border-top-left-radius: 1vw;
  border-top-right-radius: 1vw;
  padding: 1vw 2vw;
  transition: 0.5s all ease-in-out;
}
.index .f4 .f4Box .item .textBox .t {
  color: white;
  font-size: 1.2vw;
  text-align: center;
  transition: 0.5s all ease-in-out;
}
.index .f4 .f4Box .item .textBox .des {
  color: #666666;
  font-size: 0.9vw;
  margin: 1vw 0;
  display: none;
}
.index .f4 .f4Box .item .textBox .more {
  display: none;
}
.index .f4 .f4Box .item:hover {
  flex: 2;
}
.index .f4 .f4Box .item:hover .textBox {
  height: 10vw;
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(0);
}
.index .f4 .f4Box .item:hover .textBox .t {
  color: #6EB92D;
  text-align: left;
}
.index .f4 .f4Box .item:hover .textBox .des {
  display: block;
}
.index .f4 .f4Box .item:hover .textBox .more {
  display: flex;
}
.index .f4 .f4Box .item.active {
  flex: 2;
}
.index .f4 .f4Box .item.active .textBox {
  transform: translateY(0);
}
.index .f4 .f4Box .item.active .textBox .des {
  opacity: 1;
}
.index .f4 .f4Box .item.active .textBox .more {
  opacity: 1;
}
.index .f4 .f4Box .item:last-child {
  margin-right: 0;
}
.index .new {
  width: 100%;
  padding: 6vw 5vw;
  position: relative;
  background: url('../images/bg1.jpg') center no-repeat;
  background-size: cover !important;
}
.index .new .titBox {
  color: #6eb92d;
}
.index .new .more {
  position: absolute;
  right: 5vw;
  top: 6vw;
}
.index .new .newSwiper {
  width: 100%;
  padding: 4vw 0;
}
.index .new .newSwiper .swiper-slide {
  width: 30vw;
  background: white;
  border-radius: 0.7vw;
  overflow: hidden;
  transition: 0.3s all ease-in-out;
  border: 2px solid transparent;
}
.index .new .newSwiper .swiper-slide .imgBox {
  width: 100%;
  height: 17vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.index .new .newSwiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  transition: 0.3s all ease-in-out;
  background-size: cover !important;
}
.index .new .newSwiper .swiper-slide .text {
  padding: 2vw;
  line-height: 1.7;
  color: #333333;
}
.index .new .newSwiper .swiper-slide .text .t {
  height: 5vw;
  font-size: 1vw;
  padding-bottom: 1vw;
  position: relative;
  border-bottom: 1px solid #f3f3f3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index .new .newSwiper .swiper-slide .text .t::before {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: 0;
  background: #6eb92d;
  transition: 0.3s all ease-in-out;
}
.index .new .newSwiper .swiper-slide .text .time {
  color: #666666;
  font-size: 0.9vw;
  margin-top: 1vw;
}
.index .new .newSwiper .swiper-slide:hover {
  border: 2px solid #6eb92d;
}
.index .new .newSwiper .swiper-slide:hover .imgBox .img {
  transform: scale(1.1);
}
.index .new .newSwiper .swiper-slide:hover .text .t::before {
  width: 100%;
}
.index .new .newSwiper .swiper-pagination {
  top: inherit;
  bottom: 0;
}
.index .new .newSwiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #6eb92d;
}
.index .f5 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.index .f5 .f5Logo {
  width: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.index .f5 .f5Text {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}
.index .f5 .videoBoxs {
  width: 100%;
  height: 100vh;
}
.index .f5 .videoBoxs video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  /*transform: translateY(-15%);*/
}
.about {
  width: 100%;
}
.about .f1 {
  width: 100%;
  padding: 7vw 5vw;
  display: flex;
  position: relative;
  overflow: hidden;
  justify-content: space-between;
}
.about .f1 .bg2 {
  width: 30vw;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
}
.about .f1 .titBox {
  color: #6eb92d;
}
.about .f1 .textBox {
  width: 50vw;
}
.about .f1 .textBox .t {
  color: #333333;
  font-family: Demibold;
  font-size: 1.5vw;
}
.about .f1 .textBox .des {
  font-size: 1vw;
  line-height: 2;
  text-align: justify;
}
.about .f1 .textBox .des p {
  margin-top: 1vw;
}
.about .f2 {
  width: 100%;
  height: auto;
  background: url('../images/img11.jpg?v1.0.0') center no-repeat;
  background-size: cover !important;
  padding: 10vw 5vw;
}
.about .f2 .f2Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.about .f2 .f2Box .item {
  width: 28vw;
  height: 28vw;
  text-align: center;
  position: relative;
  color: white;
  border-radius: 2.5vw;
  transition: all 0.5s;
  cursor: pointer;
}
.about .f2 .f2Box .item .t {
  font-family: Demibold;
  font-size: 2vw;
  margin-top: 7vw;
}
.about .f2 .f2Box .item .d {
  font-size: 1.2vw;
  line-height: 1.7;
  margin-top: 2vw;
}
.about .f2 .f2Box .item .en {
  width: 100%;
  z-index: 4;
  text-align: center;
  font-size: 2vw;
  transition: transform 0.5s;
  position: absolute;
  bottom: -1.5vw;
  left: 0;
  transform: scale(0.5);
}
.about .f2 .f2Box .item::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 60% 100%, 60% 50%, 40% 50%, 40% 100%, 0% 100%, 0% 0%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 60% 100%, 60% 50%, 40% 50%, 40% 100%, 0% 100%, 0% 0%);
  border: 2px solid #fff;
  border-radius: 2.5vw;
  transition: border-color 0.5s;
}
.about .f2 .f2Box .item:hover {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.8);
}
.about .f2 .f2Box .item:hover .t {
  color: #333333;
}
.about .f2 .f2Box .item:hover .d {
  color: #6eb92d;
}
.about .f2 .f2Box .item:hover .en {
  color: #002717;
  transform: scale(1) translateY(calc(-100% - 2vw));
}
.about .f2 .f2Box .item:hover::before {
  border-color: transparent;
}
.about .f3 {
  width: 100%;
  height: auto;
  background: url('../images/img12.jpg') center no-repeat;
  background-size: cover !important;
  padding: 5vw;
}
.about .f3 .f3Box {
  width: 100%;
  height: auto;
  box-shadow: 0vw 1vw 5vw 0vw rgba(110, 185, 45, 0.05);
  background: url('../images/bg3.png') center no-repeat;
  background-size: cover !important;
  position: relative;
  margin-top: 5vw;
  padding: 5vw;
  border-radius: 3vw;
}
.about .f3 .f3Box .f3Swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.about .f3 .f3Box .f3Swiper .swiper-slide {
  text-align: center;
}
.about .f3 .f3Box .f3Swiper .swiper-slide .year {
  color: #6EB92D;
  font-size: 2vw;
  font-family: Demibold;
  margin-bottom: 3vw;
}
.about .f3 .f3Box .f3Swiper .swiper-slide .des {
  color: #333333;
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: left;
}
.about .f3 .f3Box .f3Swiper .swiper-slide:last-child .des{
  text-align: center;
}
.about .f3 .f3Box .f3Swiper .swiper-slide::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 2vw;
  background: #6EB92D;
  margin-top: 3vw;
}
.about .f3 .f3Box .f3Swiper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.5vw;
  background: url('../images/img47.png') center no-repeat;
  background-size: contain !important;
  margin-top: 4.5vw;
}
.about .f3 .f3Box .swiper-button-next,
.about .f3 .f3Box .swiper-button-prev {
  font-size: 3vw;
  color: #999999;
  top: 46%;
}
.about .f3 .f3Box .swiper-button-prev {
  left: 2vw;
}
.about .f3 .f3Box .swiper-button-next {
  right: 2vw;
}
.about .f3 .f3Box .swiper-button-prev:hover {
  color: #6eb92d;
}
.about .f3 .f3Box .swiper-button-next:hover {
  color: #6eb92d;
}
.about .f3 .f3Box .swiper-button-next:after,
.about .f3 .f3Box .swiper-button-prev:after {
  content: inherit;
}
.about .f4 {
  width: 100%;
  height: 50vw;
  background: url('../images/img13.jpg') center no-repeat;
  background-size: cover !important;
  padding: 5vw;
}
.about .f4 .titBox {
  color: #6eb92d;
}
.about .f4 .f4Box {
  width: 36vw;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0.5vw;
  margin-top: 3vw;
  padding: 3vw;
  box-shadow: 0.5vw 0.5vw 2vw 0.05vw rgba(0, 0, 0, 0.1);
}
.about .f4 .f4Box .item {
  margin-bottom: 2vw;
}
.about .f4 .f4Box .item .t {
  font-family: Demibold;
  font-size: 1.5vw;
  margin-bottom: 0.5vw;
}
.about .f4 .f4Box .item .it {
  font-size: 1vw;
  line-height: 2;
}
.about .f4 .f4Box .item:last-child {
  margin-bottom: 0;
}
.product {
  width: 100%;
}
.product .f1 {
  width: 100%;
  padding: 7vw 5vw;
}
.product .f1 .itemBox {
  width: 100%;
  border-radius: 1vw;
  overflow: hidden;
  position: relative;
  margin-bottom: 5vw;
}
.product .f1 .itemBox .item {
  width: 100%;
  height: 33vw;
  background-size: cover !important;
  padding: 3vw;
  border-radius: 1vw;
  position: relative;
  overflow: hidden;
  transition: 0.3s all ease-in-out;
}
.product .f1 .itemBox .textBox {
  width: 33vw;
  height: 29vw;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  border-radius: 1vw;
  position: absolute;
  overflow: hidden;
  padding: 5vw 3vw;
  top: 2vw;
  left: 2vw;
}
.product .f1 .itemBox .textBox .titBox {
  color: #6eb92d;
}
.product .f1 .itemBox .textBox .des {
  color: #333333;
  font-size: 1vw;
  line-height: 2;
  margin-top: 1vw;
}
.product .f1 .itemBox .textBox .btnBox {
  position: absolute;
  bottom: 3vw;
  display: flex;
}
.product .f1 .itemBox .textBox .btnBox .more {
  width: auto;
  margin-right: 1vw;
}
.product .f1 .itemBox .num {
  color: #6eb92d;
  font-size: 9vw;
  position: absolute;
  right: 2vw;
  top: 2vw;
}
.product .f1 .itemBox .en {
  color: #ffffff;
  font-size: 2vw;
  position: absolute;
  right: 2vw;
  bottom: 2vw;
  text-align: right;
}
.product .f1 .itemBox:last-child {
  margin-bottom: 0;
}
.product .f1 .itemBox:hover .item {
  transform: scale(1.05);
}
.productDetail {
  width: 100%;
}
.productDetail .textBox {
  width: 100%;
  padding: 10vw 5vw 0 5vw;
  display: flex;
  justify-content: space-between;
}
.productDetail .textBox .text {
  width: 30vw;
}
.productDetail .textBox .text .titBox {
  color: #6eb92d;
}
.productDetail .textBox .text .des {
  color: #666666;
  font-size: 1vw;
  text-align: justify;
  line-height: 2;
  margin-top: 2vw;
}
.productDetail .textBox .numBox {
  display: inline-block;
  margin-top: -1vw;
}
.productDetail .textBox .numBox .num {
  color: #6eb92d;
  font-size: 9vw;
  display: inline-block;
}
.productDetail .textBox .numBox .en {
  color: #b1b1b1;
  font-size: 1.8vw;
  text-align: right;
  display: inline-block;
  margin-right: 1vw;
}
.productDetail .f1 {
  width: 100%;
  padding: 10vw 5vw 0 5vw;
}
.productDetail .f1:last-child{
  padding: 10vw 5vw;
}
.productDetail .f1 .tit {
  color: #333333;
  font-family: Demibold;
  font-size: 2vw;
  padding-bottom: 2vw;
  border-bottom: 2px solid #cccccc;
}
.productDetail .f1 .itemBox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.productDetail .f1 .itemBox .item {
  width: 43.6vw;
  height: auto;
  background-color: #ffffff;
  border-radius: 1vw;
  margin-right: 2vw;
  margin-top: 3vw;
  position: relative;
  box-shadow: 0vw 0.5vw 1vw 0.5vw rgba(0, 0, 0, 0.05);
  padding: 1vw;
}
.productDetail .f1 .itemBox .item .consult {
  width: 7vw;
  height: 2vw;
  background-color: #6eb92d;
  color: #ffffff;
  font-size: 1vw;
  text-align: center;
  line-height: 2vw;
  display: block;
  position: absolute;
  right: 2vw;
  margin-top: 1vw;
  border-radius: 0.5vw;
  box-shadow: 0vw 1vw 1vw 0vw rgba(110, 185, 45, 0.45);
}
.productDetail .f1 .itemBox .item .tits {
  display: flex;
}
.productDetail .f1 .itemBox .item .tits .icon {
  width: 5vw;
  height: 5vw;
  background-color: #6db82d;
  padding: 0.2vw;
  border-radius: 1vw;
}
.productDetail .f1 .itemBox .item .tits .icon img {
  width: 100%;
}
.productDetail .f1 .itemBox .item .tits .text {
  margin: 0.5vw 1vw;
}
.productDetail .f1 .itemBox .item .tits .text .t {
  color: #333333;
  font-size: 1.5vw;
}
.productDetail .f1 .itemBox .item .tits .text .d {
  color: #6eb92d;
  font-size: 1vw;
  margin-top: 0.5vw;
}
.productDetail .f1 .itemBox .item .des {
  color: #333333;
  font-size: .95vw;
  line-height: 2;
  text-align: justify;
  margin: 2vw 0;
}
.productDetail .f1 .itemBox .item .feature {
  width: 100%;
  border-top: 1px solid gainsboro;
  padding-top: 2vw;
}
.productDetail .f1 .itemBox .item .feature .t {
  color: #333333;
  font-family: Demibold;
  font-size: 1.2vw;
}
.productDetail .f1 .itemBox .item .feature .its {
  margin-top: 1vw;
}
.productDetail .f1 .itemBox .item .feature .its .it {
  color: #333333;
  font-size: .95vw;
  line-height: 2;
  position: relative;
  padding-left: 1.2vw;
}
.productDetail .f1 .itemBox .item .feature .its .it p{
  position: relative;
}
.productDetail .f1 .itemBox .item .feature .its .it p::before {
  content: '';
  position: absolute;
  width: 0.3vw;
  height: 0.3vw;
  background: #333333;
  border-radius: 50%;
  left: -1vw;
  top: 0.8vw;
}
.productDetail .f1 .itemBox .item .feature .its .it.tabs::before{
  content: inherit;
}
.productDetail .f1 .itemBox .item .feature .its .it.tabs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.productDetail .f1 .itemBox .item .feature .its .it.tabs p {
  font-size: .9vw;
  text-align: center;
  padding: 0.2vw 1vw;
  margin-top: 1vw;
  margin-right: 1vw;
  border: 1px solid #6eb92d;
  background-image: linear-gradient(90deg, #ffffff 0%, rgba(245, 250, 239, 0.8) 100%);
}
.productDetail .f1 .itemBox .item .feature .its .it.tabs p::before{
  content: inherit;
}
.productDetail .f1 .itemBox .item:nth-child(2n) {
  margin-right: 0;
}
.productDetail .form{
  width: 100%;
  padding: 5vw;
  background: #f7f7f7;
  margin-top: 5vw;
}
.productDetail .form .text{
  width: 100%;
}
.productDetail .form .text .t{
  color: #333333;
  font-family: Demibold;
  font-size: 2vw;
}
.productDetail .form .text .d{
  font-size: 1vw;
  margin-top: 1vw;
}
.productDetail .form .inputBox {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3vw;
}
.productDetail .form .inputBox .inputItem {
  width: 47.5%;
  height: 3vw;
  background: white;
  display: flex;
  margin-right: 5%;
  margin-bottom: 2vw;
  color: #666666;
  border: 1px solid gainsboro;
  font-size: 1vw;
  line-height: 3vw;
  padding: 0 1vw;
  border-radius: 5px;
}
.productDetail .form .inputBox .inputItem input {
  width: 80%;
  margin-left: 1vw;
  background: transparent;
  border: transparent;
  outline: none;
  font-size: 1vw;
}
.productDetail .form .inputBox .inputItem:nth-child(2n) {
  margin-right: 0;
}
.productDetail .form .textareaBox {
  width: 100%;
  height: 10vw;
  border: 1px solid gainsboro;
  background: white;
  border-radius: 5px;
}
.productDetail .form .textareaBox textarea {
  width: 100%;
  height: 100%;
  padding: 1vw;
  font-size: 1vw;
  background: transparent;
  border: transparent;
  outline: none;
}
.productDetail .submit{
  width: 8vw;
  height: 2.5vw;
  background-color: #6eb92d;
  color: #ffffff;
  font-size: 1vw;
  text-align: center;
  line-height: 2.5vw;
  border-radius: 0.5vw;
  box-shadow: 0 1vw 1vw 0 rgba(110, 185, 45, 0.45);
  margin: 2vw auto 0 auto;
  cursor: pointer;
}
.lntelligent {
  width: 100%;
}
.lntelligent .f1 {
  width: 100%;
  padding: 5vw;
  position: relative;
}
.lntelligent .f1 .bg1 {
  width: 50vw;
  position: absolute;
  left: 0;
  top: -10vw;
  pointer-events: none;
}
.lntelligent .f1 .textBox {
  width: 42vw;
  height: 42vw;
  background: url('../images/bg4.png') center no-repeat;
  background-size: cover !important;
  margin: 0 auto;
  padding: 19.5vw 12.3vw;
}
.lntelligent .f1 .textBox .titBox {
  color: #6eb92d;
  justify-content: center;
}
.lntelligent .f1 .textBox .des {
  width: 18vw;
  color: #666666;
  font-size: 1vw;
  line-height: 2;
  text-align: center;
  margin-top: 1vw;
}
.lntelligent .f1 .itemBox .item {
  width: 9vw;
  height: 9vw;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 0;
  background-image: linear-gradient(90deg, #ffffff 0%, rgba(245, 250, 239, 0.6) 100%);
  color: #333333;
  font-family: Demibold;
  padding-top: 2.5vw;
  box-shadow: 0vw 0.5vw 1vw 0.5vw rgba(0, 0, 0, 0.05);
}
.lntelligent .f1 .itemBox .item .t {
  font-size: 1.8vw;
}
.lntelligent .f1 .itemBox .item .e {
  color: transparent;
  -webkit-text-stroke: 1px #6EB92D;
  text-stroke: 1px #6EB92D;
  font-size: 1.5vw;
}
.lntelligent .f1 .itemBox .item::before {
  content: '';
  position: absolute;
  width: 12vw;
  height: 12vw;
  border: 1px dashed #c6c6c6;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  left: -1.5vw;
  top: -1.5vw;
  z-index: -1;
}
.lntelligent .f1 .itemBox .item1 {
  left: 30vw;
  top: 7vw;
}
.lntelligent .f1 .itemBox .item2 {
  right: 30vw;
  top: 7vw;
}
.lntelligent .f1 .itemBox .item3 {
  left: 23vw;
  top: 22vw;
}
.lntelligent .f1 .itemBox .item4 {
  right: 23vw;
  top: 22vw;
}
.lntelligent .f1 .itemBox .item5 {
  left: 31vw;
  top: 37vw;
}
.lntelligent .f1 .itemBox .item6 {
  right: 31vw;
  top: 37vw;
}
.lntelligent .f2 {
  width: 100%;
  height: auto;
  background-image: linear-gradient(180deg, #ffffff 0%, #f1f8ea 100%);
  background-size: cover !important;
  padding: 5vw 5vw 2vw 5vw;
}
.lntelligent .f2 .titBox {
  color: #6eb92d;
}
.lntelligent .f2 .f2Swiper {
  width: 100%;
  overflow: hidden;
  margin-top: 5vw;
}
.lntelligent .f2 .f2Swiper .swiper-slide .img {
  width: 100%;
  height: 30vw;
  background-size: contain !important;
}
.lntelligent .f3 {
  width: 100%;
  padding: 6vw 5vw;
}
.lntelligent .f3 .titBox {
  color: #6eb92d;
}
.lntelligent .f3 .f3Swiper {
  width: 100%;
  padding: 4vw 0;
  overflow: hidden;
}
.lntelligent .f3 .f3Swiper .swiper-slide {
  background: white;
  border-radius: 0.7vw;
  overflow: hidden;
  transition: 0.3s all ease-in-out;
  border: 2px solid transparent;
}
.lntelligent .f3 .f3Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 16vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.lntelligent .f3 .f3Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  transition: 0.3s all ease-in-out;
  background-size: cover !important;
}
.lntelligent .f3 .f3Swiper .swiper-slide:hover {
  border: 2px solid #6eb92d;
}
.lntelligent .f3 .f3Swiper .swiper-slide:hover .imgBox .img {
  transform: scale(1.1);
}
.lntelligent .f3 .f3Swiper .swiper-pagination {
  top: inherit;
  bottom: 0;
}
.lntelligent .f3 .f3Swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #6eb92d;
}
.advantage {
  width: 100%;
}
.advantage .bg1 {
  width: 50vw;
  pointer-events: none;
  left: 0;
  position: absolute;
}
.advantage .f1 {
  width: 100%;
  padding: 7vw 5vw;
}
.advantage .f1 .titBox {
  color: #6eb92d;
}
.advantage .f1 .f1Swiper {
  width: 100%;
  padding: 4vw 0;
}
.advantage .f1 .f1Swiper .swiper-slide {
  width: 21vw;
  background: white;
  border-radius: 1vw;
  overflow: hidden;
  position: relative;
  transition: 0.3s all ease-in-out;
  border: 2px solid transparent;
}
.advantage .f1 .f1Swiper .swiper-slide .imgBox {
  width: 100%;
  height: 22vw;
  border-radius: 0.5vw;
  overflow: hidden;
}
.advantage .f1 .f1Swiper .swiper-slide .imgBox .img {
  width: 100%;
  height: 100%;
  transition: 0.3s all ease-in-out;
  background-size: cover !important;
}
.advantage .f1 .f1Swiper .swiper-slide .text {
  width: 100%;
  height: 5vw;
  bottom: 0;
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.8vw;
  padding: 1vw;
  line-height: 1.7;
  color: #333333;
  transition: 0.5s all ease-in-out;
}
.advantage .f1 .f1Swiper .swiper-slide .text .t {
  font-size: 1.2vw;
  font-family: Demibold;
  position: relative;
  text-align: center;
}
.advantage .f1 .f1Swiper .swiper-slide .text .name {
  font-size: 1vw;
  text-align: center;
}
.advantage .f1 .f1Swiper .swiper-slide .text .des {
  font-size: 0.85vw;
  line-height: 1.5;
  text-align: justify;
  margin-top: 1vw;
}
.advantage .f1 .f1Swiper .swiper-slide:hover {
  border: 2px solid #6eb92d;
}
.advantage .f1 .f1Swiper .swiper-slide:hover .imgBox .img {
  transform: scale(1.1);
}
.advantage .f1 .f1Swiper .swiper-slide:hover .text {
  height: 18vw;
}
.advantage .f1 .f1Swiper .swiper-pagination {
  top: inherit;
  bottom: 0;
}
.advantage .f1 .f1Swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #6eb92d;
}
.advantage .f1 .zjModal{
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,.5);
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: .1s all ease-in-out;
}
.advantage .f1 .zjModal.active{
  opacity: 1;
  pointer-events: all;
}
.advantage .f1 .zjModal .zjBox{
  width: 90%;
  height: auto;
  border: 1px solid #6eb92d;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding: 5vw;
  border-radius: 3vw;
  font-size: 16px;
  line-height: 1.7;
}
.advantage .f1 .zjModal .close{
  color: white;
  font-size: 26px;
  text-align: center;
  position: absolute;
  margin-top: -18vw;
  right: 0vw;
}
.advantage .f2 {
  width: 100%;
  padding: 0 5vw;
}
.advantage .f2 .itemBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 6vw;
}
.advantage .f2 .itemBox .titBox {
  color: #6eb92d;
  margin-top: 10vw;
}
.advantage .f2 .itemBox .imgBox {
  width: 60vw;
  height: 25vw;
  border-radius: 1vw;
  overflow: hidden;
}
.advantage .f2 .itemBox .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.advantage .f2 .itemBox .imgBox:hover .img {
  transform: scale(1.1);
}
.advantage .f3 {
  width: 100%;
  background: url('../images/bg7.jpg') center no-repeat;
  background-size: cover !important;
  padding: 4vw 5vw;
}
.advantage .f3 .titBox {
  color: #6eb92d;
}
.advantage .f3 .f3Box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2vw;
}
.advantage .f3 .f3Box .item {
  width: 43.5vw;
  height: auto;
  background-color: #ffffff;
  margin-top: 2vw;
  margin-right: 2vw;
  border-radius: 1vw;
  position: relative;
  box-shadow: 0vw 0.5vw 1vw 0.5vw rgba(0, 0, 0, 0.05);
  padding: 2vw;
  transition: 0.3s all ease-in-out;
  border: 2px solid transparent;
}
.advantage .f3 .f3Box .item .name {
  font-size: 0.9vw;
}
.advantage .f3 .f3Box .item .time {
  font-size: 0.9vw;
  font-family: Demibold;
  margin-top: 1vw;
}
.advantage .f3 .f3Box .item:nth-child(2n) {
  margin-right: 0;
}
.advantage .f3 .f3Box .item:hover {
  border: 2px solid #6eb92d;
}
.advantage .f4 {
  width: 100%;
  padding: 10vw 5vw;
}
.advantage .f4 .titBox {
  color: #6eb92d;
}
.advantage .f4 .f4Swiper {
  width: 100%;
  padding: 4vw 0;
}
.advantage .f4 .f4Swiper .swiper-slide {
  width: 13vw;
  height: 18vw;
  background-image: linear-gradient(90deg, #ffffff 0%, rgba(245, 250, 239, 0.8) 100%);
  border-radius: 1vw;
  overflow: hidden;
  position: relative;
  transition: 0.3s all ease-in-out;
  border: 2px solid transparent;
}
.advantage .f4 .f4Swiper .swiper-slide .icon {
  width: 7vw;
  margin: 3vw auto;
}
.advantage .f4 .f4Swiper .swiper-slide .text {
  width: 13vw;
  border-radius: 0.8vw;
  padding: 0 1vw;
  transition: 0.5s all ease-in-out;
}
.advantage .f4 .f4Swiper .swiper-slide .text .t {
  font-size: 1vw;
  font-family: Demibold;
  color: #6eb92d;
  line-height: 1.7;
  position: relative;
  text-align: center;
}
.advantage .f4 .f4Swiper .swiper-slide .text .bm {
  width: 12vw;
  position: absolute;
  bottom: 1vw;
}
.advantage .f4 .f4Swiper .swiper-slide .text .bm .des {
  font-size: 0.9vw;
  text-align: center;
  color: #999999;
}
.advantage .f4 .f4Swiper .swiper-slide:hover {
  border: 2px solid #6eb92d;
}
.advantage .f4 .f4Swiper .swiper-pagination {
  top: inherit;
  bottom: 0;
}
.advantage .f4 .f4Swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #6eb92d;
}
.news {
  width: 100%;
}
.news .f1 {
  width: 100%;
  padding: 7vw;
}
.news .f1 .bg {
  width: 50vw;
  position: absolute;
  pointer-events: none;
  left: 0;
}
.news .f1 .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: white;
  border-radius: 1vw;
  box-shadow: 0vw 0.5vw 1vw 0.5vw rgba(0, 0, 0, 0.05);
  margin-bottom: 4vw;
  transition: 0.3s all ease-in-out;
  padding: 1vw 3vw 1vw 1vw;
  border: 2px solid transparent;
}
.news .f1 .item .imgBox {
  width: 25vw;
  height: 15vw;
  overflow: hidden;
  border-radius: 1vw;
}
.news .f1 .item .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.news .f1 .item .textBox {
  width: 42vw;
  padding-top: 1vw;
}
.news .f1 .item .textBox .name {
  color: #333333;
  font-size: 1.2vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news .f1 .item .textBox .time {
  color: #999999;
  font-size: 0.9vw;
  margin: 1vw 0 2vw 0;
}
.news .f1 .item .textBox .des {
  font-size: 1vw;
  line-height: 2;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news .f1 .item .mores {
  width: 5vw;
  height: 5vw;
  margin-top: 5vw;
  transition: 0.5s all ease-in-out;
  color: white;
  font-size: 0.9vw;
  text-align: center;
  line-height: 2.5vw;
  justify-content: center;
  background-color: #6eb92d;
  transition: 0.3s all ease;
  box-shadow: 0vw 1vw 1vw 0vw rgba(110, 185, 45, 0.45);
  border-radius: 0.5vw;
}
.news .f1 .item .mores .icons {
  width: 2vw;
  height: 2vw;
  position: relative;
  transition: 0.3s all ease;
  overflow: hidden;
  margin: 0.5vw auto 0 auto;
}
.news .f1 .item .mores .icons .em {
  display: flex;
  position: absolute;
  margin-left: 0.2vw;
}
.news .f1 .item .mores .icons .em i {
  position: absolute;
  font-size: 1.5vw;
  transition: 0.3s all ease;
}
.news .f1 .item .mores .icons .em i:nth-child(2) {
  margin-left: -2vw;
}
.news .f1 .item .mores:hover .icons {
  color: white;
}
@keyframes arrAni {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.news .f1 .item .mores:hover .icons .em {
  animation: arrAni 0.5s 0.1s both;
  animation-iteration-count: infinite;
}
.news .f1 .item:last-child {
  margin-bottom: 0;
}
.news .f1 .item:hover {
  border: 2px solid #6eb92d;
}
.news .f1 .item:hover .imgBox .img {
  transform: scale(1.1);
}
.join {
  width: 100%;
}
.join .bg {
  width: 50vw;
  pointer-events: none;
  left: 0;
  position: absolute;
}
.join .f1 {
  width: 100%;
  padding: 6vw 5vw;
  display: flex;
  justify-content: space-between;
}
.join .f1 .titBox {
  color: #6eb92d;
}
.join .f1 .textBox {
  width: 50vw;
  color: #333333;
}
.join .f1 .textBox .t {
  font-size: 2.5vw;
}
.join .f1 .textBox .d {
  font-size: 1vw;
  line-height: 2;
  margin-top: 3vw;
}
.join .f2 {
  width: 100%;
  padding: 5vw 5vw 10vw 5vw;
}
.join .f2 .titBox {
  color: #6eb92d;
}
.join .f2 .f2Box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2vw;
}
.join .f2 .f2Box .item {
  width: 43.5vw;
  height: auto;
  background: white;
  position: relative;
  border-radius: 1vw;
  box-shadow: 0vw 0.5vw 1vw 0.5vw rgba(0, 0, 0, 0.05);
  margin-top: 3vw;
  margin-right: 2vw;
  padding: 2vw;
}
.join .f2 .f2Box .item .tits {
  display: flex;
}
.join .f2 .f2Box .item .tits .icon {
  width: 5vw;
  height: 5vw;
}
.join .f2 .f2Box .item .tits .icon img {
  width: 100%;
}
.join .f2 .f2Box .item .tits .text {
  margin: 0.4vw 1vw;
}
.join .f2 .f2Box .item .tits .text .t {
  color: #333333;
  font-size: 1.2vw;
  font-family: Demibold;
}
.join .f2 .f2Box .item .tits .text .d {
  font-size: 1vw;
  margin-top: 0.5vw;
}
.join .f2 .f2Box .item .more {
  position: absolute;
  right: 2vw;
  top: 2vw;
}
.join .f2 .f2Box .item .des {
  color: #333333;
  font-size: 0.9vw;
  line-height: 2;
  text-align: justify;
  margin: 1vw 0;
  padding-top: 1vw;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.join .f2 .f2Box .item:nth-child(2n) {
  margin-right: 0;
}
.newDetail{
  width: 100%;
  padding: 5vw;
}
.newDetail .title{
  font-size: 1.5vw;
  font-weight: bold;
}
.newDetail .date{
  font-size: 1vw;
  margin: 2vw 0;
}
.newDetail .singePage{
  font-size: 1vw;
  line-height: 2;
  text-align: justify;
}
.newDetail .singePage p{
  text-indent: 2.1vw !important;
}
.newDetail .singePage table p{
  text-indent: 0 !important;
}
.searchContent{
  margin-bottom: 30px;
  border-bottom: 1px solid #0695df;
  padding-bottom: 20px;
  line-height:1.8;
  font-size: 18px;
}
.noData{
  display: none;
  font-size: 18px;
}
.noData.active{
  display: block;
}
.serachpage.newsText ul li a{
  justify-content:flex-start;
  font-size: 20px;
}

.serachpage.newsText ul li a .name{
  margin-left: 10px;
}

.serachpage.newsText ul li a .tt{
  color: #6eb92d;
}

.serachpage.newsText ul li:hover a .tt{
  color: #fff;
}
.advantage .f1 .f1Swiper .swiper-slide .text .detail{
  display: none;
}
.pc {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  .index .f1{
    height: 60vw;
  }
  .index .f1 .videoBoxs{
    height: 60vw;
  }
  .index .f1 .videoText{
    font-size: 6vw;
    margin-top: 23vw;
    margin-left: 5vw;
  }
  .index .f1 .shubiao{
    font-size: 16px;
    left: 48vw;
  }
  .index .f2{
    padding: 0;
    height: auto;
  }
  .index .f2 .f2Box{
    height: 100%;
    background: url('../images/videoImg2.jpg') center no-repeat;
    background-size: cover !important;
    border-radius: 0;
  }
  .index .f2 .f2Box .videos{
    height: 94vh;
  }
  .titBox{
    font-size: 7vw;
  }
  .titBox img {
    width: 4vw;
    height: 6.5vw;
    margin: 1.8vw 1.5vw 0.5vw 0;
  }
  .index .f2 .f2Box .f2Text{
    position: relative;
  }
  .index .f2 .f2Box .f2Text .titBox{
    justify-content: center;
  }
  .index .f2 .f2Box .f2Text .textBox{
    width: 100%;
    padding: 10vw 5vw;
  }
  .index .f2 .f2Box .f2Text .textBox .text .t{
    font-size: 5vw;
    line-height: 1.5;
  }
  .index .f2 .f2Box .f2Text .textBox .text .d{
    font-size: 14px;
    margin-top: 3vw;
  }
  .index .f2 .f2Box .f2Text .textBox .more{
    margin-top: 5vw;
  }
  .index .f2 .f2Box .f2Text .f2Img{
    width: 80vw;
    position: relative;
    top: inherit;
    bottom: inherit;
    right: inherit;
    margin: 0 auto 10vw auto;
  }
  .more{
    width: 22vw;
    height: 7.5vw;
    font-size: 14px;
    padding-left: 0;
    line-height: 7.5vw;
  }
  .more .icon{
    width: 4vw;
    margin-left: 2vw;
  }
  .more .icon .em i{
    font-size: 14px;
  }
  .more .icon .em i:nth-child(2) {
    display: none;
  }
  .index .f3{
    height: 125vw;
    padding: 10vw 5vw;
  }
  .index .f3 .more{
    position: absolute;
    right: 5vw;
    top: 10vw;
  }
  .index .f3 .f3Swiper{
    bottom: 5vw;
  }
  .index .f3 .f3Swiper .swiper-slide{
    transform: translateY(0);
    margin-right: 5vw;
  }
  .index .f3 .f3Swiper .swiper-slide .item{
    height: auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 4vw 0;
    /*background: rgba(255, 255, 255, 0.9);*/
    /*color: #272727;*/
  }
  .index .f3 .f3Swiper .swiper-slide .item .name{
    width: 100%;
    font-size: 16px;
    text-align: center;
    margin-top: 2.5vw;
  }
  .index .f3 .f3Swiper .swiper-slide .item .des{
    display: none;
  }
  .index .f3 .f3Swiper .swiper-slide .item .icon{
    width: 10vw;
    transform: translateX(0);
    position: relative;
    left: inherit;
    right: inherit;
    top: inherit;
    margin-right: .2vw;
    display: flex;
    flex-wrap: wrap;
  }
  .index .f3 .f3Swiper .swiper-slide .item .mores{
    display: none;
  }
  .index .f4{
    padding: 10vw 5vw;
  }
  .index .f4 .f4Box{
    display: block;
  }
  .index .f4 .f4Box .item{
    height: 80vw;
    margin-right: 0;
    margin-top: 5vw;
  }
  .index .f4 .f4Box .item .textBox{
    height: auto;
    padding: 5vw;
    background: rgba(255, 255, 255, 0.7);
  }
  .index .f4 .f4Box .item .textBox .t{
    font-size: 16px;
    text-align: left;
    color: #666666;
  }
  .index .f4 .f4Box .item .textBox .des{
    display: block;
    font-size: 14px;
    margin: 3vw 0;
  }
  .index .f4 .f4Box .item .textBox .more{
    display: flex;
  }
  .index .f4 .f4Box .item:hover .textBox{
    height: auto;
  }
  .index .new{
    padding: 10vw 5vw;
  }
  .index .new .more{
    top: 10vw;
  }
  .index .new .newSwiper .swiper-slide .imgBox{
    height: 50vw;
  }
  .index .new .newSwiper .swiper-slide .text{
    padding: 5vw;
  }
  .index .new .newSwiper .swiper-slide .text .t{
    height: auto;
    font-size: 16px;
  }
  .index .new .newSwiper .swiper-slide .text .time{
    font-size: 14px;
    margin-top: 3vw;
  }
  .index .f5{
    height: 100vw;
    position: relative;
  }
  .index .f5 .videoBoxs{
    height: 100vw;
  }
  .index .f5 .f5Text{
    width: 140%;
    top: 23%;
  }
  .index .f5 .play{
    position: absolute;
    top: 84%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #6eb92d;
    font-size: 52px;
    z-index: 1;
  }
  footer{
    padding: 8vw 5vw;
  }
  footer .footer{
    display: block;
  }
  footer .footer .left{
    width: 100%;
  }
  footer .footer .right{
    display: none;
  }
  footer .footer .left .logo{
    width: 30vw;
  }
  footer .footer .left .serachBox{
    display: none;
  }
  footer .footer .left .text{
    font-size: 14px;
    margin-top: 3vw;
  }
  footer .footerInfo{
    display: block;
    font-size: 12px;
  }
  .sp_header {

    height: 50px;

    overflow: hidden;

    background: #fff;

    position: fixed;

    z-index: 999;

    width: 100%;

    top: 0

  }

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

  .sp_logo img {

    margin: auto;

    width: 115px;

    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: #6eb92d;

    width: 30px;

    height: 2px;

    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
  }
  .sjj_nav .lan{
    padding-left: 5vw;
    display: block;
    font-size: 16px;
  }
  .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: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 a {

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

    width: 80%;

    display: block;

    font-size: 16px;

    padding-left: 25px;

  }
  .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: #e31e4d;

  }

  .sjj_nav ul li .sjj_nav_i_se svg {

    fill: #e31e4d;

  }

  .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: #6eb92d;
  }
  .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;
  }
  .bannerBox{
    height: 50vw;
  }
  .bannerBox .text{
    font-size: 7vw;
    top: 36vw;
  }
  .about .f1{
    padding: 10vw 5vw;
    display: block;
  }
  .about .f1 .textBox{
    width: 100%;
    margin-top: 5vw;
  }
  .about .f1 .textBox .t{
    font-size: 16px;
  }
  .about .f1 .textBox .des{
    font-size: 14px;
  }
  .about .f2 .f2Box{
    display: block;
  }
  .about .f2 .f2Box .item{
    width: 100%;
    height: 45vw;
    margin-bottom: 5vw;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.8);
  }
  .about .f2 .f2Box .item::before{
    border-color: transparent;
  }
  .about .f2 .f2Box .item:last-child{
    margin-bottom: 0;
  }
  .about .f2 .f2Box .item .t{
    font-size: 18px;
    margin-top: 0;
    padding-top: 10vw;
    color: #333333;
  }
  .about .f2 .f2Box .item .d{
    font-size: 14px;
    color: #6eb92d;
  }
  .about .f2 .f2Box .item .en{
    font-size: 14px;
    bottom: -3.5vw;
    color: #002717;
    transform: scale(1) translateY(calc(-100% - 2vw));
  }
  .about .f3{
    padding: 10vw 5vw;
  }
  .about .f3 .f3Box .f3Swiper .swiper-slide .year{
    font-size: 20px;
  }
  .about .f3 .f3Box .f3Swiper .swiper-slide .des{
    font-size: 14px;
    margin-top: 6vw;
    padding: 0 7vw;
  }
  .about .f3 .f3Box{
    height: auto;
    border-radius: 3vw;
  }
  .about .f3 .f3Box .f3Swiper::before{
    height: 2px;
    margin-top: 8.5vw;
  }
  .about .f3 .f3Box .f3Swiper .swiper-slide::before{
    margin-top: 9vw;
  }
  .about .f3 .f3Box .swiper-button-next{
    right: 1vw;
    font-size: 28px;
  }
  .about .f3 .f3Box .swiper-button-prev{
    left: 1vw;
    font-size: 28px;
  }
  .about .f4{
    height: auto;
    background: #f7f7f7;
    padding: 10vw 5vw;
  }
  .about .f4 .f4Box{
    width: 100%;
    padding: 5vw;
  }
  .about .f4 .f4Box .item .t{
    font-size: 16px;
  }
  .about .f4 .f4Box .item .it{
    font-size: 14px;
  }
  .map{
    width: 100%;
    margin-top: 5vw;
  }
  .product .f1{
    padding: 10vw 5vw;
  }
  .product .f1 .itemBox .item{
    height: 70vh;
    padding: 5vw;
  }
  .product .f1 .itemBox .textBox{
    width: 90%;
    height: auto;
    left: 5vw;
    bottom: 5vw;
    top: inherit;
    padding: 5vw;
  }
  .productDetail .f1 .itemBox .item .feature .its .it.tabs p{
    font-size: 14px;
    padding: 0.5vw 2vw;
    margin-top: 2vw;
    margin-right: 2vw;
  }
  .product .f1 .itemBox .textBox .btnBox{
    position: relative;
    bottom: 0;
    margin-top: 3vw;
  }
  .product .f1 .itemBox .textBox .des{
    font-size: 14px;
  }
  .product .f1 .itemBox .textBox .btnBox .more{
    padding: 0 2vw;
    margin-right: 3vw;
  }
  .product .f1 .itemBox .en{
    left: 5vw;
    right: inherit;
    bottom: inherit;
    top: 5vw;
    font-size: 12px;
  }
  .product .f1 .itemBox .num{
    font-size: 50px;
    right: 5vw;
    top: 0;
  }
  .productDetail .textBox .numBox .en{
    font-size: 12px;
    display: none;
  }
  .productDetail .textBox .text .des{
    font-size: 14px;
    margin-top: 5vw;
  }
  .productDetail .textBox .text{
    width: 100%;
  }
  .productDetail .textBox .numBox {
    margin-top: -1vw;
    position: absolute;
    right: 5vw;
  }
  .productDetail .f1 .tit{
    font-size: 18px;
  }
  .productDetail .f1 .itemBox .item{
    width: 100%;
    margin-right: 0;
    margin-top: 5vw;
    padding: 5vw;
  }
  .productDetail .f1 .itemBox .item .consult{
    width: auto;
    height: auto;
    line-height: inherit;
    font-size: 14px;
    padding: 2vw;
    right: 5vw;
    margin-top: 0;
  }
  .productDetail .f1 .itemBox .item .tits .text{
    margin: .5vw 3vw;
  }
  .productDetail .f1 .itemBox .item .tits .text .t{
    font-size: 14px;
  }
  .productDetail .f1 .itemBox .item .tits .text .d{
    font-size: 14px;
  }
  .productDetail .f1 .itemBox .item .tits .icon{
    width: 12vw;
    height: 12vw;
  }
  .productDetail .f1 .itemBox .item .des{
    font-size: 14px;
    margin: 3vw 0;
  }
  .productDetail .f1 .itemBox .item .feature{
    padding-top: 3vw;
  }
  .productDetail .f1 .itemBox .item .feature .t{
    font-size: 16px;
  }
  .productDetail .f1 .itemBox .item .feature .its{
    padding-left: 0;
  }
  .productDetail .f1 .itemBox .item .feature .its .it{
    font-size: 14px;
    padding-left: 3vw;
  }
  .productDetail .f1 .itemBox .item .feature .its .it::before{
    content: inherit;
  }
  .productDetail .f1 .itemBox .item .feature .its .it p::before {
    width: 1vw;
    height: 1vw;
    left: -2.5vw;
    top: 3.5vw;
  }
  .lntelligent .f1{
    padding: 10vw 5vw;
  }
  .lntelligent .f1 .textBox{
    width: 90vw;
    height: 90vw;
    padding: 40vw 22vw;
  }
  .lntelligent .f1 .textBox .des{
    width: 100%;
    font-size: 14px;
    margin-top: 2vw;
  }
  .lntelligent .f1 .itemBox .item .t{
    font-size: 14px;
  }
  .lntelligent .f1 .itemBox .item .e{
    font-size: 10px;
  }
  .lntelligent .f1 .itemBox .item{
    width: 17vw;
    height: 17vw;
    padding-top: 4.5vw;
  }
  .lntelligent .f1 .itemBox .item::before{
    width: 22vw;
    height: 22vw;
    left: -2.5vw;
    top: -2.5vw;
  }
  .lntelligent .f1 .itemBox .item1 {
    left: 17vw;
    top: 9vw;
  }
  .lntelligent .f1 .itemBox .item2 {
    right: 17vw;
    top: 9vw;
  }
  .lntelligent .f1 .itemBox .item3 {
    left: 4vw;
    top: 46vw;
  }
  .lntelligent .f1 .itemBox .item4 {
    right: 4vw;
    top: 46vw;
  }
  .lntelligent .f1 .itemBox .item5 {
    left: 17vw;
    top: 83vw;
  }
  .lntelligent .f1 .itemBox .item6 {
    right: 17vw;
    top: 83vw;
  }
  .lntelligent .f2{
    padding: 10vw 5vw;
  }
  .lntelligent .f2 .f2Swiper .swiper-slide .img{
    height: 80vw;
  }
  .lntelligent .f3{
    padding: 10vw 5vw;
  }
  .lntelligent .f3 .f3Swiper .swiper-slide .imgBox{
    height: 50vw;
  }
  .advantage .f1{
    padding: 10vw 5vw;
  }
  .advantage .f1 .f1Swiper .swiper-wrapper{
    flex-wrap: wrap;
  }
  .advantage .f1 .f1Swiper .swiper-slide{
    width: 47.5% !important;
    display: block;
    margin-right: 5%;
    border-radius: 3vw;
    margin-top: 5vw;
    border: 1px solid #6eb92d;
}
  .advantage .f1 .f1Swiper .swiper-slide:first-child{
    margin-left: 25%;
  }
  .advantage .f1 .f1Swiper .swiper-slide:nth-child(2n + 1) {
    margin-right: 0;
  }
.advantage .f1 .f1Swiper .swiper-slide .imgBox{
  height: 50vw;
}
.advantage .f1 .f1Swiper .swiper-slide .text{
  height: auto;
  position: relative;
  bottom: inherit;
  background: rgba(0,0,0,.05);
  padding: 2vw 0 0 0;
  line-height: 1.4;
}
.advantage .f1 .f1Swiper .swiper-slide .text .t{
font-size: 16px;
}
.advantage .f1 .f1Swiper .swiper-slide .text .name{
font-size: 18px;
}
.advantage .f1 .f1Swiper .swiper-slide .text .des{
  display: none;
}
  .advantage .f1 .f1Swiper .swiper-slide:hover{
    border: 1px solid #6eb92d;
  }
  .advantage .f1 .f1Swiper .swiper-slide:hover .imgBox .img{
    transform: scale(1);
  }
  .advantage .f1 .f1Swiper .swiper-slide:hover .text{
    height: auto;
  }
  .advantage .f1 .f1Swiper .swiper-slide .text .detail{
    text-align: center;
    font-size: 14px;
    display: block;
    opacity: .5;
  }
.advantage .f2 .itemBox{
display: block;
}
.advantage .f2 .itemBox .titBox{
margin-top: 0;
}
.advantage .f2 .itemBox .imgBox{
width: 100%;
height: 37vw;
margin-top: 5vw;
}
.advantage .f3{
padding: 10vw 5vw;
}
.advantage .f3 .f3Box .item{
width: 100%;
height: auto;
margin-top: 5vw;
margin-right: 0;
padding: 5vw;
}
.advantage .f3 .f3Box .item .name{
font-size: 14px;
}
.advantage .f3 .f3Box .item .time{
font-size: 14px;
margin-top: 2vw;
position: relative;
bottom: inherit;
}
.advantage .f4 .f4Swiper .swiper-slide{
height: auto;
}
.advantage .f4 .f4Swiper .swiper-slide .icon{
width: 15vw;
}
.advantage .f4 .f4Swiper .swiper-slide .text{
width: 100%;
}
.advantage .f4 .f4Swiper .swiper-slide .text .t{
font-size: 14px;
}
.advantage .f4 .f4Swiper .swiper-slide .text .bm{
width: 100%;
position: relative;
bottom: inherit;
}
.advantage .f4 .f4Swiper .swiper-slide .text .bm .des{
font-size: 14px;
}
.news .f1{
padding: 10vw 5vw;
}
.news .f1 .item{
display: block;
margin-bottom: 5vw;
padding: 0;
}
.news .f1 .item .imgBox{
width: 100%;
height: 50vw;
}
.news .f1 .item .textBox{
width: 100%;
padding: 5vw;
}
.news .f1 .item .textBox .name{
font-size: 16px;
}
.news .f1 .item .textBox .time{
font-size: 14px;
}
.news .f1 .item .textBox .des{
display: none;
}
.news .f1 .item .mores{
display: none;
}
.join .f1{
padding: 10vw 5vw;
display: block;
}
.join .f1 .textBox{
width: 100%;
margin-top: 3vw;
}
.join .f1 .textBox .t{
font-size: 16px;
}
.join .f1 .textBox .d{
font-size: 14px;
}
.join .f2{
padding: 0 5vw 10vw 5vw;
}
.join .f2 .f2Box .item{
width: 100%;
margin-right: 0;
margin-top: 5vw;
padding: 5vw;
}
.join .f2 .f2Box .item .more{
width: 25vw;
}
.join .f2 .f2Box .item .tits .text{
margin: 0;
}
.join .f2 .f2Box .item .tits .text .t{
font-size: 16px;
}
.join .f2 .f2Box .item .tits .text .d{
font-size: 14px;
}
.join .f2 .f2Box .item .tits .icon{
display: none;
}
.join .f2 .f2Box .item .des{
font-size: 14px;
margin: 3vw 0;
padding-top: 3vw;
}
.de_pate .w1400{
width: 100%;
}
.newDetail .title{
font-size: 18px;
}
.newDetail .date{
font-size: 14px;
margin: 5vw 0;
}
.newDetail .singePage{
font-size: 14px;
}
.ndc_npnews{
display: block;
}
.ndc_npnews .post_next, .ndc_npnews .post_prev{
width: 100%;
  font-size: 14px;
}
.serachpage.newsText ul li a{
font-size: 14px;
display: block;
}
.serachpage.newsText ul li a .name{
margin-left: 0;
margin-top: 10px;
}
.product .f1 .itemBox:hover .item{
transform: scale(1);
}
  .index .f1{
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .index .f1 .videoBoxs{
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  .progress-bar{
    display: none;
  }
  .index .f4 .f4Box .item:hover .textBox{
    height: auto;
  }
  .productDetail .form{
    padding: 10vw 5vw;
    margin-top: 10vw;
  }
  .productDetail .form .text .t{
    font-size: 18px;
  }
  .productDetail .form .text .d{
    font-size: 14px;
  }
  .productDetail .form .inputBox .inputItem{
    width: 100%;
    height: auto;
    margin-right: 0;
    line-height: 8vw;
    font-size: 14px;
    padding: 3vw;
    margin-bottom: 3vw;
  }
  .productDetail .form .inputBox .inputItem input{
    width: 75%;
    margin-left: 5%;
    font-size: 14px;
  }
  .productDetail .form .textareaBox{
    width: 100%;
    height: 30vw;
  }
  .productDetail .form .textareaBox textarea{
    padding: 3vw;
    font-size: 14px;
  }
  .productDetail .submit{
    width: auto;
    height: auto;
    line-height: inherit;
    font-size: 14px;
    padding: 2vw;
    margin: 5vw auto 0 auto;
  }
  .advantage .f2{
    padding: 0 5vw 5vw 5vw;
  }
  .newDetail .singePage p{
    text-indent: 0 !important;
  }
  .newDetail .singePage table{
    overflow-x: scroll !important;
  }
  .newDetail .singePage table tbody{
    width: 100% !important;
    overflow-x: scroll !important;
  }
  .newDetail .singePage table span{
    font-size: 12px !important;
  }
  .newDetail .singePage table strong span{
    font-size: 14px !important;
  }
}
