.header-top {
  background-color: #102d3a;
  color: #a8a8a8;
}

.header-top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-top .container .header-top-left .share {
  border-right: 1px solid #143949;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-top .container .header-top-left .share a {
  width: 46px;
  height: 46px;
  border-left: 1px solid #143949;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.7;
}

.header-top .container .header-top-left .share a:hover {
  opacity: 1;
  background-color: #143949;
}

.header-top .container .header-top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-top .container .header-top-right .contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-top .container .header-top-right .contact-info .contact-info-item {
  margin-right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-top .container .header-top-right .contact-info .contact-info-item img {
  margin-right: 10px;
}

.brick {
  height: 88px;
  display: none;
}

.brick.active {
  display: block;
}

header {
  width: 100%;
  height: 88px;
  background-color: #fff;
  color: #7b7b7b;
  font-weight: bold;
  top: 0;
  left: 0;
  z-index: 998;
  -webkit-box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
          box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
}

header.active {
  position: fixed;
}

header .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .container .nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .container .nav .menu {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .container .nav .menu li {
  height: 100%;
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

header .container .nav .menu li.current-menu-item::before {
  width: 100%;
}

header .container .nav .menu li.current-menu-item > a {
  color: #138bbe;
}

header .container .nav .menu li::before {
  content: '';
  width: 0%;
  height: 4px;
  background-color: #138bbe;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

header .container .nav .menu li:hover::before {
  width: 100%;
}

header .container .nav .menu li:hover > a {
  color: #138bbe;
}

header .container .nav .menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

header .container .nav .menu li .sub-menu {
  padding: 10px 0;
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #f5f5f5;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
          box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  z-index: 999;
  font-weight: normal;
  color: #999;
}

header .container .nav .menu li .sub-menu li {
  height: 48px;
  padding: 0 20px;
}

header .container .nav .menu li .sub-menu li::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: #138bbe;
  border-radius: 50%;
  position: unset;
  margin-right: 10px;
}

header .container .nav .menu li .sub-menu li a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

header .container .nav .menu li .sub-menu li .sub-menu {
  left: 100%;
  top: 0;
}

header .container .nav .header-search-btn {
  margin-left: 25px;
  cursor: pointer;
}

header .container .nav-mobile {
  display: none;
}

header .container .nav-btn {
  display: none;
}

main.index .banner .swiper-banner img {
  width: 100%;
}

main.index .banner .swiper-banner .swiper-button {
  width: 48px;
  height: 48px;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

main.index .banner .swiper-banner .swiper-button::after {
  display: none;
}

main.index .banner .swiper-banner .swiper-button-prev {
  left: -4px;
  background: url(/lib/img/index/left.png) no-repeat center center, rgba(255, 255, 255, 0.7);
  border-radius: 0 24px 24px 0;
}

main.index .banner .swiper-banner .swiper-button-prev:hover {
  background: url(/lib/img/index/left_hover.png) no-repeat center center, #fff;
  left: 0;
}

main.index .banner .swiper-banner .swiper-button-next {
  right: -4px;
  background: url(/lib/img/index/right.png) no-repeat center center, rgba(255, 255, 255, 0.7);
  border-radius: 24px 0 0 24px;
}

main.index .banner .swiper-banner .swiper-button-next:hover {
  background: url(/lib/img/index/right_hover.png) no-repeat center center, #fff;
  right: 0;
}

main.index .our-product {
  margin-top: 50px;
}

main.index .our-product .our-product-container .our-product-item {
  margin-top: 40px;
}

main.index .our-product .our-product-container .our-product-item a:hover .img-box > img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

main.index .our-product .our-product-container .our-product-item a:hover .img-box .shadow {
  visibility: visible;
  opacity: 1;
}

main.index .our-product .our-product-container .our-product-item a:hover .text-box {
  color: #138bbe;
}

main.index .our-product .our-product-container .our-product-item a .img-box {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

main.index .our-product .our-product-container .our-product-item a .img-box img {
  width: 100%;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

main.index .our-product .our-product-container .our-product-item a .img-box .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 25, 33, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

main.index .our-product .our-product-container .our-product-item a .img-box .shadow img {
  width: 18.947368%;
}

main.index .our-product .our-product-container .our-product-item a .text-box {
  padding: 0 10px;
  margin-top: 20px;
  text-align: center;
  font-size: 2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

main.index .transform {
  margin-top: 50px;
  padding: 50px 0;
  background-color: #f9f9f9;
}

main.index .transform .common-title p {
  color: #303030;
}

main.index .transform .transform-container {
  margin-top: 30px;
}

main.index .transform .transform-container .img-box {
  position: relative;
}

main.index .transform .transform-container .img-box img {
  width: 100%;
}

main.index .transform .transform-container .img-box .transform-img-off {
  position: relative;
}

main.index .transform .transform-container .img-box .transform-img-on {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.5;
}

main.index .transform .transform-container .transform-slider-container {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.index .transform .transform-container .transform-slider-container .transform-slider {
  width: 440px;
  height: 48px;
  background: url(/lib/img/index/slider.png) no-repeat center center;
  background-size: cover;
}

main.index .transform .transform-container .transform-slider-container .transform-slider.active::-webkit-slider-thumb {
  background: url(/lib/img/index/slider_off.png);
  background-size: cover;
}

main.index .transform .transform-container .transform-slider-container .transform-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  -webkit-box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
          box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
  width: 80px;
  height: 48px;
  border-radius: 24px;
  background: url(/lib/img/index/slider_on.png);
  background-size: cover;
}

main.index .about-us {
  margin-top: 50px;
}

main.index .about-us .about-us-container .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.index .about-us .about-us-container .row .text-box {
  margin-top: 40px;
}

main.index .about-us .about-us-container .row .text-box .about-us-title h3 {
  font-size: 2.4rem;
}

main.index .about-us .about-us-container .row .text-box .about-us-title span {
  color: #138bbe;
}

main.index .about-us .about-us-container .row .text-box .about-us-description p {
  margin-top: 30px;
  line-height: 1.5em;
}

main.index .about-us .about-us-container .row .text-box .about-us-btns {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.index .about-us .about-us-container .row .text-box .about-us-btns .about-us-more a {
  width: 160px;
  height: 48px;
  background-color: #138bbe;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

main.index .about-us .about-us-container .row .text-box .about-us-btns .about-us-phone {
  margin-left: 20px;
}

main.index .about-us .about-us-container .row .text-box .about-us-btns .about-us-phone img {
  border-radius: 50%;
  -webkit-box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
          box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
}

main.index .about-us .about-us-container .row .text-box .about-us-btns .about-us-phone span {
  color: #138bbe;
}

main.index .about-us .about-us-container .row .video-box {
  margin-top: 40px;
}

main.index .applications {
  margin-top: 40px;
}

main.index .applications .applications-container {
  margin-top: 20px;
}

main.index .applications .applications-container .applications-item {
  margin-top: 20px;
  border: 10px solid #fff;
  position: relative;
  overflow: hidden;
}

main.index .applications .applications-container .applications-item:hover {
  -webkit-box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
          box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
}

main.index .applications .applications-container .applications-item:hover .shadow {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

main.index .applications .applications-container .applications-item img {
  width: 100%;
}

main.index .applications .applications-container .applications-item .shadow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  background-color: rgba(6, 25, 33, 0.7);
  color: #fff;
  font-size: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

main.index .contact-us {
  margin-top: 40px;
  background: url(/lib/img/index/bg_shicha.jpg) center center;
  background-attachment: fixed;
  position: relative;
}

main.index .contact-us::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 57, 73, 0.5);
}

main.index .contact-us .contact-us-container {
  height: 320px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

main.index .contact-us .contact-us-container .contact-us-title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
}

main.index .contact-us .contact-us-container .contact-us-btn a {
  width: 180px;
  height: 48px;
  margin-top: 40px;
  background-color: #fff;
  color: #138bbe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.index .contact-us .contact-us-container .contact-us-btn a:hover {
  background-color: #138bbe;
  color: #fff;
}

main.index .partner .partner-container {
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
}

main.index .partner .partner-container .swiper-partner img {
  width: 100%;
}

main.index .partner .partner-container .partner-pagination {
  bottom: 30px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.index .partner .partner-container .partner-pagination .swiper-pagination-bullet {
  margin: 0 5px;
}

footer {
  background: url(/lib/img/index/footer_bg.jpg);
  color: #a8a8a8;
}

footer .footer-container {
  padding-bottom: 40px;
}

footer .footer-container .footer-title {
  color: #fff;
}

footer .footer-container .contact-info {
  margin-top: 40px;
}

footer .footer-container .contact-info .contact-info-item {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .footer-container .contact-info .contact-info-item .text-box {
  margin-left: 10px;
}

footer .footer-container .contact-info .contact-info-item .text-box p {
  line-height: 1.5em;
}

footer .footer-container .contact-info .contact-info-item .text-box p span {
  color: #138bbe;
  font-weight: bold;
}

footer .footer-container .footer-nav {
  margin-top: 40px;
}

footer .footer-container .footer-nav .menu {
  margin-top: 28px;
}

footer .footer-container .footer-nav .menu li {
  padding: 8px 0;
  font-size: 1.4rem;
}

footer .footer-container .footer-nav .menu li a:hover {
  color: #fff;
}

footer .footer-container .footer-share {
  margin-top: 40px;
}

footer .footer-container .footer-share .footer-share-container {
  margin-top: 28px;
}

footer .footer-container .footer-share .footer-share-container a {
  opacity: 0.7;
  margin-right: 20px;
}

footer .footer-container .footer-share .footer-share-container a:hover {
  opacity: 1;
}

footer .copyright {
  padding: 8px 0;
  border-top: 1px solid #a8a8a8;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .copyright .copyright-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .copyright .copyright-right .line {
  width: 1px;
  height: 10px;
  background-color: #a8a8a8;
  margin: 0 10px;
}

footer .copyright .copyright-right a:hover {
  color: #fff;
}

main.product-list {
  padding-bottom: 40px;
}

main.product-list .product-list-container .product-list-content {
  margin-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
}

main.product-list .product-list-container .product-list-content .product-list-item {
  margin-top: 40px;
}

main.product-list .product-list-container .product-list-content .product-list-item a:hover .img-box > img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

main.product-list .product-list-container .product-list-content .product-list-item a:hover .img-box .shadow {
  visibility: visible;
  opacity: 1;
}

main.product-list .product-list-container .product-list-content .product-list-item a:hover .text-box .product-list-title {
  color: #138bbe;
}

main.product-list .product-list-container .product-list-content .product-list-item a .img-box {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

main.product-list .product-list-container .product-list-content .product-list-item a .img-box img {
  width: 100%;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

main.product-list .product-list-container .product-list-content .product-list-item a .img-box .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 25, 33, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

main.product-list .product-list-container .product-list-content .product-list-item a .img-box .shadow img {
  width: 18.947368%;
}

main.product-list .product-list-container .product-list-content .product-list-item a .text-box {
  margin-top: 20px;
}

main.product-list .product-list-container .product-list-content .product-list-item a .text-box .product-list-title {
  font-size: 2rem;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

main.product-list .product-list-container .product-list-content .product-list-item a .text-box .product-list-description {
  margin-top: 20px;
  color: #7b7b7b;
  line-height: 1.5em;
}

main.product-list .applications img {
  width: 100%;
}

main.product-list .contact-us {
  margin-top: 40px;
  text-align: center;
}

main.product-list .contact-us .contact-us-title {
  font-size: 2.4rem;
  color: #138bbe;
}

main.product-list .contact-us .contact-us-description {
  line-height: 1.5em;
  margin-top: 20px;
}

main.product-list .contact-us .contact-us-btn {
  margin-top: 20px;
}

main.product-list .contact-us .contact-us-btn a {
  width: 180px;
  height: 48px;
  background-color: #138bbe;
  color: #fff;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

main.product-details .product-details-container .product-details-header .swiper {
  margin-top: 40px;
}

main.product-details .product-details-container .product-details-header .swiper img {
  max-width: 100%;
}

main.product-details .product-details-container .product-details-header .swiper .gallery-top {
  border: 1px solid #f5f5f5;
}

main.product-details .product-details-container .product-details-header .swiper .gallery-top .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.product-details .product-details-container .product-details-header .swiper .gallery-bottom {
  padding: 0 30px;
  position: relative;
}

main.product-details .product-details-container .product-details-header .swiper .gallery-bottom .gallery-thumbs {
  margin-top: 10px;
}

main.product-details .product-details-container .product-details-header .swiper .gallery-bottom .gallery-thumbs .swiper-slide {
  border: 1px solid transparent;
}

main.product-details .product-details-container .product-details-header .swiper .gallery-bottom .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: #138bbe;
}

main.product-details .product-details-container .product-details-header .swiper .gallery-bottom .swiper-button {
  width: 20px;
  height: 100%;
  background-color: #e5e5e5;
  margin: 0;
}

main.product-details .product-details-container .product-details-header .swiper .gallery-bottom .swiper-button::after {
  color: #a8a8a8;
  font-size: 1.4rem;
}

main.product-details .product-details-container .product-details-header .swiper .gallery-bottom .swiper-button-prev {
  top: 0;
  left: 0;
}

main.product-details .product-details-container .product-details-header .swiper .gallery-bottom .swiper-button-next {
  top: 0;
  right: 0;
}

main.product-details .product-details-container .product-details-header .text-box {
  margin-top: 40px;
  padding-left: 20px;
}

main.product-details .product-details-container .product-details-header .text-box .product-title h3 {
  font-size: 3.2rem;
  color: #138bbe;
}

main.product-details .product-details-container .product-details-header .text-box .product-description {
  line-height: 1.5em;
  margin-top: 20px;
}

main.product-details .product-details-container .product-details-header .text-box .product-params {
  padding: 20px 0;
  margin: 30px 0;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
}

main.product-details .product-details-container .product-details-header .text-box .product-params ul li {
  font-size: 1.4rem;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.product-details .product-details-container .product-details-header .text-box .product-params ul li::before {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #138bbe;
  margin-right: 10px;
}

main.product-details .product-details-container .product-details-header .text-box .logistics-delivery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.product-details .product-details-container .product-details-header .text-box .logistics-delivery img {
  margin-right: 10px;
}

main.product-details .product-details-container .product-details-header .text-box .btns {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

main.product-details .product-details-container .product-details-header .text-box .btns .quote {
  margin-right: 20px;
}

main.product-details .product-details-container .product-details-header .text-box .btns .quote a {
  width: 160px;
  height: 48px;
  background-color: #138bbe;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

main.product-details .product-details-container .product-details-header .text-box .btns .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.product-details .product-details-container .product-details-header .text-box .btns .share a {
  margin-left: 10px;
}

main.product-details .product-details-container .product-details-body {
  margin-top: 40px;
}

main.product-details .product-details-container .product-details-body .tabs .tabs-nav {
  border-bottom: 2px solid #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

main.product-details .product-details-container .product-details-body .tabs .tabs-nav li {
  padding: 0 20px;
  font-weight: bold;
}

main.product-details .product-details-container .product-details-body .tabs .tabs-nav li.active a {
  color: #138bbe;
}

main.product-details .product-details-container .product-details-body .tabs .tabs-nav li.active a::after {
  width: 100%;
}

main.product-details .product-details-container .product-details-body .tabs .tabs-nav li a {
  height: 48px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

main.product-details .product-details-container .product-details-body .tabs .tabs-nav li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  background-color: #138bbe;
  width: 0;
  height: 2px;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

main.product-details .product-details-container .product-details-body .tabs .tabs-content .FAQS ul {
  list-style-type: none;
}

main.application .application-container {
  margin-top: 40px;
  padding-bottom: 40px;
}

main.application .application-container .application-title h3 {
  font-size: 3.2rem;
  color: #138bbe;
  text-align: center;
}

main.application .application-container .application-description {
  padding: 0 8.474576%;
  line-height: 1.5em;
  margin-top: 20px;
  text-align: center;
}

main.application .application-container .swiper {
  max-width: 600px;
  padding: 0 10px;
  margin: 0 auto;
  margin-top: 40px;
}

main.application .application-container .swiper img {
  max-width: 100%;
}

main.application .application-container .swiper .gallery-top {
  border: 1px solid #f5f5f5;
}

main.application .application-container .swiper .gallery-top .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.application .application-container .swiper .gallery-bottom {
  padding: 0 30px;
  position: relative;
}

main.application .application-container .swiper .gallery-bottom .gallery-thumbs {
  margin-top: 10px;
}

main.application .application-container .swiper .gallery-bottom .gallery-thumbs .swiper-slide {
  border: 1px solid transparent;
}

main.application .application-container .swiper .gallery-bottom .gallery-thumbs .swiper-slide.swiper-slide-thumb-active {
  border-color: #138bbe;
}

main.application .application-container .swiper .gallery-bottom .swiper-button {
  width: 20px;
  height: 100%;
  background-color: #e5e5e5;
  margin: 0;
}

main.application .application-container .swiper .gallery-bottom .swiper-button::after {
  color: #a8a8a8;
  font-size: 1.4rem;
}

main.application .application-container .swiper .gallery-bottom .swiper-button-prev {
  top: 0;
  left: 0;
}

main.application .application-container .swiper .gallery-bottom .swiper-button-next {
  top: 0;
  right: 0;
}

main.about-us {
  padding-bottom: 40px;
}

main.about-us .about-us-container .company-info {
  margin-top: 50px;
  text-align: center;
}

main.about-us .about-us-container .company-info .company-title h2 {
  font-size: 3.2rem;
}

main.about-us .about-us-container .company-info .company-description {
  line-height: 1.5em;
  margin-top: 20px;
}

main.about-us .about-us-container .company-info .company-video-btn {
  margin-top: 36px;
  color: #138bbe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.about-us .about-us-container .company-info .company-video-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.about-us .about-us-container .company-info .company-video-btn a .icon {
  margin-right: 12px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.about-us .about-us-container .company-info .company-video-btn a .icon::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(19, 139, 190, 0.5);
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  -webkit-animation: play-btn 2000ms cubic-bezier(0.15, 0, 0, 1) infinite;
          animation: play-btn 2000ms cubic-bezier(0.15, 0, 0, 1) infinite;
}

@-webkit-keyframes play-btn {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.7);
            transform: scale(1.7);
  }
}

@keyframes play-btn {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.7);
            transform: scale(1.7);
  }
}

main.about-us .about-us-container .company-advantage {
  margin-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
}

main.about-us .about-us-container .company-advantage .company-advantage-item {
  margin-top: 40px;
}

main.about-us .about-us-container .company-advantage .company-advantage-item:hover .img-box img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

main.about-us .about-us-container .company-advantage .company-advantage-item .img-box {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.about-us .about-us-container .company-advantage .company-advantage-item .img-box img {
  max-width: 100%;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

main.about-us .about-us-container .company-advantage .company-advantage-item .text-box {
  text-align: center;
}

main.about-us .about-us-container .company-advantage .company-advantage-item .text-box .company-advantage-title {
  padding: 20px 0;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

main.about-us .about-us-container .company-advantage .company-advantage-item .text-box .company-advantage-title::after {
  content: '';
  width: 80px;
  height: 2px;
  background-color: #138bbe;
  position: absolute;
  bottom: 0;
}

main.about-us .about-us-container .company-advantage .company-advantage-item .text-box .company-advantage-description {
  line-height: 1.5em;
  margin-top: 20px;
}

main.about-us .about-us-container .persuasive-scene {
  margin-top: 40px;
}

main.about-us .about-us-container .persuasive-scene .persuasive-scene-title h2 {
  font-size: 3.2rem;
  text-align: center;
}

main.about-us .about-us-container .persuasive-scene .persuasive-scene-container {
  margin-top: 40px;
}

main.about-us .about-us-container .persuasive-scene .persuasive-scene-container .swiper-persuasive-scene .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.about-us .about-us-container .persuasive-scene .persuasive-scene-container .swiper-persuasive-scene .swiper-slide img {
  max-width: 100%;
}

main.about-us .about-us-container .persuasive-scene .persuasive-scene-container .swiper-persuasive-scene .persuasive-scene-pagination .swiper-pagination-bullet {
  background-color: #fff;
}

main.about-us .about-us-details {
  line-height: 1.5em;
}

main.about-us .about-us-details p {
  margin: 30px 0;
}

main.about-us .about-us-details img {
  max-width: 100%;
  height: auto;
}

main.about-us .about-us-details ul li {
  list-style-type: disc;
}

main.about-us .about-us-details ul,
main.about-us .about-us-details ol {
  margin: 30px 0;
  padding-left: 20px;
}

main.about-us .about-us-details ul li,
main.about-us .about-us-details ol li {
  margin: 10px 0;
}

main.about-us .about-us-details table {
  width: 100%;
  border-collapse: collapse;
}

main.about-us .about-us-details table td {
  padding: 10px;
  border: 1px solid #a8a8a8;
}

main.contact-us .find-us {
  margin-top: 40px;
}

main.contact-us .find-us .find-us-container {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

main.contact-us .find-us .find-us-container .find-us-item {
  margin-top: 20px;
  width: 33.333333%;
  padding: 0 3.389830%;
  padding-top: 65px;
  padding-bottom: 50px;
  border: 1px solid #ecf0f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

main.contact-us .find-us .find-us-container .find-us-item:hover {
  -webkit-box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
          box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
}

main.contact-us .find-us .find-us-container .find-us-item .text-box {
  margin-top: 30px;
}

main.contact-us .find-us .find-us-container .find-us-item .text-box strong {
  font-size: 2.2rem;
}

main.contact-us .find-us .find-us-container .find-us-item .text-box p {
  line-height: 1.5em;
  margin-top: 20px;
  color: #a8a8a8;
}

main.contact-us .common-contact-us {
  height: 539px;
  background-color: #fff;
  background: url(/lib/img/contact/bg.png) repeat-x center bottom;
}

main.contact-us .common-contact-us .contact-us-container {
  padding: 50px;
  position: relative;
}

main.contact-us .common-contact-us .contact-us-container form {
  margin: 0;
}

main.contact-us .common-contact-us .contact-us-container form input[type="submit"] {
  margin: 0 auto;
}

main.contact-us .empty {
  height: 190px;
  background-color: #f5f5f5;
}

main.news .news-list {
  padding-bottom: 40px;
  overflow: hidden;
}

main.news .news-list .news-list-item {
  margin-top: 30px;
}

main.news .news-list .news-list-item:nth-child(even) .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

main.news .news-list .news-list-item:nth-child(even) .row .position .text-box {
  left: auto;
  right: -100px;
}

main.news .news-list .news-list-item .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.news .news-list .news-list-item .img-box img {
  max-width: 100%;
}

main.news .news-list .news-list-item .position {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main.news .news-list .news-list-item .position .text-box {
  max-width: 880px;
  padding: 40px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
          box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
  position: absolute;
  left: -100px;
  z-index: 1;
}

main.news .news-list .news-list-item .position .text-box .news-title h3 {
  font-size: 2rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

main.news .news-list .news-list-item .position .text-box .news-meta {
  margin-top: 10px;
  color: #a8a8a8;
}

main.news .news-list .news-list-item .position .text-box .news-meta span {
  color: #138bbe;
}

main.news .news-list .news-list-item .position .text-box .news-description {
  line-height: 1.5em;
  margin: 20px 0;
}

main.news .news-list .news-list-item .position .text-box .news-description p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 2;
}

main.news .news-list .news-list-item .position .text-box .news-btn a {
  width: 200px;
  height: 48px;
  border: 1px solid #138bbe;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

main.news .news-list .news-list-item .position .text-box .news-btn a:hover {
  background-color: #138bbe;
  color: #fff;
}

main.news .news-details {
  padding: 40px 0;
}

main.news .news-details .news-details-container {
  padding: 30px;
  -webkit-box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
          box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
}

main.news .news-details .news-details-container .news-title h3 {
  font-size: 2.4rem;
}

main.news .news-details .news-details-container .news-meta {
  margin-top: 10px;
  color: #a8a8a8;
}

main.news .news-details .news-details-container .news-meta span {
  color: #138bbe;
}

main.news .news-details .news-details-container .news-content {
  line-height: 1.5em;
}

main.news .news-details .news-details-container .news-content h1,
main.news .news-details .news-details-container .news-content h2,
main.news .news-details .news-details-container .news-content h3,
main.news .news-details .news-details-container .news-content h4,
main.news .news-details .news-details-container .news-content h5,
main.news .news-details .news-details-container .news-content h6,
main.news .news-details .news-details-container .news-content p {
  margin: 20px 0;
}

main.news .news-details .news-details-container .news-content img {
  max-width: 100%;
  height: auto;
}

main.news .news-details .news-details-container .news-content ul li {
  list-style-type: disc;
}

main.news .news-details .news-details-container .news-content ul,
main.news .news-details .news-details-container .news-content ol {
  margin: 20px 0;
  padding-left: 20px;
}

main.news .news-details .news-details-container .news-content ul li,
main.news .news-details .news-details-container .news-content ol li {
  margin: 10px 0;
}

main.news .news-details .news-details-container .news-content table {
  width: 100%;
  border-collapse: collapse;
}

main.news .news-details .news-details-container .news-content table td {
  padding: 10px;
  border: 1px solid #a8a8a8;
}

main.news .news-details .news-details-container .news-content .iframe-box {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-top: 20px;
  position: relative;
}

main.news .news-details .news-details-container .news-content iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
}

main.news .news-details .news-details-container .flip-page p {
  margin: 10px 0;
}

main.news .news-details .news-details-container .flip-page p a {
  color: #138bbe;
}

main.news .news-details .news-details-container .flip-page p a:hover {
  text-decoration: underline;
}

main.faq .faq-container {
  padding: 40px 0;
}

main.faq .faq-container .item {
  font-size: 1.8rem;
  line-height: 1.5em;
}

main.faq .faq-container .item .ask {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #138bbe;
  font-weight: bold;
}

main.faq .faq-container .item .ask img {
  margin-right: 10px;
}

main.faq .faq-container .item .answer {
  background-color: #f5f5f5;
  min-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  padding: 20px;
  padding-left: 42px;
}

main.faq .faq-container .bottom {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #777;
  font-style: italic;
}

main.faq .faq-container .bottom a {
  color: #138bbe;
  text-decoration: underline;
}

main.download .download-container {
  padding: 40px 0;
}

main.download .download-container .download-item {
  padding: 20px;
  border-bottom: 1px solid #f5f5f5;
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
  transition: all 360ms cubic-bezier(0.15, 0, 0, 1);
}

main.download .download-container .download-item:hover {
  -webkit-box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
          box-shadow: 0 0 15px rgba(16, 45, 58, 0.1);
}

main.download .download-container .download-item .download-item-left {
  width: 80%;
  line-height: 1.5em;
  font-size: 2.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /*!autoprefixer: off*/
  -webkit-box-orient: vertical;
  /*autoprefixer: on*/
  -webkit-line-clamp: 2;
}

main.download .download-container .download-item .download-item-right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

main.download .download-container .download-item .download-item-right span {
  margin-right: 20px;
  font-size: 1.4rem;
  color: #a8a8a8;
}
