@font-face {
  font-family: 'iconfont';  /* Project id 4512330 */
  src: url('//at.alicdn.com/t/c/font_4512330_o6sy0p5lijm.woff2?t=1715657708208') format('woff2'),
  url('//at.alicdn.com/t/c/font_4512330_o6sy0p5lijm.woff?t=1715657708208') format('woff'),
  url('//at.alicdn.com/t/c/font_4512330_o6sy0p5lijm.ttf?t=1715657708208') format('truetype');
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
@font-face {
  font-family: Regular;
  /*src: url('https://website-ishutime.oss-cn-chengdu.aliyuncs.com/font/SourceHanSansCN-Regular-2.otf');*/
}
html,
body {
  font-family: 'Regular';
  color: #272727;
}
body.active {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
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: #1670b0;
  /* 滑块背景颜色 */
  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;
}
.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;
  padding: 1vw 5vw;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  transition: 1s ease-in-out;
}
header .logo {
  width: 15vw;
  transition: 0.5s ease-in-out;
}
header .logo img:nth-child(1) {
  display: block;
}
header .logo img:nth-child(2) {
  display: none;
}
header .right {
  display: flex;
  transition: 0.5s ease-in-out;
}
header .right nav {
  margin-top: 0.4vw;
}
header .right nav ul {
  display: flex;
}
header .right nav ul li {
  /*width: 5vw;*/
  text-align: center;
  margin-right: 4vw;
}
header .right nav ul li a::before{
  width: 0;
  margin-left: 2%;
  position: absolute;
  content: '';
  margin-top: 1.5vw;
  background: #fff;
  transition: all 0.35s;
  height: 2px;
  border-radius: 5px;
}
header .right nav ul li a:hover::before{
  width: 2%;
  margin-left: 1%;
}
header .right nav ul li:nth-child(1) a::before{
  width: 0;
  margin-left: 1%;
  position: absolute;
  content: '';
  margin-top: 1.5vw;
  background: #fff;
  transition: all 0.35s;
  height: 2px;
  border-radius: 5px;
}
header .right nav ul li:nth-child(1) a:hover::before{
  width: 1%;
  margin-left: 0.5%;
}
header .right nav ul li a {
  color: white;
  font-size: 1vw;
  transition: 0.3s ease-in-out;
  display: block;
}
header .right nav ul .serach {
  color: white;
  font-size: 1.5vw;
  position: relative;
  top: -0.3vw;
  cursor: pointer;
}
header .phone {
  width: 12vw;
  display: inline-block;
  color: white;
}
header .phone img {
  width: 2vw;
  display: inline-block;
  float: left;
  margin-right: 0.5vw;
}
header .phone .text {
  display: inline-block;
  margin-top: -.4vw;
  color: white;
}
header .phone .text .t {
  font-size: 0.8vw;
}
header .phone .text .phones {
  font-weight: bold;
  font-size: 1.2vw;

}
.serachBox {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  left: 0;
  position: fixed;
  top: 0;
  transform: translateY(-100vh);
  transition: 0.5s all ease-in-out;
  z-index: 9999;
}
.serachBox .close {
  color: white;
  font-size: 2vw;
  position: absolute;
  right: 3vw;
  top: 1vw;
  cursor: pointer;
}
.serachBox .serachs {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  color: white;
  font-size: 2vw;
  cursor: pointer;
}
.serachBox .serachs input {
  width: 30vw;
  font-size: 1.5vw;
  background: transparent;
  border: transparent;
  border-bottom: 1px solid white;
  outline: none;
  color: white;
}
.serachBox.active {
  transform: translateY(0);
}
header.active {
  padding: 0.5vw 5vw;
  background: rgba(0, 0, 0, 0.6);
}
header.active .logo img:nth-child(2) {
  display: block;
}
header.active .logo img:nth-child(1) {
  display: none;
}
header.active .right {
  margin-top: 0.3vw;
}
header.active .phone {
  margin-top: 0.3vw;
}
#menu {
  position: fixed;
  right: 3vw;
  z-index: 999;
}
#menu .meua {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 1.8vw;
}
#menu a {
  width: 3vw;
  height: 2vw;
  opacity: 1;
  background: none;
  margin: 1.5vw 0px;
  position: relative;
  cursor: pointer;
  display: block;
  text-indent: 100px;
  transition: 0.3s all ease-in-out;
}
#menu a P {
  width: 15vw;
  position: absolute;
  color: white;
  margin-left: -14.5vw;
  text-align: right;
  margin-top: 0.8vw;
  pointer-events: none;
  transition: 0.3s all ease-in-out;
  font-size: 0.75vw;
  transform: translateX(3vw);
  opacity: 0;
}
#menu a::before {
  content: "";
  width: 0.5vw;
  height: 0.5vw;
  border: 2px solid white;
  background: #1b63a7;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transition: 0.5s all ease-in-out;
}
#menu a.active {
  background: url('../images/logo3.png') center no-repeat;
  background-size: contain !important;
  left: 0.3vw;
  transition: 3s all ease-in-out;
}
#menu a.active::before {
  content: inherit;
  position: absolute;
}
#menu a:hover {
  transform: scale(1.2);
  margin-left: -0.1vw;
}
#menu a:hover p {
  transform: translateX(0);
  opacity: 1;
}
#menu a.active:hover {
  transform: scale(1.2);
  margin-left: -0.1vw;
}
#menu a.active:hover p {
  transform: translateX(0);
  opacity: 0;
}
#menu::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100vh;
  margin-left: 0.05vw;
  background: rgba(255, 255, 255, 0.5);
}
#menu.active::before {
  background: rgba(27, 99, 167, 0.3);
}
#menu.active a::before {
  content: "";
  width: 0.5vw;
  height: 0.5vw;
  border: 2px solid #1b63a7;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transition: all 0.5s;
}
#menu.active a.active::before {
  content: inherit;
  position: absolute;
}
.footer {
  width: 100%;
  height: auto;
  background-image: linear-gradient(269deg, #58aa66 0%, #175da3 100%), linear-gradient(#1b63a7, #1b63a7);
  background-blend-mode: normal, 
		normal;
}
.footer #form {
  display: inline-block;
  padding: 2vw 6vw;
}
.footer #form .text {
  color: white;
  display: inline-block;
  float: left;
}
.footer #form .text .t {
  font-size: 1.5vw;
}
.footer #form .text .des {
  font-size: 0.9vw;
  margin-top: 0.5vw;
}
.footer #form .inputItem {
  display: inline-block;
  float: left;
  margin-left: 5vw;
  margin-top: 0.5vw;
}
.footer #form .inputItem{
  display: flex;
}
.footer #form .inputItem .inputs{
  display: block;
}
.footer #form .inputItem .inputBox {
  width: 22vw;
  background-color: #ffffff;
  font-size: 0.9vw;
  padding: 0.5vw 1vw;
  margin-right: 2vw;
  margin-bottom: 1vw;
}
.footer #form .inputItem .inputBox .name {
  display: inline-block;
  float: left;
}
.footer #form .inputItem .inputBox input {
  width: 60%;
  border: transparent;
  background: transparent;
  display: inline-block;
  outline: none;
  margin-left: 1vw;
  border-left: 1px solid #959595;
  padding-left: 1vw;
  font-size: 0.8vw;
}
.footer #form .inputItem .inputBox input::placeholder {
  opacity: 0.5;
}
.footer #form .inputItem .textarea{
  width: 24vw;
  height: 5.7vw;
}
.footer #form .inputItem .textarea textarea{
  width: 100%;
  height: 100%;
  border: transparent;
  background: white;
  outline: none;
  padding: 1vw;
  font-size: 0.8vw;
}
.footer #form .inputItem .subimt {
  width: 8vw;
  height: 2vw;
  line-height: 2vw;
  background-color: #ffffff;
  color: #424242;
  text-align: center;
  font-size: 1vw;
  display: inline-block;
  cursor: pointer;
  margin-left: 1vw;
  transition: 0.5s all ease-in-out;
}
.footer #form .inputItem .subimt:hover {
  border-radius: 3vw;
}
.footer .footerBox {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 3vw 6vw 2vw 6vw;
  display: flex;
  justify-content: space-between;
}
.footer .footerBox .text .logo {
  width: 15vw;
}
.footer .footerBox .text .phone {
  color: #ffffff;
  margin-top: 1vw;
}
.footer .footerBox .text .phone .name {
  opacity: 0.7;
  font-size: 0.9vw;
}
.footer .footerBox .text .phone .p {
  font-size: 2vw;
  font-weight: bold;
}
.footer .footerBox .text .tex {
  font-size: 0.9vw;
  color: white;
  margin-top: 1vw;
  line-height: 1.7;
}
.footer .footerBox .footerNav ul {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.footer .footerBox .footerNav ul .level1 {
  margin-right: 6vw;
}
.footer .footerBox .footerNav ul .level1 a {
  font-size: 0.9vw;
  color: #ffffff;
  font-weight: bold;
}
.footer .footerBox .footerNav ul .level1 ul {
  display: block;
  margin-top: 1vw;
}
.footer .footerBox .footerNav ul .level1 ul li {
  margin-bottom: 0.5vw;
  text-align: center;
}
.footer .footerBox .footerNav ul .level1 ul li a {
  font-size: 0.8vw;
  color: #ffffff;
  opacity: 0.7;
  font-weight: normal;
}
.footer .footerBox .footerNav ul .level1 ul li:hover a {
  border-bottom: 1px solid #ffffff;
}
.footer .footerBox .footerNav ul .level1:last-child {
  width: 5vw;
  margin-right: 0;
}
.footer .footerBox .qrcodeBox {
  width: 5vw;
  font-size: 0.8vw;
  color: white;
  text-align: center;
}
.footer .footerBox .qrcodeBox .qrcode {
  margin-bottom: 1vw;
}
.footer .footerBox .qrcodeBox .qrcode p {
  margin-top: 0.2vw;
}
.footer .footerInfo {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: white;
  opacity: 0.5;
  padding: 2vw 6vw;
}
.footer .footerInfo a {
  color: white;
}
.bannerBox {
  width: 100%;
  height: 18vw;
  background-size: cover !important;
}
.tabBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 6vw;
  border-bottom: 1px solid #d5d5d5;
}
.tabBox .tabs {
  font-size: .9vw;
}
.tabBox .tabs .tab {
  display: inline-block;
  margin-right: 3vw;
  padding: 1vw 0;
  cursor: pointer;
}
.tabBox .tabs .active {
  color: #1a62a6;
  border-bottom: 2px solid #1a62a6;
}
.tabBox .tabs .tab:hover {
  color: #1a62a6;
  border-bottom: 2px solid #1a62a6;
}
.tabBox .links {
  padding: 1vw 0;
  font-size: 0.85vw;
}
.tabBox .links i {
  margin-right: 0.5vw;
}
.tabBox .links a:hover {
  color: #1a62a6;
}
.index {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  /*scroll*/
}
.index .homeSwiper {
  width: 100%;
  height: 100vh;
}
.index .homeSwiper .swiper-slide {
  width: 100%;
  overflow: hidden;
}
.index .homeSwiper .swiper-slide:last-child {
  height: auto;
}
.index .homeSwiper .f1 .hua {
  width: 3vw;
  position: absolute;
  bottom: 2vw;
  left: 48.2vw;
  z-index: 9;
  -webkit-animation: upAnimate 2s ease infinite;
}
@-webkit-keyframes upAnimate {
  0%,
  100% {
    -webkit-transform: translateY(-4px);
  }
  50% {
    -webkit-transform: translateY(4px);
  }
}
.index .homeSwiper .f1 .bannerSwiper {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.index .homeSwiper .f1 .bannerSwiper .swiper-slide {
  width: 100%;
  overflow: hidden;
}
.index .homeSwiper .f1 .bannerSwiper .swiper-slide .img {
  width: 100%;
  height: 100vh;
  background-size: cover !important;
  padding-top: 20vw;
  transition: 3s;
  transform: scale(1.15);
}
.index .homeSwiper .f1 .bannerSwiper .swiper-slide .img .text {
  width: 37vw;
  margin-left: 6vw;
}
.index .homeSwiper .f1 .bannerSwiper .swiper-slide-active .img {
  transform: scale(1);
}
.index .homeSwiper .f1 .bannerSwiper .swiper-pagination {
  left: 6vw;
  width: auto;
  text-align: inherit;
  bottom: 4vw;
}
.index .homeSwiper .f1 .bannerSwiper .swiper-pagination-bullet {
  width: 3vw;
  height: 5px;
  border-radius: 0;
  background-color: #ffffff;
}
.index .homeSwiper .f1 .sec_con {
  position: absolute;
  bottom: 10vw;
  left: 7vw;
  z-index: 99;
}
.index .homeSwiper .f1 .con_txt .slide_con {
  margin-top: 80px;
  display: flex;
  align-items: center;
}
.index .homeSwiper .f1 .con_txt .slide_con .bar {
  width: 200px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
}
.index .homeSwiper .f1 .con_txt .slide_con .bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #fff;
}
.index .homeSwiper .f1 .con_txt .slide_con .bar.on::before {
  animation: bar 4.8s forwards;
  animation-timing-function: cubic-bezier(1, 1, 1, 1);
}
.index .homeSwiper .f1 .con_txt .slide_con .pagination_num {
  margin-left: 20px;
  width: auto;
  color: #fff;
  letter-spacing: 0px;
  font-size: 0.9vw;
}
.index .homeSwiper .f1 .con_txt .slide_con .pagination_num .swiper-pagination-current {
  font-size: 1vw;
}
.index .homeSwiper .f1 .con_txt .slide_con .sd_btn {
  margin-left: 20px;
  margin-top: 5px;
}
.index .homeSwiper .f1 .con_txt .slide_con .sd_btn button {
  width: 28px;
  height: 28px;
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.index .homeSwiper .f1 .con_txt .slide_con .sd_btn .stop {
  background-image: url(../images/stop.svg);
}
.index .homeSwiper .f1 .con_txt .slide_con .sd_btn .play {
  background-image: url(../images/play.svg);
}
.index .homeSwiper .f1 .con_txt .slide_con .sd_btn .none {
  display: none;
}
@keyframes bar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.index .homeSwiper .f2 {
  width: 100%;
  height: 100vh;
  background: url('../images/img1.jpg') center no-repeat;
  background-size: cover !important;
}
.index .homeSwiper .f2 .f2Text {
  color: white;
  padding-top: 8vw;
  padding-left: 6vw;
  position: absolute;
  letter-spacing: 1px;
}
.index .homeSwiper .f2 .f2Text .tit {
  font-size: 1.2vw;
}
.index .homeSwiper .f2 .f2Text .des {
  font-size: 2.2vw;
  margin-top: .5vw;
  line-height: 1.2;
}
.index .homeSwiper .f2 .f2Swiper2 {
  width: 100%;
  height: 100vh;
}
.index .homeSwiper .f2 .f2Swiper2 .swiper-slide {
  display: flex;
}
.index .homeSwiper .f2 .f2Swiper2 .swiper-slide .text {
  width: 40vw;
  color: white;
  margin-top: 22vw;
  padding-left: 6vw;
  letter-spacing: 1px;
}
.index .homeSwiper .f2 .f2Swiper2 .swiper-slide .text .name {
  font-size: 2vw;
  font-weight: bold;
}
.index .homeSwiper .f2 .f2Swiper2 .swiper-slide .text .des {
  font-size: .9vw;
  line-height: 2;
  text-align: justify;
  margin-top: .5vw;
}
.index .homeSwiper .f2 .f2Swiper2 .swiper-slide .text .more {
  width: 11vw;
  background-image: linear-gradient(-90deg, #4eb6e1 0%, #175da3 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, 
                                normal;
  color: white;
  font-size: 0.9vw;
  padding: 1vw 0;
  text-align: center;
  display: inline-block;
  margin-top: 3vw;
  transition: 0.3s all ease-in-out;
}
.index .homeSwiper .f2 .f2Swiper2 .swiper-slide .text .more:hover {
  letter-spacing: 5px;
}
.index .homeSwiper .f2 .f2Swiper2 .swiper-slide .imgBox {
  width: 58vw;
  position: absolute;
  right: 0;
  margin-top: 7vw;
  transition: 0.8s all ease-in-out;
}
.index .homeSwiper .f2 .f2Swiper2 .swiper-slide .imgBox.active {
  animation: identifier 0.8s;
}
@keyframes identifier {
  0% {
    transform: translateX(20vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.index .homeSwiper .f2 .f2Swiper {
  width: 88vw;
  position: absolute;
  bottom: 3vw;
  left: 6vw;
}
.index .homeSwiper .f2 .f2Swiper .swiper-slide {
  text-align: center;
  padding-bottom: 1.5vw;
  color: white;
  font-size: 1vw;
  letter-spacing: 1px;
}
.index .homeSwiper .f2 .f2Swiper .swiper-slide-thumb-active {
  color: #1670b0;
}
.index .homeSwiper .f2 .f2Swiper .swiper-slide::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  margin-top: 2.2vw;
  margin-left: -8.5vw;
  z-index: 99;
}
.index .homeSwiper .f2 .f2Swiper .swiper-slide-thumb-active::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 6px;
  background: #1670b0;
  margin-top: 2.1vw;
  margin-left: -8.5vw;
  z-index: 99;
}
.index .homeSwiper .f3 {
  width: 100%;
}
.index .homeSwiper .f3 .f3Text {
  color: white;
  padding-top: 8vw;
  padding-left: 6vw;
  position: absolute;
  letter-spacing: 1px;
}
.index .homeSwiper .f3 .f3Text .tit {
  font-size: 1.2vw;
}
.index .homeSwiper .f3 .f3Text .des {
  font-size: 2vw;
  margin-top: 1vw;
}
.index .homeSwiper .f3 .f3Text .des2 {
  font-size: 1vw;
  margin-top: 1vw;
}
.index .homeSwiper .f3 .f3Box {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.index .homeSwiper .f3 .f3Box .item {
  flex: 1;
  height: 100vh;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.6);
  background-blend-mode: multiply;
  transition: 0.6s all ease-in-out;
  overflow: hidden;
}
.index .homeSwiper .f3 .f3Box .item .text {
  width: 35vw;
  color: white;
  padding-top: 24vw;
  padding-left: 6vw;
  transition: 0.5s all ease-in-out;
}
.index .homeSwiper .f3 .f3Box .item .text .icon {
  width: 4vw;
  margin-left: 2vw;
  transition: 0.5s all ease-in-out;
}
.index .homeSwiper .f3 .f3Box .item .text .name {
  font-size: 1.8vw;
  font-weight: bold;
  margin-top: 1vw;
}
.index .homeSwiper .f3 .f3Box .item .text .des {
  font-size: .9vw;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1vw;
  opacity: 0;
  transition: 0.5s all ease-in-out;
}
.index .homeSwiper .f3 .f3Box .item .text .more {
  width: 11vw;
  background-image: linear-gradient(-90deg, #4eb6e1 0%, #175da3 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, normal;
  color: white;
  font-size: 0.9vw;
  padding: 1vw 0;
  text-align: center;
  display: inline-block;
  margin-top: 2vw;
  opacity: 0;
  transition: 0.5s all ease-in-out;
}
.index .homeSwiper .f3 .f3Box .item .text .more:hover {
  letter-spacing: 5px;
}
.index .homeSwiper .f3 .f3Box .item:nth-child(1) .text .icon {
  margin-left: 1vw;
}
.index .homeSwiper .f3 .f3Box .active {
  flex: 1.8;
  background-color: rgba(0, 0, 0, .25);
}
.index .homeSwiper .f3 .f3Box .active .text .icon {
  margin-left: 0;
}
.index .homeSwiper .f3 .f3Box .active .text .des {
  opacity: 1;
}
.index .homeSwiper .f3 .f3Box .active .text .more {
  opacity: 1;
}
.index .homeSwiper .f3 .f3Box .item.active .text .icon {
  margin-left: 0;
}
.index .homeSwiper .f4 {
  width: 100%;
  height: 100vh;
  background: url('../images/img7.jpg?v2.0.0') center no-repeat;
  background-size: cover !important;
}
.index .homeSwiper .f4 .f4Text {
  color: white;
  padding-top: 8vw;
  padding-left: 6vw;
  position: absolute;
  letter-spacing: 1px;
}
.index .homeSwiper .f4 .f4Text .tit {
  font-size: 1.2vw;
}
.index .homeSwiper .f4 .f4Text .des {
  font-size: 2.2vw;
  margin-top: 1vw;
}
.index .homeSwiper .f4 .more {
  width: 11vw;
  position: absolute;
  left: 6vw;
  bottom: 8vw;
  background-image: linear-gradient(-90deg, #4eb6e1 0%, #175da3 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, 
                    normal;
  color: white;
  font-size: 0.9vw;
  padding: 1vw 0;
  text-align: center;
  display: inline-block;
  margin-top: 2vw;
  transition: 0.5s all ease-in-out;
}
.index .homeSwiper .f4 .more:hover {
  letter-spacing: 5px;
}
.index .homeSwiper .f4 .f4Box {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes circle1Anm {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes circle1Anm2 {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.index .homeSwiper .f4 .f4Box .circle1 {
  width: 42vw;
  height: 42vw;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: absolute;
  top: -42%;
  left: 29%;
  animation: circle1Anm 50s linear infinite;
}
.index .homeSwiper .f4 .f4Box .circle2 {
  width: 58vw;
  height: 58vw;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: absolute;
  top: -80%;
  left: 21%;
  animation: circle1Anm2 50s linear infinite;
}
.index .homeSwiper .f4 .f4Box .circle3 {
  width: 75vw;
  height: 75vw;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: absolute;
  top: -115%;
  left: 13%;
  animation: circle1Anm 50s linear infinite;
}
@keyframes item1Anm {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.index .homeSwiper .f4 .f4Box .item1 {
  width: 22vw;
  margin: 0 auto;
  animation: item1Anm 5s linear infinite;
}
.index .homeSwiper .f4 .f4Box .item {
  width: 15vw;
  color: white;
  text-align: center;
  position: absolute;
}
.index .homeSwiper .f4 .f4Box .item .icon {
  width: 4vw;
  margin: 0 auto;
}
.index .homeSwiper .f4 .f4Box .item .name {
  font-weight: bold;
  font-size: 1.1vw;
  margin: 0.5vw 0 0.3vw 0;
}
.index .homeSwiper .f4 .f4Box .item .des {
  font-size: 0.9vw;
}
.index .homeSwiper .f4 .f4Box .item2 {
  left: 5vw;
  margin-top: -12vw;
}
.index .homeSwiper .f4 .f4Box .item3 {
  left: 22.5vw;
  margin-top: -19vw;
}
.index .homeSwiper .f4 .f4Box .item4 {
  left: 25vw;
  margin-top: -1vw;
}
.index .homeSwiper .f4 .f4Box .item5 {
  right: 27vw;
  margin-top: -27vw;
}
.index .homeSwiper .f4 .f4Box .item6 {
  right: 14vw;
  margin-top: -18vw;
}
.index .homeSwiper .f4 .f4Box .item7 {
  right: 24vw;
  margin-top: -4vw;
}
.index .homeSwiper .f4 .f4Box .item8 {
  right: 7vw;
  margin-top: 0vw;
}
.index .homeSwiper .f5 {
  width: 100%;
  height: 100vh;
  background: url('../images/img16.jpg') center no-repeat;
  background-size: cover !important;
}
.index .homeSwiper .f5 .f5Text {
  width: 35vw;
  color: #2c2c2c;
  padding-top: 8vw;
  padding-left: 6vw;
  position: absolute;
  letter-spacing: 1px;
  z-index: 9;
}
.index .homeSwiper .f5 .f5Text .tit {
  font-size: 1.2vw;
}
.index .homeSwiper .f5 .f5Text .des {
  font-size: 2vw;
  margin-top: 1vw;
}
.index .homeSwiper .f5 .f5Text .des2 {
  font-size: 1vw;
  margin-top: 1vw;
  line-height: 2;
}
.index .homeSwiper .f5 .more {
  width: 11vw;
  position: absolute;
  left: 6vw;
  bottom: 8vw;
  background-image: linear-gradient(-90deg, #4eb6e1 0%, #175da3 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, 
                    normal;
  color: white;
  font-size: 0.9vw;
  padding: 1vw 0;
  text-align: center;
  display: inline-block;
  margin-top: 2vw;
  transition: 0.5s all ease-in-out;
}
.index .homeSwiper .f5 .more:hover {
  letter-spacing: 5px;
}
.index .homeSwiper .f5 .f5Img {
  width: 75vw;
  position: absolute;
  right: 2vw;
  top: 8vw;
}
.index .homeSwiper .f5 svg {
  width: 50%;
  position: absolute;
  right: 12.5vw;
  top: 14.3vw;
  z-index: 9;
}
.index .homeSwiper .f5 .cls-1 {
  fill: none;
  position: relative;
  stroke: #1670b0;
  stroke-width: 3;
  stroke-dasharray: 1;
  z-index: 1;
}
.index .homeSwiper .f6 {
  width: 100%;
  height: 100vh;
  background: url('../images/img18.jpg') center no-repeat;
  background-size: cover !important;
}
.index .homeSwiper .f6 .f6Text {
  color: #2c2c2c;
  padding-top: 8vw;
  padding-left: 6vw;
  letter-spacing: 1px;
}
.index .homeSwiper .f6 .f6Text .tit {
  font-size: 1.2vw;
}
.index .homeSwiper .f6 .f6Text .des {
  font-size: 2.2vw;
  margin-top: 1vw;
}
.index .homeSwiper .f6 .more {
  width: 11vw;
  position: absolute;
  right: 6vw;
  top: 11vw;
  background-image: linear-gradient(-90deg, #4eb6e1 0%, #175da3 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, 
                    normal;
  color: white;
  font-size: 0.9vw;
  padding: 1vw 0;
  text-align: center;
  display: inline-block;
  margin-top: 2vw;
  transition: 0.5s all ease-in-out;
}
.index .homeSwiper .f6 .more:hover {
  letter-spacing: 5px;
}
.index .homeSwiper .f6 .f6Box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 2vw 6vw;
}
.index .homeSwiper .f6 .f6Box .left {
  width: 23vw;
  height: 26vw;
  background: white;
  position: relative;
  border-radius: 1vw;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow: hidden;
}
.index .homeSwiper .f6 .f6Box .left .imgBox {
  overflow: hidden;
}
.index .homeSwiper .f6 .f6Box .left .imgBox .img {
  width: 100%;
  height: 13vw;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.index .homeSwiper .f6 .f6Box .left .textBox {
  padding: 1vw;
}
.index .homeSwiper .f6 .f6Box .left .textBox .name {
  font-size: 1vw;
  color: #2c2c2c;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.index .homeSwiper .f6 .f6Box .left .textBox .des {
  color: #717171;
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.index .homeSwiper .f6 .f6Box .left .textBox .time {
  color: #717171;
  font-size: 0.9vw;
  position: absolute;
  bottom: 1vw;
}
.index .homeSwiper .f6 .f6Box .left:hover .imgBox .img {
  transform: scale(1.1);
}
.index .homeSwiper .f6 .f6Box .left:hover .textBox .name {
  color: #1670b0;
}
.index .homeSwiper .f6 .f6Box .center {
  width: 23vw;
  height: 26vw;
  background: url('../images/img20.jpg') center no-repeat;
  background-size: cover !important;
  padding: 3vw 1vw;
  position: relative;
}
.index .homeSwiper .f6 .f6Box .center .textBox {
  padding: 1vw;
  color: white;
}
.index .homeSwiper .f6 .f6Box .center .textBox .name {
  font-size: 1vw;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index .homeSwiper .f6 .f6Box .center .textBox .des {
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}
.index .homeSwiper .f6 .f6Box .center .textBox .time {
  font-size: 0.9vw;
  position: absolute;
  bottom: 1vw;
}
.index .homeSwiper .f6 .f6Box .rightBox {
  width: 40vw;
}
.index .homeSwiper .f6 .f6Box .rightBox .item {
  width: 100%;
  height: 8vw;
  display: flex;
  position: relative;
  margin-bottom: 1vw;
}
.index .homeSwiper .f6 .f6Box .rightBox .item .imgBox {
  width: 15vw;
  overflow: hidden;
  border-radius: .5vw;
}
.index .homeSwiper .f6 .f6Box .rightBox .item .imgBox .img {
  width: 15vw;
  height: 8vw;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.index .homeSwiper .f6 .f6Box .rightBox .item .textBox {
  width: 23vw;
  padding: 0 1vw;
}
.index .homeSwiper .f6 .f6Box .rightBox .item .textBox .name {
  font-size: 1vw;
  color: #2c2c2c;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.index .homeSwiper .f6 .f6Box .rightBox .item .textBox .des {
  color: #717171;
  font-size: 0.9vw;
  line-height: 1.7;
  text-align: justify;
  margin-top: 1vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index .homeSwiper .f6 .f6Box .rightBox .item .textBox .time {
  color: #717171;
  font-size: 0.9vw;
  position: absolute;
  bottom: 0;
}
.index .homeSwiper .f6 .f6Box .rightBox .item:hover .imgBox .img {
  transform: scale(1.1);
}
.index .homeSwiper .f6 .f6Box .rightBox .item:hover .textBox .name {
  color: #1670b0;
}
.index .homeSwiper .f6 .f6Box .rightBox .item:last-child {
  margin-bottom: 0;
}
.index .homeSwiper .f7 {
  width: 100%;
  height: 100vh;
}
.index .homeSwiper .f7 .f7Text {
  color: #2c2c2c;
  padding-top: 8vw;
  padding-left: 6vw;
  letter-spacing: 1px;
}
.index .homeSwiper .f7 .f7Text .tit {
  font-size: 1.2vw;
}
.index .homeSwiper .f7 .f7Text .des {
  font-size: 2.2vw;
  margin-top: 1vw;
}
.index .homeSwiper .f7 .more {
  width: 11vw;
  position: absolute;
  right: 6vw;
  top: 8vw;
  background-image: linear-gradient(-90deg, #4eb6e1 0%, #175da3 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, 
                    normal;
  color: white;
  font-size: 0.9vw;
  padding: 1vw 0;
  text-align: center;
  display: inline-block;
  margin-top: 2vw;
  transition: 0.5s all ease-in-out;
}
.index .homeSwiper .f7 .more:hover {
  letter-spacing: 5px;
}
.index .homeSwiper .f7 .f7Img {
  width: 90vw;
  margin: 1vw auto 0 auto;
}
.index .scroll {
  position: fixed;
  right: 80px;
  bottom: 50px;
  z-index: 10;
  width: 28px;
  height: 41px;
  background: url(../images/scroll-icon.png) no-repeat;
  background-position: center;
  background-size: contain;
}
.index .scroll span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  font-size: 1vw;
}
.index .scroll span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  background-color: #fff;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translate(-50%, 0);
  animation: scroll_icon 1.5s infinite;
}
@keyframes scroll_icon {
  0% {
    top: 7px;
  }
  60% {
    top: 15px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.project {
  width: 100%;
}
.project .f1 {
  padding: 6vw;
}
.project .f1 .tit {
  font-size: 1.5vw;
}
.project .f1 .f1Box {
  width: 100%;
  display: inline-block;
}
.project .f1 .f1Box .item {
  width: 25vw;
  height: 26vw;
  background-color: #eef2f6;
  border-radius: 2vw;
  display: inline-block;
  float: left;
  margin-top: 4vw;
  margin-right: 6vw;
  padding: 2vw;
  transition: 0.3s all ease-in-out;
  overflow: hidden;
}
.project .f1 .f1Box .item .nameBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #000000;
}
.project .f1 .f1Box .item .nameBox .name {
  font-size: 1.5vw;
  font-weight: 400;
}
.project .f1 .f1Box .item .nameBox .name span {
  font-size: 1vw;
  letter-spacing: 1px;
}
.project .f1 .f1Box .item .nameBox .name span sub {
  position: relative;
  top: -0.2vw;
  font-size: 0.7vw;
}
.project .f1 .f1Box .item .nameBox .kg {
  border: 1px solid #a5a5a5;
  color: #a9a9a9;
  font-size: 0.9vw;
  width: 4vw;
  height: 1.5vw;
  text-align: center;
  line-height: 1.5vw;
  border-radius: 5vw;
}
.project .f1 .f1Box .item .img {
  width: 13vw;
  height: 43vw;
  margin: 3vw auto 0 auto;
  background-size: contain !important;
  transition: 0.3s all ease-in-out;
}
.project .f1 .f1Box .item:nth-child(3n) {
  margin-right: 0;
}
.project .f1 .f1Box .item:hover {
  box-shadow: 0 0.5vw 2vw 0.5vw #e0e6ec;
}
.project .f1 .f1Box .item:hover .img {
  transform: scale(1.08);
}
.projectDetail {
  width: 100%;
}
.projectDetail .bgImg {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: -1;
}
.projectDetail .f1Box {
  width: 100%;
  display: inline-block;
  margin-top: -120vh;
}
.projectDetail .f1Box .imgBox {
  display: inline-block;
  float: left;
  position: sticky;
  top: 7vw;
  padding-left: 20vw;
  padding-bottom: 5vw;
}
.projectDetail .f1Box .imgBox .img {
  width: 11vw;
  height: 40vw;
  background-size: contain !important;
}
.projectDetail .f1Box .f1Right {
  width: 45vw;
  display: inline-block;
  margin-left: 14vw;
  margin-top: 14vw;
  margin-bottom: 5vw;
}
.projectDetail .f1Box .f1Right .text {
  color: #ffffff;
}
.projectDetail .f1Box .f1Right .text .tit {
  font-size: 1.5vw;
}
.projectDetail .f1Box .f1Right .text .des {
  font-size: 0.9vw;
  line-height: 2;
  text-align: justify;
  margin: 1.5vw 0;
}
.projectDetail .f1Box .f1Right .text .argumentBox {
  width: 100%;
  display: inline-block;
}
.projectDetail .f1Box .f1Right .text .argumentBox .argument {
  width: 12vw;
  display: flex;
  justify-content: space-between;
  float: left;
  margin-right: 4vw;
  margin-bottom: 2vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.projectDetail .f1Box .f1Right .text .argumentBox .argument .t {
  width: auto;
  display: inline-block;
  float: left;
  /*font-weight: bold;*/
  border-bottom: 1px solid white;
  padding-bottom: 0.5vw;
  font-size: 0.85vw;
}
.projectDetail .f1Box .f1Right .text .argumentBox .argument .d{
  font-size: .85vw;
}
.projectDetail .f1Box .f1Right .text .argumentBox .argument:nth-child(3n) {
  margin-right: 0;
}
.projectDetail .f1Box .f1Right .text .argumentBox .argument:last-child {
  width: 28.2vw;
  margin-right: 0;
}
.projectDetail .f1Box .f1Right .text .zixun {
  width: 10vw;
  background-image: linear-gradient(-90deg, #4eb6e1 0%, #175da3 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, 
                        normal;
  color: white;
  font-size: 0.9vw;
  padding: 1vw 0;
  text-align: center;
  display: inline-block;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.projectDetail .f1Box .f1Right .text .zixun:hover {
  letter-spacing: 5px;
}
.projectDetail .f1Box .f1Right .f1Box {
  width: 100%;
  background-color: #eef2f6;
  border-radius: 1.5vw;
  margin-top: 5vw;
  padding: 2vw;
}
.projectDetail .f1Box .f1Right .f1Box .packingBox {
  margin-bottom: 3vw;
}
.projectDetail .f1Box .f1Right .f1Box .packingBox .t {
  color: #3a3a3a;
  font-size: 1.2vw;
}
.projectDetail .f1Box .f1Right .f1Box .document {
  margin-bottom: 3vw;
}
.projectDetail .f1Box .f1Right .f1Box .document .t {
  color: #3a3a3a;
  font-size: 1.2vw;
}
.projectDetail .f1Box .f1Right .f1Box .document .des {
  display: flex;
  justify-content: space-between;
  padding: 1vw 0;
}
.projectDetail .f1Box .f1Right .f1Box .document .des .t {
  display: flex;
  font-size: 1vw;
  line-height: 2vw;
}
.projectDetail .f1Box .f1Right .f1Box .document .des .t img {
  width: 2vw;
  margin-right: 1vw;
}
.projectDetail .f1Box .f1Right .f1Box .document .des .linkBox {
  display: flex;
}
.projectDetail .f1Box .f1Right .f1Box .document .des .linkBox a {
  width: 2vw;
  margin-left: 1vw;
}
.projectDetail .f1Box .f1Right .f1Box .products {
  margin-bottom: 3vw;
}
.projectDetail .f1Box .f1Right .f1Box .products .t {
  color: #3a3a3a;
  font-size: 1.2vw;
}
.projectDetail .f1Box .f1Right .f1Box .products .productsBox {
  display: inline-block;
}
.projectDetail .f1Box .f1Right .f1Box .products .productsBox .item {
  width: 12vw;
  height: 12vw;
  background-color: #ffffff;
  border-radius: 1.5vw;
  display: inline-block;
  float: left;
  margin-top: 1vw;
  margin-right: 2vw;
  padding: 1vw;
  transition: 0.3s all ease-in-out;
  overflow: hidden;
}
.projectDetail .f1Box .f1Right .f1Box .products .productsBox .item .nameBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #000000;
}
.projectDetail .f1Box .f1Right .f1Box .products .productsBox .item .nameBox .name {
  font-size: 0.9vw;
  font-weight: 400;
}
.projectDetail .f1Box .f1Right .f1Box .products .productsBox .item .nameBox .name span {
  font-size: 0.8vw;
  letter-spacing: 1px;
}
.projectDetail .f1Box .f1Right .f1Box .products .productsBox .item .nameBox .name span sub {
  position: relative;
  top: -0.2vw;
  font-size: 0.7vw;
}
.projectDetail .f1Box .f1Right .f1Box .products .productsBox .item .nameBox .kg {
  border: 1px solid #a5a5a5;
  color: #a9a9a9;
  font-size: 0.7vw;
  width: 2.2vw;
  height: 1.2vw;
  text-align: center;
  line-height: 1.2vw;
  border-radius: 5vw;
}
.projectDetail .f1Box .f1Right .f1Box .products .productsBox .item .img {
  width: 5vw;
  height: 17vw;
  margin: 2vw auto 0 auto;
  background-size: contain !important;
  transition: 0.3s all ease-in-out;
}
.projectDetail .f1Box .f1Right .f1Box .products .productsBox .item:nth-child(3n) {
  margin-right: 0;
}
.projectDetail .f1Box .f1Right .f1Box .products .productsBox .item:hover {
  box-shadow: 0 0.5vw 2vw 0.5vw #e0e6ec;
}
.projectDetail .f1Box .f1Right .f1Box .products .productsBox .item:hover .img {
  transform: scale(1.08);
}
.projectDetail .f1Box .f1Right .f1Box .contact {
  margin-bottom: 1vw;
}
.projectDetail .f1Box .f1Right .f1Box .contact .t {
  color: #3a3a3a;
  font-size: 1.2vw;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox {
  display: flex;
  justify-content: space-between;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .left {
  color: #2c2c2c;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .left .phoneBox {
  margin-top: 2vw;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .left .phoneBox .name {
  opacity: 0.5;
  font-size: 0.9vw;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .left .phoneBox .phone {
  font-size: 1.8vw;
  font-weight: bold;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .left .address {
  font-size: 0.9vw;
  line-height: 1.7;
  margin-top: 1vw;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .right {
  width: 20vw;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .right #form .inputItem {
  display: inline-block;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .right #form .inputItem .inputBox {
  width: 100%;
  background-color: #ffffff;
  display: inline-block;
  float: left;
  font-size: 0.9vw;
  padding: 0.5vw 1vw;
  margin-bottom: 1vw;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .right #form .inputItem .inputBox .name {
  display: inline-block;
  float: left;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .right #form .inputItem .inputBox input {
  width: 60%;
  border: transparent;
  background: transparent;
  display: inline-block;
  outline: none;
  margin-left: 1vw;
  border-left: 1px solid #959595;
  padding-left: 1vw;
  font-size: 0.8vw;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .right #form .inputItem .inputBox input::placeholder {
  opacity: 0.5;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .right #form .inputItem .subimt {
  width: 10vw;
  background-image: linear-gradient(-90deg, #4eb6e1 0%, #175da3 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, 
                                            normal;
  color: white;
  font-size: 0.9vw;
  padding: 0.8vw 0;
  text-align: center;
  display: inline-block;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.projectDetail .f1Box .f1Right .f1Box .contact .contactBox .right #form .inputItem .subimt:hover {
  letter-spacing: 5px;
}
.solution {
  width: 100%;
}
.solution .f1 {
  width: 100%;
  padding: 6vw;
}
.solution .f1 .tit {
  font-size: 1.5vw;
}
.solution .f1 .f1Box {
  width: 100%;
  margin-top: 1vw;
}
.solution .f1 .f1Box .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #eef2f6;
  margin-top: 3vw;
  border-radius: 2vw;
  overflow: hidden;
}
.solution .f1 .f1Box .item .imgBox {
  width: 44vw;
  height: 22vw;
  border-radius: 2vw;
  overflow: hidden;
}
.solution .f1 .f1Box .item .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.solution .f1 .f1Box .item .textBox {
  width: 43vw;
  padding: 2vw;
}
.solution .f1 .f1Box .item .textBox .icon {
  width: 3vw;
}
.solution .f1 .f1Box .item .textBox .t {
  color: #3a3a3a;
  font-size: 1.5vw;
  font-weight: bold;
  margin: 1vw 0;
}
.solution .f1 .f1Box .item .textBox .des {
  color: #5a5a5a;
  font-size: .9vw;
  line-height: 1.7;
  text-align: justify;
}
.solution .f1 .f1Box .item .textBox .taps {
  width: 100%;
  display: inline-block;
  margin-top: 2vw;
}
.solution .f1 .f1Box .item .textBox .taps .tap {
  display: inline-block;
  float: left;
  border-radius: 0.5vw;
  border: 1px solid #5a5a5a;
  color: #3a3a3a;
  font-size: 0.9vw;
  padding: 0.1vw 1vw;
  margin-right: 1vw;
}
.solution .f1 .f1Box .item .textBox .taps .tap sub {
  position: relative;
  top: -0.2vw;
}
.solution .f1 .f1Box .item:hover .imgBox .img {
  transform: scale(1.1);
}
.solutionDetail .f1 {
  width: 100%;
  display: flex;
  padding: 4vw 6vw;
  justify-content: space-between;
  border-radius: 2vw;
  overflow: hidden;
}
.solutionDetail .f1 .imgBox {
  width: 44vw;
  height: 22vw;
  border-radius: 2vw;
  overflow: hidden;
}
.solutionDetail .f1 .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.solutionDetail .f1 .textBox {
  width: 40vw;
}
.solutionDetail .f1 .textBox .t {
  color: #3a3a3a;
  font-size: 1.6vw;
  font-weight: bold;
}
.solutionDetail .f1 .textBox .des {
  color: #5a5a5a;
  font-size: .9vw;
  line-height: 1.7;
  text-align: justify;
  margin: 1vw 0;
}
.solutionDetail .f1 .textBox .zixun {
  width: 10vw;
  background-image: linear-gradient(-90deg, #4eb6e1 0%, #175da3 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, 
                    normal;
  color: white;
  font-size: 0.9vw;
  padding: 1vw 0;
  text-align: center;
  display: inline-block;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.solutionDetail .f1 .textBox .zixun:hover {
  letter-spacing: 5px;
}
.solutionDetail .f2 {
  width: 100%;
  padding: 0 6vw 3vw 6vw;
}
.solutionDetail .f2 .t {
  font-size: 1.5vw;
}
.solutionDetail .f2 .f2Box .f2Swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 3vw;
}
.solutionDetail .f2 .f2Box .f2Swiper .item {
  width: 25vw;
  height: 26vw;
  background-color: #eef2f6;
  border-radius: 2vw;
  display: inline-block;
  float: left;
  margin-top: 2vw;
  margin-right: 6vw;
  padding: 2vw;
  transition: 0.3s all ease-in-out;
  overflow: hidden;
}
.solutionDetail .f2 .f2Box .f2Swiper .item .nameBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #000000;
}
.solutionDetail .f2 .f2Box .f2Swiper .item .nameBox .name {
  font-size: 1.5vw;
  font-weight: 400;
}
.solutionDetail .f2 .f2Box .f2Swiper .item .nameBox .name span {
  font-size: 1vw;
  letter-spacing: 1px;
}
.solutionDetail .f2 .f2Box .f2Swiper .item .nameBox .name span sub {
  position: relative;
  top: -0.2vw;
  font-size: 0.7vw;
}
.solutionDetail .f2 .f2Box .f2Swiper .item .nameBox .kg {
  border: 1px solid #a5a5a5;
  color: #a9a9a9;
  font-size: 0.9vw;
  width: 4vw;
  height: 1.5vw;
  text-align: center;
  line-height: 1.5vw;
  border-radius: 5vw;
}
.solutionDetail .f2 .f2Box .f2Swiper .item .img {
  width: 13vw;
  height: 43vw;
  margin: 3vw auto 0 auto;
  background-size: contain !important;
  transition: 0.3s all ease-in-out;
}
.solutionDetail .f2 .f2Box .f2Swiper .item:nth-child(3n) {
  margin-right: 0;
}
.solutionDetail .f2 .f2Box .f2Swiper .item:hover {
  box-shadow: 0 0.5vw 2vw 0.5vw #e0e6ec;
}
.solutionDetail .f2 .f2Box .f2Swiper .item:hover .img {
  transform: scale(1.08);
}
.solutionDetail .f3 {
  width: 100%;
  background: #eef2f6;
  padding: 0 0 3vw;
}
.solutionDetail .f3 .t {
  font-size: 1.5vw;
  padding: 6vw 6vw 4vw 6vw;
}
.solutionDetail .f3 .f3Swiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 2vw;
}
.solutionDetail .f3 .f3Swiper .swiper-slide {
  transform: scale(0.8);
  transition: 0.5s all ease-in-out;
}
.solutionDetail .f3 .f3Swiper .swiper-slide .img {
  width: 100%;
  height: 30vw;
  background-color: #1b63a7;
  background-size: cover !important;
  border-radius: 2vw;
  overflow: hidden;
}
.solutionDetail .f3 .f3Swiper .swiper-slide .text {
  text-align: center;
  opacity: 0;
  transition: 0.5s all ease-in-out;
}
.solutionDetail .f3 .f3Swiper .swiper-slide .text .tit {
  color: #2a2a2a;
  font-size: 1.1vw;
  font-weight: bold;
  margin: 1vw 0 0 0;
}
.solutionDetail .f3 .f3Swiper .swiper-slide .text .des {
  color: #717171;
  font-size: 1vw;
}
.solutionDetail .f3 .f3Swiper .swiper-slide-active {
  transform: scale(1);
}
.solutionDetail .f3 .f3Swiper .swiper-slide-active .text {
  opacity: 1;
}
.solutionDetail .f3 .f3Swiper .swiper-pagination {
  position: relative;
  bottom: -1vw;
}
.case {
  width: 100%;
}
.case .f1 {
  width: 100%;
  padding: 4vw 6vw;
}
.case .f1 .t {
  font-size: 1.5vw;
  margin-bottom: 2vw;
}
.case .f1 .itemBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 3vw;
}
.case .f1 .itemBox .itemLeft {
  display: block;
  width: 53vw;
  height: 30vw;
  background-color: #1b63a7;
  border-radius: 2vw;
  overflow: hidden;
}
.case .f1 .itemBox .itemLeft .imgBox {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.case .f1 .itemBox .itemLeft .textBox {
  width: 53vw;
  display: flex;
  justify-content: space-between;
  padding: 2vw;
  color: white;
  margin-top: -7vw;
  position: absolute;
  z-index: 1;
}
.case .f1 .itemBox .itemLeft .textBox .text .tit {
  font-size: 1.2vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.case .f1 .itemBox .itemLeft .textBox .text .des {
  font-size: 1vw;
  margin-top: 0.5vw;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.case .f1 .itemBox .itemLeft .textBox .more {
  width: 1.5vw;
  position: relative;
  top: 1.15vw;
}
.case .f1 .itemBox .itemLeft:hover .imgBox {
  transform: scale(1.1);
}
.case .f1 .itemBox .itemRight {
  width: 33vw;
  height: 30vw;
  background-color: #eef2f6;
  border-radius: 2vw;
  padding: 1vw;
}
.case .f1 .itemBox .itemRight .imgBox {
  width: 31vw;
  height: 17vw;
  border-radius: 1vw;
  overflow: hidden;
}
.case .f1 .itemBox .itemRight .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.3s all ease-in-out;
}
.case .f1 .itemBox .itemRight .textBox {
  width: 100%;
  height: 9.7vw;
  padding: 2vw 1vw;
  position: relative;
}
.case .f1 .itemBox .itemRight .textBox .text .tit {
  font-size: 1.2vw;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #2a2a2a;
}
.case .f1 .itemBox .itemRight .textBox .text .des {
  font-size: 1vw;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #717171;
  margin: 1vw 0;
}
.case .f1 .itemBox .itemRight .textBox .more {
  width: 1.5vw;
  position: absolute;
  bottom: 0;
}
.case .f1 .itemBox .itemRight:hover .imgBox .img {
  transform: scale(1.1);
}
.case .f2 {
  width: 100%;
  padding: 4vw 6vw;
}
.case .f2 .t {
  font-size: 1.5vw;
  margin-bottom: 2vw;
}
.case .f2 .f2Img {
  width: 100%;
}
.news {
  width: 100%;
}
.news .f1 {
  width: 100%;
  padding: 4vw 6vw;
  display: inline-block;
}
.news .f1 .newsBox {
  width: 60vw;
  margin-right: 2vw;
  display: inline-block;
  float: left;
}
.news .f1 .newsBox .tit {
  font-size: 1.5vw;
}
.news .f1 .newsBox .newsItem {
  width: 100%;
  margin-top: 2vw;
}
.news .f1 .newsBox .newsItem .item {
  width: 100%;
  height: auto;
  display: flex;
  background: white;
  border-bottom: 1px solid #e3e3e3;
  margin: 2vw 0;
  padding-bottom: 2vw;
}
.news .f1 .newsBox .newsItem .item .imgBox {
  width: 27vw;
  height: 15vw;
  border-radius: 1vw;
  overflow: hidden;
}
.news .f1 .newsBox .newsItem .item .imgBox .img {
  width: 100%;
  height: 100%;
  background-size: cover !important;
  transition: 0.5s ease-in-out;
}
.news .f1 .newsBox .newsItem .item .textBox {
  width: 32vw;
  padding: 1vw 2vw;
  position: relative;
}
.news .f1 .newsBox .newsItem .item .textBox .t {
  color: #242424;
  font-size: 1.1vw;
  font-weight: bold;
  text-align: justify;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news .f1 .newsBox .newsItem .item .textBox .des {
  color: #636363;
  font-size: 0.9vw;
  text-align: justify;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin: 1vw 0;
}
.news .f1 .newsBox .newsItem .item .textBox .time {
  color: #282828;
  opacity: 0.4;
  font-size: 0.8vw;
  position: absolute;
  bottom: 1vw;
}
.news .f1 .newsBox .newsItem .item:hover .imgBox .img {
  transform: scale(1.1);
}
.news .f1 .newsBox .newsItem .item:hover .textBox .t {
  color: #2573b5;
}
.news .f1 .announcementBox {
  width: 24vw;
  display: inline-block;
  position: sticky;
  top: 5vw;
}
.news .f1 .announcementBox .tit {
  font-size: 1.5vw;
}
.news .f1 .announcementBox .announcement {
  width: 100%;
  margin-top: 2vw;
  background-color: #eef2f6;
  border-radius: 1.5vw;
  overflow: hidden;
  padding: 1vw 0 0 0;
}
.news .f1 .announcementBox .announcement .announcementItem {
  width: 90%;
  margin: 0 auto;
}
.news .f1 .announcementBox .announcement .announcementItem .item {
  width: 100%;
  padding: 1.5vw 2vw;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.news .f1 .announcementBox .announcement .announcementItem .item .t {
  font-size: 1vw;
  font-weight: bold;
  color: #242424;
  text-align: justify;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news .f1 .announcementBox .announcement .announcementItem .item .t::before {
  content: '';
  position: absolute;
  width: 0.4vw;
  height: 0.4vw;
  background: #2573b5;
  border-radius: 50%;
  margin-top: 0.6vw;
  margin-left: -1vw;
}
.news .f1 .announcementBox .announcement .announcementItem .item .des {
  color: #636363;
  font-size: 0.85vw;
  text-align: justify;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news .f1 .announcementBox .announcement .announcementItem .item:last-child {
  border-bottom: transparent;
}
.news .f1 .announcementBox .announcement .announcementItem .item:hover .t {
  color: #2573b5;
}
.news .f1 .announcementBox .announcement .more {
  width: 100%;
  height: 3vw;
  display: block;
  font-size: 1vw;
  letter-spacing: 1px;
  background-image: linear-gradient(-90deg, #4eb6e1 0%, #175da3 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, 
                        normal;
  text-align: center;
  line-height: 3vw;
  color: white;
}
.about {
  width: 100%;
}
.about .tabBox {
  border-bottom: 1px solid #bcbcbc;
}
.about .f1 {
  width: 100%;
  height: auto;
  background-size: cover !important;
  padding: 4vw 6vw;
}
.about .f1 .titBox .t {
  font-size: 1.5vw;
}
.about .f1 .titBox .d {
  font-size: 1.5vw;
  font-weight: bold;
  margin-top: 0.5vw;
}
.about .f1 .img {
  width: 40vw;
  height: 36vw;
  border-radius: 2vw;
  overflow: hidden;
  position: absolute;
  margin-top: -5vw;
  right: 6vw;
}
.about .f1 .text {
  width: 43vw;
  color: #2c2c2c;
  line-height: 1.7;
  text-align: justify;
  font-size: .9vw;
  margin-top: 3vw;
}
.about .f1 .text p {
  margin-bottom: 1vw;
}
.about .f2 {
  width: 100%;
  height: 50vw;
  background: url('../images/img51.jpg?v4.0.0') center no-repeat;
  background-size: cover !important;
  padding: 7vw 6vw;
  position: relative;
}
.about .f2 .titBox {
  /*color: white;*/
}
.about .f2 .titBox .t {
  font-size: 1.5vw;
}
.about .f2 .titBox .d {
  font-size: 1.5vw;
  font-weight: bold;
  margin-top: 0.5vw;
}
.about .f2 .f2Box {
  position: absolute;
  top: 0;
  left: 0;
}
.about .f2 .f2Box .item {
  width: 30vw;
  display: flex;
  /*color: white;*/
  position: absolute;
}
.about .f2 .f2Box .item .icon {
  width: 2.5vw;
  height: 2.5vw;
}
.about .f2 .f2Box .item .text {
  margin-left: 1vw;
}
.about .f2 .f2Box .item .text .tit {
  font-weight: bold;
  font-size: 1.1vw;
}
.about .f2 .f2Box .item .text .des {
  font-size: 0.9vw;
}
.about .f2 .f2Box .item:nth-child(1) {
  left: 35vw;
  top: 8.5vw;
}
.about .f2 .f2Box .item:nth-child(2) {
  left: 31vw;
  top: 14vw;
}
.about .f2 .f2Box .item:nth-child(3) {
  left: 28vw;
  top: 19vw;
}
.about .f2 .f2Box .item:nth-child(4) {
  left: 25vw;
  top: 24vw;
}
.about .f2 .f2Box .item:nth-child(5) {
  left: 23vw;
  top: 29.5vw;
}
.about .f2 .f2Box .item:nth-child(6) {
  left: 21vw;
  top: 35vw;
}
.about .f2 .f2Box .item:nth-child(7) {
  left: 19.5vw;
  top: 42vw;
}
.about .f3 {
  width: 100%;
  height: 50vw;
  background: url('../images/img53.jpg') center no-repeat;
  background-size: cover !important;
  padding: 7vw 6vw;
  position: relative;
}
.about .f3 .titBox .t {
  font-size: 1.5vw;
}
.about .f4 {
  width: 100%;
  height: 50vw;
  background: url('../images/img54.jpg') center no-repeat;
  background-size: cover !important;
  padding: 9vw 6vw;
  position: relative;
}
.about .f4 .f4Box {
  width: 26vw;
  background-color: #ffffff;
  border-radius: 2vw;
  color: #2c2c2c;
  padding: 4vw 2vw;
}
.about .f4 .f4Box .tit {
  font-size: 1.5vw;
}
.about .f4 .f4Box .d {
  font-size: 1.2vw;
  margin-top: 0.5vw;
}
.about .f4 .f4Box .addressBox {
  border-top: 1px solid #d9e1ec;
  padding: 2vw 0 5vw 0;
  margin-top: 2vw;
}
.about .f4 .f4Box .addressBox .item {
  display: flex;
  font-size: 1vw;
  margin-top: 1vw;
}
.about .f4 .f4Box .addressBox .item .name {
  font-weight: bold;
  margin-right: 1vw;
}
.about .f4 .f4Box .more {
  width: 20vw;
  height: 3vw;
  background-image: linear-gradient(-90deg, #4eb6e1 0%, #175da3 100%), linear-gradient(#000000, #000000);
  background-blend-mode: normal, 
                    normal;
  line-height: 3vw;
  color: white;
  font-size: 0.9vw;
  padding: 0 2vw;
  display: flex;
  justify-content: space-between;
}
.about .f4 .f4Box .more img {
  width: 1.2vw;
  height: 1.2vw;
  position: relative;
  top: 1vw;
}
.noData{
  display: none;
}
.noData.active{
  display: block;
}
.searchContent{
  padding: 2vw 0;
  font-size: 16px;
}
.news5 ul {
  width: 100%;
  display: inline-block;
}
.news5 ul li{
  width: 30%;
  display: inline-block;
  float: left;
  margin-right: 4%;
  margin-bottom: 3%;
}
.news5 ul li:nth-child(3n){
  margin-right: 0;
}
.news5 ul li a .thum{
  width: 100%;
  height: 15vw;
}
.news5 ul li a .thum .pic{
  width: 100%;
  height: 100%;
  background-size: contain !important;
}
.news5 ul li a .info{
  padding: 1vw 0;
}
.news5 ul li a .info .time{
  font-size: 14px;
}
.news5 ul li a .info .title{
  font-size: 18px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news5 ul li a .info .des{
  font-size: 16px;
}
.news5 ul li a .info .commonMore4{
  margin-top: 1vw;
}
.packing table{
  width: 100%;
  border: 1px solid #bbbbbb;
  border-bottom: transparent;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
}
.packing table tr:nth-child(1) {
  background: #1670b0;
  color: white;
}
.packing table tr td{
  padding: .7vw 0;
  border-bottom: 1px solid #bbbbbb;
  border-right: 1px solid #bbbbbb;
}
.packing table tr td:last-child{
  border-right: transparent;
}
.bannerSwiper .swiper-button-next:after, .bannerSwiper .swiper-button-prev:after{
  color: white;
  font-size: 16px;
}
.bannerSwiper .swiper-button-next{
  left: 26vw;
  bottom: 9.9vw;
  top: inherit;
}
.bannerSwiper .swiper-button-prev{
  left: 24vw;
  bottom: 9.9vw;
  top: inherit;
}
.pc {
  display: block;
}
.mobile {
  display: none;
}
@media screen and (max-width: 1660px) {
  .bannerSwiper .swiper-button-next{
    left: 28vw;
  }
  .bannerSwiper .swiper-button-prev{
    left: 26vw;
  }
  .index .homeSwiper .f1 video {
    width: 110%;
    height: 130vh;
    margin-top: -14vh;
  }
  .projectDetail .f1Box .f1Right {
    margin-top: 20vw;
  }
}
@media screen and (max-width: 1440px) {
  .bannerSwiper .swiper-button-next{
    left: 30vw;
  }
  .bannerSwiper .swiper-button-prev{
    left: 28vw;
  }
  .projectDetail .f1Box .f1Right {
    margin-top: 25vw;
  }
}
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
  .bannerSwiper .swiper-button-next{
    display: none;
  }
  .bannerSwiper .swiper-button-prev{
    display: none;
  }
  .bannerBox {
    height: 40vw;
  }
  .project .f1 {
    padding: 10vw 5vw;
  }
  .project .f1 .tit {
    font-size: 24px;
  }
  .project .f1 .f1Box .item {
    width: 100%;
    height: 60vw;
    margin-right: 0;
    margin-top: 5vw;
    padding: 5vw;
  }
  .project .f1 .f1Box .item .nameBox .name {
    font-size: 18px;
  }
  .project .f1 .f1Box .item .nameBox .name span {
    font-size: 14px;
  }
  .project .f1 .f1Box .item .nameBox .name span sub{
    font-size: 12px;
  }
  .project .f1 .f1Box .item .nameBox .kg {
    width: 14vw;
    height: 6vw;
    line-height: 6vw;
    font-size: 14px;
  }
  .project .f1 .f1Box .item .img {
    width: 16vw;
    height: 95vw;
    margin: 5vw auto 0 auto;
  }
  .projectDetail {
    background: #749ccf;
  }
  .projectDetail .bgImg {
    position: absolute;
    display: none;
  }
  .projectDetail .f1Box {
    margin-top: 0;
  }
  .projectDetail .f1Box .imgBox {
    display: none;
  }
  .projectDetail .f1Box .f1Right {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    padding: 10vw 5vw;
  }
  .projectDetail .f1Box .f1Right .text .tit {
    font-size: 22px;
  }
  .projectDetail .f1Box .f1Right .text .des {
    font-size: 14px;
  }
  .projectDetail .f1Box .f1Right .text .argumentBox {
    margin: 5vw 0;
  }
  .projectDetail .f1Box .f1Right .text .argumentBox .argument {
    width: 43vw;
    font-size: 14px;
    margin-right: 4vw !important;
    margin-bottom: 3vw;
  }
  .projectDetail .f1Box .f1Right .text .argumentBox .argument:nth-child(2n) {
    margin-right: 0 !important;
  }
  .projectDetail .f1Box .f1Right .text .argumentBox .argument:last-child {
    width: 100%;
    margin-right: 0 !important;
  }
  .projectDetail .f1Box .f1Right .text .argumentBox .argument:last-child .t {
    width: 30vw;
  }
  .projectDetail .f1Box .f1Right .text .zixun {
    width: 28vw;
    font-size: 14px;
    padding: 2vw 0;
  }
  .projectDetail .f1Box .f1Right .f1Box {
    margin-top: 5vw;
    padding: 5vw;
  }
  .projectDetail .f1Box .f1Right .f1Box .packingBox .t {
    font-size: 18px;
  }
  .projectDetail .f1Box .f1Right .f1Box .document .t {
    font-size: 18px;
  }
  .projectDetail .f1Box .f1Right .f1Box .document .des {
    padding: 5vw 0;
  }
  .projectDetail .f1Box .f1Right .f1Box .document .des .t {
    font-size: 14px;
  }
  .projectDetail .f1Box .f1Right .f1Box .document .des .t img {
    width: 3vw;
    height: 3vw;
  }
  .projectDetail .f1Box .f1Right .f1Box .document .des .linkBox a {
    width: 5vw;
  }
  .projectDetail .f1Box .f1Right .f1Box .products .t {
    font-size: 18px;
  }
  .projectDetail .f1Box .f1Right .f1Box .products .productsBox {
    display: block;
  }
  .projectDetail .f1Box .f1Right .f1Box .products .productsBox .item {
    width: 100%;
    height: 50vw;
    margin-top: 5vw;
    padding: 5vw;
    display: block;
    float: inherit;
  }
  .projectDetail .f1Box .f1Right .f1Box .products .productsBox .item .nameBox .name {
    font-size: 14px;
  }
  .projectDetail .f1Box .f1Right .f1Box .products .productsBox .item .nameBox .name span {
    font-size: 12px;
  }
  .projectDetail .f1Box .f1Right .f1Box .products .productsBox .item .nameBox .kg {
    width: 12vw;
    height: 5vw;
    line-height: 5vw;
    font-size: 12px;
  }
  .projectDetail .f1Box .f1Right .f1Box .products .productsBox .item .img {
    width: 15vw;
    height: 77vw;
    margin: 5vw auto 0 auto;
  }
  .projectDetail .f1Box .f1Right .f1Box .contact {
    margin-top: 5vw;
    display: block;
  }
  .projectDetail .f1Box .f1Right .f1Box .contact .t {
    font-size: 16px;
  }
  .projectDetail .f1Box .f1Right .f1Box .contact .contactBox {
    display: block;
  }
  .projectDetail .f1Box .f1Right .f1Box .contact .contactBox .left .phoneBox .name {
    font-size: 14px;
  }
  .projectDetail .f1Box .f1Right .f1Box .contact .contactBox .left .phoneBox .phone {
    font-size: 16px;
  }
  .projectDetail .f1Box .f1Right .f1Box .contact .contactBox .left .address {
    font-size: 14px;
  }
  .projectDetail .f1Box .f1Right .f1Box .contact .contactBox .right {
    width: 100%;
    margin-top: 5vw;
  }
  .projectDetail .f1Box .f1Right .f1Box .contact .contactBox .right #form .inputItem .inputBox {
    font-size: 14px;
    padding: 2vw 5vw;
    margin-top: 3vw;
    float: inherit;
  }
  .projectDetail .f1Box .f1Right .f1Box .contact .contactBox .right #form .inputItem .inputBox input {
    font-size: 14px;
    width: 80%;
    margin-left: 5vw;
    padding-left: 5vw;
  }
  .projectDetail .f1Box .f1Right .f1Box .contact .contactBox .right #form .inputItem .subimt {
    width: 30vw;
    font-size: 14px;
    line-height: 5vw;
    padding: 2vw 0;
    margin: 5vw auto 0 auto;
    display: block;
  }
  .footer #form {
    display: none;
  }
  .footer .footerBox {
    border-top: transparent;
    padding: 7vw 5vw;
    display: block;
  }
  .footerNav {
    display: none;
  }
  .footer .footerBox .text {
    text-align: center;
  }
  .footer .footerBox .text .logo {
    width: 50vw;
    margin: 0 auto;
  }
  .footer .footerBox .text .phone {
    margin-top: 3vw;
  }
  .footer .footerBox .text .phone .name {
    font-size: 14px;
  }
  .footer .footerBox .text .phone .p {
    font-size: 22px;
  }
  .footer .footerBox .text .tex {
    font-size: 16px;
  }
  .footer .footerBox .qrcodeBox {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin: 5vw auto 0 auto;
  }
  .footer .footerBox .qrcodeBox .qrcode {
    width: 22vw;
    display: inline-block;
    margin: 0 3vw;
    font-size: 12px;
  }
  .footer .footerInfo {
    display: block;
    font-size: 12px;
  }
  .tabBox {
    display: none;
  }
  .solution .f1 {
    padding: 10vw 5vw;
  }
  .solution .f1 .tit {
    font-size: 20px;
  }
  .solution .f1 .f1Box .item {
    margin-top: 5vw;
    display: block;
  }
  .solution .f1 .f1Box .item .imgBox {
    width: 100%;
    height: 50vw;
  }
  .solution .f1 .f1Box .item .textBox {
    width: 100%;
    padding: 5vw;
  }
  .solution .f1 .f1Box .item .textBox .icon {
    width: 10vw;
  }
  .solution .f1 .f1Box .item .textBox .t {
    font-size: 18px;
    margin: 2vw 0;
  }
  .solution .f1 .f1Box .item .textBox .des {
    font-size: 14px;
  }
  .solution .f1 .f1Box .item .textBox .taps .tap {
    font-size: 14px;
    padding: 0 1vw;
    border-radius: 1vw;
    margin-right: 3vw;
    margin-bottom: 2vw;
  }
  .solution .f1 .f1Box .item .textBox .taps .tap sub {
    top: -0.7vw;
  }
  .case .f1 {
    padding: 10vw 5vw;
  }
  .case .f1 .t {
    font-size: 20px;
  }
  .case .f1 .itemBox {
    display: block;
  }
  .case .f1 .itemBox .itemLeft {
    width: 100%;
    height: auto;
    background: transparent;
  }
  .case .f1 .itemBox .itemLeft .imgBox{
    height: 50vw;
  }
  .case .f1 .itemBox .itemLeft .textBox {
    width: 100%;
    margin-top: 0;
    color: inherit;
    position: relative;
  }
  .case .f1 .itemBox .itemLeft .textBox .text .tit {
    font-size: 16px;
  }
  .case .f1 .itemBox .itemLeft .textBox .text .des {
    font-size: 14px;
  }
  .case .f1 .itemBox .itemLeft .textBox .more {
    display: none;
  }
  .case .f1 .itemBox .itemRight {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 5vw;
    padding: 0;
    background: transparent;
  }
  .case .f1 .itemBox .itemRight .imgBox {
    width: 100%;
    height: 50vw;
  }
  .case .f1 .itemBox .itemRight .textBox {
    height: auto;
  }
  .case .f1 .itemBox .itemRight .textBox .text .tit {
    font-size: 16px;
  }
  .case .f1 .itemBox .itemRight .textBox .text .des {
    font-size: 14px;
  }
  .case .f1 .itemBox .itemRight .textBox .more {
    display: none;
  }
  .solutionDetail .f1 {
    padding: 10vw 5vw;
    display: block;
  }
  .solutionDetail .f1 .imgBox {
    width: 100%;
    height: 50vw;
  }
  .solutionDetail .f1 .textBox {
    width: 100%;
    margin-top: 5vw;
  }
  .solutionDetail .f1 .textBox .t {
    font-size: 18px;
  }
  .solutionDetail .f1 .textBox .des {
    font-size: 14px;
  }
  .solutionDetail .f1 .textBox .zixun {
    width: 30vw;
    font-size: 14px;
    padding: 2vw 0;
    margin-top: 3vw;
  }
  .solutionDetail .f2 {
    padding: 0 5vw 5vw 5vw;
  }
  .solutionDetail .f2 .t {
    font-size: 18px;
  }
  .solutionDetail .f2 .f2Box .f2Swiper .item {
    width: 43vw;
    height: 43vw;
    padding: 3vw;
  }
  .solutionDetail .f2 .f2Box .f2Swiper .item .nameBox .name {
    font-size: 14px;
  }
  .solutionDetail .f2 .f2Box .f2Swiper .item .nameBox .name span {
    font-size: 12px;
  }
  .solutionDetail .f2 .f2Box .f2Swiper .item .nameBox .name span sub {
    font-size: 12px;
  }
  .solutionDetail .f2 .f2Box .f2Swiper .item .nameBox .kg {
    font-size: 12px;
    width: 10vw;
    height: 4.5vw;
    line-height: 4.5vw;
  }
  .solutionDetail .f2 .f2Box .f2Swiper .item .img {
    width: 18vw;
    height: 62vw;
  }
  .solutionDetail .f2 .f2Box .f2Swiper {
    padding-bottom: 10vw;
  }
  .solutionDetail .f3 .t {
    font-size: 18px;
    padding: 5vw;
  }
  .solutionDetail .f3 .f3Swiper .swiper-slide .img {
    height: 50vw;
  }
  .solutionDetail .f3 .f3Swiper .swiper-slide {
    transform: scale(0.95);
  }
  .solutionDetail .f3 .f3Swiper .swiper-slide .text {
    margin-top: 3vw;
  }
  .solutionDetail .f3 .f3Swiper .swiper-slide .text .tit {
    font-size: 16px;
    font-weight: normal;
  }
  .solutionDetail .f3 .f3Swiper .swiper-slide .text .des {
    font-size: 14px;
  }
  .news .f1 {
    padding: 10vw 5vw;
    display: block;
  }
  .news .f1 .newsBox {
    width: 100%;
    margin-right: 0;
    display: block;
    float: inherit;
  }
  .news .f1 .announcementBox {
    width: 100%;
    position: relative;
    top: inherit;
    display: block;
  }
  .news .f1 .newsBox .tit {
    font-size: 20px;
  }
  .news .f1 .newsBox .newsItem .item {
    margin-top: 5vw;
    padding-bottom: 5vw;
  }
  .news .f1 .newsBox .newsItem .item .imgBox {
    width: 35vw;
    height: 18vw;
  }
  .news .f1 .newsBox .newsItem .item .textBox {
    width: 62vw;
    padding: 0 2vw;
  }
  .news .f1 .newsBox .newsItem .item .textBox .t {
    font-size: 16px;
    -webkit-line-clamp: 2;
    line-height: 1.5;
    font-weight: normal;
  }
  .news .f1 .newsBox .newsItem .item .textBox .des {
    display: none;
  }
  .news .f1 .newsBox .newsItem .item .textBox .time {
    font-size: 12px;
    bottom: 0;
  }
  .news .f1 .newsBox .newsItem .item:nth-child(1) {
    display: block;
    padding-bottom: 0;
  }
  .news .f1 .newsBox .newsItem .item:nth-child(1) .imgBox{
    width: 100%;
    height: 50vw;
  }
  .news .f1 .newsBox .newsItem .item:nth-child(1) .textBox{
    width: 100%;
    padding: 3vw 0;
  }
  .news .f1 .newsBox .newsItem .item:nth-child(1) .textBox .time{
    position: relative;
    margin-top: 1vw;
  }
  .news .f1 .announcementBox {
    margin-top: 5vw;
  }
  .news .f1 .announcementBox .tit {
    font-size: 20px;
  }
  .news .f1 .announcementBox .announcement {
    margin-top: 5vw;
  }
  .news .f1 .announcementBox .announcement .announcementItem {
    width: 95%;
  }
  .news .f1 .announcementBox .announcement .announcementItem .item {
    padding: 5vw 2vw;
  }
  .news .f1 .announcementBox .announcement .announcementItem .item .t {
    font-size: 16px;
    padding-left: 3vw;
    font-weight: normal;
  }
  .news .f1 .announcementBox .announcement .announcementItem .item .des {
    display: none;
  }
  .news .f1 .announcementBox .announcement .announcementItem .item .t::before {
    width: 1.2vw;
    height: 1.2vw;
    margin-top: 2.5vw;
    margin-left: -3vw;
  }
  .news .f1 .announcementBox .announcement .more {
    height: 8vw;
    line-height: 8vw;
    font-size: 14px;
  }
  .about .f1 {
    height: auto;
    padding: 10vw 5vw;
    background: transparent;
  }
  .about .f1 .titBox .t {
    font-size: 24px;
  }
  .about .f1 .titBox .d {
    font-size: 18px;
    font-weight: normal;
  }
  .about .f1 .img {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 0;
    left: 0;
    border-radius: 5vw;
  }
  .about .f1 .text {
    width: 100%;
    margin-left: 0;
    margin-top: 5vw;
    font-size: 14px;
  }
  .case .f2 {
    padding: 0 5vw 10vw 5vw;
  }
  .case .f2 .t {
    font-size: 20px;
  }
  .sp_header {
    height: 50px;
    overflow: hidden;
    background: white;
    position: fixed;
    z-index: 99;
    width: 100%;
    top: 0;
  }
  .sp_header .serach{
    position: absolute;
    font-size: 26px;
    right: 16vw;
    margin-top: 1.8vw;
  }
  .sp_logo {
    float: left;
  }

  .sp_logo img {
    padding: 10px 5vw;

    margin: auto;

    width: 220px;

    transition: .35s all ease-in-out;
  }

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

  .sp_nav span {

    display: block;

    background: #1670b0;

    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: 99;
    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 solid #dacfb0;

    position: relative;

    line-height: 55px;

    font-size: 14px

  }
  .sjj_nav ul li.active{
    /*background: #f3f3f3;*/
  }
  /*.sjj_nav ul li.active a{*/
  /*  color: #ffebcb;*/
  /*}*/
  .sjj_nav > ul > li:last-child {

    border-top: 1px solid #dacfb0;

  }

  .sjj_nav ul li ul {
    background: #f3f3f3;
    display: none;
    border-top: 1px solid #616161;
    padding: 10px 0;
  }

  .sjj_nav ul li a {

    color: #513c1f;

    width: 80%;

    display: block;

    font-size: 18px;

    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: #063c7e;

  }

  .sjj_nav ul li .sjj_nav_i_se svg {

    fill: #53b170;

  }

  .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: 5vw;
    top: 2vw;
    font-size: 26px;
    color: #1670b0;
    z-index: 100;
  }
  .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;
  }
  #menu{
    display: none;
  }
  .index .scroll{
    display: none;
  }
  .detail_top{
    padding: 20vw 5vw 10vw 5vw;
  }
  .detail_top .w100{
    width: 100%;
  }
  .detail_top .title{
    font-size: 22px;
  }
  .detail_top .info{
    display: block;
  }
  .detail_box{
    width: 100%;
    padding: 10vw 5vw;
    display: block;
  }
  .detail_box .dpl{
    width: 100%;
  }
  .detail_box .dpl .singePage{
    min-height: inherit;
  }
  .detail_box .dpr{
    display: none;
  }
  .ndc_npnews{
    display: block;
  }
  .ndc_npnews .post_next, .ndc_npnews .post_prev{
    width: 100%;
    font-size: 14px;
    padding: 5vw;
  }
  .about .f3 .titBox .t{
    font-size: 20px;
  }
  .about .f4{
    height: auto;
    padding: 10vw 0 0 0;
    background: transparent;
    overflow: hidden;
  }
  .about .f4 .f4Box{
    width: 100%;
    padding: 0 5vw;
  }
  .about .f4 .f4Box .tit{
    font-size: 18px;
  }
  .about .f4 .f4Box .d{
    font-size: 14px;
  }
  .about .f4 .f4Box .addressBox .item{
    font-size: 14px;
  }
  .about .f4 .f4Box .more{
    display: none;
  }
  .about .f4 .mapImg{
    width: 140%;
    transform: translateX(-30vw);
  }
  .index .homeSwiper .f3 .f3Text{
     padding-top: 22vw;
     padding-left: 5vw;
  }
  .index .homeSwiper .f3 .f3Text .tit{
     font-size: 24px;
  }
  .index .homeSwiper .f3 .f3Box{
    display: block;
  }
  .index .homeSwiper .f3 .f3Box .item{
    height: 25vh;
  }
  .index .homeSwiper .f3 .f3Box .item .text{
    width: 100vw;
    padding-top: 12vw;
    padding-left: 3vw;
    text-align: center;
  }
  .index .homeSwiper .f3 .f3Box .item.active .text{
    padding-top: 15vw;
  }
  .index .homeSwiper .f3 .f3Box .item.active .text .icon{
    margin: 0 auto;
  }
  .index .homeSwiper .f3 .f3Box .item .text .icon{
    width: 8vw;
    margin: 0 auto;
  }
  .index .homeSwiper .f3 .f3Box .item .text .name{
    font-size: 18px;
    margin: 2vw 0;
  }
  .index .homeSwiper .f3 .f3Box .item .text .des{
    display: none;
  }
  .index .homeSwiper .f3 .f3Box .item .text .more{
    width: 25vw;
    font-size: 12px;
    padding: 1vw 0;
    opacity: 1;
    margin: 0 auto;
  }
  .index{
    margin-top: 0;
  }
  .index .homeSwiper .f4 .f4Text{
    padding-top: 22vw;
    padding-left: 5vw;
  }
  .index .homeSwiper .f4 .f4Text .tit{
    font-size: 24px;
  }
  .index .homeSwiper .f4 .f4Text .des{
    font-size: 16px;
  }
  .index .homeSwiper .f4 .more{
    width: 25vw;
    font-size: 12px;
    padding: 2vw 0;
    left: 38vw;
    bottom: 5vw;
  }
  .index .homeSwiper .f1 .bannerSwiper .swiper-slide .img .text{
    width: 80%;
  }
  .index .homeSwiper .f1 .bannerSwiper .swiper-slide .img{
    padding-top: 40vw;
  }
  .index .homeSwiper .f1 .con_txt .slide_con .pagination_num{
    font-size: 14px;
  }
  .index .homeSwiper .f1 .con_txt .slide_con .pagination_num .swiper-pagination-current{
    font-size: 14px;
  }
  .index .homeSwiper .f2 .f2Text{
    padding-top: 22vw;
    padding-left: 5vw;
  }
  .index .homeSwiper .f2 .f2Text .tit{
    font-size: 24px;
  }
  .index .homeSwiper .f2 .f2Text .des{
    font-size: 16px;
  }
  .index .homeSwiper .f2 .f2Swiper2 .swiper-slide .text{
    width: 100%;
    margin-top: 40vw;
    padding: 5vw;
  }
  .index .homeSwiper .f2 .f2Swiper2 .swiper-slide .text .name{
    font-size: 18px;
  }
  .index .homeSwiper .f2 .f2Swiper2 .swiper-slide .text .des{
    font-size: 14px;
  }
  .index .homeSwiper .f2 .f2Swiper2 .swiper-slide .text .more{
    width: 25vw;
    font-size: 12px;
    padding: 2vw 0;
  }
  .index .homeSwiper .f2 .f2Swiper{
    width: 100vw;
    left: 0;
    padding-bottom: 5vw;
  }
  .index .homeSwiper .f2 .f2Swiper .swiper-slide{
    font-size: 16px;
    padding-bottom: 5vw;
  }
  .index .homeSwiper .f2 .f2Swiper .swiper-slide::before{
    content: inherit;
  }
  .index .homeSwiper .f2 .f2Swiper .swiper-slide-thumb-active{
    color: white;
  }
  .index .homeSwiper .f2 .f2Swiper .swiper-slide-thumb-active::before{
    height: 2px;
  }
  .index .homeSwiper .f2 .f2Swiper2 .swiper-slide .imgBox{
    width: 95vw;
    margin-top: 55vh;
  }
  .index .homeSwiper .f4 .f4Box .item1{
    width: 45vw;
  }
  .index .homeSwiper .f4 .f4Box .circle1{
    width: 60vw;
    height: 60vw;
    top: -16%;
    left: 20%;
  }
  .index .homeSwiper .f4 .f4Box .circle2{
    width: 80vw;
    height: 80vw;
    top: -38%;
    left: 11%;
  }
  .index .homeSwiper .f4 .f4Box .circle3{
    width: 95vw;
    height: 95vw;
    top: -55%;
    left: 3%;
  }
  .index .homeSwiper .f4 .f4Box .item{
    width: 26vw;
  }
  .index .homeSwiper .f4 .f4Box .item .icon{
    width: 10vw;
  }
  .index .homeSwiper .f4 .f4Box .item .name{
    font-size: 14px;
  }
  .index .homeSwiper .f4 .f4Box .item .des{
    font-size: 12px;
  }
  .index .homeSwiper .f4 .f4Box .item2{
    left: 5vw;
    margin-top: -60vw;
  }
  .index .homeSwiper .f4 .f4Box .item3{
    left: 1.5vw;
    margin-top: -26vw;
  }
  .index .homeSwiper .f4 .f4Box .item4{
    left: 16vw;
    margin-top: 7vw;
  }
  .index .homeSwiper .f4 .f4Box .item5{
    right: 30vw;
    margin-top: -75vw;
  }
  .index .homeSwiper .f4 .f4Box .item6{
    right: 3vw;
    margin-top: -60vw;
  }
  .index .homeSwiper .f4 .f4Box .item7{
    right: 1vw;
    margin-top: -20vw;
  }
  .index .homeSwiper .f4 .f4Box .item8{
    right: 21vw;
    margin-top: 7vw;
  }
  .index .homeSwiper .f5 .f5Text{
    width: 100%;
    padding-top: 22vw;
    padding-left: 5vw;
  }
  .index .homeSwiper .f5 .f5Text .tit{
    font-size: 24px;
  }
  .index .homeSwiper .f5 .f5Text .des{
    font-size: 16px;
    margin: 3vw 0;
  }
  .index .homeSwiper .f5 .f5Text .des2{
    font-size: 14px;
  }
  .index .homeSwiper .f5 .more{
    width: 25vw;
    font-size: 12px;
    padding: 2vw 0;
    left: 38vw;
  }
  .index .homeSwiper .f5 .f5Img{
    width: 95%;
    right: 2vw;
    top: 50vh;
  }
  .index .homeSwiper .f5 svg{
    width: 60%;
    position: absolute;
    right: 17vw;
    top: 55vh;
    z-index: 9;
  }
  .index .homeSwiper .f6 .f6Text{
    width: 100%;
    padding-top: 22vw;
    padding-left: 5vw;
  }
  .index .homeSwiper .f6 .f6Text .tit{
    font-size: 24px;
  }
  .index .homeSwiper .f6 .f6Text .des{
    font-size: 16px;
    margin: 3vw 0;
  }
  .index .homeSwiper .f6 .more{
    width: 25vw;
    font-size: 12px;
    padding: 2vw 0;
    right: 5vw;
    top: 22vw;
  }
  .index .homeSwiper .f6 .f6Box{
    padding: 0 5vw;
    display: block;
  }
  .index .homeSwiper .f6 .f6Box .left{
    display: inline-block;
    width: 100%;
    height: auto;
    border-radius: 5vw;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
  }
  .index .homeSwiper .f6 .f6Box .left .imgBox .img{
    height: 50vw;
  }
  .index .homeSwiper .f6 .f6Box .left .textBox{
    padding: 5vw;
  }
  .index .homeSwiper .f6 .f6Box .left .textBox .name{
    font-size: 16px;
    font-weight: normal;
  }
  .index .homeSwiper .f6 .f6Box .left .textBox .des{
    display: none;
  }
  .index .homeSwiper .f6 .f6Box .left .textBox .time{
    font-size: 14px;
    margin-top: 1vw;
    position: relative;
  }
  .index .homeSwiper .f6 .f6Box .center{
    display: inline-block;
    width: 100%;
    height: auto;
    margin-top: 5vw;
    padding: 5vw;
  }
  .index .homeSwiper .f6 .f6Box .center .textBox{
    padding: 0;
  }
  .index .homeSwiper .f6 .f6Box .center .textBox .name{
    font-size: 16px;
    font-weight: normal;
  }
  .index .homeSwiper .f6 .f6Box .center .textBox .des{
    font-size: 14px;
    -webkit-line-clamp: 2;
    margin: 3vw 0;
  }
  .index .homeSwiper .f6 .f6Box .center .textBox .time{
    font-size: 14px;
    position: relative;
    margin-top: 1vw;
  }
  .index .homeSwiper .f6 .f6Box .rightBox{
    display: none;
  }
  .index .homeSwiper .f7 .f7Text{
    width: 100%;
    padding-top: 20vw;
    padding-left: 5vw;
  }
  .index .homeSwiper .f7 .f7Text .tit{
    font-size: 24px;
  }
  .index .homeSwiper .f7 .f7Text .des{
    font-size: 16px;
    margin: 3vw 0;
  }
  .index .homeSwiper .f7 .more{
    width: 25vw;
    font-size: 12px;
    padding: 2vw 0;
    right: 5vw;
    top: 22vw;
  }
  .about .f2{
    display: none;
  }
  .index .homeSwiper .f4 .f4Box2{
    width: 100%;
    padding: 50vw 0 0 10vw;
  }
  .index .homeSwiper .f4 .f4Box2 .item{
    display: flex;
    margin-bottom: 4vw;
  }
  .index .homeSwiper .f4 .f4Box2 .item .icon{
    width: 12vw;
  }
  .index .homeSwiper .f4 .f4Box2 .item .text{
    margin-left: 5vw;
    color: white;
  }
  .index .homeSwiper .f4 .f4Box2 .item .text .name{
    font-size: 16px;
  }
  .index .homeSwiper .f4 .f4Box2 .item .text .des{
    font-size: 14px;
  }
  .about .f3{
    height: auto;
    background: url('../images/zbg.jpg') center no-repeat;
  }
  .about .f3 .f3Box .item{
    margin-top: 5vw;
  }
  .projectDetail .f1Box .f1Right .text .argumentBox .argument .t{
    font-size: 14px;
  }
  .projectDetail .f1Box .f1Right .text .argumentBox .argument .d{
    font-size: 14px;
  }
  .project .tabBox{
    display: block;
    padding: 1vw 5vw;
  }
  .project .tabBox .links{
    display: none;
  }
  .project .tabBox .tabs{
    font-size: 14px;
  }
  .project .tabBox .tabs .tab{
    margin-right: 14vw;
  }
  .index .homeSwiper .f7 .f7Img{
    width: 82vw;
  }
  .serachBox .close{
    font-size: 36px;
  }
  .serachBox .serachs{
    width: 80%;
    font-size: 26px;
  }
  .serachBox .serachs input{
    width: 70vw;
    font-size: 16px;
  }
  .news5 ul li a .thum{
    height: 25vw;
  }
  .news5 ul li{
    text-align: center;
  }
}
