@charset "UTF-8";
body {
  overflow-x: hidden;
}

/* header */
header {
  height: 80px;
  background: rgba(53, 83, 135, 0.2);
  position: fixed;
  z-index: 9;
  width: 100%;
  transition: all .5s;
  /* 头部第二种状态 */
}

header .headBd {
  align-items: center;
}

header .logo {
  height: 40px;
}

header .logo img {
  height: 100%;
}

header .logo .logo-normal {
  display: none;
  height: 100%;
}

header .navBar {
  align-items: center;
}

header .navBar > ul {
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header .navBar > ul > li {
  position: relative;
  margin: 0 30px;
}

header .navBar > ul > li::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  left: 50%;
  background-color: #fff;
  transition: all .5s;
  opacity: 0;
  position: absolute;
  bottom: 0;
}

header .navBar > ul > li:first-child {
  margin-left: 0;
}

header .navBar > ul > li > a {
  display: block;
  line-height: 80px;
  font-size: 18px;
  color: #fff;
}

header .navBar > ul > li > a i {
  font-size: 10px;
  margin-left: 5px;
  position: relative;
  top: -1px;
}

header .navBar > ul > li:hover > a {
  color: #fff;
  font-weight: bold;
}

header .navBar > ul > li:hover::after {
  left: 0;
  width: 100%;
  opacity: 1;
}

header .navBar > ul > li:hover .subnav {
  opacity: 1;
  visibility: visible;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%) scale(1);
}

header .subnav {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) scale(0);
  transition: all .5s;
  background: rgba(53, 83, 135, 0.2);
  width: 220px;
  padding: 10px 0;
}

header .subnav ul {
  text-align: center;
}

header .subnav ul li a {
  font-size: 16px;
  white-space: nowrap;
  padding: 5px 10px;
  color: #fff;
  display: block;
  padding: 5px 10px;
}

header .subnav ul li a:hover {
  font-weight: bold;
}

header .language {
  font-size: 16px;
  display: flex;
  align-items: center;
  margin-left: 70px;
}

header .language a {
  display: inline-block;
  padding: 0 20px;
  position: relative;
  color: rgba(255, 255, 255, 0.5);
}

header .language a::after {
  content: '';
  display: block;
  width: 1px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

header .language a:last-child {
  padding-right: 0;
}

header .language a:last-child::after {
  display: none;
}

header .language a.cur, header .language a:hover {
  color: #fff;
  font-weight: bold;
}

header .nav-button {
  position: relative;
  width: 24px;
  height: 60px;
  text-align: center;
  z-index: 11;
  font-size: 0;
  float: right;
  display: none;
}

header .nav-button div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 24px;
  height: 16px;
}

header .nav-button span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 0 auto;
  line-height: 2px;
  position: static;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

header .nav-button span.top-hr {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

header .nav-button span.center-hr {
  margin: 5px auto;
}

header .nav-button span.bottom-hr {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}

header .nav-button.active span {
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 0;
}

header .nav-button.active span.top-hr {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

header .nav-button.active span.center-hr {
  display: none;
}

header .nav-button.active span.bottom-hr {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

header.active, header.inPageHead, header.allActive {
  background: #fff;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  /* 导航 */
}

header.active .navBar > ul > li > a, header.inPageHead .navBar > ul > li > a, header.allActive .navBar > ul > li > a {
  color: #000;
}

header.active .navBar > ul > li::after, header.inPageHead .navBar > ul > li::after, header.allActive .navBar > ul > li::after {
  background: #000;
}

header.active .subnav, header.inPageHead .subnav, header.allActive .subnav {
  background: #fff;
}

header.active .subnav ul li a, header.inPageHead .subnav ul li a, header.allActive .subnav ul li a {
  color: #000;
}

header.active .logo-normal, header.inPageHead .logo-normal, header.allActive .logo-normal {
  display: block;
}

header.active .logo-white, header.inPageHead .logo-white, header.allActive .logo-white {
  display: none;
}

header.active .language a::after, header.inPageHead .language a::after, header.allActive .language a::after {
  background: #000;
}

header.active .language a, header.inPageHead .language a, header.allActive .language a {
  color: rgba(0, 0, 0, 0.7);
}

header.active .language a.cur, header.inPageHead .language a.cur, header.allActive .language a.cur {
  color: #000;
}

header.active .nav-button span, header.inPageHead .nav-button span, header.allActive .nav-button span {
  background: #000;
}

header .mb-nav {
  display: none;
}

header .mb-nav ul li {
  width: 50%;
  text-align: center;
  padding: 10px 0;
}

header .mb-nav ul li .icon {
  width: 90px;
  margin: 0 auto;
}

header .mb-nav ul li .icon img {
  width: 100%;
}

@media screen and (max-width: 1600px) {
  header .navBar > ul > li {
    margin: 0  1.5vw;
  }
  header .language {
    margin-left: 50px;
  }
}

@media screen and (max-width: 1440px) {
  header .navBar > ul > li {
    margin: 0  1.3vw;
  }
  header .language {
    margin-left: 30px;
  }
}

@media screen and (max-width: 1280px) {
  header .logo {
    height: 30px;
  }
  header .navBar > ul > li > a {
    font-size: 16px;
  }
  header .navBar > ul > li {
    margin: 0  1.1vw;
  }
  header .language {
    margin-left: 30px;
  }
}

@media screen and (max-width: 1024px) {
  header {
    height: 60px;
  }
  header .nav-button {
    display: block;
  }
  header .logo {
    width: 100px;
  }
  header .navBar {
    display: none;
    float: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    background: rgba(53, 83, 135, 0.2);
    width: 100%;
    height: calc(100vh - 60px);
    overflow-y: auto;
  }
  header .navBar > ul {
    display: block;
    padding: 20px 0;
  }
  header .navBar > ul > li {
    width: 100%;
    margin-left: 0;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
  }
  header .navBar > ul > li > a {
    width: 100%;
    line-height: 50px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px;
  }
  header .navBar > ul > li > a::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    border: 1px solid #000;
    border-left: none;
    border-bottom: none;
    transition: all .5s;
  }
  header .navBar li ul {
    background-color: #efefef;
    padding: 10px 0;
    transition: none;
  }
  header .navBar > ul > li:hover::after {
    left: 50%;
    width: calc(100% - 40px);
    transform: translateX(-50%);
    height: 1px;
  }
  header .navBar > ul > li:hover > a::after {
    transform: rotate(135deg);
  }
  header .subnav {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding: 0;
    transform: translate(-50%) scale(1);
  }
  header .subnav ul li a {
    text-align: left;
    padding-left: 40px;
  }
  .navBar > ul > li:hover .subnav {
    height: auto;
  }
  header.active .navBar {
    background: #fff;
  }
  header.active .nav-button span {
    background: #000;
  }
  header .logo {
    height: 30px;
    width: auto;
  }
  header .language {
    margin-left: 0;
  }
  header .language a::after {
    background: #000;
  }
  header .language a {
    color: rgba(0, 0, 0, 0.7);
  }
  header .language a.cur {
    color: #000;
  }
}

@-webkit-keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes returnToNormal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* banner */
.banner-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.banner-swiper .swiper-slide {
  height: 100vh;
  background: center center /cover no-repeat;
  position: relative;
  z-index: 1;
}

.banner-swiper .swiper-slide::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(30, 55, 95, 0.65) 0%, rgba(30, 55, 95, 0) 70%, rgba(30, 55, 95, 0) 100%);
  z-index: 2;
}

.banner-swiper .swiper-slide .wrap {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 4;
  mix-blend-mode: screen;
}

.banner-swiper .swiper-slide .word {
  position: absolute;
  z-index: 2;
}

.banner-swiper .swiper-slide h1 {
  transition: all 1s;
  transition-delay: 0s;
  opacity: 0;
  transform: translateY(40px);
  color: #fff;
  font-weight: 600;
}

.banner-swiper .swiper-slide p {
  transition: all 1s;
  transition-delay: 1s;
  opacity: 0;
  transform: translateY(40px);
  margin-top: 20px;
  color: #fff;
  line-height: 1.5;
}

.banner-swiper .swiper-slide .more {
  transition: all 1s;
  transition-delay: 0.8s;
  opacity: 0;
  transform: translateY(40px);
  margin-top: 100px;
}

.banner-swiper .swiper-slide .more img {
  width: 18px;
}

.banner-swiper .swiper-slide .more a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 12px;
  width: 128px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(20px);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

.banner-swiper .swiper-slide .more a:hover {
  background: rgba(255, 255, 255, 0.5);
}

.banner-swiper .swiper-slide-active h1 {
  opacity: 1;
  transform: translateY(0px);
}

.banner-swiper .swiper-slide-active h2 {
  opacity: 1;
  transform: translateY(0px);
}

.banner-swiper .swiper-slide-active p, .banner-swiper .swiper-slide-active .more {
  opacity: 1;
  transform: translateY(0px);
}

.banner-swiper .bannerpage {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 8;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  height: 20px;
  border-radius: 200px;
  width: auto;
}

.banner-swiper .bannerpage .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 200px;
  background: rgba(255, 255, 255, 0.2);
}

.banner-swiper .bannerpage .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.7);
}

/* 切换组件 S */
.button-bar {
  position: absolute;
  top: 50%;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.swiper-button-prev {
  width: 80px;
  height: 80px;
  background: #2b4d70;
  border-radius: 100%;
  opacity: 1;
  z-index: 2;
  transition: all .5s;
  left: -11.76471%;
}

.swiper-button-prev::before {
  content: '';
  display: block;
  width: 12px;
  height: 34px;
  background: url(../img/icon_prev.svg) 0 0 no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-button-next {
  width: 80px;
  height: 80px;
  background: #2b4d70;
  border-radius: 100%;
  opacity: 1;
  z-index: 2;
  transition: all .5s;
  right: -11.76471%;
}

.swiper-button-next::before {
  content: '';
  display: block;
  width: 12px;
  height: 34px;
  background: url(../img/icon_next.svg) 0 0/contain no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-button-pagination {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 36px !important;
  z-index: 5;
  text-align: center;
}

.swiper-button-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 4px;
  border-radius: 20px;
  opacity: 0.2;
  background: #FFFFFF;
  transition: all .5s;
}

.swiper-button-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* 切换组件 E */
@keyframes rotate360 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1600px) {
  .swiper-button-prev, .swiper-button-next {
    width: 60px;
    height: 60px;
  }
  .swiper-button-prev {
    left: -10%;
  }
  .swiper-button-next {
    right: -10%;
  }
  .swiper-button-prev::before, .swiper-button-next::before {
    transform: translate(-50%, -50%) scale(0.8);
  }
}

@media screen and (max-width: 1024px) {
  .banner-swiper .swiper-slide {
    height: 50vw;
  }
  .banner-swiper .swiper-slide .more {
    margin-top: 60px;
  }
  .banner-swiper .swiper-slide .more a {
    width: 120px;
    height: 38px;
  }
  .button-bar {
    display: none;
  }
  .banner-swiper .swiper-slide p {
    margin-top: 10px;
  }
  .swiper-button-pagination {
    bottom: 15px !important;
  }
  .swiper-button-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 2px;
  }
}

@media screen and (max-width: 768px) {
  .banner-swiper .swiper-slide .more {
    margin-top: 25px;
  }
  .banner-swiper .swiper-slide {
    height: 50vw;
  }
}

@media screen and (max-width: 520px) {
  .banner-swiper .swiper-slide {
    height: 70vw;
  }
}

@media screen and (max-width: 425px) {
  .banner-swiper .swiper-slide {
    height: 80vw;
  }
  .banner-swiper .swiper-slide h1 {
    font-size: 20px;
  }
  .banner-swiper .swiper-slide p {
    font-size: 14px;
  }
}

.boxCont {
  padding: 150px 0 90px;
  position: relative;
}

.boxCont .title {
  margin-bottom: 50px;
  align-items: center;
}

.boxCont .title h2 {
  position: relative;
  display: flex;
  align-items: center;
  color: #2b4d70;
  line-height: 1;
  padding-left: 16px;
}

.boxCont .title h2::before {
  content: '';
  display: block;
  width: 5px;
  height: 100%;
  background: url(../img/title_line.svg) center center/cover no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.boxCont .title .t-more a {
  display: flex;
  align-items: center;
}

.boxCont .title .t-more a::after {
  content: '';
  display: block;
  width: 7px;
  height: 14px;
  background: url(../img/icon_go.svg) 0 0/cover no-repeat;
  margin-left: 10px;
  transition: all .5s;
}

.boxCont .title .t-more a:hover::after {
  transform: translateX(100%);
}

.btn-more a {
  display: flex;
  width: 128px;
  height: 46px;
  border-radius: 8px;
  background: #2b4d70;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.btn-more a::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_zx_go.png) 0 0/cover no-repeat;
  margin-left: 8px;
  transition: all .5s;
}

.btn-more a:hover {
  background: #0f2e63;
}

.btn-more a:hover::after {
  transform: translateX(50%);
}

.btn-more button {
  display: flex;
  width: 128px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid #fff;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  background: transparent;
  transition: all .5s;
  cursor: pointer;
}

.btn-more button::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_zx_go.png) 0 0/cover no-repeat;
  margin-left: 8px;
  transition: all .5s;
}

.btn-more button:hover {
  background: #2b4d70;
  border-color: #2b4d70;
}

.btn-more button:hover::after {
  transform: translateX(50%);
}

/* 品兴简介 */
.index-intro {
  background: #fff;
  overflow: hidden;
}

.index-intro .hd .lt {
  width: 45.58824%;
}

.index-intro .hd .title {
  margin-bottom: 20px;
}

.index-intro .hd .txt p {
  line-height: 2;
  text-align: justify;
}

.index-intro .hd .btn-more {
  margin-top: 140px;
}

.index-intro .hd .rt {
  width: 44.11765%;
}

.index-intro .hd .video-box a {
  display: block;
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  overflow: hidden;
}

.index-intro .hd .video-box a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.index-intro .hd .video-box a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(11, 22, 38, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.index-intro .hd .video-box a .icon-play {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/icon_play.svg) 0 0/cover no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: all .5s;
}

.index-intro .hd .video-box a .icon-play:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.index-intro .hd .video-box a:hover img {
  transform: scale(1.05);
}

.index-intro .bd {
  margin-top: 90px;
}

.index-intro .bd ul {
  justify-content: space-between;
}

.index-intro .bd ul li {
  opacity: 0.8;
  transition: all .5s;
}

.index-intro .bd ul li .in-box {
  display: flex;
}

.index-intro .bd ul li .counter {
  font-size: 70px;
  line-height: 1;
}

.index-intro .bd ul li .fnt34 {
  font-size: 34px;
  line-height: 1;
}

.index-intro .bd ul li p {
  text-align: center;
  margin-top: 10px;
}

.index-intro .bd ul li:hover {
  color: #2b4d70;
}

/* 产品系列 */
.index-product {
  background: #F0F5FA;
}

.index-product .cont {
  background: #fff; border-radius: 15px; overflow: hidden;
}

.index-product .tabs {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.index-product .tabs ul {
  justify-content: space-between;
}

.index-product .tabs ul li a {
  display: block;
  padding: 20px 30px;
  position: relative;
}

.index-product .tabs ul li a::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  transition: all .5s;
  position: relative;
  background: #2b4d70;
  width: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0;
}

.index-product .tabs ul li a:hover {
  font-weight: 600;
}

.index-product .tabs ul li.active a {
  font-weight: 600;
  color: #2b4d70;
}

.index-product .tabs ul li.active a::after {
  content: '';
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.index-product .item {
  display: none;
}

.index-product .item:first-child {
  display: block;
}

.index-product .item ul {
  padding: 20px 0;
  margin-left: -10px;
  margin-right: -10px;
}

.index-product .item ul li {
  width: 33.33%;
  padding: 10px;
}

.index-product .item ul li .inbox {
  border-radius: 15px;
  padding: 10px;
  transition: all .5s;
}

.index-product .item ul li .img {
  border-radius: 10px;
  height: 380px;
  position: relative;
  overflow: hidden;
}

.index-product .item ul li .img::after {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/icon_view.png) 0 0/cover no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .5s;
  opacity: 0;
}

.index-product .item ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.index-product .item ul li .txt {
  text-align: center;
  padding: 10px;
}

.index-product .item ul li .inbox:hover {
  background: #2b4d70;
  box-shadow: 0 10px 10px rgba(43, 77, 112, 0.1);
}

.index-product .item ul li .inbox:hover .img::after {
  opacity: 1;
}

.index-product .item ul li .inbox:hover .txt {
  color: #fff;
}

/* 解决方案 */
.index-solution {
  overflow: hidden;
  background: #FFFFFF;
}

.index-solution .item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.index-solution .item .img {
  overflow: hidden;
}

.index-solution .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.index-solution .item .info {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  z-index: 2;
  background: linear-gradient(0deg, rgba(30, 55, 95, 0.8) 0%, rgba(30, 55, 95, 0.2) 50%, rgba(30, 55, 95, 0) 100%);
  padding: 35px;
  color: #fff;
  transition: all .5s;
}

.index-solution .item .info .txt h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 10px;
}

.index-solution .item .info .txt p {
  line-height: 30px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.index-solution .item .info .btn-more {
  margin-top: 50px;
}

.index-solution .item a:hover .img img {
  transform: scale(1.05);
}

.index-solution .item a:hover .info {
  bottom: 0;
}

.index-solution .item1 .img {
  height: 670px;
  overflow: hidden;
}

.index-solution .item1 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.index-solution .item2 .item {
  margin-bottom: 20px;
}

.index-solution .item2 .item:last-child {
  margin-bottom: 0;
}

.index-solution .item2 .img {
  height: 325px;
  overflow: hidden;
}

.index-solution .item2 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.swiper-solution {
  position: relative;
  z-index: 1;
}

.swiper-solution .button-bar {
  width: 100%;
}

/* 荣誉资质 */
.index-honor {
  overflow: hidden;
  background: linear-gradient(180deg, #F0F5FA 0%, #ADC0D3 69%, #BBCAD9 69%, #F0F5FA 100%);
}

.index-honor .swiper-honor {
  overflow: hidden;
  margin-bottom: 30px;
}

.index-honor .swiper-honor .swiper-slide {
  width: auto;
}

.index-honor .swiper-honor .swiper-slide:hover .tit {
  color: #2b4d70;
}

.index-honor .swiper-honor .img {
  height: 340px;
  border: 8px solid #8291B4;
  box-shadow: 0px 10px 15px -10px rgba(33, 33, 33, 0.3);
  padding: 13px;
  background: #fff;
  transition: all .5s;
}

.index-honor .swiper-honor .img img {
  height: 100%;
}

.index-honor .swiper-honor .img:hover {
  border: 8px solid #2b4d70;
}

.index-honor .swiper-honor .tit {
  text-align: center;
  margin-top: 30px;
  transition: all .5s;
}

.index-honor .button-bar {
  width: 100%;
}

/* 新闻资讯 */
.index-news {
  overflow: hidden;
}

.index-news .tit-lt {
  align-items: center;
}

.index-news .tabs {
  margin-left: 100px;
}

.index-news .tabs li {
  position: relative;
  padding: 0 30px;
  font-weight: 400;
}

.index-news .tabs li::after {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background: #D8D8D8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.index-news .tabs li:last-child::after {
  display: none;
}

.index-news .tabs li.active a {
  color: #2b4d70;
  font-weight: bold;
}

.index-news .item {
  display: none;
}

.index-news .item:first-child {
  display: block;
}

.index-news .item ul {
  justify-content: space-between;
  margin-left: -10px;
  margin-right: -10px;
}

.index-news .item ul li {
  width: 33.33%;
  padding: 0 10px;
}

.index-news .item ul li .img {
  height: 264px;
  border-radius: 15px;
  overflow: hidden;
}

.index-news .item ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.index-news .item ul li .datetime {
  margin: 30px 15px;
  opacity: .5;
  margin-bottom: 10px;
}

.index-news .item ul li .tit {
  margin: 0 15px;
}

.index-news .item ul li .tit h2 {
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 80px;
  line-height: 40px;
}

.index-news .item ul li a:hover .img img {
  transform: scale(1.05);
}

/* 应急移动医疗设备提供商 */
.block-yingji {
  background: url(../img/bg_gys.png) center center/cover no-repeat;
  padding: 50px 0;
  overflow: hidden;
}

.block-yingji > div {
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.block-yingji > div h2 {
  margin-bottom: 30px;
}

@media screen and (max-width: 1440px) {
  .boxCont {
    padding: 120px 0 70px;
  }
  .boxCont .title {
    margin-bottom: 30px;
  }
  .index-intro .hd .btn-more {
    margin-top: 60px;
  }
  .index-intro .bd ul li .counter {
    font-size: 60px;
  }
  .index-product .item ul li .img {
    height: 350px;
  }
  .index-solution .item1 .img {
    height: 560px;
  }
  .index-solution .item2 .img {
    height: 270px;
  }
  .index-news .item ul li .img {
    height: 222px;
  }
}

@media screen and (max-width: 1280px) {
  .boxCont {
    padding: 120px 0 70px;
  }
  .boxCont .title {
    margin-bottom: 30px;
  }
  .index-intro .hd .btn-more {
    margin-top: 60px;
  }
  .index-intro .bd ul li .counter {
    font-size: 60px;
  }
  .index-product .item ul li .img {
    height: 350px;
  }
  .index-solution .item1 .img {
    height: 560px;
  }
  .index-solution .item2 .img {
    height: 270px;
  }
  .index-news .item ul li .img {
    height: 222px;
  }
}

@media screen and (max-width: 1024px) {
  .boxCont {
    padding: 100px 0 50px;
  }
  .index-intro .hd .rt .video-box {
    width: 80%;
    margin: 0 auto;
  }
  .index-intro .hd .btn-more {
    margin-top: 30px;
  }
  .btn-more a {
    width: 120px;
    height: 38px;
  }
  .index-intro .bd ul li .counter {
    font-size: 40px;
  }
  .index-intro .hd .video-box a {
    border-radius: 10px;
  }
  .index-product .tabs ul li a {
    padding: 20px;
    white-space: nowrap;
  }
  .index-product .item ul li .img {
    height: 295px;
  }
  .index-intro .hd .rt {
    width: 100%;
  }
  .index-intro .hd .lt {
    width: 100%;
  }
  .index-intro .bd ul li .in-box {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .index-intro .bd ul li {
    margin-bottom: 20px;
  }
  .index-intro .hd .btn-more {
    margin-top: 20px;
  }
  .index-product .tabs {
    overflow-x: scroll;
  }
  .index-honor .swiper-honor .img {
    height: 30vw;
  }
}

@media screen and (max-width: 768px) {
  .boxCont {
    padding: 50px 0;
  }
  .index-intro .hd .rt {
    width: 100%;
    margin-top: 20px;
  }
  .index-intro .hd .rt .video-box {
    width: 70%;
    margin: 0 auto;
  }
  .index-intro .bd {
    margin-top: 45px;
  }
  .index-intro .bd ul li .counter {
    font-size: 30px;
  }
  .index-product .item ul li {
    width: 50%;
  }
  .index-solution .item1 .img {
    height: 478px;
  }
  .index-solution .item2 .img {
    height: 229px;
  }
  .index-solution .item .info {
    padding: 20px;
  }
  .index-news .item ul li .img {
    border-radius: 10px;
    height: 30vw;
  }
  .index-honor .swiper-honor .img {
    border-width: 4px;
    padding: 10px;
  }
  .index-honor .swiper-honor .img:hover {
    border-width: 4px;
  }
  .index-honor .swiper-honor {
    margin-bottom: 0;
  }
  .index-honor .swiper-honor .tit {
    margin-top: 15px;
  }
  .index-product .item ul {
    margin-left: -5px;
    margin-right: -5px;
  }
  .index-product .item ul li {
    padding: 5px;
  }
  .index-news .tabs li {
    padding: 0 15px;
  }
  .index-news .tabs {
    margin-left: 50px;
  }
  .index-news .item ul {
    margin-left: -5px;
    margin-right: -5px;
  }
  .index-news .item ul li {
    padding: 5px;
    width: 50%;
  }
  .index-news .item ul li .datetime {
    margin: 15px 10px;
  }
  .index-news .item ul li .tit {
    margin: 0 10px;
  }
  .index-news .item ul li .tit h2 {
    line-height: 30px;
    height: 60px;
  }
  .index-solution .item2 .item {
    margin-bottom: 10px;
  }
  .index-solution .item1 .img {
    height: 420px;
  }
  .index-solution .item2 .img {
    height: 205px;
  }
  .index-product .item ul li .img {
    height: 47vw;
  }
  .index-product .tabs ul li a::after {
    height: 2px;
  }
  .index-product .tabs ul li a {
    padding: 10px;
  }
  .index-product .item ul li .inbox, .index-product .item ul li .img {
    border-radius: 5px;
  }
  .index-solution .item a {
    border-radius: 8px;
  }
  .index-solution .item .info .txt p {
    line-height: 24px;
    height: 48px;
  }
  .index-honor .swiper-honor .img {
    padding: 5px;
  }
  .index-intro .hd .video-box a .icon-play {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 520px) {
  .boxCont {
    padding: 50px 0;
  }
  .index-intro .bd ul li {
    width: 50%;
  }
  .index-intro .hd .rt .video-box {
    width: 100%;
  }
  .index-product .item ul li .txt h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .footer .ft-hd {
    padding-top: 40px;
  }
  .index-product .item ul li .img {
    height: 32vw;
  }
  .index-product .item ul li .img::after {
    width: 30px;
    height: 30px;
  }
  .index-honor .swiper-honor .img {
    height: 40vw;
  }
  .index-news .item ul li {
    width: 100%;
  }
  .index-news .item ul li .img {
    height: 53vw;
  }
  .boxCont .title {
    position: relative;
  }
  .boxCont .title .t-more {
    position: absolute;
    right: 0;
    top: 0;
  }
  .index-news .tit-lt {
    flex-wrap: wrap;
  }
  .index-news .tabs {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .index-news .tabs li {
    width: 33.33%;
  }
}

/* 应用安全宇宙 */
@keyframes rain {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(100%);
  }
}

/* footer */
.footer {
  background-color: #2b4d70;
  overflow: hidden;
}

.footer .ft-hd {
  padding: 75px 0 35px;
}

.footer .ft-hd .ft-info {
  width: 33.82353%;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .ft-hd .ft-info .logo {
  width: 212px;
}

.footer .ft-hd .ft-info .logo img {
  width: 100%;
}

.footer .ft-hd .ft-info .qrcodes {
  margin-bottom: 90px;
  margin-top: 70px;
}

.footer .ft-hd .ft-info .qrcodes ul {
  gap: 40px;
}

.footer .ft-hd .ft-info .qrcodes ul li {
  text-align: center;
}

.footer .ft-hd .ft-info .qrcodes ul li .img {
  width: 140px;
  height: 140px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}

.footer .ft-hd .ft-info .qrcodes ul li .img img {
  width: 100%;
}

.footer .ft-hd .ft-info .qrcodes ul li p {
  color: #fff;
  margin-top: 15px;
}

.footer .ft-hd .ft-info .linkus {
  color: #fff;
}

.footer .ft-hd .ft-nav {
  justify-content: flex-end;
}

.footer .ft-hd .ft-nav ul {
  gap: 60px;
}

.footer .ft-hd .ft-nav h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer .ft-hd .ft-nav h2 a {
  color: #fff;
}

.footer .ft-hd .ft-nav dl {
  font-size: 16px;
  white-space: nowrap;
}

.footer .ft-hd .ft-nav dl a {
  color: rgba(255, 255, 255, 0.5);
  line-height: 40px;
}

.footer .ft-hd .ft-nav dl a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer .ft-bd {
  padding: 9px 0;
}

.footer .ft-bd span {
  color: rgba(255, 255, 255, 0.5);
}

.footer .ft-hd .ft-info .qrcodes ul li {
  margin: 9px;
}

/* 浮窗 */
.rightFixed {
  position: fixed;
  right: 20px;
  bottom: 15%;
  z-index: 9;
}

.rightFixed ul {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.rightFixed ul li {
  width: 60px;
  height: 60px;
  background: #fff;
  position: relative;
}

.rightFixed ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.rightFixed ul li .icon {
  display: block;
  width: 30px;
  height: 30px;
  background: center center /cover no-repeat;
}

.rightFixed ul li .icon-tel {
  background-image: url(../img/icon_right03_black.svg);
}

.rightFixed ul li .icon-wx {
  background-image: url(../img/icon_right02_black.svg);
}

.rightFixed ul li .icon-top {
  background-image: url(../img/icon_right01_black.svg);
}

.rightFixed ul li a:hover {
  background: #2b4d70;
}

.rightFixed ul li a:hover .icon-tel {
  background-image: url(../img/icon_right03.svg);
}

.rightFixed ul li a:hover .icon-wx {
  background-image: url(../img/icon_right02.svg);
}

.rightFixed ul li a:hover .icon-top {
  background-image: url(../img/icon_right01.svg);
}

.rightFixed ul .li-tel {
  overflow: hidden;
  width: 60px;
}

.rightFixed ul .box-tel {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  transition: all .5s;
  background: #fff;
  overflow: hidden;
}

.rightFixed ul .box-tel a {
  flex-shrink: 0;
}

.rightFixed ul .box-tel .tt {
  white-space: nowrap;
  padding: 0;
  width: 0;
  transition: all .5s;
}

.rightFixed ul .box-tel .tt b {
  color: #2b4d70;
}

.rightFixed ul .qrcode-kf {
  position: absolute;
  right: calc(100% + 10px);
  top: 0;
  text-align: center;
  opacity: 0;
  visibility: visible;
  transition: all .5s;
  transform: translateX(20%);
}

.rightFixed ul .qrcode-kf .in-qr {
  padding: 14px 10px;
  background: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.rightFixed ul .qrcode-kf .qrc {
  width: 110px;
}

.rightFixed ul .qrcode-kf .qrc img {
  width: 100%;
}

.rightFixed ul .qrcode-kf p {
  margin-top: 10px;
}

.rightFixed ul li:hover .qrcode-kf {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.rightFixed ul .li-tel:hover {
  overflow: inherit;
}

.rightFixed ul .li-tel:hover .box-tel .tt {
  width: 230px;
  padding: 0 10px;
}

.rightFixed ul .li-tel:hover .box-tel {
  padding-left: 10px;
  width: auto;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.rightFixed ul .li-tel:hover .box-tel a {
  background: #fff;
  width: auto;
}

.rightFixed ul .li-tel:hover .box-tel .icon-tel {
  background-image: url(../img/icon_right03_black.svg);
}

@media screen and (max-width: 1440px) {
  .footer .ft-hd .ft-info .qrcodes ul li .img {
    width: 100px;
    height: 100px;
  }
  .footer .ft-hd .ft-nav {
    padding-left: 20px;
  }
  .footer .ft-hd .ft-nav ul {
    gap: 3vw;
  }
}

@media screen and (max-width: 1280px) {
  .footer .ft-hd .ft-nav ul {
    gap: 2vw;
  }
}

@media screen and (max-width: 1024px) {
  .footer .ft-bd span {
    width: 100%;
    display: block;
    text-align: center;
    float: none !important;
  }
  .footer .ft-hd .ft-info .logo {
    height: 30px;
    width: auto;
  }
  .footer .ft-hd .ft-info .logo img {
    width: auto;
    height: 100%;
  }
  .footer .ft-hd .ft-info .qrcodes {
    margin: 30px 0 30px;
  }
  .footer .ft-hd .ft-info .qrcodes ul li .img {
    width: 100px;
    height: 100px;
  }
  .footer .ft-hd .ft-info {
    width: 100%;
    border-right: none;
    text-align: center;
  }
  .footer .ft-hd .ft-nav {
    display: none;
  }
  .footer .ft-hd .ft-info .qrcodes ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer .ft-hd ul {
    width: 100%;
  }
  .footer .ft-hd .ft-info .qrcodes ul {
    gap: 0;
  }
  .footer .ft-hd .ft-info .qrcodes ul li:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .rightFixed {
    bottom: 20px;
  }
  .rightFixed ul li {
    width: 30px;
    height: 30px;
  }
  .rightFixed ul li a {
    width: 30px;
    height: 30px;
  }
  .rightFixed ul li .icon {
    width: 16px;
    height: 16px;
  }
  .rightFixed ul .li-tel {
    width: 30px;
  }
  .rightFixed ul .li-tel:hover .box-tel .tt {
    width: 200px;
  }
  .footer .ft-hd .ft-info .qrcodes ul li .img {
    border-radius: 8px;
  }
  .rightFixed ul .qrcode-kf .qrc {
    width: 90px;
  }
  .rightFixed ul .qrcode-kf .in-qr {
    padding: 7px 6px;
  }
}

/* 内页banner */
.in-banner {
  position: relative;
  height: 25vw;
  padding-top: 80px;
  background: center center /cover no-repeat;
}

.in-banner .in-banner-box {
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  text-align: center;
}

.in-banner .in-txt p {
  margin-top: 20px;
}

.page-intro .txt2 {
  margin-top: 40px;
  line-height: 2;
}

.page-intro .hd .lt {
  width: 100%;
}

.page-intro .txt {
  clear: both;
}

.page-intro .rt {
  float: right;
  margin: 0 0 30px 30px;
}

/* 内页导航 */
.in-navigation {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  overflow: hidden;
}

.in-navigation ul {
  gap: 60px;
}

.in-navigation ul li a {
  display: inline-block;
  line-height: 80px;
  position: relative;
}

.in-navigation ul li a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #2b4d70;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}

.in-navigation ul li a:hover {
  color: #2b4d70;
  font-weight: bold;
}

.in-navigation ul li.active a {
  color: #2b4d70;
  font-weight: bold;
}

.in-navigation ul li.active a::after {
  opacity: 1;
  width: 100%;
  visibility: visible;
}

.in-navigation.fixed-nav {
  position: fixed;
  top: 80px;
  width: 100%;
  z-index: 5;
}

@media screen and (max-width: 1280px) {
  .in-banner {
    height: 30vw;
    padding-top: 60px;
  }
}

@media screen and (max-width: 1024px) {
  .page-intro .hd .rt {
    margin-top: 30px;
  }
  .in-navigation ul li a {
    line-height: 60px;
    white-space: nowrap;
  }
  .in-navigation .wrap {
    overflow-x: auto;
  }
}

@media screen and (max-width: 768px) {
  .in-banner {
    height: 40vw;
  }
  .in-banner .in-txt p {
    margin-top: 10px;
  }
  .in-navigation ul {
    gap: 30px;
  }
}

@media screen and (max-width: 520px) {
  .in-banner {
    height: 300px;
  }
  .in-banner h2 {
    font-size: 20px;
  }
  .in-navigation ul {
    gap: 20px;
  }
}

/* 荣誉资质 */
.page-honor {
  background: #fff;
}

.page-honor .honor-lists .honor-sbox {
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-honor .honor-lists .item {
  padding: 0 10px;
  margin-bottom: 50px;
}

.page-honor .honor-lists .item:hover .tit {
  color: #2b4d70;
}

.page-honor .honor-lists .img {
  height: 340px;
  border: 8px solid #8291B4;
  box-shadow: 0px 10px 15px -10px rgba(33, 33, 33, 0.3);
  padding: 17px;
  background: #fff;
  transition: all .5s;
}

.page-honor .honor-lists .img img {
  height: 100%;
  max-width: 100%;
}

.page-honor .honor-lists .img:hover {
  border: 8px solid #2b4d70;
}

.page-honor .honor-lists .tit {
  text-align: center;
  margin-top: 30px;
  transition: all .5s;
}

@media screen and (max-width: 768px) {
  .page-honor .honor-lists .honor-sbox {
    margin-left: -5px;
    margin-right: -5px;
  }
  .page-honor .honor-lists .item {
    padding: 0 5px;
  }
  .page-honor .honor-lists .img {
    border-width: 4px;
    padding: 10px;
    height: 32vw;
  }
  .page-honor .honor-lists .img:hover {
    border-width: 4px;
  }
  .page-honor .honor-lists {
    margin-bottom: 0;
  }
  .page-honor .honor-lists .tit {
    margin-top: 15px;
  }
}

@media screen and (max-width: 500px) {
  .page-honor .honor-lists .img {
    padding: 6px;
    height: auto;
  }
}

/* 企业优势 */
.page-adv .adv-lists .item {
  display: flex;
  height: 380px;
}

.page-adv .adv-lists .item .txt {
  background: #F0F5FA;
  height: 100%;
  display: flex;
  align-items: center;
  width: 50%;
  padding: 20px;
}

.page-adv .adv-lists .item .txt p {
  margin-top: 20px;
  line-height: 30px;
}

.page-adv .adv-lists .item .img {
  width: 50%;
  overflow: hidden;
}

.page-adv .adv-lists .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.page-adv .adv-lists .item:nth-child(2n) {
  flex-direction: row-reverse;
}

.page-adv .adv-lists .item:hover .img img {
  transform: scale(1.01);
}

@media screen and (max-width: 1440px) {
  .page-adv .adv-lists .item {
    height: 320px;
  }
}

@media screen and (max-width: 1024px) {
  .page-adv .adv-lists .item {
    height: 268px;
  }
}

@media screen and (max-width: 768px) {
  .page-adv .adv-lists .item {
    height: 210px;
  }
  .page-adv .adv-lists .item .txt p {
    margin-top: 10px;
    line-height: 24px;
  }
}

@media screen and (max-width: 520px) {
  .page-adv .adv-lists .item {
    flex-wrap: wrap;
    height: auto;
  }
  .page-adv .adv-lists .item .txt {
    width: 100%;
  }
  .page-adv .adv-lists .item .txt .intxt {
    padding-top: 30px;
  }
  .page-adv .adv-lists .item .img {
    width: 100%;
  }
}

/* 人才招聘 */
.result-list .item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.result-list .item .hd {
  padding: 20px 0;
}

.result-list .item .hd h2 {
  margin-bottom: 20px;
  cursor: pointer;
}

.result-list .item .other {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-list .item .other .time {
  color: rgba(0, 0, 0, 0.4);
}

.result-list .item .other .labels {
  color: rgba(0, 0, 0, 0.2) span;
  color-color: #000;
}

.result-list .item .bd {
  background: #E6EDF5;
  padding: 20px;
  border-radius: 10px;
  gap: 40px;
  flex-direction: column;
  display: none;
}

.result-list .item .bd .txt {
  line-height: 30px;
  margin-bottom: 30px;
}

.result-list .item .bd .txt ul {
  counter-reset: item-counter;
}

.result-list .item .bd .txt ul li {
  padding-left: 30px;
  position: relative;
}

.result-list .item .bd .txt ul li::before {
  counter-increment: item-counter;
  content: counter(item-counter) ". ";
  position: absolute;
  left: 5px;
}

.result-list .item .bd .toudi a {
  color: #2b4d70;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: bold;
}

.result-list .item .bd .toudi a:hover {
  text-decoration: none;
}

@media screen and (max-width: 520px) {
  .result-list .item .bd {
    padding: 10px;
    border-radius: 5px;
  }
  .result-list .item .hd h2 {
    margin-bottom: 10px;
  }
}

/* 产品系列内页 */
.page-shoushumk {
  overflow: hidden;
  background: #F0F5FA;
}

.ssmk-item ul {
  padding: 20px 0;
  margin-left: -10px;
  margin-right: -10px;
}

.ssmk-item ul li {
  width: 33.33%;
  padding: 10px;
}

.ssmk-item ul li .inbox {
  border-radius: 15px;
  padding: 10px;
  transition: all .5s;
  background: #fff;
}

.ssmk-item ul li .img {
  border-radius: 10px;
  height: 380px;
  position: relative;
  overflow: hidden;
}

.ssmk-item ul li .img::after {
  content: '';
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/icon_view.png) 0 0/cover no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .5s;
  opacity: 0;
}

.ssmk-item ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.ssmk-item ul li .txt {
  text-align: center;
  padding: 10px;
}

.ssmk-item ul li .inbox:hover {
  background: #2b4d70;
  box-shadow: 0 10px 10px rgba(43, 77, 112, 0.1);
}

.ssmk-item ul li .inbox:hover .img::after {
  opacity: 1;
}

.ssmk-item ul li .inbox:hover .txt {
  color: #fff;
}

@media screen and (max-width: 1440px) {
  .ssmk-item ul li .img {
    height: 350px;
  }
}

@media screen and (max-width: 1280px) {
  .ssmk-item ul li .img {
    height: 350px;
  }
}

@media screen and (max-width: 1024px) {
  .ssmk-item ul li .img {
    height: 295px;
  }
}

@media screen and (max-width: 768px) {
  .ssmk-item ul li {
    width: 50%;
  }
  .ssmk-item ul {
    margin-left: -5px;
    margin-right: -5px;
  }
  .ssmk-item ul li {
    padding: 5px;
  }
  .ssmk-item ul li .img {
    height: 47vw;
  }
  .ssmk-item ul li .inbox, .ssmk-item ul li .img {
    border-radius: 5px;
  }
}

@media screen and (max-width: 520px) {
  .ssmk-item ul li .txt h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .ssmk-item ul li .img {
    height: 32vw;
  }
  .ssmk-item ul li .img::after {
    width: 30px;
    height: 30px;
  }
}

/* 解决方案 */
.solution-list ul {
  margin-left: -10px;
  margin-right: -10px;
}

.solution-list li {
  width: 50%;
  padding: 10px;
}

.solution-list .inbox {
  position: relative;
}

.solution-list a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.solution-list .img {
  height: 670px;
  overflow: hidden;
}

.solution-list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.solution-list .info {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
  z-index: 2;
  background: linear-gradient(0deg, rgba(30, 55, 95, 0.8) 0%, rgba(30, 55, 95, 0.2) 50%, rgba(30, 55, 95, 0) 100%);
  padding: 35px;
  color: #fff;
  transition: all .5s;
}

.solution-list .info .txt h2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 10px;
}

.solution-list .info .txt p {
  line-height: 30px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solution-list .info .btn-more {
  margin-top: 50px;
}

.solution-list a:hover .img img {
  transform: scale(1.05);
}

.solution-list a:hover .info {
  bottom: 0;
}

@media screen and (max-width: 1440px) {
  .solution-list .inbox .img {
    height: 560px;
  }
}

@media screen and (max-width: 1280px) {
  .solution-list .inbox .img {
    height: 560px;
  }
}

@media screen and (max-width: 768px) {
  .solution-list .inbox .img {
    height: 420px;
  }
  .solution-list .inbox a {
    border-radius: 8px;
  }
  .solution-list .inbox .info .txt p {
    line-height: 24px;
    height: 48px;
  }
}

/* 产品详情 */
.prodt-floor1 {
  overflow: hidden;
  padding-top: 80px;
  background: #fff;
}

.prodt-floor1 .wrap {
  padding: 25px 0;
}

.prodt-floor1 .lt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding-right: 5%;
}

.prodt-floor1 .lt h2 {
  color: #2b4d70;
  margin-bottom: 20px;
}

.prodt-floor1 .lt .btn-more {
  margin-top: 100px;
}

.prodt-floor1 .rt {
  width: 33.08824%;
}

.prodt-floor1 .rt .swiper-product {
  overflow: hidden;
  position: relative;
}

.prodt-floor1 .rt .swiper-product .img img {
  width: 100%;
}

.prodt-floor1 .rt .swiper-product .swiper-pagination {
  bottom: 0;
}

.prodt-floor1 .rt .swiper-product .swiper-pagination .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 3px;
  border-radius: 2px;
  opacity: 1;
}

.prodt-floor1 .rt .swiper-product .swiper-pagination .swiper-pagination-bullet-active {
  background: #2b4d70;
}

.product-detail {
  background: #F0F5FA;
}

.product-detail .in-navigation {
  background: #F0F5FA;
}

.prodt-floor2.active {
  margin-top: 80px;
}

.prodt-floor2 .boxCont {
  padding-bottom: 0;
}

.prodt-floor2 .yslists {
  margin-left: -10px;
  margin-right: -10px;
}

.prodt-floor2 .yslists > li {
  padding: 0 10px 20px;
}

.prodt-floor2 .yslists > li:last-child {
  padding-bottom: 0;
}

.prodt-floor2 .yslists > li .inbox {
  border-radius: 10px;
  height: 100%;
  background: #fff;
  overflow: hidden;
}

.prodt-floor2 .yslists > li .inbox:hover .info h2 {
  color: #2b4d70;
}

.prodt-floor2 .yslists > li .inbox:hover .img img {
  transform: scale(1.05);
}

.prodt-floor2 .yslists > li .img {
  height: 250px;
  margin-bottom: 20px;
  display: none;
  overflow: hidden;
}

.prodt-floor2 .yslists > li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.prodt-floor2 .yslists > li .info {
  padding: 20px;
}

.prodt-floor2 .yslists > li .info h2 {
  margin-bottom: 10px;
  transition: all .5s;
}

.prodt-floor2 .yslists > li .info ul {
  counter-reset: item-counter;
}

.prodt-floor2 .yslists > li .info ul li {
  position: relative;
  line-height: 26px;
  color: #808080;
}

.prodt-floor2 .yslists > li .info ul li {
  position: relative;
  line-height: 26px;
  color: #808080;
}

.prodt-floor3 .boxCont {
  padding-bottom: 0;
}

.prodt-floor3 table {
  width: 100%;
}

.prodt-floor3 table td {
  padding: 20px;
}

.prodt-floor3 table td:first-child {
  font-weight: bold;
  white-space: nowrap;
}

.prodt-floor3 table td:last-child {
  text-align: right;
}

.prodt-floor3 table tr td {
  background: #E6EDF5;
}

.prodt-floor3 table tr:nth-child(2n) td {
  background: #fff;
}

.prodt-floor4 .cont {
  border-radius: 20px;
  background: #FFFFFF;
  padding: 20px;
  text-align: center;
}

.prodt-floor4 .cont .img {
  margin-bottom: 20px;
}

.prodt-floor4 .cont .img:last-child {
  margin-bottom: 0;
}

.prodt-floor4 .cont img {
  max-width: 100%;
}

@media screen and (max-width: 1440px) {
  .prodt-floor2 .yslists > li .img {
    height: 216px;
  }
}

@media screen and (max-width: 1024px) {
  .prodt-floor2 .yslists > li .img {
    height: 185px;
  }
  .prodt-floor1 .lt .btn-more {
    margin-top: 50px;
  }
  .in-navigation.fixed-nav {
    top: 60px;
  }
  .prodt-floor2.active {
    padding-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .prodt-floor1 .lt {
    width: 100%;
    padding-right: 0;
  }
  .prodt-floor1 .rt {
    width: 100%;
  }
  .prodt-floor2 .yslists > li {
    width: 50%;
    margin-bottom: 20px;
  }
  .prodt-floor2 .yslists > li .img {
    height: 26vw;
  }
}

@media screen and (max-width: 520px) {
  .prodt-floor2 .yslists > li {
    width: 100%;
    margin-bottom: 20px;
  }
  .prodt-floor2 .yslists > li .img {
    height: 55vw;
  }
  .prodt-floor1 .lt .btn-more {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .prodt-floor1 .lt h2 {
    font-size: 28px;
  }
}

/* 新闻中心 */
.page-news {
  background: #F0F5FA;
}

.news-lists {
  margin-left: -10px;
  margin-right: -10px;
}

.news-lists li {
  padding: 0 10px 20px;
  width: 33.33%;
}

.news-lists li .inbox a {
  display: block;
}

.news-lists li .inbox .img {
  height: 264px;
  overflow: hidden;
}

.news-lists li .inbox .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.news-lists li .inbox .info {
  padding: 30px 15px 30px;
}

.news-lists li .inbox .dt {
  margin-bottom: 10px;
}

.news-lists li .inbox h2 {
  line-height: 40px;
  height: 80px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-lists li .inbox a:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.news-lists li .inbox a:hover .img img {
  transform: scale(1.05);
}

/* 翻页 */
.pages {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}

.pagination {
  gap: 20px;
  display: flex;
}

.pagination li {
  min-width: 50px;
  height: 50px;
  background: #E6EDF5;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  transition: all .3s;
  padding: 0 20px;
  border-radius: 10px;
}

.pagination li.active {
  color: #fff;
  background: #2C85B8;
}

@media screen and (max-width: 1440px) {
  .news-lists li .inbox .img {
    height: 220px;
  }
}

@media screen and (max-width: 1024px) {
  .news-lists li .inbox .img {
    height: 190px;
  }
  .news-lists li .inbox .info {
    padding: 15px 10px 15px;
  }
  .news-lists li .inbox .txt h2 {
    margin-bottom: 10px;
  }
  .news-lists li .inbox .other {
    margin-top: 20px;
  }
  .pagination {
    gap: 10px;
  }
  .pagination li {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    line-height: 38px;
  }
}

@media screen and (max-width: 768px) {
  .news-lists {
    margin-left: -5px;
    margin-right: -5px;
  }
  .news-lists li {
    width: 50%;
    padding: 0 5px 10px;
  }
  .news-lists li .inbox .img {
    height: 27vw;
  }
  .pagination {
    gap: 6px;
  }
  .pagination li {
    min-width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

@media screen and (max-width: 520px) {
  .news-lists li {
    width: 100%;
  }
  .news-lists li .inbox .img {
    height: 53vw;
  }
}

/* 服务 */
.page-serivce {
  background: #F0F5FA;
  overflow: hidden;
}

.page-serivce .service-before {
  margin-bottom: 90px;
}

.page-serivce .service-before ul {
  margin-left: -10px;
  margin-right: -10px;
}

.page-serivce .service-before ul li {
  width: 50%;
  padding: 10px;
}

.page-serivce .service-before ul li .inbox {
  border-radius: 15px;
  background: #fff;
  height: 100%;
  text-align: center;
  padding: 50px 40px;
  transition: all .5s;
}

.page-serivce .service-before ul li .inbox:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}

.page-serivce .service-before ul li .icon {
  width: 100px;
  height: 100px;
  background: #2b4d70;
  border-radius: 100%;
  margin: 0 auto 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-serivce .service-before ul li .icon img {
  max-width: 100%;
}

.page-serivce .service-before ul li .info p {
  text-align: left;
  line-height: 30px;
}

.page-serivce .service-before ul li .info h2 {
  margin-bottom: 30px;
}

.page-serivce .service-before ul li .info .btn-more a {
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.page-serivce .service-qa .item {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 15px;
}

.page-serivce .service-qa .hd {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  align-items: center;
  cursor: pointer;
}

.page-serivce .service-qa .hd::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/icon_add.svg) center center/cover no-repeat;
  transition: all .5s;
}

.page-serivce .service-qa .bd {
  padding: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: none;
}

.page-serivce .service-qa .active .hd {
  color: #2b4d70;
}

.page-serivce .service-qa .active .hd::after {
  transform: rotate(45deg);
}

@media screen and (max-width: 1440px) {
  .page-serivce .service-before ul li .icon {
    width: 80px;
    height: 80px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .page-serivce .service-before ul li .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
  }
  .page-serivce .service-before ul li .info h2 {
    margin-bottom: 20px;
  }
  .page-serivce .service-before ul li .info .btn-more a {
    margin-top: 20px;
  }
  .page-serivce .service-before ul li .inbox {
    padding: 30px 20px;
  }
  .page-serivce .service-before ul {
    margin-left: -5px;
    margin-right: -5px;
  }
  .page-serivce .service-before ul li {
    padding: 5px;
  }
  .page-serivce .service-qa .item {
    margin-bottom: 10px;
  }
  .page-serivce .service-qa .hd {
    padding: 15px 20px;
  }
  .page-serivce .service-qa .bd {
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .page-serivce .service-before ul {
    flex-wrap: wrap;
  }
  .page-serivce .service-before ul li {
    width: 50%;
  }
}

@media screen and (max-width: 520px) {
  .page-serivce .service-before ul li {
    width: 100%;
  }
}

/* 详情 */
.detail-main {
  padding-top: 80px;
  padding-bottom: 80px;
}

.detail-main .hd {
  padding: 80px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-main .hd h2 {
  width: 71.69118%;
  padding-right: 10%;
}

.detail-main .hd .datetime {
  line-height: 70px;
  color: #B2B2B2;
}

.detail-main .detail-content {
  width: 73.82353%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 30px;
  padding-top: 60px;
}

.detail-main .detail-content h2 {
  margin-bottom: 10px;
}

.detail-main .detail-content p {
  line-height: 2.14286;
  text-align: justify;
}

.detail-main .detail-content img {
  max-width: 100%;
}

.detail-main .img-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin: 50px 0;
}

.detail-main .img-txt p {
  font-weight: bold;
  text-align: center;
}

.detail-main .img-txt img {
  max-width: 100%;
}

.detail-main .prevnext {
  margin-top: 50px;
}

.detail-main .prevnext ul {
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.detail-main .prevnext ul li {
  width: 50%;
  padding: 0 10px;
}

.detail-main .prevnext ul li a {
  display: block;
  background: #F2F2F2;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-main .prevnext ul li .icon {
  display: inline-block;
  width: 18px;
  height: 12px;
  background: center center /cover no-repeat;
  margin: 0 10px;
}

.detail-main .prevnext ul li .icon-prev {
  background-image: url(../img/icon_swiper_prev_black.svg);
}

.detail-main .prevnext ul li .icon-next {
  background-image: url(../img/icon_swiper_next_black.svg);
}

.detail-main .prevnext ul li a:hover .icon-prev {
  background-image: url(../img/icon_swiper_prev_blue.svg);
}

.detail-main .prevnext ul li a:hover .icon-next {
  background-image: url(../img/icon_swiper_next_blue.svg);
}

.detail-main .cases-lists {
  width: 100%;
}

.detail-main .cases-lists li {
  width: 100%;
  padding-bottom: 0;
  padding-top: 0;
}

.detail-main .right-relative {
  width: 23.89706%;
  padding-top: 60px;
}

.detail-main .right-relative .tt {
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .detail-main {
    padding-top: 60px;
  }
  .detail-main .hd {
    padding: 60px 0;
  }
  .detail-main .detail-content {
    padding-top: 30px;
  }
  .detail-main .right-relative {
    padding-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .detail-main .hd {
    padding: 30px 0;
  }
  .detail-main .hd > div {
    flex-wrap: wrap;
  }
  .detail-main .hd h2 {
    width: 100%;
    padding-top: 0;
  }
  .detail-main .hd .datetime {
    line-height: 35px;
  }
  .detail-main .detail-content {
    width: 100%;
  }
  .detail-main .bd > div {
    flex-wrap: wrap;
  }
  .detail-main .detail-content {
    padding-right: 0;
    border-right: none;
  }
  .detail-main .img-txt {
    padding: 25px  10px;
  }
  .detail-main .prevnext ul li p {
    display: none;
  }
  .detail-main .right-relative {
    width: 100%;
  }
  .detail-main .cases-lists {
    display: flex;
    flex-wrap: wrap;
  }
  .detail-main .cases-lists li {
    width: 50%;
    padding: 10px 5px;
  }
  .detail-main .img-txt {
    border-radius: 10px;
    margin: 25px 0;
  }
  .detail-main .hd h2 {
    font-size: 20px;
    padding-right: 0;
  }
}

/* 联系我们 */
.page-contact {
  overflow: hidden;
  padding-bottom: 60px;
}

.page-contact .inner {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}

.page-contact .text {
  position: relative;
  z-index: 3;
}

.page-contact .text .didian {
  width: 40.88586%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.page-contact .text .didian img {
  width: 100%;
}

.page-contact .text .hd {
  margin-bottom: 20px;
  padding-top: 26px;
}

.page-contact .text .hd h2 {
  font-weight: 600;
  color: #2b4d70;
  line-height: 1;
}

.page-contact .text .hd p {
  margin-top: 20px;
  color: #666666;
  font-size: 12px;
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 20px;
  display: inline-block;
  letter-spacing: 0.2em;
}

.page-contact .text .bd {
  margin-bottom: 27px;
}

.page-contact .text .bd p {
  font-size: 15px;
  line-height: 34px;
}

.page-contact .text .ft {
  display: flex;
  position: relative;
  z-index: 3;
}

.page-contact .text .ft a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  font-size: 15px;
  text-align: center;
  margin-right: 20px;
  box-sizing: border-box;
}

.page-contact .text .ft a:first-child {
  background-color: #2b4d70;
  color: #fff;
}

.page-contact .text .ft a:first-child:hover {
  opacity: .8;
}

.page-contact .text .ft a:last-child {
  background: #E6EDF5;
  color: #2b4d70;
}

.page-contact .text .ft a:last-child:hover {
  background-color: #2b4d70;
  color: #fff;
}

.page-contact .didian {
  width: 17.64706%;
}

.page-contact .didian img {
  width: 100%;
}

.page-contact .mapbox {
  width: 44.11765%;
  height: 320px;
  margin-top: 30px;
}

.page-contact #map {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1440px) {
  .page-contact {
    padding-bottom: 40px;
  }
  .page-contact .mapbox {
    height: 292px;
  }
  .page-contact .text .hd p {
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 1024px) {
  .page-contact {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .page-contact .mapbox {
    width: 100%;
  }
  .page-contact .didian {
    width: 30%;
  }
  .page-contact .text .hd p {
    letter-spacing: 0.2px;
  }
}

@media screen and (max-width: 520px) {
  .page-contact .didian {
    display: none;
  }
}

/* 资源下载 */
.download-lists {
  margin-left: -10px;
  margin-right: -10px;
}

.download-lists li {
  width: 25%;
  padding: 0 10px 40px;
}

.download-lists a {
  display: block;
}

.download-lists a .img {
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.download-lists a .img img {
  width: 100%;
  height: 100%;
  transition: all .5s;
  object-fit: cover;
}

.download-lists a .img::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(44, 133, 184, 0.8);
  left: 0;
  top: 0;
  z-index: 2;
  position: absolute;
  transition: all .5s;
  opacity: 0;
  visibility: hidden;
}

.download-lists a .img .view {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  color: #fff;
  text-align: center;
  z-index: 3;
  transition: all .5s;
  opacity: 0;
  visibility: hidden;
}

.download-lists a .img .view .icon {
  display: block;
  width: 36px;
  height: 36px;
  background: url(../img/icon_chakan.svg) 0 0/cover no-repeat;
  z-index: 3;
  margin: 0 auto 10px;
}

.download-lists a .info {
  text-align: center;
}

.download-lists a .info p {
  margin-top: 20px;
}

.download-lists a:hover .img img {
  transform: scale(1.01);
}

.download-lists a:hover .img::after {
  opacity: 1;
  visibility: visible;
}

.download-lists a:hover .img .view {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1440px) {
  .download-lists a .img {
    height: 388px;
  }
}

@media screen and (max-width: 1280px) {
  .download-lists a .img {
    height: 370px;
  }
}

@media screen and (max-width: 1024px) {
  .download-lists a .img {
    height: 328px;
  }
}

@media screen and (max-width: 768px) {
  .download-lists {
    margin-left: -5px;
    margin-right: -5px;
  }
  .download-lists li {
    width: 50%;
    padding: 0 5px 20px;
  }
  .download-lists a .img {
    height: 61vw;
  }
}

/* 弹窗 */
.mask-bg {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(30px);
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  z-index: 20;
  display: none;
}

.mask-bg .popup-ziyuan {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.mask-bg .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 66px;
  height: 66px;
  background: url(../img/icon_close.svg) 0 0/cover no-repeat;
  cursor: pointer;
  transition: all .5s;
  z-index: 3;
}

.mask-bg .close:hover {
  transform: rotate(180deg);
}

.mask-bg .swiper-pagination {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 5;
  text-align: center;
}

.mask-bg .swiper-pagination .swiper-pagination-bullet {
  width: 50px;
  height: 4px;
  border-radius: 20px;
  opacity: 0.2;
  background: #FFFFFF;
  transition: all .5s;
}

.mask-bg .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.mask-bg .swiper-pagination {
  bottom: 5%;
}

.mask-bg .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px;
}

.popup-main {
  width: 400px;
  position: relative;
}

.popup-main .button-bar {
  width: 120%;
  top: 50%;
}

.popup-main .swiper-ziyuan {
  overflow: hidden;
}

.popup-main .inbox {
  width: 100%;
}

.popup-main .img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-main .img img {
  max-width: 100%;
  max-height: 100%;
}

.popup-main .txt {
  text-align: center;
  margin-top: 25px;
  color: #fff;
}

.form-zixun {
  background: #fff;
}

.form-zixun .hd {
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 30px;
}

.form-zixun .hd h2 {
  color: #2b4d70;
}

.form-zixun .hd p {
  color: rgba(0, 0, 0, 0.5);
  margin-top: 10px;
}

.form-zixun .bd {
  padding: 30px;
}

.form-zixun .bd li {
  width: 100%;
  margin-bottom: 30px;
}

.form-zixun .bd .name {
  width: 110px;
  margin-right: 20px;
}

.form-zixun .bd .email {
  flex: 1;
}

.form-zixun .bd .tit {
  margin-bottom: 10px;
}

.form-zixun .bd .ipt {
  height: 50px;
  background: #F5F5F5;
}

.form-zixun .bd .ipt input[type="text"] {
  height: 100%;
  padding: 14px 20px;
  width: 100%;
  background: transparent;
  font-size: 16px;
  outline: none;
}

.form-zixun .btn {
  padding-top: 10px;
}

.form-zixun .btn .btn-submit {
  background: #2b4d70;
  height: 50px;
  color: #fff;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  transition: all .5s;
}

.form-zixun .btn .btn-submit:hover {
  background: #0f2e63;
}

@media screen and (min-height: 1060px) {
  .popup-main {
    width: 500px;
  }
  .form-zixun .btn {
    padding-top: 50px;
  }
}

@media screen and (max-width: 1440px) {
  .mask-bg .close {
    width: 50px;
    height: 50px;
  }
  .popup-main {
    width: 400px;
  }
  .form-zixun .hd {
    padding: 20px;
  }
  .form-zixun .bd {
    padding: 20px;
  }
  .form-zixun .btn {
    padding-top: 20px;
  }
  .form-zixun .bd li {
    margin-bottom: 20px;
  }
  .popup-main .txt {
    margin-top: 15px;
  }
}

@media screen and (max-width: 1280px) {
  .popup-main {
    width: 300px;
  }
  .form-zixun .btn {
    padding-top: 10px;
  }
}

@media screen and (max-width: 1024px) {
  .mask-bg .close {
    width: 30px;
    height: 30px;
  }
  .popup-main {
    width: 53vh;
  }
  .popup-main .inbox, .form-zixun {
    height: 75vh;
  }
  .popup-main .txt {
    margin-top: 10px;
  }
  .form-zixun .bd .ipt {
    height: 40px;
  }
  .form-zixun .bd .ipt input[type="text"] {
    padding: 10px;
  }
  .form-zixun .btn .btn-submit {
    height: 40px;
  }
}

@media screen and (max-width: 768px) {
  .popup-main .button-bar {
    display: none;
  }
}

@media screen and (max-width: 425px) {
  .popup-main {
    width: 100vw;
  }
  .popup-main .inbox {
    height: 70vh;
  }
}

.form-zixun .bd .tit b {
  color: red;
}

/* 表单 */
.main-form {
  background: #E6EDF5;
  padding: 200px 0 144px;
}

.main-form-box {
  max-width: 500px;
  margin: 0 auto;
}

.main-form-box .form-zixun {
  height: auto;
}

@media screen and (max-width: 520px) {
  .main-form {
    padding: 160px 0 80px;
  }
}

.form-zixun .bd .ipt textarea {
  padding: 14px 20px;
}
/* 案例中心 */
.page-cases {
  padding-bottom: 80px;
  overflow: hidden;
}

.cases-lists {
  margin-left: -10px;
  margin-right: -10px;
}

.cases-lists li {
  width: 25%;
  padding: 10px;
}

.cases-lists li .img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.cases-lists li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
}

.cases-lists li .img .showbox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 133, 184, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}

.cases-lists li .img .showbox .icon-view {
  display: block;
  width: 36px;
  height: 36px;
  background: url(../img/icon_view.svg) 0 0/cover no-repeat;
  margin-bottom: 20px;
}

.cases-lists li .txt {
  padding-top: 20px;
}

.cases-lists li .txt h2 {
  font-weight: normal;
  line-height: 24px;
  height: 48px;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

.cases-lists li a:hover .img img {
  transform: scale(1.05);
}

.cases-lists li a:hover .img .showbox {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1440px) {
  .cases-lists li .img {
    height: 185px;
  }
}

@media screen and (max-width: 1024px) {
  .page-cases {
    padding-bottom: 50px;
  }
  .cases-lists {
    margin-left: -5px;
    margin-right: -5px;
  }
  .cases-lists li {
    padding: 5px;
  }
  .cases-lists li .img {
    height: 160px;
  }
}

@media screen and (max-width: 768px) {
  .cases-lists li {
    width: 50%;
  }
  .cases-lists li .img {
    height: 33vw;
  }
  .cases-lists li .txt {
    padding-top: 10px;
  }
}