@charset "UTF-8";
.bg {
  background-color: var(--theme-bgcolor);
}

:root {
  scroll-behavior: unset;
}

.btn-ask {
  background-color: var(--theme-color);
}

.btn-wprimary {
  background-color: var(--theme-btncolor);
  line-height: unset;
  color: #ffffff;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-wprimary:hover {
  color: #ffffff;
  background-color: var(--theme-color);
}

.header {
  z-index: 99;
  box-shadow: 0px 0px 20px 0px rgba(4, 0, 0, 0.05);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.95);
}
.header .header-container {
  width: 93%;
  margin: 0 auto;
}
.header .header-wrap {
  height: 100px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.header .logo img {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.header .header-tel .tel-info .tel-head {
  font-size: 12px;
}
.header .header-tel .tel-info .tel-num {
  font-size: 22px;
  color: var(--theme-color);
}
.header .header-tel span {
  font-size: 22px;
  color: #282828;
  font-weight: 100;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.header .nav {
  flex: 1 1 0%;
}
@media (min-width: 1400px) {
  .header .nav {
    flex: 0 0 60%;
  }
}
.header .nav li {
  position: relative;
}
.header .nav li::before {
  content: "";
  display: inline-block;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  width: 50%;
  bottom: 0;
  border-bottom: 2px solid var(--theme-color);
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
}
.header .nav li > a {
  display: block;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1440px) {
  .header .nav li > a {
    padding: 0 1rem;
  }
}
.header .nav li > a span {
  display: block;
  -webkit-transition: transform 0.5s, opacity 1s;
  -moz-transition: transform 0.5s, opacity 1s;
  -ms-transition: transform 0.5s, opacity 1s;
  -o-transition: transform 0.5s, opacity 1s;
  transition: transform 0.5s, opacity 0.3s;
}
.header .nav li > a span.en {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
}
.header .nav li .sub-nav {
  position: absolute;
  width: 140px;
  left: -50%;
  right: -50%;
  margin: auto;
  text-align: center;
  top: 100px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
}
.header .nav li .sub-nav dl {
  display: none;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.94);
}
.header .nav li .sub-nav dl dd {
  line-height: 36px;
  margin: 0;
  font-size: 14px;
}
.header .nav li:hover::before {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
.header .nav li:hover > a span.cn {
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-30px);
  opacity: 0;
}
.header .nav li:hover > a span.en {
  -webkit-transition: transform 0.5s, opacity 0.3s;
  -moz-transition: transform 0.5s, opacity 0.3s;
  -ms-transition: transform 0.5s, opacity 0.3s;
  -o-transition: transform 0.5s, opacity 0s;
  transition: transform 0.3s, opacity 0s;
  -webkit-transform: translateY(-25px);
  -moz-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  -o-transform: translateY(-25px);
  transform: translateY(-25px);
  opacity: 1;
}
.header .nav li:hover .sub-nav {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.header .nav li:hover .sub-nav dl {
  display: block;
}
.header:not(.open-menu).scroll_bottom {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -ms-transition: transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
}
@media (min-width: 1200px) {
  .header:not(.open-menu).header-min .header-wrap {
    height: 70px;
  }
}
.header:not(.open-menu).header-min .logo img {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.header:not(.open-menu).header-min .nav li .sub-nav {
  top: 70px;
}
@media (max-width: 1399.98px) {
  .header .nav {
    margin: 0 2rem;
  }
}
@media (max-width: 1199.98px) {
  .header .header-wrap {
    height: 80px;
  }
  .header .logo img {
    -webkit-transform: scale(0.85);
    -moz-transform: scale(0.85);
    -ms-transform: scale(0.85);
    -o-transform: scale(0.85);
    transform: scale(0.85);
  }
}
@media (max-width: 575.98px) {
  .header .header-wrap {
    height: 60px;
  }
  .header .logo img {
    height: 40px;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    -o-transform: unset;
    transform: unset;
  }
}

.index-page .header {
  background-color: transparent;
}
.index-page .header.header-min {
  background-color: rgba(255, 255, 255, 0.95);
}

.menu-icon {
  width: 80px;
  height: 80px;
  color: var(--theme-color);
  position: relative;
  cursor: pointer;
}
.menu-icon span {
  position: absolute;
  width: 50%;
  height: 2px;
  color: var(--theme-color);
  background-color: CurrentColor;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.menu-icon span::before,
.menu-icon span::after {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: CurrentColor;
}
.menu-icon span::before {
  top: 600%;
}
.menu-icon span::after {
  bottom: 600%;
}
.menu-icon.open span {
  background-color: unset;
}
.menu-icon.open span::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
}
.menu-icon.open span::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 0;
}
@media (max-width: 575.98px) {
  .menu-icon {
    position: absolute;
    right: 0;
    width: 56px;
    height: 56px;
    margin: auto;
    top: 0;
    bottom: 0;
  }
  .menu-icon span::before {
    top: 500%;
  }
  .menu-icon span::after {
    bottom: 500%;
  }
}

.mobile-nav {
  z-index: 9;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: fixed;
  background: url("../images/mobile_bg.jpg") center/cover no-repeat #333;
  background-color: #333;
  width: 100%;
  height: 100%;
  top: 60px;
  left: 0;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.mobile-nav .nav-wrap {
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.85);
  height: 100%;
}
.mobile-nav dl {
  margin-bottom: 0;
}
.mobile-nav dl.active dt::before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.mobile-nav dl.active dt::after {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.mobile-nav dt {
  position: relative;
  padding: 0.5rem;
}
.mobile-nav dt a {
  line-height: 2;
  display: block;
  width: 80%;
  margin-right: 2rem;
  font-weight: normal;
}
.mobile-nav dt.has-child::after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.mobile-nav dd {
  display: none;
  padding-left: 1rem;
}
.mobile-nav dd ul {
  margin-bottom: 0;
  line-height: 2;
  margin-top: 5px;
  list-style: inside circle;
  color: #fff;
}
.mobile-nav dd ul a {
  font-size: 14px;
}
.mobile-nav a {
  color: #f8f8f8;
}

.mobile-nav dt.has-child::before,
.mobile-nav dt.has-child::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px solid #d3d3d3;
  right: 0.5rem;
  margin: auto;
  top: 0;
  bottom: 0;
}

.open-menu.header {
  background-color: rgba(255, 255, 255, 0.95);
}

.open-menu ~ .mobile-nav {
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
}

.img-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 18px;
  height: 18px;
}
.img-icon.icon-tel {
  background: url("../images/icon-tel.png") center no-repeat;
}
.img-icon.icon-email {
  background: url("../images/icon-email.png") center no-repeat;
}
.img-icon.icon-fax {
  background: url("../images/icon-fax.png") center no-repeat;
}
.img-icon.icon-address {
  background: url("../images/icon-addr.png") center no-repeat;
}

.footer .footer-top {
  color: #999999;
  font-size: 14px;
}
.footer .footer-top a {
  color: #999999;
}
.footer .footer-top a:hover {
  color: #666666;
}
.footer .footer-top .footer-nav li a {
  display: block;
  width: 100%;
  line-height: 2.2;
}
.footer .footer-top .footer-contact {
  line-height: 2.2;
}
.footer .footer-top .footer-qrcode {
  text-align: center;
}
.footer .footer-top .footer-qrcode .qrcode-img {
  width: 100px;
}
.footer .footer-top .footer-qrcode p {
  font-size: 12px;
  line-height: 2;
}
.footer .copyright {
  background-color: #38b64b;
  color: #fff;
  font-size: 12px;
  height: 46px;
}
.footer .copyright a {
  color: #fff;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.footer .copyright a:hover {
  color: #eeeeee;
}

.sbanner {
  height: 420px;
  overflow: hidden;
  padding-top: 80px;
  position: relative;
  background: url("../images/sbanner.jpg") top no-repeat;
}
@media (max-width: 575.98px) {
  .sbanner {
    height: 260px;
  }
}
.sbanner .sbanner-wrap {
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.sbanner .sbanner-wrap .sbanner-name {
  font-size: 30px;
  font-weight: bold;
}
.sbanner .sbanner-wrap .sbanner-crumbs {
  line-height: 2;
}
.sbanner .sbanner-wrap .sbanner-crumbs a {
  color: #ffffff;
}

@media (max-width: 575.98px) {
  .banner-swiper {
    --swiper-navigation-size: 24px;
  }
}

/*首页模块开始*/
.section {
  padding: 2rem 0;
}
.section .sec-head {
  text-align: center;
  position: relative;
  padding: 1rem 0;
}
.section .sec-head::before {
  display: block;
  content: "";
  height: 94px;
  line-height: 94px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url("../images/sec-head-bg.png") center no-repeat;
}
.section .sec-head::after {
  color: #eff0f5;
  opacity: 0.5;
  content: attr(data-title);
  font-family: BEBAS;
  font-size: 72px;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  display: block;
  height: 94px;
  line-height: 94px;
}
.section .sec-head .head-name {
  font-size: 30px;
  position: relative;
  z-index: 2;
  color: var(--theme-color);
}
.section .sec-head .head-desc {
  position: relative;
  z-index: 2;
  color: #999999;
  font-size: 14px;
  text-transform: uppercase;
}
.section .sec-head.white .head-name {
  color: #ffffff;
}
.section .sec-head.white::after {
  opacity: 0.05;
}
.section.sec-core .hxjzl-list .item .item-top {
  position: relative;
  width: 100%;
}
.section.sec-core .hxjzl-list .item .item-icon {
  width: 100px;
  border: 1px solid #e7e7e7;
  background-color: #f6f6f6;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 991.98px) {
  .section.sec-core .hxjzl-list .item .item-icon {
    width: 80px;
  }
}
@media (max-width: 575.98px) {
  .section.sec-core .hxjzl-list .item .item-icon {
    width: 60px;
  }
}
.section.sec-core .hxjzl-list .item .item-icon img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 50%;
}
.section.sec-core .hxjzl-list .item .item-name {
  font-size: 18px;
  color: #282828;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
}
.section.sec-core .hxjzl-list .item .item-name::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  border-bottom: 2px solid #8a8a8a;
  margin: auto;
  height: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.section.sec-core .hxjzl-list .item .item-desc {
  font-size: 15px;
  color: #999999;
}
.section.sec-core .hxjzl-list .item svg.icon {
  position: absolute;
  fill: #999999;
  width: 32px;
  height: 32px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -26px;
  left: auto;
}
.section.sec-core .hxjzl-list .item:hover .item-icon {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.section.sec-core .hxjzl-list .item:hover .item-icon img {
  filter: brightness(100);
  -webkit-animation: pulse 1s;
  -o-animation: pulse 1s;
  animation: pulse 1s;
}
.section.sec-core .hxjzl-list .item:hover svg.icon {
  fill: var(--theme-color);
}
.section.sec-core .hxjzl-list .item:hover .item-name {
  color: var(--theme-color);
}
.section.sec-core .hxjzl-list .item:hover .item-name::after {
  border-bottom-color: var(--theme-color);
}
.section.sec-core .hxjzl-list .item:last-child svg.icon {
  display: none;
}
@media (max-width: 991.98px) {
  .section.sec-core .hxjzl-list .item:nth-child(3) svg.icon {
    display: none;
  }
}
.section.sec-service .service-swiper .item {
  border-radius: 3px;
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
}
.section.sec-service .service-swiper .item .item-caption {
  position: relative;
  overflow: hidden;
}
.section.sec-service .service-swiper .item .item-caption .item-name {
  font-size: 18px;
  color: #666666;
}
.section.sec-service .service-swiper .item .item-caption .item-desc {
  font-size: 14px;
  color: #999999;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}
.section.sec-service .service-swiper .item .item-caption .item-tool {
  position: absolute;
  bottom: 10px;
  -webkit-transition: transform 0.3s, opacity 0.4s;
  -moz-transition: transform 0.3s, opacity 0.4s;
  -ms-transition: transform 0.3s, opacity 0.4s;
  -o-transition: transform 0.3s, opacity 0.4s;
  transition: transform 0.3s, opacity 0.4s;
  -webkit-transform: translateY(130%);
  -moz-transform: translateY(130%);
  -ms-transform: translateY(130%);
  -o-transform: translateY(130%);
  transform: translateY(130%);
  opacity: 0;
}
.section.sec-service
  .service-swiper
  .item
  .item-caption
  .item-tool
  .tool-item
  .btn {
  font-size: 14px;
  background-color: #282828;
  color: #ffffff;
}
.section.sec-service
  .service-swiper
  .item
  .item-caption
  .item-tool
  .tool-item
  .btn.btn-ask {
  background-color: var(--theme-color) !important;
}
.section.sec-service .service-swiper .item:hover .item-desc {
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 0;
}
.section.sec-service .service-swiper .item:hover .item-tool {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.section.sec-service .service-swiper .control-bar .w-btn {
  border-radius: 0;
  width: 35px;
  height: 35px;
  margin: 2px;
  text-align: center;
  line-height: 35px;
  background-color: #8a8a8a;
  position: relative;
  color: #eeeeee;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.section.sec-service .service-swiper .control-bar .w-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
}
.section.sec-service .service-swiper .control-bar .prev_next i {
  display: block;
  width: 0;
  position: relative;
  height: 1px;
  background-color: CurrentColor;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.section.sec-service .service-swiper .control-bar .prev_next i::before,
.section.sec-service .service-swiper .control-bar .prev_next i::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: CurrentColor;
  position: absolute;
  margin: auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.section.sec-service .service-swiper .control-bar .prev_next i::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.section.sec-service .service-swiper .control-bar .prev_next i::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.section.sec-service .service-swiper .control-bar .prev_next.next i {
  margin-left: 10px;
}
.section.sec-service .service-swiper .control-bar .prev_next.next i::before,
.section.sec-service .service-swiper .control-bar .prev_next.next i::after {
  right: 0;
  transform-origin: right;
}
.section.sec-service .service-swiper .control-bar .prev_next.prev i {
  margin-right: 10px;
}
.section.sec-service .service-swiper .control-bar .prev_next.prev i::before,
.section.sec-service .service-swiper .control-bar .prev_next.prev i::after {
  left: 0;
  transform-origin: left;
}
.section.sec-service .service-swiper .control-bar .prev_next:hover i {
  width: 20px;
  margin: 0;
}
.section.sec-service .service-swiper .control-bar .prev_next:hover i::before,
.section.sec-service .service-swiper .control-bar .prev_next:hover i::after {
  width: 8px;
}
.section.sec-service .service-swiper .control-bar .more i {
  width: 15px;
  height: 1px;
  background-color: CurrentColor;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.section.sec-service .service-swiper .control-bar .more i::before,
.section.sec-service .service-swiper .control-bar .more i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: CurrentColor;
  position: absolute;
  margin: auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.section.sec-service .service-swiper .control-bar .more i::before {
  top: -6px;
}
.section.sec-service .service-swiper .control-bar .more i::after {
  bottom: -6px;
}
.section.sec-service .service-swiper .control-bar .more:hover i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 2px;
  height: 2px;
}
.section.sec-scenes {
  background: url("../images/changjing_bg.jpg") center/cover no-repeat fixed;
}
.section.sec-scenes .scene-item {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.section.sec-scenes .scene-item .item-name {
  width: 100%;
  bottom: 0;
  height: auto;
  top: auto;
  color: #fff;
  padding: 1rem 1.5rem;
  z-index: 2;
}
.section.sec-scenes .scene-item img {
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -ms-transition: transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  max-width: 100%;
  object-fit: cover;
}
.section.sec-scenes .scene-item::before {
  display: block;
  padding-top: var(--mdb-aspect-ratio);
  content: "";
}
.section.sec-scenes .scene-item::after {
  content: "";
  display: block;
  height: 40%;
  position: absolute;
  width: 100%;
  bottom: 0;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -ms-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
  background: -moz-linear-gradient(
    bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.6) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.6) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.6) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.section.sec-scenes .scene-item.scene-1 {
  --mdb-aspect-ratio: calc(510 / 370 * 100%);
}
.section.sec-scenes .scene-item.scene-2,
.section.sec-scenes .scene-item.scene-5 {
  --mdb-aspect-ratio: calc(326 / 318 * 100%);
}
.section.sec-scenes .scene-item.scene-3,
.section.sec-scenes .scene-item.scene-4 {
  --mdb-aspect-ratio: calc(326 / 657 * 100%);
}
.section.sec-scenes .scene-item:hover::after {
  height: 60%;
}
.section.sec-scenes .scene-item:hover img {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}
@media (max-width: 1023.98px) {
  .section.sec-scenes .scene-item.scene-1 {
    --mdb-aspect-ratio: calc(326 / 657 * 100%);
  }
}
.section.sec-process .process-box .item {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.section.sec-process .process-box .item .item-icon {
  width: 60px;
  height: 60px;
  background-color: var(--theme-color);
}
.section.sec-process .process-box .item .item-icon img {
  filter: grayscale(100%) brightness(100);
}
.section.sec-process .process-box .item .item-info {
  flex: 0 0 auto;
  max-width: calc(100% - 60px);
  padding-left: 20px;
}
.section.sec-process .process-box .item .item-info .item-name {
  font-size: 20px;
  color: #282828;
}
.section.sec-process .process-box .item .item-info .item-desc {
  padding-top: 0.3rem;
  font-size: 14px;
  color: #999999;
}
.section.sec-process .process-box .item:hover {
  border-color: var(--theme-color) !important;
}
.section.sec-process .process-box .item:hover .item-icon img {
  -webkit-animation: swing 1s;
  -o-animation: swing 1s;
  animation: swing 1s;
}
.section.sec-process .process-box .item:hover .item-info .item-name {
  color: var(--theme-color);
}
.section.sec-about {
  background: url("../images/about-bg.png") bottom no-repeat #282828;
}
.section.sec-about .about-param .param-item .item-top {
  font-size: 20px;
}
.section.sec-about .about-param .param-item .item-top .num {
  font-size: 50px;
}
@media (max-width: 575.98px) {
  .section.sec-about .about-param .param-item .item-top .num {
    font-size: 32px;
  }
}
.section.sec-about .about-param .param-item .item-name {
  font-size: 18px;
  line-height: 2;
}
.section.sec-about .about-param .param-item::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 2rem auto 1rem;
  background-color: #fff;
}
.section .sec-contact .contact-btn {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: var(--theme-color);
  color: #ffffff;
  padding: 0.5rem 1.2rem;
  font-size: 20px;
  min-width: 240px;
  text-align: center;
}
.section .sec-contact .contact-btn .svg-icon-tel {
  width: 26px;
  height: 26px;
}
.section .sec-contact .contact-btn .svg-icon-tel path {
  fill: #ffffff;
}
.section .sec-contact .contact-btn:hover {
  background-color: var(--theme-btncolor);
}

/*首页模块结束*/
.in-section {
  padding: 70px 0; /*关于*/
}
.in-section .sec-head .head-line {
  height: 2px;
  position: relative;
  width: 155px;
  background-color: #d9d9d9;
  margin: 0 auto;
}
.in-section .sec-head .head-line::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  background-color: var(--theme-color);
}
.in-section .sec-head .head-name {
  font-size: 30px;
  font-weight: bold;
  color: #333333;
}
.in-section .sec-head .head-desc {
  line-height: 2;
}
.in-section.sec-about .about-img {
  width: 465px;
  -webkit-box-shadow: -30px 30px 0 #f5f7fa;
  -moz-box-shadow: -30px 30px 0 #f5f7fa;
  box-shadow: -30px 30px 0 #f5f7fa;
}
.in-section.sec-about .about-img .ratio-about {
  --mdb-aspect-ratio: calc(500 / 465 * 100%);
}
@media (max-width: 991.98px) {
  .in-section.sec-about .about-img {
    width: 100%;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .in-section.sec-about .about-img .ratio-about {
    --mdb-aspect-ratio: calc(9 / 16 * 100%);
  }
}
.in-section.sec-about .about-info .about-line {
  height: 2px;
  position: relative;
  width: 155px;
  background-color: #d9d9d9;
}
.in-section.sec-about .about-info .about-line::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  background-color: var(--theme-color);
}
.in-section.sec-about .about-info .about-brief {
  font-size: 30px;
  font-weight: bold;
  color: #333333;
}
.in-section.sec-about .about-info .about-en-desc {
  font-size: 17px;
  color: #333333;
  text-transform: uppercase;
  line-height: 2;
}
.in-section.sec-about .about-info .about-content {
  line-height: 2;
}
.in-section .yzfws-box {
  background: url("../images/yzfws-bg.jpg") center/cover no-repeat;
  height: 365px;
}
.in-section .yzfws-box .fws-left {
  color: #ffffff;
}
.in-section .yzfws-box .fws-left .fws-title {
  font-size: 36px;
  font-weight: bold;
}
.in-section .yzfws-box .fws-left .fws-desc {
  font-size: 14px;
  text-transform: uppercase;
  line-height: 2;
}
.in-section .yzfws-box .fws-left .btn-fws {
  color: #ffffff;
  background-color: var(--theme-btncolor);
  line-height: unset;
  width: 150px;
  height: 45px;
  box-sizing: border-box;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.in-section .yzfws-box .fws-left .btn-fws:hover {
  color: #ffffff;
  background-color: var(--theme-color);
}
@media (max-width: 764.98px) {
  .in-section .yzfws-box {
    height: 200px;
  }
  .in-section .yzfws-box .fws-left .fws-title {
    font-size: 26px;
  }
  .in-section .yzfws-box .fws-left .btn-fws {
    width: 130px;
    height: unset;
    font-size: 14px;
  }
}
.in-section .culture-box .item .item-wrap .item-icon {
  width: 82px;
  height: 82px;
}
.in-section .culture-box .item .item-wrap .item-icon .ratio {
  background-color: var(--theme-color);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.in-section .culture-box .item .item-wrap .item-icon svg {
  width: 55%;
  height: 55%;
  fill: #fff;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.in-section .culture-box .item .item-wrap .item-info {
  padding-left: 15px;
  padding-right: 20px;
}
.in-section .culture-box .item .item-wrap .item-info .item-name .cn-name {
  font-size: 24px;
  color: #000000;
}
.in-section .culture-box .item .item-wrap .item-info .item-name .en-name {
  color: #999999;
  text-transform: uppercase;
}
.in-section .culture-box .item .item-wrap .item-info .item-name .name-line {
  height: 0;
  border-bottom: 1px dashed #999999;
}
.in-section .culture-box .item .item-wrap .item-info .item-desc {
  color: #666666;
  line-height: 2;
}
.in-section .culture-box .item:hover .item-wrap .item-icon .ratio {
  background-color: var(--theme-btncolor);
}
.in-section .power-swiper .control-bar .w-btn {
  border-radius: 0;
  width: 35px;
  height: 35px;
  margin: 2px;
  text-align: center;
  line-height: 35px;
  background-color: #8a8a8a;
  position: relative;
  color: #eeeeee;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.in-section .power-swiper .control-bar .w-btn:hover {
  background-color: var(--theme-color);
  color: #ffffff;
}
.in-section .power-swiper .control-bar .prev_next i {
  display: block;
  width: 0;
  position: relative;
  height: 1px;
  background-color: CurrentColor;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.in-section .power-swiper .control-bar .prev_next i::before,
.in-section .power-swiper .control-bar .prev_next i::after {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: CurrentColor;
  position: absolute;
  margin: auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.in-section .power-swiper .control-bar .prev_next i::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.in-section .power-swiper .control-bar .prev_next i::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.in-section .power-swiper .control-bar .prev_next.next i {
  margin-left: 10px;
}
.in-section .power-swiper .control-bar .prev_next.next i::before,
.in-section .power-swiper .control-bar .prev_next.next i::after {
  right: 0;
  transform-origin: right;
}
.in-section .power-swiper .control-bar .prev_next.prev i {
  margin-right: 10px;
}
.in-section .power-swiper .control-bar .prev_next.prev i::before,
.in-section .power-swiper .control-bar .prev_next.prev i::after {
  left: 0;
  transform-origin: left;
}
.in-section .power-swiper .control-bar .prev_next:hover i {
  width: 20px;
  margin: 0;
}
.in-section .power-swiper .control-bar .prev_next:hover i::before,
.in-section .power-swiper .control-bar .prev_next:hover i::after {
  width: 8px;
}
.in-section .power-swiper .control-bar .more i {
  width: 15px;
  height: 1px;
  background-color: CurrentColor;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.in-section .power-swiper .control-bar .more i::before,
.in-section .power-swiper .control-bar .more i::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: CurrentColor;
  position: absolute;
  margin: auto;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.in-section .power-swiper .control-bar .more i::before {
  top: -6px;
}
.in-section .power-swiper .control-bar .more i::after {
  bottom: -6px;
}
.in-section .power-swiper .control-bar .more:hover i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 2px;
  height: 2px;
}

.about-section-box .fixed-bg {
  position: fixed;
  background: url(../fonts/016690b696cc4ed79f5b94ab8fa312a7.woff) !important;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05) !important;
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}
.news-list .item .item-wrap:hover .item-name {
  color: var(--theme-color);
}
.news-list .item .item-wrap:hover .item-desc {
  color: #666666;
}
.news-list .item .item-wrap:hover .item-foot a {
  color: var(--theme-color);
}

/**/
/*新闻详情*/
.news-detail-page .news-top .news-title {
  font-size: 24px;
  color: #333333;
}
@media (min-width: 1400px) {
  .news-detail-page .news-top .news-title {
    font-size: 32px;
  }
}
.news-detail-page .news-top .news-meta {
  color: #999999;
  line-height: 2;
}
.news-detail-page .news-img {
  background-color: #f0f0f0;
  border-radius: 5px;
}
.news-detail-page .news-content {
  color: #666666;
  line-height: 2;
}
.news-detail-page .news-content img {
  max-width: 100%;
}
@media (min-width: 1400px) {
  .news-detail-page .news-right {
    padding-left: 40px;
  }
}
.news-detail-page .news-right .head {
  border-bottom: 1px solid #ededed;
}
.news-detail-page .news-right .head .head-name {
  font-size: 22px;
  color: #333333;
}
.news-detail-page .news-right .head .head-more {
  color: #a9a9a9;
}
.news-detail-page .news-right .prev_next {
  border-top: 1px solid #ededed;
  padding-top: 1.5rem;
}
.news-detail-page .news-right .prev_next .page-a {
  border: 1px solid #efefef;
  border-radius: 5px;
  padding: 1rem;
  color: #666666;
  margin-bottom: 1rem;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.news-detail-page .news-right .prev_next .page-a a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.news-detail-page .news-right .prev_next .page-a:hover {
  background-color: var(--theme-btncolor);
  color: #ffffff;
}
.news-detail-page .news-right .prev_next .page-a:hover a {
  color: #ffffff;
}

/*分类详情*/
.category-top {
  position: relative;
}
.category-top .category-bg {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000000;
  opacity: 0.5;
}
.category-top .category-bg::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  height: 100%;
  background: url("../images/shadow-bg.png") left/cover no-repeat;
}
.category-top .category-wrap {
  height: 285px;
  z-index: 2;
  position: relative;
  color: #fff;
  padding: 2% 4%;
}
.category-top .category-wrap .cate-entitle {
  font-size: 18px;
  opacity: 0.8;
}
.category-top .category-wrap .cate-name strong {
  font-size: 36px;
}
.category-top .category-wrap .cate-name .name-brief {
  font-size: 16px;
  opacity: 0.8;
}
.category-top .category-wrap .cate-content {
  opacity: 0.8;
  font-size: 16px;
}

/*产品列表*/
.cases-list .item {
  overflow: hidden;
}
.cases-list .item .item-img img {
  -webkit-transition: transform 0.5s;
  -moz-transition: transform 0.5s;
  -ms-transition: transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.cases-list .item .item-wrap {
  padding: 5%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: transform 1s, opacity 0.3s;
  -moz-transition: transform 1s, opacity 0.3s;
  -ms-transition: transform 1s, opacity 0.3s;
  -o-transition: transform 1s, opacity 0.3s;
  transition: transform 1s, opacity 0.3s;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0;
}
.cases-list .item .item-wrap .item-title {
  font-size: 24px;
  color: #ffffff;
}
@media (max-width: 575.98px) {
  .cases-list .item .item-wrap .item-title {
    font-size: 20px;
  }
}
@media (max-width: 991.98px) {
  .cases-list .item .item-wrap .item-title {
    font-size: 22px;
  }
}
.cases-list .item .item-wrap .item-desc {
  color: #ffffff;
  opacity: 0.5;
  padding: 5% 0;
}
@media (max-width: 575.98px) {
  .cases-list .item .item-wrap .item-desc {
    font-size: 14px;
  }
}
@media (max-width: 9941.98px) {
  .cases-list .item .item-wrap .item-desc {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .cases-list .item .item-wrap .item-desc {
    width: 70%;
    margin: 0 auto;
  }
}
.cases-list .item .item-wrap .item-more {
  color: #ffffff;
  background-color: #694c3a;
  padding: 2% 7%;
  display: block;
}
.cases-list .item .item-wrap .item-more span {
  font-size: 16px;
}
.cases-list .item .item-wrap .item-more i {
  width: 15px;
  position: relative;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.cases-list .item .item-wrap .item-more i::before,
.cases-list .item .item-wrap .item-more i::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 10px;
  height: 100%;
  background-color: CurrentColor;
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.cases-list .item .item-wrap .item-more i::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cases-list .item .item-wrap .item-more i::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cases-list .item .item-wrap .item-more:hover i {
  width: 22px;
}
.cases-list .item .item-wrap .item-more:hover i::before,
.cases-list .item .item-wrap .item-more:hover i::after {
  width: 8px;
}
.cases-list .item:hover .item-img img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.cases-list .item:hover .item-wrap {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.cases-list .item:hover .item-wrap .animated {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.cases-list .item:hover .item-wrap .animated.item-desc {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.cases-list .item:hover .item-wrap .animated.item-more {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

/*联系方式*/
.sec-contactway .contact-box .item-wrap {
  height: 100%;
  text-align: center;
  -webkit-box-shadow: 0px 5px 20px 0px rgba(68, 68, 68, 0.06);
  -moz-box-shadow: 0px 5px 20px 0px rgba(68, 68, 68, 0.06);
  box-shadow: 0px 5px 20px 0px rgba(68, 68, 68, 0.06);
}
.sec-contactway .contact-box .item-wrap .item-icon svg {
  width: 60px;
  height: 60px;
}
.sec-contactway .contact-box .item-wrap .item-icon svg path {
  fill: var(--theme-btncolor);
}
.sec-contactway .contact-box .item-wrap .item-name {
  font-size: 20px;
  color: #333333;
}
.sec-contactway .contact-box .item-wrap .item-desc {
  color: var(--theme-btncolor);
  font-size: 18px;
  line-height: 2;
  margin-top: 0.5rem;
  min-height: 48px;
}
.sec-contactway .contact-box .item-wrap .item-desc .tel-num {
  font-family: bahnschrift;
  font-size: 24px;
}
.sec-contactway .contact-box .item-wrap .item-line {
  text-align: center;
}
.sec-contactway .contact-box .item-wrap .item-line svg {
  height: 8px;
  width: auto;
}
.sec-contactway .contact-box .item-wrap .item-line svg path {
  fill: var(--theme-btncolor);
}
.sec-contactway .contact-box .item-wrap:hover .item-icon svg {
  -webkit-animation: swing 1s;
  -o-animation: swing 1s;
  animation: swing 1s;
}

.form-outline .form-control:focus ~ .form-label {
  color: var(--theme-color) !important;
}

.form-outline .form-control:focus ~ .form-notch > * {
  border-color: var(--theme-color) !important;
}
@media screen and (max-width: 768px) {
  .index-page .header {
    background: #fff;
  }
  #bannerSwiper {
    margin-top: 60px;
  }
  .text-truncate {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
  }
  .over-line-2 {
    display: none;
  }
  .category-top .category-wrap .cate-name strong {
    font-size: 24px;
  }
  .category-top .category-wrap .cate-content {
    font-size: 12px;
  }
}
