@charset "UTF-8";
.header {
  display: none;
  z-index: 11;
}
.header .header-top {
  height: 0px;
  background-color: #008080;
  display: flex;
  justify-content: center;
  transition: all 0.6s;
}
.header .header-top .header-center {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .header-top .header-center .item {
  padding: 0 35px;
  height: 100%;
  line-height: 120px;
  font-size: 16px;
  display: block;
  color: #98b9ff;
}
.header .header-top .header-center .item:hover, .header .header-top .header-center .item.active {
  color: #fff;
}
.header .header-top.active {
  height: 120px;
  transition: all 0.6s;
}
.header.inner.inner-active {
  position: sticky;
  top: 0;
}

.header-nav {
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 60px;
  display: flex;
  justify-content: space-between;
  z-index: 11;
  transition: all 0.6s;
}
.header-nav:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0);
  transition: all 4s;
}
.header-nav.bor-active:before {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 4s;
}
.header-nav .left-nav {
  height: 100%;
  display: flex;
  align-items: center;
}
.header-nav .left-nav .logo {
  margin-right: 35px;
}
.header-nav .left-nav .logo img {
  height: 67px;
}
.header-nav .left-nav .logo .img01 {
  display: block;
}
.header-nav .left-nav .logo .img02 {
  display: none;
}
.header-nav .left-nav .tel {
  color: #fff;
  margin-right: 40px;
}
.header-nav .left-nav .tel i {
  font-size: 24px;
  margin-right: 10px;
}
.header-nav .left-nav .tel span {
  font-size: 20px;
}
.header-nav .left-nav .item {
  display: block;
  height: 100%;
  line-height: 120px;
  color: #fff;
  font-size: 16px;
  padding: 0 30px;
}
.header-nav .menu {
  width: 160px;
  height: 100%;
  color: #fff;
  background-color: #008080;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header-nav .menu .menu-line {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  transition: all 0.3s;
}
.header-nav .menu .menu-line:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  left: 0;
  top: -10px;
  transition: all cubic-bezier(0.39, 0.575, 0.565, 1) 250ms;
}
.header-nav .menu .menu-line:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  left: 0;
  top: 10px;
  background-color: #fff;
  transition: all cubic-bezier(0.39, 0.575, 0.565, 1) 250ms;
}
.header-nav .menu .menu-line.active {
  background-color: transparent;
  transition: all 0.3s;
}
.header-nav .menu .menu-line.active:before {
  width: 30px;
  transform: translateY(6px) rotate(45deg);
}
.header-nav .menu .menu-line.active:after {
  width: 30px;
  top: -3px;
  transform: translateY(-1px) rotate(-45deg);
}
.header-nav .menu:hover .menu-line {
  width: 20px;
  transition: width 0.3s;
}
.header-nav .menu:hover .menu-line:before {
  width: 30px;
}
.header-nav .menu:hover .menu-line:after {
  width: 30px;
}
.header-nav.inner {
  background-color: #fff;
  position: sticky;
  top: 0;
}
.header-nav.inner:before {
  background-color: #eaeaea;
}
.header-nav.inner .logo .img01 {
  display: none;
}
.header-nav.inner .logo .img02 {
  display: block;
}
.header-nav.inner .tel {
  color: #333;
}
.header-nav.inner .item {
  color: #333;
}
.header-nav.inner.inner-active {
  position: sticky;
  top: 120px;
  background-color: #fff;
}

.header-word {
  width: 160px;
  height: 120px;
  color: #fff;
  background-color: #008080;
  position: fixed;
  top: 15%;
  z-index: 99999;
  right: 0;
  padding: 10px;
}
.header-word .word {
  color: #fff;
  font-size: 14px;
}

.header-common {
  padding-left: 12.5%;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 100;
  transition: all 0.3s;
}
.header-common .logo {
  width: 185px;
  display: block;
}
.header-common .logo img {
  width: 100%;
}
.header-common .logo .light {
  display: block;
}
.header-common .logo .dark {
  display: none;
}
.header-common .nav {
  display: flex;
  align-items: center;
}
.header-common .nav .item {
  padding: 0 35px;
  display: block;
  height: 100%;
  line-height: 120px;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}
.header-common .nav .item.active, .header-common .nav .item:hover {
  color: #008080;
}
.header-common .right {
  height: 100%;
  display: flex;
  align-items: center;
}
.header-common .right .tel-link {
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "Bebas";
  margin-right: 80px;
}
.header-common .right .tel-link i {
  font-size: 24px;
}
.header-common .right .tel-link span {
  display: inline-block;
  margin-left: 16px;
  font-size: 20px;
}
.header-common .right .menu {
  width: 160px;
  height: 100%;
  color: #fff;
  background-color: #008080;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header-common .right .menu .menu-line {
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  transition: all 0.3s;
}
.header-common .right .menu .menu-line:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #fff;
  left: 0;
  top: -10px;
  transition: all cubic-bezier(0.39, 0.575, 0.565, 1) 250ms;
}
.header-common .right .menu .menu-line:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  left: 0;
  top: 10px;
  background-color: #fff;
  transition: all cubic-bezier(0.39, 0.575, 0.565, 1) 250ms;
}
.header-common .right .menu .menu-line.active {
  background-color: transparent;
  transition: all 0.3s;
}
.header-common .right .menu .menu-line.active:before {
  width: 30px;
  transform: translateY(6px) rotate(45deg);
}
.header-common .right .menu .menu-line.active:after {
  width: 30px;
  top: -3px;
  transform: translateY(-1px) rotate(-45deg);
}
.header-common .right .menu:hover .menu-line {
  width: 20px;
  transition: width 0.3s;
}
.header-common .right .menu:hover .menu-line:before {
  width: 30px;
}
.header-common .right .menu:hover .menu-line:after {
  width: 30px;
}
.header-common.fix-header {
  background-color: #f8f8f8;
  transition: all 0.3s;
}
.header-common.fix-header .logo .light {
  display: none;
}
.header-common.fix-header .logo .dark {
  display: block;
}
.header-common.fix-header .nav .item {
  color: #333;
}
.header-common.fix-header .nav .item.active, .header-common.fix-header .nav .item:hover {
  color: #008080;
}
.header-common.fix-header .right .tel-link {
  color: #333;
}
.header-common.sticky {
  position: sticky;
}

.container {
  width: 1440px;
  margin: 0 auto;
  position: relative;
}

.right-nav-edit {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.right-nav-edit .item {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 128, 128, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 4px;
  margin-bottom: 2px;
  position: relative;
}
.right-nav-edit .item i {
  font-size: 18px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.right-nav-edit .item p {
  font-size: 12px;
  color: #fff;
  margin-top: 3px;
  position: relative;
  z-index: 2;
}
.right-nav-edit .item.tel .tel-box {
  font-size: 16px;
  color: #fff;
  font-family: "bebas";
  width: 195px;
  height: 50px;
  line-height: 50px;
  background-color: #1243ac;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 4px;
  padding-left: 20px;
  display: none;
}
.right-nav-edit .item.tel:hover {
  background-color: #1243ac;
}
.right-nav-edit .item.tel:hover .tel-box {
  display: block;
}
@keyframes processBar {
  from {
    width: 20%;
  }
  to {
    width: 100%;
  }
}
.processBar {
  animation: processBar 1s both;
}
@keyframes processBarBack {
  from {
    width: 100%;
  }
  to {
    width: 20%;
  }
}
.processBarBack {
  animation: processBarBack 1s both;
}
@keyframes rollRound {
  from {
    transform: rotateY(0);
  }
  to {
    transform: rotateY(360deg);
  }
}
.rollRound {
  animation: rollRound 0.8s both;
}

.hide {
  display: none !important;
}

.menu-mask {
  background-color: #191919;
  z-index: 101;
  position: fixed;
  top: -300%;
  right: -200%;
  border-radius: 50%;
}

.menu-cover {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 102;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: none;
}
.menu-cover .menu-icon {
  width: 40px;
  height: 40px;
  background-size: 24px 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../img/close.png");
  position: absolute;
  top: 40px;
  right: 60px;
  cursor: pointer;
  transition: transform 1s;
  z-index: 102;
}
.menu-cover .menu-icon:hover {
  transform: rotate(90deg);
  transition: transform 1s;
}
.menu-cover .m-item {
  width: 16.67%;
  height: 100%;
  padding-left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.6s;
  position: relative;
}
.menu-cover .m-item .tt {
  font-size: 28px;
  line-height: 48px;
  color: #fff;
}
.menu-cover .m-item .show-box {
  height: 100px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.menu-cover .m-item .show-box .show-title {
  position: absolute;
  top: -100px;
  transition: all 0.6s;
}
.menu-cover .m-item .hide-box {
  position: absolute;
  top: 50%;
  height: 50px;
  width: 100%;
  overflow: hidden;
}
.menu-cover .m-item .hide-box .hide-title {
  top: 0;
  position: absolute;
  transition: all 0.6s;
  opacity: 1;
  animation-duration: 1s;
  animation-delay: 0.3s;
}
.menu-cover .m-item .items {
  opacity: 0;
  webkit-transform: rotateX(20deg);
  transform: rotateX(20deg);
  transition: all 0.2s ease-in;
}
.menu-cover .m-item .items a {
  font-size: 20px;
  color: #858585;
  margin-bottom: 30px;
  display: block;
}
.menu-cover .m-item .items a:hover {
  color: #fff;
}
.menu-cover .m-item:hover {
  transition: all 0.6s;
}
.menu-cover .m-item:hover .items {
  opacity: 1 !important;
  webkit-transform: rotateX(0) !important;
  transform: rotateX(0) !important;
}
.menu-cover .m-item:hover .show-box .show-title {
  top: 20px;
  transition: all 0.6s;
}
.menu-cover .m-item:hover .hide-box .hide-title {
  top: 200px;
  opacity: 0;
  transition: all 0.6s;
}
.menu-cover.active {
  display: flex;
}

.m-cover-dark {
  display: none;
}

.m-online {
  display: none;
}

.product-show-cover {
  display: none;
}
@keyframes bigCover {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 6000px;
    height: 6000px;
  }
}
.bigCover {
  animation-name: bigCover;
}
@keyframes bigCoverBack {
  0% {
    width: 6000px;
    height: 6000px;
  }
  100% {
    width: 0;
    height: 0;
  }
}
.bigCoverBack {
  animation-name: bigCoverBack;
}
@keyframes bigCoverBig {
  0% {
    width: 0;
    height: 0;
  }
  100% {
    width: 8500px;
    height: 8500px;
  }
}
.bigCoverBig {
  animation-name: bigCoverBig;
}
@keyframes bigCoverBackBig {
  0% {
    width: 10000px;
    height: 10000px;
  }
  100% {
    width: 0;
    height: 0;
  }
}
.bigCoverBackBig {
  animation-name: bigCoverBackBig;
}
@keyframes fadeOutLeftCopy {
  0% {
    opacity: 1;
    z-index: 0;
  }
  100% {
    opacity: 1;
    z-index: 10;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeftCopy {
  animation-name: fadeOutLeftCopy;
}
@keyframes fadeOutRightCopy {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRightCopy {
  animation-name: fadeOutRightCopy;
}
@keyframes fingerAnimate {
  0% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
  }
  100% {
    transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
  }
  0% {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
  }
}
.fingerAnimate {
  animation-name: fingerAnimate;
}

.m-header {
  display: none;
}

.m-cover {
  display: none;
}

.mobile-banner {
  display: none;
}

.video-layer {
  background-color: #000 !important;
}
.video-layer .layui-layer-content {
  width: 800px !important;
  height: 450px !important;
  overflow: hidden !important;
}
.video-layer video {
  width: 100% !important;
  height: 100% !important;
}

.content-box {
  width: 100%;
  display: flex;
  position: relative;
}
.content-box .com-left-box {
  width: 320px;
  border-right: 1px solid #eaeaea;
}
.content-box .com-left-box .common-left {
  width: 100%;
  padding-top: 100px;
}
.content-box .com-left-box .common-left .item {
  display: block;
  width: 100%;
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  text-align: center;
}
.content-box .com-left-box .common-left .item.active {
  color: #008080;
}
.content-box .com-left-box .common-left.nav-fix {
  position: fixed;
  left: 0;
  width: 320px;
  height: 100%;
  z-index: 100;
}
.content-box .right-content {
  width: calc(100% - 320px);
}

.news-box .news-item {
  width: 100%;
  display: flex;
}
.news-box .news-item .date {
  background-color: #008080;
  color: #fff;
  font-size: 20px;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-top: 1px solid #006c6c;
  transition: all 0.6s;
}
.news-box .news-item .date i {
  font-size: 60px;
  color: #999999;
}
.news-box .news-item .date .txt {
  color: #999999;
  margin-top: 10px;
}
.news-box .news-item .info-box {
  width: 75%;
  padding: 40px 10% 50px 4%;
  border-top: 1px solid #eaeaea;
  transition: all 0.6s;
}
.news-box .news-item .info-box .title {
  font-size: 24px;
  line-height: 32px;
}
.news-box .news-item .info-box .info {
  margin-top: 20px;
  font-size: 14px;
  line-height: 28px;
  color: #666;
}
.news-box .news-item:hover .date {
  background-color: #006c6c;
}
.news-box .news-item:hover .date i {
  color: #fff;
}
.news-box .news-item:hover .date .txt {
  color: #fff;
}
.news-box .news-item:hover .info-box {
  background-color: #fafafa;
}
.news-box .news-item:hover .info-box .title {
  color: #008080;
}
.news-box.solution-news {
  margin-bottom: 280px;
}

.com-more {
  width: 140px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #333;
  font-size: 14px;
  border: 1px solid #d2d2d2;
  display: block;
}

.right-nav {
  width: 160px;
  height: calc(100vh - 120px);
  position: absolute;
  top: 120px;
  right: 0;
  z-index: 100;
  transition: all 1.5s;
}
.right-nav:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 3s;
}
.right-nav:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.6s;
  z-index: -1;
}
.right-nav .online {
  color: #fff;
  text-align: center;
  margin-top: 50px;
  display: block;
  transition: all 1.5s;
}
.right-nav .online i {
  font-size: 24px;
}
.right-nav .online p {
  margin-top: 6px;
  font-size: 14px;
}
.right-nav .index-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 24vh;
}
.right-nav .index-page .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background-color: #fff;
  opacity: 1;
  margin-bottom: 20px;
  transition: all 1.5s;
  outline: none;
}
.right-nav .index-page .swiper-pagination-bullet-active {
  height: 50px;
  transition: all 1.5s;
}
.right-nav .mouse-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 23vh;
  width: 100%;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.right-nav .mouse-box i {
  font-size: 24px;
  color: #fff;
  transition: all 1.5s;
}
.right-nav.right-active:before {
  background-color: #eaeaea;
  transition: all 3s;
  height: 100%;
}
.right-nav.right-active:after {
  height: 100%;
  transition: all 0.6s;
  background-color: rgb(255, 255, 255);
}
.right-nav.right-active .online {
  color: #008080;
  transition: all 1.5s;
}
.right-nav.right-active .index-page .swiper-pagination-bullet {
  background-color: #008080;
  transition: all 1.5s;
}
.right-nav.right-active .mouse-box {
  border-top: 1px solid #eaeaea;
  transition: all 0.3s;
}
.right-nav.right-active .mouse-box i {
  color: #008080;
  transition: all 1.5s;
}

.footer {
  background-color: #252627;
  position: relative;
  z-index: 100;
}
.footer .foot-head {
  display: flex;
  width: 100%;
}
.footer .foot-head .foot-left {
  width: 29%;
  border-right: 1px solid #2e2f30;
}
.footer .foot-head .foot-left .tops {
  width: 100%;
  height: 50%;
  padding-left: 42.5%;
  border-bottom: 1px solid #2e2f30;
  display: flex;
  align-items: center;
}
.footer .foot-head .foot-left .tops .logo img {
  height: 51px;
}
.footer .foot-head .foot-left .tops .online {
  padding-left: 10%;
  color: #fff;
  text-align: center;
  display: block;
  margin-top: 15px;
}
.footer .foot-head .foot-left .tops .online i {
  font-size: 24px;
}
.footer .foot-head .foot-left .tops .online p {
  margin-top: 6px;
  font-size: 14px;
}
.footer .foot-head .foot-left .bottoms {
  color: #fff;
  padding-left: 42.5%;
  height: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.footer .foot-head .foot-left .bottoms .t1 {
  font-size: 14px;
}
.footer .foot-head .foot-left .bottoms .t2 {
  font-size: 32px;
  line-height: 48px;
  color: #fff;
}
.footer .foot-head .foot-right {
  width: 71%;
}
.footer .foot-head .foot-right .tops {
  padding: 60px 17% 40px 3%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer .foot-head .foot-right .tops .foot-nav {
  display: flex;
}
.footer .foot-head .foot-right .tops .foot-nav .item {
  font-size: 16px;
  margin-right: 60px;
  color: #fff;
}
.footer .foot-head .foot-right .tops .foot-list {
  margin-top: 40px;
}
.footer .foot-head .foot-right .tops .foot-list .title {
  font-size: 16px;
  color: #fff;
}
.footer .foot-head .foot-right .tops .foot-list .item-box {
  display: flex;
  align-items: center;
}
.footer .foot-head .foot-right .tops .foot-list .item-box .item {
  color: #6e6e6e;
  display: block;
  font-size: 14px;
  line-height: 32px;
  margin-right: 30px;
}
.footer .foot-head .foot-right .tops .code {
  text-align: center;
  width: 140px;
}
.footer .foot-head .foot-right .tops .code img {
  width: 100%;
}
.footer .foot-head .foot-right .tops .code p {
  font-size: 14px;
  line-height: 32px;
  color: #6e6e6e;
  margin-top: 10px;
}
.footer .foot-head .foot-right .foot-bottom {
  height: 100px;
  padding: 0 17% 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #2e2f30;
}
.footer .foot-head .foot-right .foot-bottom a {
  color: #6e6e6e;
  font-size: 14px;
  line-height: 26px;
  display: inline-block;
}
.footer .foot-head .foot-right .foot-bottom .left img {
  margin-right: 15px;
  display: inline-block;
  vertical-align: middle;
}
.footer .foot-bottoms {
  background-color: #212121;
  width: 100%;
  padding: 15px 0;
}
.footer .foot-bottoms .title {
  font-size: 14px;
  line-height: 32px;
  color: #fff;
}
.footer .foot-bottoms .links > a {
  font-size: 14px;
  line-height: 32px;
  color: #6e6e6e;
  display: inline-block;
  margin-right: 30px;
}

.right-side {
  position: fixed;
  z-index: 999;
  right: 2%;
  bottom: calc(50% - 80px);
  opacity: 0.5;
}
.right-side .item {
  display: block;
  margin-bottom: 10px;
  color: #008080;
}
.right-side .item i {
  font-size: 40px;
}

.layui-layer-imgbar, .layui-layer-imguide {
  display: block !important;
}

.layui-layer-imgnext, .layui-layer-imgprev {
  display: block !important;
}

.layui-layer-imgprev {
  left: -100px !important;
}

.layui-layer-imgnext {
  right: -100px !important;
}/*# sourceMappingURL=common.css.map */