@charset "utf-8";

input {
  outline: none;
  border: none;
  outline-color: "red";
}

.swiper-container {
  height: auto !important;
}

.swiper-container .swiper-wrapper {
  height: auto !important;
}

/* -----------------banner-------------------- */
.banner-container {
  width: 100%;
  height: auto;
}

.banner-slide {
  width: 100% !important;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  background: #000 !important;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  transition: 300ms;
  overflow: hidden;
}

.swiper-slide-active, .swiper-slide-duplicate-active {
  transform: scale(1);
}

.bannerTxt {
  position: absolute;
  width: 100%;
  top: 25%;
  z-index: 99
}

.bannerTxt h1 {
  margin-bottom: 30px;
  font-size: 42px;
  margin: 0;
  background: rgb(25 65 137 / 76%);
  color: #fff;
  padding: 30px;
  line-height: 1.5;
}

.bannerImg, .bannerImg img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.videobox {
  width: 50%;
  position: absolute;
  height: 100%;
  background: #08486b;
  left: 0;
  transition: all .3s;
  z-index: 99
}

.videobox h1 {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  color: #fff;
  top: 30%
}

.banner-button-next:after, .banner-button-prev:after {
  display: none;
}

.banner-button-next, .banner-button-prev {
  width: 30px
}

.banner-button-prev img {
  transform: rotatey(180deg);
}

/* about */
.box2 {
  background: url(../images/about0.png) fixed bottom;
  /* background: #f2f6f9; */
}

.about1 h1 {
  margin-bottom: 30px;
}

.about1 p {
  margin: 0;
  line-height: 32px;
  font-size: 16px;
  margin-bottom: 30px;
}

.about1 a {
  /* opacity: .5;
  font-weight: bold; */
  color: #fff;
}

.about2 {
  background: rgb(255 255 255 / 70%);
  padding: 20px 50px;
  margin-top: 30px;
}

.about2 h2 {
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  line-height: 50px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
}

.numCount>div {
  padding-left: 10px;
  padding-right: 10px;
}

.about2-1 .indc {
  width: 100%;
  float: left;
  margin-top: 10px;
  font-size: 16px;
}

.numU .numCX {
  margin: 0 auto;
  font-size: 54px;
  color: #194189;
  text-align: center;
  width: 80%;
  font-family: 'Ding';
}

/* aboutRight */
.about3 {
  position: relative;
}

.imgDian {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about3Img {
  opacity: 0.3
}

@-webkit-keyframes halo {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
  }
}

@-moz-keyframes halo {
  0% {
    opacity: 0;
    -moz-transform: scale(0.1);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -moz-transform: scale(1.2);
  }
}

@-ms-keyframes halo {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes halo {
  0% {
    opacity: 0;
    -o-transform: scale(0.1);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -o-transform: scale(1.2);
  }
}

@keyframes halo {
  0% {
    opacity: 0;
    transform: scale(0.1);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }

  animation: halo 4s linear infinite;
}

.imgDian .imgDians {
  display: flex;
  position: absolute;
  width: 00.6rem;
  height: 0.6rem;
  background: #fff;
  border-radius: 50%;
  /* animation: eyes_dh 4s linear infinite; */
}

.about_imgBig {
  display: flex;
  position: absolute;
  width: 4%;
}

.about_imgBig img {
  width: 100%;
}

.imgDian .imgDians:after {
  content: '';
  position: absolute;
  width: 8rem;
  height: 8rem;
  left: 50%;
  margin-left: -4rem;
  top: 50%;
  margin-top: -4rem;
  border-radius: 50%;
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.8);
  z-index: 3;
  opacity: 0;
  transform-origin: center;
  -webkit-animation: halo 1.5s 0.9s infinite ease-out;
  -moz-animation: halo 1.5s 0.9s infinite ease-out;
  animation: halo 1.5s 0.9s infinite ease-out;
}

.imgDian .imgDians:before {
  content: '';
  position: absolute;
  width: 3rem;
  height: 3rem;
  left: 50%;
  margin-left: -1.5rem;
  top: 50%;
  margin-top: -1.5rem;
  border-radius: 50%;
  box-shadow: 0 0 1px 2px rgba(255, 255, 255, 0.8);
  z-index: 3;
  opacity: 0;
  transform-origin: center;
  -webkit-animation: halo 1.5s 0.9s infinite ease-out;
  -moz-animation: halo 1.5s 0.9s infinite ease-out;
  animation: halo 1.5s 0.9s infinite ease-out;
}

.imgDian .about_imgBig:nth-child(1) {
  left: 15%;
  top: 33%;
}

.imgDian .about_imgBig:nth-child(2) {
  left: 50%;
  top: 26%;
}

.imgDian .about_imgBig:nth-child(3) {
  left: 69%;
  top: 50%;
}

.imgDian .about_imgBig:nth-child(4) {
  left: 78%;
  top: 37%;
  /* width: 8%; */
}

.imgDian .about_imgBig:nth-child(5) {
  left: 75%;
  top: 50%;
}

.imgDian .about_imgBig:nth-child(6) {
  left: 80%;
  top: 46%;
}

.imgDian .imgDians:nth-child(7) {
  left: 19%;
  top: 22%;
}

.imgDian .imgDians:nth-child(8) {
  left: 23%;
  top: 51%;
}

.imgDian .imgDians:nth-child(9) {
  left: 28%;
  top: 68%;
}

.imgDian .imgDians:nth-child(10) {
  left: 30%;
  top: 78%;
}

.imgDian .imgDians:nth-child(11) {
  left: 48%;
  top: 51%;
}

.imgDian .imgDians:nth-child(12) {
  left: 57%;
  top: 71%;
}

.imgDian .imgDians:nth-child(13) {
  left: 77%;
  top: 27%;
}

.imgDian .imgDians:nth-child(14) {
  left: 86%;
  top: 78%;
}

/* end-about */
/* product */
.box1 {
  padding: 0;
  position: relative;
}

.mt-tabpage {
  width: 100%;
  margin: 30px auto;
  background-color: #FFFFFF;
}

.tabpageTop {
  position: absolute;
  width: 100%;
  top: -54px;
}

.mt-tabpage-title {
  margin: auto;
  background: #e3e3e3;
  z-index: 2;
  position: relative;
  height: 758px;
  background: url(../images/icon-left.png) no-repeat;
  background-size: 100% 100%;
}

.mt-tabpage-title .mt-tabpage-item {
  display: inline-block;
  text-align: center;
  color: #666;
  font-size: 20px;
  padding: 25px 0;
}

.mt-tabpage-title .mt-tabpage-item:hover span {
  color: #194189;
}

.mt-tabpage-title .mt-tabpage-item:hover .icon0 img {
  margin-top: -80px;
}

.mt-tabpage-item-cur .icon0 img {
  margin-top: -80px;
}

.mt-tabpage-item-cur span {
  color: #194189;
}

.box1Img {
  position: absolute;
  bottom: 0px;
}

.box1Img p {
  margin: 0;
}

.box1Txtbox>div {
  height: 650px;
  padding: 0 30px;
}

.box1Txt {
  position: absolute;
  bottom: 50px;
  width: 100%;
  height: 260px;
  margin-top: 30px;
  background: rgb(255 255 255 / 80%);
  padding: 20px 50px;
  text-align: left;
  color: #194189;
  border-radius: 20px;
}

.box1Txt h2 {
  margin-bottom: 20px;
}

.box1Txt p span {
  font-size: 18px;
  color: #194189;
}

.box1Txt p {
  color: #000;
}

.mt-tabpage-item .icon0 {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin: 0 auto;
}

.mt-tabpage-item a span {
  width: 80%;
  display: block;
  line-height: 60px;
  margin: 0 auto;
}

.mt-tabpage-count {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  z-index: 1;
}

.mt-tabpage-cont__wrap {
  position: absolute;
  width: 400% !important;
}

.mt-tabpage-count .mt-tabpage-item {
  width: 25%;
  height: 650px;
  text-align: center;
}

/* end-product */
/* hzhb */
.box3 {
  position: relative;
  width: 100%;
}

.box3>.box {
  position: absolute;
  width: 100%;
  z-index: 9;
  padding-top: 50px;
}

.box3>img {
  position: relative;
}

.box3 .numCX {
  /* background-image: -webkit-linear-gradient(left top, rgb(255, 149, 0), rgb(190, 112, 38));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  font-size: 72px;
}

.box3 .indc {
  color: #333;
  font-size: 20px;
  font-family: 'Ding';
}

.box3 .row {
  width: 60%;
}

.box3 .unitC {
  color: #194189;
  font-weight: bold;
  font-size: 30px;
  padding-left: 10px;
  top: -30px;
}

/* end-hzhb */
/* 新闻 */
.box4 {
  padding-top: 0;
  padding-bottom: 100px;
}

/* .news2, .news1 {
  margin: 30px 0;
} */
.news1 {
  overflow: hidden;
  background: #f2f2f2;
}

.news1 p {
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.news1 h3 {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: bold;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.news1 .txt {
  background: #f2f2f2;
  display: block;
  position: relative;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
  transition: 1s;
}

.news1 .img {
  transition: 1s;
}

.news1 .img img {}

.news2 {
  text-align: left;
}

.news2 h3 {
  margin-top: 40px;
  font-size: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.news2 p {
  font-size: 16px;
  line-height: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news2 .img {
  position: absolute;
  z-index: 99;
}

.news2 .img {
  bottom: -100%;
  transition: 1s;
}

.news2:hover .img {
  bottom: 0
}

.news2 .img img {}

.txtTime {
  margin-top: 30px;
  margin-bottom: 50px;
}

.txtTime .img {
  width: 112%;
  height: 2px;
  background: #cccccc;
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
  opacity: 1;
  z-index: 9;
}

.txtTime .img::after {
  content: '';
  position: absolute;
  background: url(../images/news_1.png);
  width: 20px;
  height: 20px;
  left: 10px;
  top: -10px;
}

.newsList-container {
  width: 100%;
  height: 100%;
}

.newsList-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.footer {
  margin-top: 0;
}