@import url('unit/animate.min.css');
@import url('unit/swiper-bundle.min.css');
@import url('unit/hover-min.css');
 
@import url(icon/iconfont.css);
@import url(icon/bottom_icon/iconfont.css);
@import url(../index/icon/social/iconfont.css);
@font-face {
  font-family: Montserrat-Regular;
  src: url(fonts/Montserrat-Regular.woff2);
} 

@font-face {
  font-family: siyuan;
  src: url(fonts/SOURCE_HAN_SANS_SC_REGULAR.OTF);
} 

@font-face {
  font-family: siyuan2;
  src: url(fonts/NotoSans-VariableFont_wdth,wght.ttf);
} 
:root {
  --blue: #00AFEF;
  --darkblue: #0052A8;
  --color: #00AFEF;
  --darkcolor: #3F444B;
} 
html {
    overflow-y:  scroll;
    font-family: siyuan2; 
}
body {
    font-family: siyuan2 !important; 
}
.this_public { 
    font-family: siyuan2 !important; 
}
.this_public .w1440 {
  width: 1440px;
  margin: auto;
}
.this_public .w1280 {
  width: 1280px;
  margin: auto;
}

.this_public .wl1280 {
  width:calc(1280px + (100% - 1280px)/2); 
}
.this_public .w1024 {
    width: 1024px;
    margin: auto;
}


.this_public .w1140 {
  width: 1140px;
  margin: auto;
}


.this_public .mw800 {
  max-width: 800px;
  margin: auto;
}

.this_public .this_title {
  text-align: center;
}
.this_public .this_title h2 {
  font-weight: 700;
  font-size: 40px;
  color: #FFF;
}
.this_public .this_title p {
  margin-top: 10px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 300;
}
.this_public .this_title2 {
  text-align: center;
}
.this_public .this_title2 h2 {
  font-weight: 700;
  font-size: 40px;
  color: #000;
}
.this_public .this_title2 p {
  margin-top: 8px;
  color: #333;
  font-size: 16px;
  font-weight: 300;
}
.this_public .this_title2 .this_more {
  margin-top: 10px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.this_public .this_title2 .this_more span {
  color: #00AFF0;
  font-size: 16px;
}
.this_public .this_title2 .this_more i {
  color: #00AFF0;
  font-size: 16px;
  display: block;
  transition: all 0.5s;
}
.this_public .this_title2 .this_more:hover i {
  animation: arrowRight 1s;
}





 .this_public .thisBanner {
  background-color: #F6F6F6;
}
 .this_public .thisBanner .Wrapper .this_text {
  padding: 50px 0;
}
 .this_public .thisBanner .Wrapper .this_text h1 {
  font-size: 36px;
}
 .this_public .thisBanner .Wrapper .this_text p {
  font-size: 18px;
}

  .pageBannerWrap {
     width: 100%;
 }
  .pageBannerWrap img {
     width: 100%;
 }

 .this_public .proWrapper .Wrapper {
  padding: 50px 0;
}
 .this_public .proWrapper .Wrapper .this_title {
  text-align: center;
}
 .this_public .proWrapper .Wrapper .this_title h2 {
  font-size: 36px;
}
 .this_public .proWrapper .Wrapper .this_in {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
}
 .this_public .proWrapper .Wrapper .this_in .this_child {
  width: 25%;
  padding: 10px;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
}
 .this_public .proWrapper .Wrapper .this_in .this_child .img_b {
  display: block;
  width: 100%;
  height: 0;
  padding-top: 70%;
  position: relative;
}
 .this_public .proWrapper .Wrapper .this_in .this_child .img_b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
 .this_public .proWrapper .Wrapper .this_in .this_child .this_text {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 .this_public .proWrapper .Wrapper .this_in .this_child .this_text h5 {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  
   display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
 .this_public .proWrapper .Wrapper .this_in .this_child .this_text p {
  font-size: 14px;
  color: #7A7A7A;
  display: inline-block;
  margin-bottom: 20px;
  
   display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
 .this_public .proWrapper .Wrapper .this_in .this_child .this_text .this_button {
  margin-top: auto;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 30px;
  color: #fff;
  background-color: var(--color);
  transition: all 0.5s;
}
 .this_public .proWrapper .Wrapper .this_in .this_child .this_text .this_button:hover {
  background-color: #444444;
}
 .this_public .proWrapper .Wrapper .this_in .this_child:nth-child(odd) {
  background-color: #F9F9F9;
}
 .this_public .proWrapper .Wrapper .this_in .this_child:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}







@keyframes arrowRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 1440px) {
  .this_public .w1440 {
    width: 1280px;
  }
}
@media screen and (max-width: 1280px) {
  .this_public .w1440 {
    width: 1024px;
  }
  .this_public .w1280 {
    width: 1024px;
  }
  
  .this_public .wl1280 {
  width:calc(1024px + (100% - 1024px)/2); 
  }
  
  
  .this_public .w1140 {
    width: 1024px;
  }
  .this_public .this_title h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .this_public .w1440 {
    width: 900px;
  }
  .this_public .w1280 {
    width: 900px;
  }
  
  .this_public .wl1280 {
  width:calc(900px + (100% - 900px)/2); 
  }
  .this_public .w1140 {
    width: 900px;
  }
}
@media screen and (max-width: 950px) {
  .this_public .w1440 {
    width: 90vw;
  }
  .this_public .w1280 {
    width: 90vw;
  }
  .this_public .w1140 {
    width: 90vw;
  }
  .this_public .this_title2 h2 {
      font-size: 28px;
  }
  
}

@media screen and (max-width: 700px) {
   .this_public .proWrapper .Wrapper .this_title h2 {
    font-size: 24px;
  }
   .this_public .proWrapper .Wrapper .this_in {
    flex-direction: column;
  }
   .this_public .proWrapper .Wrapper .this_in .this_child {
    width: 100%;
  }
}
header {
  position: relative;
}
header .thisWrapper {
  width: 100%;
}
header .thisWrapper .page-title {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0;
  margin: auto;
  background-color: #FFFFFF;
  position: relative;
  z-index: 9;
}
header .thisWrapper .page-title .this_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .thisWrapper .page-title .this_in .this_logo {
  width: 160px;
}
header .thisWrapper .page-title .this_in .this_logo img {
  width: 100%;
}
header .thisWrapper .page-title .this_in .center {
  display: flex;
  align-items: center;
  gap: 50px;
}
header .thisWrapper .page-title .this_in .center .img_b {
  width: 220px;
}
header .thisWrapper .page-title .this_in .center .img_b img {
  width: 100%;
}
header .thisWrapper .page-title .this_in .right_img {
  width: 250px;
}
header .thisWrapper .page-title .this_in .right_img img {
  width: 100%;
}
header .thisWrapper .this_web_head {
  padding: 0;
  border-top: 2px;
  width: 100%;
  top: 0;
  z-index: 999;
  transition: all 0.5s;
  background-color: transparent;
  position: fixed;
}
header .thisWrapper .this_web_head .Wrapper {
  width: 85vw;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
  position: relative;
  z-index: 9999;
}
header .thisWrapper .this_web_head .Wrapper .this_logo {
  width: 13vw;
}
header .thisWrapper .this_web_head .Wrapper .this_logo .img_b {
    display: block;
}
header .thisWrapper .this_web_head .Wrapper .this_logo img {
  width: 100%;
  filter: brightness(0) invert(1);
}
header .thisWrapper .this_web_head .Wrapper .web_nav {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul {  
  display: flex;
  justify-content: center;
  z-index: 9;
  width: 100%;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li {
  line-height: 1.3;
  position: relative;
  text-align: center;
  transition: all 300ms;
  display: flex;
  align-items: center;
  
  padding: 40px;
  padding-top: 22px;
  padding-bottom: 22px;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > a {
  transition: all 300ms;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  position: relative;
  color: #fff;
  
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > a > i {
  margin-left: 3px;
  font-size: 16px;
  transition: all 0.5s;
  color: #fff;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > ul {
  box-shadow: 0 10px 30px 0 rgba(45, 45, 45, 0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 260px;
  top: 100%;
  left: 0;
  transform: translate(0, -10%);
  transition: opacity 0s all 0.5s;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > ul::before {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  top: -2px;
  left: 0;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > ul > li {
  line-height: 2;
  visibility: hidden;
  position: relative;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > ul > li > a {
  color: #353535;
  display: flex;
  padding: 10px 15px;
  align-items: center;
  font-size: 14px;
  text-align: start;
  background-color: transparent;
  border-bottom: none;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > ul > li > ul {
  box-shadow: 0 10px 30px 0 rgba(45, 45, 45, 0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 260px;
  opacity: 0;
  visibility: hidden;
  right: calc(-100% - 5px);
  top: -1px;
  transition: all 1s;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > ul > li > ul::before {
  content: '';
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -5px;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > ul > li > ul li {
  line-height: 2;
  visibility: hidden;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > ul > li > ul li a {
  display: flex;
  align-items: center;
  background-color: transparent;
  padding: 10px 15px;
  border-bottom: none;
  font-size: 14px;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > ul > li > ul li a:hover {
  background-color: var(--darkcolor);
  color: #fff;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > ul > li:hover > a {
  text-decoration: none;
  color: #fff;
  background-color: var(--darkcolor);
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > ul > li:hover ul {
  visibility: visible;
  transition: all 1s;
  opacity: 1;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li > ul > li:hover ul li {
  visibility: visible;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li:hover {
  background-color: var(--color);
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li:hover > a {
  text-decoration: none;
  color: #fff;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li:hover > a > i {
  color: #fff;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
  transition: all 0.5s;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li:hover > ul > li {
  visibility: visible;
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li.current-menu-item {
  background-color: var(--color);
}
header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li.current-menu-item a {
  color: #fff;
  font-weight: 500;
  position: relative;
  border-bottom: none;
}
header .thisWrapper .this_web_head .Wrapper .right {
  display: flex;
  align-items: center;
  z-index: 9999999;
}
header .thisWrapper .this_web_head .Wrapper .right .searchWrapper {
  margin-right: 20px;
}
header .thisWrapper .this_web_head .Wrapper .right .searchWrapper i {
  color: #fff;
  margin-right: 10px;
  font-size: 20px;
}
header .thisWrapper .this_web_head .Wrapper .right .this_sns ul {
  display: flex;
  align-items: center;
  gap: 12px;
}
header .thisWrapper .this_web_head .Wrapper .right .this_sns ul li a i {
  color: #fff;
  font-size: 24px;
}
header .thisWrapper .nav_top_50 {
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s;
  background-color: #fff;
  box-shadow: 0px 0px 12px #999;
}
header .thisWrapper .nav_top_50 .Wrapper .this_logo img {
  filter: none;
}
header .thisWrapper .nav_top_50 .Wrapper .web_nav > ul > li > a {
  color: #444;
}
header .thisWrapper .nav_top_50 .Wrapper .right .searchWrapper i {
  color: #444;
}
header .thisWrapper .nav_top_50 .Wrapper .right .this_sns ul li a i {
  color: #444;
}
header .thisWrapper .nav_top_50 .bg {
  opacity: 1;
}
header .thisWrapper .bannerBottom {
  background-color: #000;
}
@media screen and (max-width: 1280px) {
  header .thisWrapper .this_web_head .Wrapper {
    width: 95vw;
  }
  header .thisWrapper .this_web_head .Wrapper .web_nav > ul > li {
    padding: 15px 15px;
  }
  header .thisWrapper .this_web_head .Wrapper .right {
    position: static;
    top: 0;
    right: 0;
    transform: translate(0);
    padding-right: 20px;
  }
}
.indexPage3 .bannerWrapper .Wrapper {
  height: 100vh;
}
.indexPage3 .bannerWrapper .Wrapper #video-back {
  position: relative;
  height: 100%;
}
.indexPage3 .bannerWrapper .Wrapper #video-back video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexPage3 .bannerWrapper .Wrapper .img_b {
  width: 100%;
}
.indexPage3 .bannerWrapper .Wrapper .img_b img {
  width: 100%;
}
.indexPage3 .bannerWrapper .Wrapper .this_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.indexPage3 .bannerWrapper .Wrapper .this_text h1 {
  color: #FFF;
  font-size: 60px;
  font-weight: 700;
  text-align: center;
}
.indexPage3 .bannerWrapper .Wrapper .this_text p {
  text-align: center;
  color: #CDD8E0;
  font-size: 16px;
  display: inline-block;
  margin: 30px 0;
}
.indexPage3 .bannerWrapper .Wrapper .this_text .this_button {
  color: var(--blue);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  border: 1px solid var(--blue);
  display: flex;
  padding: 15px 50px;
  align-items: flex-start;
  gap: 10px;
  transition: all 0.5s;
}
.indexPage3 .bannerWrapper .Wrapper .this_text .this_button:hover {
  background-color: var(--blue);
  color: #fff;
}
.indexPage3 .modelWrapper1 {
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  padding: 100px 0;
  padding-bottom: 0px;
}
.indexPage3 .modelWrapper1 .Wrapper {
  display: flex;
  justify-content: flex-end; 
}
.indexPage3 .modelWrapper1 .Wrapper .this_in { 
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left {
  width: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left h2 {
  font-size: 40px;
  color: #000;
  font-weight: bold;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left h3 {
  margin-top: 30px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: #494949;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left p {
  margin-top: 50px;
  font-size: 16px;
  line-height: 1.5;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_button {
  margin-top: 40px;
  font-size: 18px;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  padding: 10px 30px;
  transition: all 0.5s;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_button:hover {
  color: var(--blue);
  background-color: transparent;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video {
  margin-top: 35px;
  position: relative;
  width: 300px;
  max-width: 100%;
  height: 200px;
  /*background-color: #000;*/
  background-size: cover;
  background-position: center;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video .dr {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video .drbtn {
  position: relative;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video .cw {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  transition: 0.5s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video .cw i {
  color: #fff;
  font-size: 60px;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video .videomain {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999999999999999999999;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video .videoclose {
  position: absolute;
  top: 50px;
  right: 50px;
  cursor: pointer;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video .videoclose img {
  width: 50px;
  height: 50px;
  display: block;
  cursor: pointer;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video .videobox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  overflow: hidden;
  max-height: 800px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video .videobox video {
  width: 100%;
  height: 100%;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video .videobox iframe {
  width: 100%;
  height: 100%;
  max-height: 800px;
  min-height: 600px;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video .indexaboutimg {
  padding-top: 10%;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .left .right_img {
  display: none;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .right {
  width: 50%;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .right .img_b {
  width: 100%;
}
.indexPage3 .modelWrapper1 .Wrapper .this_in .right .img_b img {
    width: 100%;
}
.indexPage3 .modelWrapper2 {
  background-color: #1A1A1A;
  padding: 90px 0;
}
.indexPage3 .modelWrapper2 .Wrapper .this_in {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.indexPage3 .modelWrapper2 .Wrapper .this_in .this_child {
  width: 30%;
}
.indexPage3 .modelWrapper2 .Wrapper .this_in .this_child .img_b {
  width: 100%;
  height: 0;
  padding-top: 60%;
  position: relative;
  overflow: hidden;
}
.indexPage3 .modelWrapper2 .Wrapper .this_in .this_child .img_b img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  transition: all 0.5s;
}
.indexPage3 .modelWrapper2 .Wrapper .this_in .this_child .img_b:hover img {
  transform: scale(1.1);
}
.indexPage3 .modelWrapper2 .Wrapper .this_in .this_child .this_text {
  padding: 15px;
}
.indexPage3 .modelWrapper2 .Wrapper .this_in .this_child .this_text h5 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.indexPage3 .modelWrapper3 {
  background-color: #0E0E0E;
  padding: 90px 0;
}
.indexPage3 .modelWrapper3 .Wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.indexPage3 .modelWrapper3 .Wrapper .this_in {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}
.indexPage3 .modelWrapper3 .Wrapper .this_in .this_child {
  width: 30%;
}
.indexPage3 .modelWrapper3 .Wrapper .this_in .this_child .img_b {
  display: inline-block;
  width: 100%;
  height: 0;
  padding-top: 60%;
  position: relative;
}
.indexPage3 .modelWrapper3 .Wrapper .this_in .this_child .img_b > img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 2;
}
.indexPage3 .modelWrapper3 .Wrapper .this_in .this_child .img_b .img_b2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 1;
}
.indexPage3 .modelWrapper3 .Wrapper .this_in .this_child .img_b .img_b2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.indexPage3 .modelWrapper3 .Wrapper .this_in .this_child .img_b:hover > img {
  z-index: 1;
  opacity: 0;
}
.indexPage3 .modelWrapper3 .Wrapper .this_in .this_child .img_b:hover .img_b2 {
  z-index: 2;
}
.indexPage3 .modelWrapper3 .Wrapper .this_in .this_child .img_b:hover .img_b2 img {
  opacity: 1;
  visibility: visible;
}
.indexPage3 .modelWrapper3 .Wrapper .this_in .this_child .this_text {
  padding: 15px;
}
.indexPage3 .modelWrapper3 .Wrapper .this_in .this_child .this_text h5 {
  text-align: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}
.indexPage3 .modelWrapper3 .Wrapper .this_in .this_child .this_text p {
  font-size: 14px;
  color: #CDD8E0;
  text-align: center;
}
.indexPage3 .modelWrapper3 .Wrapper .this_button {
  margin-top: 50px;
  color: var(--blue);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  border-radius: 50px;
  border: 1px solid var(--blue);
  display: flex;
  padding: 15px 50px;
  align-items: flex-start;
  gap: 10px;
  transition: all 0.5s;
}
.indexPage3 .modelWrapper3 .Wrapper .this_button:hover {
  background-color: var(--blue);
  color: #fff;
}
.indexPage3 .modelWrapper4 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  background-color: #FAFAFA;
}
.indexPage3 .modelWrapper4 .Wrapper {
  position: relative;
  z-index: 2;
  padding: 120px 0 0;
}
.indexPage3 .modelWrapper4 .Wrapper .this_title {
    padding: 0 7.8125vw;
}
.indexPage3 .modelWrapper4 .Wrapper .this_title h2 {
  color: #000;
}
.indexPage3 .modelWrapper4 .Wrapper .this_title p {
  color: #333;
}
.indexPage3 .modelWrapper4 .Wrapper .this_in {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
}
.indexPage3 .modelWrapper4 .Wrapper .this_in .this_child {
  text-align: center;
  width: 23%;
  background-color: #fff;
  padding: 40px 10px;
  box-sizing: border-box;
  box-shadow: 1px 1px 5px #ddd;
  border-radius: 5px;
}
.indexPage3 .modelWrapper4 .Wrapper .this_in .this_child .top b {
  font-size: 52px;
  color: var(--blue);
}
.indexPage3 .modelWrapper4 .Wrapper .this_in .this_child .bottom p {
  color: #333333;
  font-size: 16px;
}
.indexPage3 .modelWrapper6 {
  background-color: #0E0E0E;
  padding: 90px 0;
}
.indexPage3 .modelWrapper6 .Wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.indexPage3 .modelWrapper6 .Wrapper .this_in {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
}
.indexPage3 .modelWrapper6 .Wrapper .this_in .top {
  width: 100%;
  display: flex;
  gap: 1.33333333%;
}
.indexPage3 .modelWrapper6 .Wrapper .this_in .top .this_child {
  width: 24%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.indexPage3 .modelWrapper6 .Wrapper .this_in .top .this_child .img_b {
  width: 70px;
  height: 70px;
}
.indexPage3 .modelWrapper6 .Wrapper .this_in .top .this_child .img_b img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.indexPage3 .modelWrapper6 .Wrapper .this_in .top .this_child .this_text {
  margin-top: 20px;
}
.indexPage3 .modelWrapper6 .Wrapper .this_in .top .this_child .this_text h5 {
  color: #fff;
  font-size: 20px;
}
.indexPage3 .modelWrapper6 .Wrapper .this_in .bottom {
  margin-top: 30px;
  display: flex;
  gap: 1.33333333%;
}
.indexPage3 .modelWrapper6 .Wrapper .this_in .bottom .this_child {
  width: 24%;
}
.indexPage3 .modelWrapper6 .Wrapper .this_in .bottom .this_child .this_text {
  padding: 15px 0;
}
.indexPage3 .modelWrapper6 .Wrapper .this_in .bottom .this_child .this_text p {
  text-align: center;
  color: #CDD8E0;
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
}
.indexPage3 .modelWrapper6_2 .Wrapper {
  padding: 120px 0;
  padding-top: 60px;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_title h2 {
  width: 50%;
  color: #000;
  margin: auto;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_title p {
  color: #333;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in {
  margin-top: 60px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child {
  width: 23%;
  border: 1px solid var(--blue);
  padding: 40px 15px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  transition: all 0.3s ease;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child:hover {
  background-color: var(--blue);
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child:hover .img_b img {
  filter: none;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child:hover .this_text h3 a {
  color: #fff;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child:hover .this_text > p {
  color: #eee;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child:hover .this_text .this_button span {
  color: #fff;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child:hover .this_text .this_button i {
  color: #fff;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child:hover .this_text .this_intro {
  grid-template-rows: 1fr;  

  opacity: 1;
  visibility: visible;
  height: auto;
  transition: all 0.3s ease;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child:hover .this_text .this_intro > p {
  color: #fff;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child .img_b {
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child .img_b img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) invert(100%) hue-rotate(180deg) brightness(50%) contrast(200%);
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child .this_text {
  transition: all 0.3s ease;
}
 

.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child .this_text h3 {
  transition: all 0.3s ease;
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 22px;
  color: #fff;
  text-align: center;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child .this_text h3 a {
  transition: all 0.3s ease;
  color: var(--blue);
  color: #000;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child .this_text > p {
  transition: all 0.3s;
  color: var(--blue);
  color: #999;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child .this_text .this_button {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child .this_text .this_button span {
  transition: all 0.3s ease;
  font-size: 16px;
  color: var(--blue);
  color: #999;
  display: inline-block;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child .this_text .this_button i {
  transition: all 0.3s ease;
  color: var(--blue);
  color: #999;
  font-size: 20px;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child .this_text .this_intro {
  width: 100%;
  visibility: hidden;
  opacity: 0;
  height: 0;
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease;
}
.indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child .this_text .this_intro p {
  display: inline-block;
  min-height: 0;
  color: var(--blue);
  color: #999;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
}
.indexPage3 .modelWrapper7 {
  padding: 90px 0;
}
.indexPage3 .modelWrapper7 .Wrapper {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.indexPage3 .modelWrapper7 .Wrapper .this_title h2 {
  color: #000;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 20px 2%;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child {
  width: 49%;
  max-height: 300px;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child1 {
  position: relative;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child1 .img_b {
  width: 100%;
  height: 100%;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child1 .img_b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child1 .this_text {
  position: absolute;
  bottom: 20px;
  left: 30px;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child1 .this_text .thisView {
  color: var(--blue);
  position: relative;
  padding-bottom: 5px;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child1 .this_text .thisView::before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--blue);
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child2 {
  background-color: #222222;
  padding: 30px 30px;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child2 .this_time p {
  color: #A8B3BB;
  font-size: 14px;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child2 h5 {
  color: #fff;
  font-size: 20px;
  margin: 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child2 .this_text p {
  color: #CDD8E0;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child2 .thisView {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue);
  position: relative;
  padding-bottom: 5px;
}
.indexPage3 .modelWrapper7 .Wrapper .this_in .this_child2 .thisView::before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--blue);
}
.indexPage3 .modelWrapper8 {
  background-color: #FAFAFA;
}
.indexPage3 .modelWrapper8 .Wrapper {
  padding: 90px 0;
}
.indexPage3 .modelWrapper8 .Wrapper .this_title h2 {
  color: #000;
}
.indexPage3 .modelWrapper8 .Wrapper .this_title p{
    color: #333;
}
.indexPage3 .modelWrapper8 .Wrapper .this_in {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.25%;
}
.indexPage3 .modelWrapper8 .Wrapper .this_in .this_child {
  width: 19%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.indexPage3 .modelWrapper8 .Wrapper .this_in .this_child .img_b {
  width: 70%;
  height: 0;
  padding-top: 70%;
  position: relative;
}
.indexPage3 .modelWrapper8 .Wrapper .this_in .this_child .img_b img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.indexPage3 .modelWrapper8 .Wrapper .this_in .this_child .this_text {
  margin-top: 15px;
}
.indexPage3 .modelWrapper8 .Wrapper .this_in .this_child .this_text p {
  color: #000;
  font-size: 16px;
}
.indexPage3 .modelWrapperAdd1 .Wrapper {
  padding: 110px 0 90px;
}
.indexPage3 .modelWrapperAdd1 .Wrapper .this_in {
  margin-top: 80px;
  display: flex;
  align-items: center;
}
.indexPage3 .modelWrapperAdd1 .Wrapper .this_in .left {
  width: 50%;
  display: flex;
  justify-content: center;
}
.indexPage3 .modelWrapperAdd1 .Wrapper .this_in .left .img_b {
  width: 70%;
}
.indexPage3 .modelWrapperAdd1 .Wrapper .this_in .left .img_b img {
  width: 100%;
}
.indexPage3 .modelWrapperAdd1 .Wrapper .this_in .right {
  width: 50%;
  display: flex;
  justify-content: center;
}
.indexPage3 .modelWrapperAdd1 .Wrapper .this_in .right .this_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: #00AFF0;
  padding: 10px 30px;
}
.indexPage3 .modelWrapperAdd1 .Wrapper .this_in .right .this_button span {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.indexPage3 .modelWrapperAdd1 .Wrapper .this_in .right .this_button i {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}


.indexPage3 .modelWrapperAdd1 .Wrapper .this_in .right .this_button{
    transition: all .5s;
    border: 1px solid var(--blue); 
}

.indexPage3 .modelWrapperAdd1 .Wrapper .this_in .right .this_button:hover{
    background-color: transparent;
   
}

.indexPage3 .modelWrapperAdd1 .Wrapper .this_in .right .this_button:hover span {
    color: var(--blue);
}
.indexPage3 .modelWrapperAdd2 {
  padding: 110px 0 90px;
  background-color: #FAFAFA;
}
.indexPage3 .modelWrapperAdd2 .Wrapper {
  background-color: #fff;
}
.indexPage3 .modelWrapperAdd2 .Wrapper .this_in {
  display: flex;
  align-items: stretch;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}
.indexPage3 .modelWrapperAdd2 .Wrapper .this_in .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
}
.indexPage3 .modelWrapperAdd2 .Wrapper .this_in .left p {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #00AFF0;
}
.indexPage3 .modelWrapperAdd2 .Wrapper .this_in .left .this_button {
  background-color: #00AFF0;
  padding: 10px 30px;
  transition: all .5s; 
  border: 1px solid var(--blue);
  
}

.indexPage3 .modelWrapperAdd2 .Wrapper .this_in .left .this_button:hover {
    background-color: transparent;
}


.indexPage3 .modelWrapperAdd2 .Wrapper .this_in .left .this_button:hover span {
    color: var(--blue);
}
.indexPage3 .modelWrapperAdd2 .Wrapper .this_in .left .this_button span {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}
.indexPage3 .modelWrapperAdd2 .Wrapper .this_in .right {
  width: 50%;
}
.indexPage3 .modelWrapperAdd2 .Wrapper .this_in .right .img_b {
  width: 100%;
}
.indexPage3 .modelWrapperAdd2 .Wrapper .this_in .right .img_b img {
  width: 100%;
}
.indexPage3 .modelWrapperAdd3 {
  background-color: #FAFAFA;
}
.indexPage3 .modelWrapperAdd3 .Wrapper {
  padding: 140px 0 80px;
}
.indexPage3 .modelWrapperAdd3 .Wrapper .this_title2 {
    padding: 0 7.8125vw;
}
.indexPage3 .modelWrapperAdd3 .Wrapper .this_in {
  margin-top: 40px;
  display: flex;
  gap: 2%;
}
.indexPage3 .modelWrapperAdd3 .Wrapper .this_in .this_child {
  background-color: #fff;
  width: 32%;
  padding: 20px 20px;
  color: #000;
}
.indexPage3 .modelWrapperAdd3 .Wrapper .this_in .this_child .img_b {
  width: 100%;
  padding-top: 50%;
  height: 0;
  position: relative;
  overflow: hidden;
}
.indexPage3 .modelWrapperAdd3 .Wrapper .this_in .this_child .img_b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
.indexPage3 .modelWrapperAdd3 .Wrapper .this_in .this_child .this_text {
  margin-top: 10px;
}
.indexPage3 .modelWrapperAdd3 .Wrapper .this_in .this_child .this_text h5 {
  font-weight: bold;
  transition: all 0.5;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.indexPage3 .modelWrapperAdd3 .Wrapper .this_in .this_child .this_text p {
  margin-top: 8px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
}
.indexPage3 .modelWrapperAdd3 .Wrapper .this_in .this_child:hover {
  color: #000;
}
.indexPage3 .modelWrapperAdd3 .Wrapper .this_in .this_child:hover .img_b img {
  transform: scale(1.1);
}
.indexPage3 .modelWrapperAdd3 .Wrapper .this_in .this_child:hover .this_text h5 {
  color: var(--blue);
}
.indexPage3 .modelWrapperAdd3 .Wrapper .this_in .this_child:hover .this_text p {
  color: #333;
}
.indexPage3 .modelWrapperAdd4 .Wrapper {
  margin-top: 5vw;
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_title h2 {
  color: #000;
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_title p {
  color: #333;
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in {
  margin-top: 50px;
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father {
  padding-left: 50px;
  padding-bottom: 75px;
  position: relative;
  width: 100%;
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .swiper {
    padding: 20px 0;
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .swiper .swiper-slide {
     max-width:15.8%
}  

@media (max-width:1280px) {
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .swiper .swiper-slide {
    max-width:35% ;
}  
}

@media (max-width:768px) {
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .swiper .swiper-slide {
    max-width:50% ;
}  
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .swiper .this_child {
  display: block;
  padding: 30px 10px 40px;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(img/index/probg.png);transition: all .3s;
}

.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .swiper .this_child .img_b {
  width: 100%;
  height: auto;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .swiper .this_child:hover  {
    transform: scale(1.1); 
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .swiper .this_child .img_b img {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .swiper .this_child .this_text {
  margin-top: 30px;
  text-align: center;
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .swiper .this_child .this_text p {
  font-size: 24px;
  font-size: bold;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .lrButton {
  bottom: 0;
  top: auto;
  background-color: #eee;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  opacity: 1;
  transition: all .5s;
  
}

.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .lrButton:hover{
    background-color: #00AFEF;
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .lrButton.swiper-button-prev {
  left: calc(50% - 55px);
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .lrButton.swiper-button-next {
  right: calc(50% - 55px);
  background-color: var(--blue);
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .lrButton::before {
  display: none;
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .lrButton::after {
  display: none;
}
.indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father .lrButton i {
  color: #fff;
  font-size: 24px;
}
.indexPage3 .modelWrapperAdd5 {
  background-color: #FAFAFA;
}
.indexPage3 .modelWrapperAdd5 .Wrapper {
  padding: 90px 0 80px;
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child {
  background-color: #fff;
  width: 30%;
  display: flex;
  flex-direction: column;
  box-shadow: 3px 3px 6px #00000011;
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child .img_b {
  width: 100%;
  padding-top: 50%;
  height: 0;
  position: relative;
  overflow: hidden;
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child .img_b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child .this_text {
  height: 100%;
  padding: 40px 20px 25px;
  display: flex;
  flex-direction: column;
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child .this_text h5 {
  font-weight: bold;
  transition: all 0.5s;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child .this_text p {
  margin-top: 8px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 30px;
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child .this_text .this_button {
  margin-bottom: 0;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child .this_text .this_button i {
  display: block;
  transition: transform 0.5s;
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child:hover {
  color: #000;
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child:hover .img_b img {
  transform: scale(1.1);
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child:hover .this_text h5 {
  color: var(--blue);
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child:hover .this_text p {
  color: #333;
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child:hover .this_text .this_button span {
  color: var(--blue);
}
.indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child:hover .this_text .this_button i {
  color: var(--blue);
  animation: arrowRight 1s;
}
@media screen and (max-width: 1280px) {
  .indexPage3 .bannerWrapper .Wrapper .this_text h1 {
    font-size: 32px;
    text-align: center;
  }
  .indexPage3 .modelWrapper1 .Wrapper .this_in { 
  }
  .indexPage3 .modelWrapper2 .Wrapper .this_in .this_child .this_text h5 {
    font-size: 18px;
  }
  .indexPage3 .modelWrapper6_2 .Wrapper .this_title .left h2 {
    font-size: 28px;
  }
  .indexPage3 .modelWrapper3 .Wrapper .this_in .this_child .this_text h5 {
    font-size: 18px;
  }
  .indexPage3 .modelWrapper4 .Wrapper .this_in .this_child .top b {
    font-size: 28px;
  }
  .indexPage3 .modelWrapper6 .Wrapper .this_in .top .this_child .this_text h5 {
    font-size: 16px;
  }
  .indexPage3 .modelWrapper7 .Wrapper .this_in .this_child2 h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 950px) {
  .indexPage3 .bannerWrapper .Wrapper .this_text {
    width: 90vw;
  }
  .indexPage3 .modelWrapper1 {
    padding: 50px 0;
  }
  .indexPage3 .modelWrapper1 .Wrapper .this_in {
    width: 90vw;
    margin: auto;
    flex-direction: column;
  }
  .indexPage3 .modelWrapper1 .Wrapper .this_in .left {
    width: 100%;
  }
  .indexPage3 .modelWrapper1 .Wrapper .this_in .left h2 {
      font-size: 28px;
  }
  .indexPage3 .modelWrapper1 .Wrapper .this_in .left h3 {
      font-size: 28px;
  }
  .indexPage3 .modelWrapper1 .Wrapper .this_in .left .video_img {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    width: 100%;
  }
  .indexPage3 .modelWrapper1 .Wrapper .this_in .left .video_img .right_img {
    margin-top: 35px;
    display: flex;
    width: 300px;
    max-width: 100%;
    height: 300px;
    position: absolute;
    right: 0;
  }
  .indexPage3 .modelWrapper1 .Wrapper .this_in .left .video_img .right_img img {
    width: 100%;
    object-fit: cover;
  }
  .indexPage3 .modelWrapper1 .Wrapper .this_in .right {
    width: 100%;
    display: none;
  }
  .indexPage3 .modelWrapper1 .Wrapper .this_in .left .this_video .videobox {
    width: 90vw;
  }
  .indexPage3 .modelWrapper2 {
    padding: 50px 0;
  }
  .indexPage3 .modelWrapper2 .Wrapper .this_in {
    gap: 2%;
  }
  .indexPage3 .modelWrapper2 .Wrapper .this_in .this_child {
    width: 49%;
  }
  .indexPage3 .modelWrapper3 .Wrapper .this_in {
    flex-wrap: wrap;
  }
  .indexPage3 .modelWrapper3 .Wrapper .this_in .this_child {
    width: 100%;
  }
  .indexPage3 .modelWrapper4 .Wrapper {
      padding:30px 0;
  }
  .indexPage3 .modelWrapper4 .Wrapper .this_in {
    flex-wrap: wrap;
    gap: 20px 2%;
  }
  .indexPage3 .modelWrapper4 .Wrapper .this_in .this_child {
    width: 49%;
  }
  .indexPage3 .modelWrapper6 .Wrapper .this_in .top {
    flex-wrap: wrap;
    gap: 20px 2%;
  }
  .indexPage3 .modelWrapper6 .Wrapper .this_in .top .this_child {
    width: 49%;
  }
  .indexPage3 .modelWrapper6 .Wrapper .this_in .bottom {
    flex-wrap: wrap;
    gap: 20px 2%;
  }
  .indexPage3 .modelWrapper6 .Wrapper .this_in .bottom .this_child {
    width: 49%;
  }
  .indexPage3 .modelWrapper6_2 .Wrapper {
          padding: 30px 0;
    padding-top: 30px;
  }
  .indexPage3 .modelWrapper6_2 .Wrapper .this_title h2 {
      width: 100%;
  }
  .indexPage3 .modelWrapper6_2 .Wrapper .this_in {
    flex-direction: column;
    gap: 20px;
  }
  .indexPage3 .modelWrapper6_2 .Wrapper .this_in .this_child {
    width: 100%;
  }
  .indexPage3 .modelWrapper7 .Wrapper .this_in .this_child {
    width: 100%;
  }
  .indexPage3 .modelWrapper8 .Wrapper {
      padding: 40px 0;
  }
  .indexPage3 .modelWrapper8 .Wrapper .this_in {
    flex-wrap: wrap;
    gap: 20px 2%;
  }
  .indexPage3 .modelWrapper8 .Wrapper .this_in .this_child {
    width: 32%;
  }
  .indexPage3 .modelWrapperAdd1 .Wrapper {
      padding: 50px 0 40px;
  }
  .indexPage3 .modelWrapperAdd1 .Wrapper .this_in {
    flex-direction: column;
    margin-top: 40px;
  }
  .indexPage3 .modelWrapperAdd1 .Wrapper .this_in .left {
    width: 100%;
  }
  .indexPage3 .modelWrapperAdd1 .Wrapper .this_in .right {
    margin-top: 20px;
    width: 100%;
  }
  .indexPage3 .modelWrapperAdd2 {
    padding: 50px 0 40px;
  }
  .indexPage3 .modelWrapperAdd2 .Wrapper .this_in {
    flex-direction: column-reverse;
  }
  .indexPage3 .modelWrapperAdd2 .Wrapper .this_in .left {
    width: 100%;
    margin-top: 20px;
    padding-bottom: 30px;
  }
  .indexPage3 .modelWrapperAdd2 .Wrapper .this_in .right {
    width: 100%;
  }
  .indexPage3 .modelWrapperAdd3 .Wrapper {
      padding: 30px 0 40px;
  }
  .indexPage3 .modelWrapperAdd3 .Wrapper .this_title2 {
      padding: 0;
  }
  .indexPage3 .modelWrapperAdd3 .Wrapper .this_in {
    flex-direction: column;
    gap: 20px;
  }
  .indexPage3 .modelWrapperAdd3 .Wrapper .this_in .this_child {
    width: 100%;
  }
  .indexPage3 .modelWrapperAdd4 .Wrapper .this_in .swiper-father {
    padding-left: 0;
    width: 90vw;
    margin: auto;
  }
  .indexPage3 .modelWrapperAdd5 .Wrapper {
      padding: 40px 0;
  }
  .indexPage3 .modelWrapperAdd5 .Wrapper .this_in {
    flex-direction: column;
    gap: 20px;
  }
  .indexPage3 .modelWrapperAdd5 .Wrapper .this_in .this_child {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .indexPage3 .modelWrapper1 .Wrapper .this_in .left .video_img .right_img {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .indexPage3 .modelWrapper4 .Wrapper .this_in .this_child {
    width: 100%;
  }
  .indexPage3 .modelWrapper8 .Wrapper .this_in .this_child {
    width: 49%;
  }
}
footer .this_web_footer {
  background-color: #18191B;
  padding: 70px 0 90px;
}
footer .this_web_footer .this_logo {
  width: 400px;
}
footer .this_web_footer .this_logo img {
  width: 100%;
}
footer .this_web_footer .top {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 1%;
}
footer .this_web_footer .top .left {
  width: 30%;
}
footer .this_web_footer .top .left h5 {
  font-size: 22px;
  color: #CDD8E0;
}
footer .this_web_footer .top .left ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .this_web_footer .top .left ul li p {
  color: #fff;
  font-size: 16px;
}
footer .this_web_footer .top .left ul li p a {
  font-size: 16px;
  color: #fff;
}
footer .this_web_footer .top .center {
  width: 30%;
  display: flex;
  justify-content: center;
  gap: 2%;
}
footer .this_web_footer .top .center .this_child {
  width: 49%;
  border-right: 1px solid #444444;
}
footer .this_web_footer .top .center .this_child:last-child {
  border-right: none;
}
footer .this_web_footer .top .center .this_child h5 {
  font-size: 20px;
  color: #CDD8E0;
}
footer .this_web_footer .top .center .this_child ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .this_web_footer .top .center .this_child ul li a {
  font-size: 16px;
  color: #ddd;
}
footer .this_web_footer .top .right {
  width: 28%;
  display: flex;
  flex-direction: column;
  align-items:flex-start;
}
/*footer .this_web_footer .top .right ul {*/
/*  margin-bottom: 30px;*/
/*  display: flex;*/
/*  gap: 10px;*/
/*}*/
/*footer .this_web_footer .top .right ul li .img_b {*/
/*  display: inline-block;*/
/*  width: 30px;*/
/*  height: 30px;*/
/*}*/
/*footer .this_web_footer .top .right ul li .img_b img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: contain;*/
/*}*/

footer .this_web_footer .top .right .this_sns ul {
  display: flex;
  align-items: center;
  gap: 12px;
}
footer .this_web_footer .top .right .this_sns ul li a i {
  color: #fff;
  font-size: 24px;
}

footer .this_web_footer .top .right .this_text {
    margin-top: 20px;
    margin-bottom: 30px;
}


footer .this_web_footer .top .right .this_text p {
    color: #777777;
}
header .thisWrapper .nav_top_50 {
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s;
  background-color: #fff;
  box-shadow: 0px 0px 12px #999;
}
footer .this_web_footer .top .right .bottom_form {
  display: flex;
  align-items: center;
  position: relative; 
  background-color: #303030;;
  z-index: 1;
}
footer .this_web_footer .top .right .bottom_form p{
    display: flex;
    width: 100%;
}

footer .this_web_footer .top .right .bottom_form .wpcf7-spinner {
    position: absolute;
    right: 0;
}

footer .this_web_footer .top .right .bottom_form input[type="email"]:placeholder {
    color: #fff;
}

footer .this_web_footer .top .right .bottom_form input[type="email"] {
    color: #fff;
    width: 100%;
}

footer .this_web_footer .top .right .bottom_form::after{
   display: block;
   font-family:'iconfont-icon';
   content: '\e6df';
   position: absolute;
   right: 0;
   top: 0; 
   width: 50px;
   height: 100%;
   font-size: 24px;
   color:#ADADAD ;
   
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .this_web_footer .top .right .bottom_form input {
  padding: 10px 15px;
  border: none;
  outline: none;
  background-color:#303030 ;
  
}
footer .this_web_footer .top .right .bottom_form input::placeholder {
    color: #565656;
}
footer .this_web_footer .top .right .bottom_form input[type="submit"] {
  background-color: var(--blue);
  color: #fff;
  opacity: 0;
  width: 50px;
  position: relative;
  
  z-index: 2;
}
footer .this_web_footer .this_copyright {
  padding-top: 30px;
}
footer .this_web_footer .this_copyright p {
  color: #7A7C7E;
  text-align: center; 
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 200% */
}
footer .sj-footer {
  display: none;
  width: 100%;
  position: fixed;
  bottom: 0;
  background-color: #1c1c1c;
  padding: 1vw 0;
  box-sizing: border-box;
  z-index: 999;
}
footer .sj-footer ul {
  width: 96vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .sj-footer ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3vw;
}
footer .sj-footer ul li a .iconfont {
  font-size: 6vw;
}
footer .sj-footer ul li a:hover {
  text-decoration: none;
}
footer .sj-footer ul #f-logo .imgWarp {
  width: 15vw;
}
footer .sj-footer ul #f-logo .imgWarp img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  header .page-title {
    display: none;
  }
  header .this_web_head {
    display: none;
  }
  header .sjheader {
    display: block;
  }
  footer .this_web_footer {
    display: none;
  }
  footer .sj-footer {
    display: block;
  }
}
@media screen and (max-width: 950px) {
  footer {
    height: 13vw;
  }
  .phone-head-item .title:before {
    font-family: "fontawesome";
    font-style: normal;
    font-weight: normal;
    speak: none;
    display: inline-block;
    text-decoration: inherit;
    font-variant: normal;
    text-transform: none;
  }
  .phone-body-mask {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
  }
  .phone-ico-close {
    width: 30px;
    height: 30px;
    background: #fff url(../img/mobile_close.png) center center no-repeat;
    background-size: 50% auto;
    position: absolute;
    right: -35px;
    top: 0;
  }
  .sub-content {
    position: relative;
    display: block;
    right: auto;
    border-radius: 0;
    border: none;
    box-shadow: none;
    z-index: 99999;
  }
  .lang-more {
    display: none !important;
  }
  .phone-head-items {
    position: fixed;
    top: 0;
    left: 0;
    background: #161622;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    z-index: 999;
  }
  .phone-head-items .phone_logo {
    max-width: 130px;
  }
  .phone-head-items .phone_logo a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
  }
  .phone-head-items .phone_logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .phone-head-item {
    float: left;
    width: 48px;
  }
  .phone-head-item.phone-head-aside {
    float: right;
  }
  .phone-head-item .title {
    width: 100%;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    text-align: center;
    color: #FFF;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
  }
  .phone-head-item .title a {
    position: relative;
    display: block;
    color: #FFF;
  }
  .phone-head-item.phone-head-home .title a:before {
    content: '\f015';
  }
  .phone-head-item.phone-head-social .title:before {
    content: "\f007";
  }
  .phone-head-item.phone-head-aside .title:before {
    content: "\f060";
  }
  .phone-head-item .main-content-wrap {
    background: #FFF;
    top: 0;
    display: block;
    z-index: 99999;
  }
  .phone-head-item .main-content-wrap .content-wrap {
    overflow-y: auto;
    height: 100%;
    padding: 15px 10px;
    background-color: #fff;
  }
  .phone-head-item .main-content-wrap .content-wrap ul li {
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px #c5c5c5 dashed;
    line-height: 30px;
  }
  .phone-head-item .main-content-wrap .content-wrap ul li a {
    text-transform: capitalize;
  }
  .phone-head-item .main-content-wrap .content-wrap ul li ul {
    margin-left: 20px;
  }
  .phone-head-item .main-content-wrap .content-wrap ul li ul li {
    border-bottom: none;
    padding: 2px 0;
  }
  .phone-head-item .main-content-wrap.middle-content-wrap .content-wrap {
    overflow-y: hidden;
  }
  .phone-head-item .side-content-wrap {
    position: fixed;
    display: block;
    left: -70%;
    width: 70%;
    height: 100%;
  }
  .phone-head-item .middle-content-wrap {
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
  }
  .phone-head-item .middle-show-content-wrap {
    top: 70px;
    visibility: visible;
    opacity: 1;
  }
  .index_head .btn--search {
    right: 0;
    top: -20px;
    margin: 0;
  }
  .index_head .head-search {
    display: none;
  }
  .head-search {
    position: relative;
    width: 90%;
    height: 35px;
    margin: 0 auto;
  }
  .head-search .search-ipt {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: #333;
    padding: 0 10px;
  }
  .head-search .search-btn {
    position: absolute;
    width: 35px;
    height: 100%;
    background: url(../img/search_btn.png) no-repeat center center;
    -webkit-background-size: auto 16px;
    background-size: auto 16px;
    border: none;
    right: 0;
    top: 0;
    display: block !important;
  }
  .head-search .search-attr {
    display: none;
  }
  .page_head {
    display: none;
  }
  .phone-head-item .main-content-wrap .content-wrap ul li .productWrap .Wrap .left .menu_title {
    display: none;
  }
  .phone-head-item .main-content-wrap .content-wrap ul li .productWrap .Wrap .right {
    display: none;
  }
  .phone-head-item .main-content-wrap .content-wrap ul li .productWrap .Wrap .close {
    display: none;
  }
  .sys_sub_head {
    margin-top: 25px;
  }
  .itemWrap {
    display: flex;
  }
  .itemWrap .phone-head-nav {
    order: 3;
  }
  .itemWrap .phone-head-language {
    order: 2;
  }
  .phone-head-item .title i {
    font-size: 28px;
  }
  .index_layout {
    width: 95vw;
  }
}
/*-------------------------------
			search  start
			----------------------------------*/
.container {
  position: relative;
  /*min-height: 100vh;*/
  background-position: left bottom;
  background-repeat: no-repeat;
}
.search-ipt {
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-appearance: none;
}
.web-search {
  display: flex;
  visibility: hidden;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.web-search .btn--search-close {
  position: absolute;
  top: 1.25em;
  right: 1.25em;
  display: inline-block;
  display: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #ccc;
  background-image: url(img/search_btn_close.png);
  background-position: center;
  background-size: auto 35%;
  background-repeat: no-repeat;
  font-size: 1.8em;
  line-height: 45px;
  cursor: pointer;
  -webkit-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  -webkit-background-size: auto 35%;
}
.web-search .btn--search-close:hover {
  background-color: #0b87fb;
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
}
.js .btn--search-close {
  display: block;
}
.web-search .search-ipt {
  display: inline-block;
  box-sizing: border-box;
  padding: 0.05em 0;
  width: 75%;
  border-bottom: 3px solid;
  color: #333;
  font-size: 20px;
  font-family: inherit;
  line-height: 1em;
}
.web-search .search-ipt::-webkit-input-placeholder {
  color: #333;
  font-weight: bold;
}
.web-search .search-ipt::-moz-placeholder {
  color: #333;
  font-weight: bold;
  opacity: 1;
}
.web-search .search-ipt:-ms-input-placeholder {
  color: #333;
  font-weight: bold;
}
.web-search .search-ipt::-webkit-search-cancel-button,
.web-search .search-ipt::-webkit-search-decoration {
  -webkit-appearance: none;
}
.web-search .search-ipt::-ms-clear {
  display: none;
}
.web-search .search-attr {
  display: block;
  margin: 0 auto;
  padding: 0.85em 0;
  width: 75%;
  color: #333;
  text-align: right;
  font-size: 90%;
}
.js .container,
.js .web-search .search-ipt {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
.js .container {
  position: relative;
}
.js .main-wrap--move {
  min-height: 100vh;
}
.js .web-search {
  pointer-events: none;
}
.web-search {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100001;
  margin: auto;
  padding: 25px 0;
  width: 100%;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  perspective: 1200px;
  -ms-transform: translateY(-100%);
}
.web-search .btn--search-close {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.search__suggestion,
.web-search .search-attr {
  opacity: 0;
  -webkit-transition: opacity 0.8s, transform 0.8s;
  -moz-transition: opacity 0.8s, transform 0.8s;
  -o-transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  -webkit-transform: translate3d(-15%, 0, 0);
  -moz-transform: translate3d(-15%, 0, 0);
  -o-transform: translate3d(-15%, 0, 0);
  transform: translate3d(-15%, 0, 0);
  -ms-transform: translate3d(-15%, 0, 0);
  -ms-transition: opacity 0.8s, transform 0.8s;
}
.web-search .search-attr {
  padding-bottom: 0;
  font-size: 20px;
}
.js .web-search .search-ipt {
  padding: 0 0 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 60px;
  opacity: 0;
  -webkit-transform: scale3d(0, 1, 1);
  -moz-transform: scale3d(0, 1, 1);
  -o-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: 0% 50%;
  -moz-transform-origin: 0% 50%;
  -o-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  border-bottom-width: 1px;
  -ms-transform: scale3d(0, 1, 1);
  -ms-transform-origin: 0% 50%;
}
.js .web-search .search-ipt,
.web-search .search-attr {
  -webkit-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.js .web-search .search-btn {
  display: none !important;
}
.js .search--open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.js .search--open .btn--search-close {
  opacity: 1;
  -webkit-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  -webkit-animation: bounceInA 1s ease;
  -o-animation: bounceInA 1s ease;
  animation: bounceInA 1s ease;
}
.js .search--open .search-ipt {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  -moz-transform: scale3d(1, 1, 1);
  -o-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  -ms-transform: scale3d(1, 1, 1);
}
.js .search--open .search-attr {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.js .search--open {
  -webkit-transform: none;
  -o-transform: none;
  transform: none;
  -ms-transform: none;
}
.js .search--open::before {
  opacity: 1;
  -webkit-transform: none;
  -o-transform: none;
  transform: none;
  -ms-transform: none;
}
.js .main-wrap--move {
  -webkit-transform: translateY(180px);
  -o-transform: translateY(180px);
  transform: translateY(180px);
  -ms-transform: translateY(180px);
}
.main-wrap--move:after {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  content: '';
}
/*-------------------------------
			search  end
			----------------------------------*/
			
			
			
			
			
			
			
			
			
			
			
			
 .profilePage .thisImgBanner .Wrapper {
  position: relative;
}
 .profilePage .thisImgBanner .Wrapper .img_b {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 400px;
}
 .profilePage .thisImgBanner .Wrapper .img_b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 .profilePage .thisImgBanner .Wrapper .this_bg {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00AFEF;
  opacity: 0.83;
  mix-blend-mode: multiply;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
 .profilePage .thisImgBanner .Wrapper .this_text {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
 .profilePage .thisImgBanner .Wrapper .this_text h2 {
  color: #fff;
  font-size: 36px;
}
 .profilePage .lrImgText .Wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
 .profilePage .lrImgText .Wrapper .left {
  width: 40%;
}
 .profilePage .lrImgText .Wrapper .left .img_b {
  width: 100%;
  height: 100%;
}
 .profilePage .lrImgText .Wrapper .left .img_b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 .profilePage .lrImgText .Wrapper .right {
  width: 55%;
  padding-right: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
 .profilePage .lrImgText .Wrapper .right h2 {
  color: #044378;
  font-size: 36px;
}
 .profilePage .lrImgText .Wrapper .right h5 {
  font-size: 14px;
  font-weight: bold;
}
 .profilePage .lrImgText .Wrapper .right span {
  font-size: 14px;
}
 .profilePage .lrImgText .Wrapper .right p {
  column-count: 2;
  line-height: 1.5;
}
 .profilePage .lrImgText:nth-child(odd) .Wrapper {
  flex-direction: row-reverse;
}
 .profilePage .lrImgText:nth-child(odd) .Wrapper .right {
  padding: 0;
  padding-left: 100px;
}
 .profilePage .modelWrapper1 {
  margin-top: 80px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F6F6F6;
}
 .profilePage .modelWrapper2 {
  padding-top: 20px;
}
 .profilePage .modelWrapper3 {
  margin-top: 50px;
  background-color: #444444;
}
 .profilePage .modelWrapper3 .Wrapper {
  padding: 30px 0;
  text-align: center;
}
 .profilePage .modelWrapper3 .Wrapper h2 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
}
 .profilePage .modelWrapper3 .Wrapper p {
  font-size: 18px;
  color: #fff;
}
 .profilePage .modelWrapper4 .Wrapper {
  padding: 50px 0;
}
 .profilePage .modelWrapper4 .Wrapper table {
  border-collapse: collapse;
  border-top: 1px solid #111111;
  border-bottom: 1px solid #111111;
  width: 100%;
}
 .profilePage .modelWrapper4 .Wrapper table tr th,
 .profilePage .modelWrapper4 .Wrapper table tr td {
  padding: 8px 10px;
  border: 1px solid #DDDDDD;
}
 .profilePage .modelWrapper4 .Wrapper table tr th {
  background-color: var(--color);
  color: #fff;
}
 .profilePage .modelWrapper4 .Wrapper table tr td:first-child {
  background-color: #F2F2F2;
}
 .profilePage .modelWrapper5 .Wrapper {
  display: flex;
}
 .profilePage .modelWrapper5 .Wrapper .left {
  width: 50%;
  background-color: #F6F6F6;
  padding: 50px 0;
}
 .profilePage .modelWrapper5 .Wrapper .left .img_b {
  width: 60%;
  margin: auto;
}
 .profilePage .modelWrapper5 .Wrapper .left .img_b img {
  width: 100%;
}
 .profilePage .modelWrapper5 .Wrapper .right {
  width: 50%;
  background-color: #444444;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 .profilePage .modelWrapper5 .Wrapper .right .this_child {
  padding: 10px 10px 10px 10px;
  background-color: #2A2A2A;
  border-radius: 7px 7px 7px 7px;
  display: flex;
  align-items: center;
}
 .profilePage .modelWrapper5 .Wrapper .right .this_child .this_icon {
  width: 80px;
  display: flex;
  justify-content: center;
}
 .profilePage .modelWrapper5 .Wrapper .right .this_child .this_icon i {
  font-size: 50px;
  color: #fff;
}
 .profilePage .modelWrapper5 .Wrapper .right .this_child .this_text {
  width: calc(100% - 120px);
}
 .profilePage .modelWrapper5 .Wrapper .right .this_child .this_text h5 {
  font-size: 20px;
  color: #fff;
}
 .profilePage .modelWrapper5 .Wrapper .right .this_child .this_text ul {
  margin: 15px 0 15px 20px;
}
 .profilePage .modelWrapper5 .Wrapper .right .this_child .this_text ul li {
  list-style: initial;
  color: #fff;
}
 .profilePage .modelWrapper6 .Wrapper {
  margin-top: 50px;
  margin-bottom: 50px;
}
 .profilePage .modelWrapper6 .Wrapper .this_title {
  margin-bottom: 20px;
}
 .profilePage .modelWrapper6 .Wrapper .this_title h2 {
  font-size: 36px;
}
 .profilePage .modelWrapper6 .Wrapper .this_in ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #F6F6F6;
  padding: 20px;
}
 .profilePage .modelWrapper6 .Wrapper .this_in ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
 .profilePage .modelWrapper6 .Wrapper .this_in ul li i {
  width: 30px;
  font-size: 20px;
  color: #E60000;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
 .profilePage .modelWrapper6 .Wrapper .this_in ul li a {
  width: calc(100% - 50px);
  font-size: 14px;
  color: #044378;
}
@media screen and (max-width: 950px) {
   .profilePage .lrImgText .Wrapper {
    flex-direction: column !important;
  }
   .profilePage .lrImgText .Wrapper .left {
    width: 100%;
  }
   .profilePage .lrImgText .Wrapper .right {
    width: 100%;
    padding: 20px 10px !important;
  }
   .profilePage .modelWrapper5 .Wrapper {
    flex-direction: column;
  }
   .profilePage .modelWrapper5 .Wrapper .left {
    width: 100%;
  }
   .profilePage .modelWrapper5 .Wrapper .left .img_b {
    width: 90%;
  }
   .profilePage .modelWrapper5 .Wrapper .right {
    width: 100%;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 550px) {
   .profilePage .lrImgText .Wrapper .right p {
    columns: 1;
  }
   .profilePage .modelWrapper5 .Wrapper .right .this_child {
    flex-direction: column;
  }
   .profilePage .modelWrapper5 .Wrapper .right .this_child .this_text {
    width: 100%;
  }
}
 .contactPage .modelWrapper1 {
  position: relative;
}
 .contactPage .modelWrapper1 .Wrapper {
  position: relative;
  z-index: 2;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
}
 .contactPage .modelWrapper1 .Wrapper .left {
  width: 50%;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_contact {
  width: 100%;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_contact ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_contact ul li {
  flex: 1;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_contact ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_contact ul li a i {
  color: var(--color);
  font-size: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_contact ul li a .this_text {
  width: calc(100% - 50px);
}
 .contactPage .modelWrapper1 .Wrapper .left .this_contact ul li a .this_text h3 {
  font-size: 16px;
  color: #2a2a2a;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_contact ul li a .this_text span {
  color: #444;
  font-size: 14px;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_other {
  width: 100%;
  margin-top: 50px;
  background-color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_other .this_info {
  width: 55%;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_other .this_info h5 {
  font-size: 24px;
  margin-bottom: 20px;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_other .this_info ul li a {
  display: flex;
  align-items: center;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_other .this_info ul li a i {
  color: var(--color);
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_other .this_info ul li a span {
  display: inline-block;
  width: calc(100% - 40px);
  color: #444;
  font-size: 14px;
}
 .contactPage .modelWrapper1 .Wrapper .left .this_other .img_b {
  width: 45%;
}
 .contactPage .modelWrapper1 .Wrapper .right {
  width: 47%;
}
 .contactPage .modelWrapper1 .Wrapper .right .this_form {
  padding: 10px;
  background-color: #F6F6F6;
}
 .contactPage .modelWrapper1 .Wrapper .right .this_form h5 {
  margin-bottom: 10px;
  font-size: 18px;
}
 .contactPage .modelWrapper1 .Wrapper .right .this_form .this_list {
  margin-bottom: 10px;
}
 .contactPage .modelWrapper1 .Wrapper .right .this_form .this_list h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
}
 .contactPage .modelWrapper1 .Wrapper .right .this_form .this_list input,
 .contactPage .modelWrapper1 .Wrapper .right .this_form .this_list textarea {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  background-color: transparent;
  border: 1px solid #DDDDDD;
}
 .contactPage .modelWrapper1 .Wrapper .right .this_form .this_list textarea {
  min-height: 200px;
}
 .contactPage .modelWrapper1 .Wrapper .right .this_form .this_submit input[type="submit"] {
  font-size: 12px;
  font-weight: bold;
  padding: 10px 20px;
  background-color: var(--color);
  color: #fff;
  border: none;
}
 .contactPage .modelWrapper1 .this_bg {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.11;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}



.bottom_whatsapp { 
  position: fixed;
  right: 0;
  z-index: 99;
  bottom: 80px;
}
.bottom_whatsapp .img_b {
    display: block;
    width: 70px;
    height: 70px;
}
.bottom_whatsapp .img_b img {
    width: 100%;
}

/*右侧侧边栏*/
.sidebarWrapper {
  position: fixed;
  right: 0;
  z-index: 99;
  bottom: 200px;
  transform: translateX(260px);
  transition: all 0.5s;
}
.sidebarWrapper .sidebar ul {
  width: 300px;
} 
.sidebarWrapper .sidebar ul li {
  /*background-color: #b6b6b6;*/
  /*background-color: #008080;*/
  background-color: #0641a5;
  margin-bottom: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  border-radius: 10px 0 0 10px ;
}
.sidebarWrapper .sidebar ul li .imgWarp {
  width: 24px;
  height: 24px;
}
.sidebarWrapper .sidebar ul li .imgWarp img {
  width: 100%;
  height: 100%;
}
.sidebarWrapper .sidebar ul li .info {
  flex: 1 auto;
  margin-left: 20px;
}
.sidebarWrapper .sidebar ul li .info a {
  font-size: 14px;
  color: #fff;
}
.sidebarWrapper .sidebar ul li .info p {
  line-height: 30px;
  font-size: 14px;
  color: #fff;
}
.sidebarWrapper .sidebar ul li .info .ewm {
  width: 150px;
  height: 150px;
}
.sidebarWrapper .sidebar ul li .info .ewm img {
  width: 100%;
  height: 100%;
}
.sidebarWrapper .sidebar ul .ewmWarp {
  display: flex;
  align-items: flex-start;
  height: 40px;
  overflow: hidden;
  padding: 0;
  transition: all 0.5s;
}
.sidebarWrapper .sidebar ul .ewmWarp .imgWarp {
  margin: 8px 0 8px 8px;
}
.sidebarWrapper .sidebar ul .ewmWarp .info {
  display: flex;
  flex-direction: column;
}
.sidebarWrapper .sidebar ul .ewmWarp .info p {
  line-height: 40px;
}
.sidebarWrapper:hover {
  transform: translateX(0);
  transition: all 0.5s;
}
.sidebarWrapper:hover .sidebar ul .ewmWarp {
  height: 210px;
  transition: all 0.5s;
}

/*右侧侧边栏*/



.superMenuWrap {
  visibility: hidden;
  opacity: 0;
  /*box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.1);*/
  /*background-image: linear-gradient(90deg, #fff 70%, #EBEFF2 70%);*/
  background-color: #fff;
  z-index: 9999;
  transform: translate(0, -10px);
  transition: all 0.5s;
  display: flex;
  width: 100%;
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 0;
  border-top: 2px solid #DFDFDF;
  border-bottom: 2px solid #DFDFDF;
}
.superMenuWrap .Wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.superMenuWrap .Wrap .left {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
.superMenuWrap .Wrap .left .contentWrap {
  width: 100%;
}
.superMenuWrap .Wrap .left .contentWrap .this_content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 2.66666667%;
}
.superMenuWrap .Wrap .left .contentWrap .this_content .this_child {
  width: 23%;
}
.superMenuWrap .Wrap .left .contentWrap .this_content .this_child .img_b {
  width: 100%;
  height: 0;
  padding-top: 70%;
  position: relative;
  overflow: hidden;  
  background-color: #F7F7F7;

}
.superMenuWrap .Wrap .left .contentWrap .this_content .this_child .img_b img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
.superMenuWrap .Wrap .left .contentWrap .this_content .this_child .this_text {
  padding: 8px;
}
.superMenuWrap .Wrap .left .contentWrap .this_content .this_child h5 {
  margin-top: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  font-size: 20px;
}
.superMenuWrap .Wrap .left .contentWrap .this_content .this_child:hover h5 {
  color: var(--blue);
}
.superMenuWrap .Wrap .left .contentWrap .this_content .this_child:hover .img_b img {
  transform: scale(1.1);
}







.gotop.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    transform: none;
    -ms-transform: none;

}




.gotop {
    position: fixed;
    /*right: 50px;*/
    /*bottom: 50px;*/
    right: 0;
    bottom:180px;
    z-index: 99999; 
    visibility: hidden;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 50px;
    height: 50px; 
    /*background-color: #0C6EB4;*/
    background-color: #F7FAFF;
    background-clip: content-box;
    box-shadow: 0 0 8px rgba(0, 0, 0, .2);
    text-align: center;
    text-align: center;
    font-size: 18px;
    line-height: 50px;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -ms-transform: translateY(100%);
    border-radius: 0;
    
    /*color: #ffffff;*/
    color:#31488C ;

}

.gotop:hover, .gotop.active:hover {
    background-color: #31488C;
}


.gotop:before {
    display: block;
    content: '\e635';
    font-family: 'iconfont-icon';
    font-size: 28px;

}

.gotop:before, .gotop em {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;

}


.gotop em {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*color: #fff;*/
    color:#31488C ;
    font-size: 12px;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    filter: alpha(opacity = 0);
    -ms-transform: translateY(10px);

}
 
.gotop:before, .gotop em {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;

}

.thisFormSubmit p {
    display: flex;
    flex-direction: column;
    
}
