/* 元素上升动画效果 */
.eleanimateoff {
  animation: slide-out 1s;
}

.eleanimate {
  animation: slide-in 1s;
}


@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(300px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/****************** 智慧产品 ******************/

/* 智慧产品总板块 */
.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0 50px;
}

/* 智慧产品-手风琴列表 */
.product-panels {
  display: flex;
  width: 95vw;
  margin: auto;
}

/* 智慧产品-单个手风琴item-常态 */
.product-panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50vh;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  flex: 0.8;
  margin: 10px;
  position: relative;
  -webkit-transition: all 700ms ease-in;
  transition: all 600ms ease-in;
  overflow: hidden;

}

/* 智慧产品-单个手风琴item-鼠标悬浮 */
.product-panel:hover {
  box-shadow: 0px 20px 0px 0px #040c7acb;
  transform: translateY(-20px);
  /* -webkit-box-reflect: below 2px linear-gradient(transparent, rgba(0, 0, 0, .5)); */
}

/* 智慧产品-单个手风琴item-鼠标点击 */
.product-active {
  flex: 5;
}

.product-active:hover {
  box-shadow: 5px 5px 10px #0000ff4d;
  transform: none;
}

/* 智慧产品-八个产品的背景图片 */
.product-panel:nth-child(1) {
  background-image: url("/image/changeable/product01.jpg");
}

.product-panel:nth-child(2) {
  background-image: url("/image/changeable/product02.jpg");
}

.product-panel:nth-child(3) {
  background-image: url("/image/changeable/product03.jpg");
}

.product-panel:nth-child(4) {
  background-image: url("/image/changeable/product04.jpg");
}

.product-panel:nth-child(5) {
  background-image: url("/image/changeable/product05.jpg");
}

.product-panel:nth-child(6) {
  background-image: url("/image/changeable/product06.jpg");
}

.product-panel:nth-child(7) {
  background-image: url("/image/changeable/product07.jpg");
}

.product-panel:nth-child(8) {
  background-image: url("/image/changeable/product08.jpg");
}

/* 智慧产品-手风琴产品详情-常态时隐藏在下方 */
.panelinner {
  border-radius: 50px;
  height: 80%;
  width: 100%;
  background-color: #0000009c;
  position: absolute;
  top: 100%;
  transition: all 0.6s ease-in 0.4s;
  padding: 20px;
}

/* 智慧产品-手风琴产品详情-展开时上升可视 */
.product-active .panelinner {
  top: 20%;
  border-radius: 20px;
}

/* 智慧产品-手风琴展开与闭合的详情标题 */
.product-panel h3 {
  font-size: 1.5vw;
  margin: 0;
  opacity: 0;
}

.product-active h3 {
  opacity: 1;
  transition: opacity 1s ease-in 0.5s;
}

/* 智慧产品-手风琴闭合时-产品标题框 */
.product-panel .panelname {
  border-radius: 8%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  font-size: 1.6vw;
  background-color: #0000009c;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease-in 0.1s;
  opacity: 1;
}

/* 智慧产品-手风琴闭合时-产品标题文字效果 */
.product-panel .panelname>span {
  writing-mode: vertical-lr;
  text-orientation: upright;
  letter-spacing: 5px;
  background: linear-gradient(to bottom, #040c7a 0%, #040c7a 0%) no-repeat;
  background-size: 100% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 0px 0px #ffffff;
  transition: all 1s linear;
  /* -webkit-text-stroke: 1px #ffffff7a;
    font-weight: 500; */
}

.product-panel .panelname:hover {
  background-color: #ffffff91;
}

.product-panel .panelname:hover span {
  background-size: 100% 100%;
  text-shadow: 0px 0px 0px #ffffff00;
}

.product-active .panelname {
  opacity: 0;
}


/****************** 成功案例 ******************/
.cases {
  margin: 10px auto 50px;
}

.cases h2 {
  text-align: center;
}

.cases-box {
  width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.case-item {
  width: 24%;
  height: 250px;
  background-color: #fff;
  margin: 5px 0;
  position: relative;
  overflow: hidden;
}

/* 成功案例-背景图片 */
.case-item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  transition: transform 0.7s ease-in-out, filter 0.3s linear 0.5s;
}

/* 成功案例-悬浮背景-放大毛玻璃 */
.case-item-img:hover {
  transform: scale(1.5);
  filter: blur(4px);
  cursor: pointer;
}

/* 成功案例-内部标题 */
.case-item-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 35px;
  background-color: #040c7aa8;
  color: #fff;
  pointer-events: none;
  transition: box-shadow 0.5s ease-in-out;
}

/* 成功案例-内部标题-边框 */
.case-item-title:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 45px;
  height: 90%;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}

.case-item-title:after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 3px;
  width: 45px;
  height: 90%;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

.case-item:hover .case-item-title {
  box-shadow: 0 0 10px 5px #fff;
  transform: translateZ(1.5)
}

.case-item:hover .case-item-title:before {
  transform: scaleX(1);
}

.case-item:hover .case-item-title:after {
  transform: scaleX(1);
}

.case-item:nth-of-type(1) .case-item-img {
  background-image: url('/image/changeable/case/caseitem01.jpg');
}

.case-item:nth-of-type(2) .case-item-img {
  background-image: url('/image/changeable/case/caseitem02.jpg');
}

.case-item:nth-of-type(3) .case-item-img {
  background-image: url('/image/changeable/case/caseitem03.jpg');
}

.case-item:nth-of-type(4) .case-item-img {
  background-image: url('/image/changeable/case/caseitem04.jpg');
}

.case-item:nth-of-type(5) .case-item-img {
  background-image: url('/image/changeable/case/caseitem05.jpg');
}

.case-item:nth-of-type(6) .case-item-img {
  background-image: url('/image/changeable/case/caseitem06.jpg');
}

.case-item:nth-of-type(7) .case-item-img {
  background-image: url('/image/changeable/case/caseitem07.jpg');
}

.case-item:nth-of-type(8) .case-item-img {
  background-image: url('/image/changeable/case/caseitem08.jpg');
}



/****************** 产品资质 ******************/
#certify {
  position: relative;
  margin: 0 auto 100px;
}

#certify .swiper-container {
  padding-bottom: 60px;
  width: 1200px;
  margin: 0 auto
}

#certify .swiper-slide {
  width: 520px;
  height: 408px;
  background: #fff;
  box-shadow: 0 8px 30px #ddd;
}

#certify .swiper-slide img {
  display: block;
}

#certify .swiper-slide p {
  line-height: 98px;
  padding-top: 0;
  text-align: center;
  color: #636363;
  font-size: 1.1em;
  margin: 0;
}

#certify .swiper-pagination {
  width: 100%;
  bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
  border: 3px solid #fff;
  background-color: #d5d5d5;
  width: 10px;
  height: 10px;
  opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
  border: 3px solid #040c7a;
  background-color: #fff;
}

#certify .swiper-button-prev {
  left: 350px;
  top: 60%;
  width: 45px;
  height: 45px;
  background: url(/image/public/swiper/wm_button_icon.png) no-repeat;
  background-position: 0 0;
  background-size: 100%;
}

#certify .swiper-button-prev:hover {
  background-position: 0 -46px;
  background-size: 100%
}

#certify .swiper-button-next {
  right: 350px;
  width: 45px;
  top: 60%;
  height: 45px;
  background: url(/image/public/swiper/wm_button_icon.png) no-repeat;
  background-position: 0 -93px;
  background-size: 100%;
}

#certify .swiper-button-next:hover {
  background-position: 0 -139px;
  background-size: 100%
}

/* 版心 */
.warp {
  width: 1260px;
}


/****************** 解决方案 ******************/
.solution {
  position: relative;
  overflow: hidden;
  box-shadow: #000 0px 40px 30px;
  margin-bottom: 50px;
  background-color: #000;
  height: 75vh;
}
/* 按钮 */
.solutionButton{
  width: 30px;
  height: 50px;
  color:#fff;
  background-color: rgba(0, 0, 0, 0.1);
}
.solutionPrev{
  position: fixed;
  top: 35vh;
  left:0;
  z-index: 999;
}
.solutionNext{
  position: fixed;
  top: 35vh;
  right:0;
  z-index: 999;
}
/* 方案图 */
.slick-ib-banner {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-ib-banner,
.slick-ibusiness {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  outline: 0
}

.slick-slide {
  display: block
}

.index-business__img {
  position: relative;
  overflow: hidden;
  height: 75vh;
}

.index-business__img::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.index-business__img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.business-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 5s;
}

.big {
  transform: scale(1.5);
  transition: all 10s;
}

@media (max-width: 768px) {
  .index-business__img::before {
    padding-top: 125%
  }

  .index-business__img img {
    height: 100%;
    width: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
  }
}

/* 方案介绍  */
.slick-ibusiness {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 75vh;
}

.ibusiness-item {
  position: relative;
  top:0;
  left:0;
  height: 100vh;
}

.ibusiness-item::after {
  content: "";
  position: absolute;
  /* top:10px; */
  right: -1px;
  width: 1px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.5);
}

.ibusiness-item:hover .ibusiness-item__txt {
  -webkit-transform: translateY(-150px);
  transform: translateY(-150)
}

.ibusiness-item:hover .ibusiness-item__body {
  visibility: visible;
  opacity: 1
}

.ibusiness-item__txt {
  position: absolute;
  top: 35vh;
  right: 40px;
  left: 40px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.ibusiness-item__title {
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ibusiness-item:hover .ibusiness-item__title {
  color: #00ace4;
  font-size: 22px;
  font-weight: bold;
  transition: all 1s;
}

.ibusiness-item__title::after {
  content: "";
  display: block;
  margin-top: 1em;
  width: 1.2em;
  height: 2px;
  background-color: #fff;
}

.ibusiness-item:hover .ibusiness-item__title::after {
  width: 100%;
  background-color: #00ace4;
  transition: all 1s;
}

.ibusiness-item__desc {
  padding-top: 1.4em;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  letter-spacing: 0.05em
}

.ibusiness-item__link {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  display: inline-block;
  vertical-align: top;
  width: 150px;
  height: 40px;
  border-radius: 40px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s
}

.ibusiness-item__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #fff;
  border-radius: 40px
}

.ibusiness-item__body {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out
}

@media (min-width: 1025px) {
  .ibusiness-item__link:hover {
    background-color: #fff;
    color: #000
  }
}

@media (max-width: 1680px) {
  .ibusiness-item__txt {
    right: 20px;
    left: 20px
  }

  .ibusiness-item__title {
    font-size: 16px
  }
}

@media (max-width: 1024px) {
  .ibusiness-item__link {
    width: 120px;
    height: 36px;
    line-height: 36px
  }
}

@media (max-width: 768px) {
  .ibusiness-item__body {
    display: block !important;
    visibility: visible;
    opacity: 1
  }

  .ibusiness-item::after {
    display: none
  }
}

@media (max-width: 768px) {
  .ibusiness-item {
    height: 125vw
  }

  .ibusiness-item__txt {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
  }

  .ibusiness-item:hover .ibusiness-item__txt {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
  }
}


/*************  数据统计  ****************/
.company-data {
  padding: 0px 0 70px;
  width: 100%;
  color: #fff;
  margin: 30px auto 50px;
}

.data-results {
  padding:60px;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

.data-results-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.data-txt {
  margin: 0 0 40px;
  font-size: 20px;
  color: #fff;
}

.number {
  font-size: 50px;
}



/********** 行业动态 ***********/
.industry-dynamics {
  margin: 100px auto 60px;
  padding: 0px 0 70px;
  display: flex;
  justify-self: center;
  flex-direction: column;
  align-items: center;
}

.topnews {
  padding: 50px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  box-sizing: border-box;
}

/* 资讯图片 */
.topnewspic {
  position: relative;
  display: flex;
  align-items: center;
  width: 500px;
}

.topnewspic div {
  animation: topnewsAnimation 5s linear;
}

.topnewspic div:hover p {
  color: #0d90ee;
  background-color: rgba(255, 255, 255, 0.7);
}

@keyframes topnewsAnimation {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.topnewspic p {
  padding: 10px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 90%;
  color: #fff;
  font-size: 24px;
  background-color: rgba(11, 142, 234, 0.5);
  border-radius: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.topnewspic img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* 资讯列表 */
.topnewslist {
  /* overflow: hidden; */
  width: 600px;
  height: 400px;
}

.topnewslist ul {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.topnewslist ul li {
  padding: 15px 0;
  font-size: 24px;
  border-bottom: #dbdbdb 2px solid;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.topnewslist ul li a {
  color: #022442;
  text-decoration: none;
}

.topnewslist ul li a.up {
  font-weight: bold;
  color: #0d90ee;
}

/************ 精彩瞬间 **************/
.wonderful-moment {
  /* margin-top: 80px; */
  padding: 10px 0 70px;
  width: 100%;
  background-image: url(../image/public/bg01.png);
  background-size: 100% 100%;
}

.wonderful-photo {
  margin: 0px auto;
  position: relative;
  height: 300px;
  overflow: hidden;
}

.wonderfulPhotoList {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
}

.wonderfulPhotoList li {
  margin: 0 15px;
  width: 400px;
  /* height: 350px; */
}

.wonderfulPhotoList li img {
  width: 100%;
  height: 100%;
}

/*********** 合作单位 ***********/
.units {
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content:flex-start;
}

.units li {
  margin: 10px;
  width: 23%;
  height: 90px;
  border-radius: 2px;
  overflow: hidden;
  transition: all .5s;
}
.units li:hover {
  transform: translateY(-5px);
}
.units li a img {
  width: 100%;
  height: 90px;
  object-fit: fill;
  opacity: 1;
  transform: all 5s;
}

.units li a img:hover {
  opacity: 0.7;
}
/************* 底部信息 ****************/
