@charset "UTF-8";
@import url("../iconfont/iconfont.css");

/* clear */
body {
  font-family: MicroSoft Yahei, Arial;
  width: 100%;
  overflow-x: hidden;
}

body ul, body li, body h1, body h2, body h3, body h4, body h5, body p {
  padding: 0;
  margin: 0;
}

body li {
  list-style: none;
}

body a {
  color: #000;
  text-decoration: none;
}

body a:hover {
  color: #084BC5;
  transition: all 1s ease .1s;
  text-decoration: none;
}

.arial {
  font-family: Arial !important;
  word-wrap: break-word;
  word-break: break-all;
}


/**************************************************************************** * 全局样式 */
.lh-text {
  font-size: 16px;
  color: #000;
  line-height: 22px;
}

.lh-text img {
  max-width: 100%;
}

.lh-text a {
  color: #000;
  font-size: 16px;
}

.lh-text a:hover {
  color: #084BC5;
}

::-webkit-input-placeholder {
  color: #fff;
  font-size: 14px;
  line-height: 35px;
}

:-ms-input-placeholder {
  color: #fff;
  font-size: 14px;
  line-height: 35px;
}

::placeholder {
  color: #fff;
  font-size: 14px;
  line-height: 35px;
}

.global-nav {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0 100px;
  z-index: 1100;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -ms-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.global-nav::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #fff;
}

.global-productDetails::before {

  border-bottom: none;
}

.global-nav .container-fluid {
  align-items: unset;
  padding: 0;
}

.global-nav .container-fluid .navbar-brand {
  padding: 0;
  margin: 10px 0px 10px 0px;
  display: flex;
  align-items: center;
}

.name {
  font-size: 25px;
  font-weight: 400;
  color: #fff;
}

.global-nav .container-fluid .navbar-brand img {
  display: block;
  width: 90px;
  margin-right: 15px;
}

.global-nav .container-fluid .navbar-brand .img-native {
  display: none;
}

.global-productDetails .container-fluid .navbar-brand .img-native {
  display: block;
}

.global-productDetails .container-fluid .navbar-brand .img-white {
  display: none;
}

.global-nav .container-fluid .navbar-box {
  display: flex;
}

.global-nav .container-fluid .navbar-box .navbar-toggler {
  align-self: center;
  margin: 0;
  padding: 9px 0;
  cursor: pointer;
  z-index: 9999;
}

.global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon {
  display: block;
  height: 3px;
  border-radius: 1px;
  width: 28px;
  background-color: #fff !important;
}

.global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon:nth-child(1) {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon:nth-child(2) {
  display: none;
}

.global-nav .container-fluid .navbar-box .navbar-toggler .navbar-toggler-icon:nth-child(3) {
  margin-top: -3px;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon {
  height: 2px;
  width: 28px;
  background-color: #fff;
}

.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(2) {
  display: block;
}

.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(2), .global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(3) {
  margin-top: 5px;
}

.global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(1), .global-nav .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon:nth-child(3) {
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}

.global-nav .container-fluid .navbar-box .navbar-collapse {
  align-items: unset;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
  margin-left: 80px;
  position: relative;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li:first-child {
  margin-left: 0;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 20px;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -ms-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #084BC5;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -ms-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a:hover::before {
  width: 100%;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active::before {
  width: 100%;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .icon-xiangyou1 {
  cursor: pointer;
  padding: 0 10px;
  transition-duration: 0.1s;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .icon-xiangyou1::before {
  font-size: 16px;
  color: #fff;
  line-height: 1;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .icon-xiangyou1:hover::before {
  color: #084BC5;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list {
  height: 0;
  overflow: hidden;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0 20px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -ms-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item {
  font-size: 14px;
  white-space: nowrap;
  padding-bottom: 10px;
  color: #fff;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item:hover {
  color: #084BC5 !important;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item:first-child {
  padding-top: 20px;
}

.global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item:last-child {
  padding-bottom: 20px;
}

.global-nav .container-fluid .navbar-box .contact-phone {
  margin-left: 60px;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  display: flex;
  align-items: center;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -ms-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.global-nav .container-fluid .navbar-box .contact-phone .icon-dianhua {
  margin-right: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  -webkit-transition: all .2s linear;
  -moz-transition: all .2s linear;
  -ms-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.global-nav .container-fluid .navbar-box .contact-phone .icon-dianhua::before {
  font-size: 10px;
  line-height: 1;
}

.global-nav.scroll-top {
  background-color: #fff;
  box-shadow: 0 3px 10px #ccc;
}

.global-nav.scroll-top .name {
  color: #333;
}

.global-productDetails.scroll-top .container-fluid .navbar-brand .img-native {
  display: none;
}

.global-productDetails.scroll-top .container-fluid .navbar-brand .img-white {
  display: block !important;
}

.global-productDetails.scroll-top .container-fluid .navbar-brand .img-white {
  display: none;
}

.global-nav.scroll-top .container-fluid .navbar-box .navbar-toggler.collapsed .navbar-toggler-icon {
  background-color: #333 !important;
}

.global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
  color: #333;
}

.global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list {
  background-color: #fff;
}

.global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item {
  color: #333;
}

.global-nav.scroll-top .container-fluid .navbar-box .contact-phone {
  color: #005bac;
}

.global-nav.scroll-top .container-fluid .navbar-box .contact-phone .icon-dianhua {
  border-color: #084BC5;
  color: #084BC5;
}

.global-footer {
  padding-top: 78px;
  padding-bottom: 45px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/footer-bg.png");
}

.global-footer .footer-body {
  padding-bottom: 80px;
}

.footer-body {
  padding: 0 160px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.global-footer-contact>img {
  width: 252px;
  height: 93px;
}

.footer-contact-b {
  display: flex;
  align-items: flex-end;
}

.footer-contact-b img {
  width: 67px;
  height: 67px;
  margin-right: 20px;
}

.footer-contact-b {
  margin-top: 45px;
}

.contact-b-text {
  font-size: 20px;
  font-weight: 400;
  color: #ccc;
}

.contact-b-phone {
  margin-top: 20px;
  font-size: 30px;
  font-weight: 700;
  color: #ccc;
}

.global-footer-info-item {
  margin-top: 20px;
  color: #ccc;
  font-size: 20px;
  font-weight: 400;
}

.global-footer-code-box {
  display: flex;
}

.global-footer-code-box {
  padding-left: 66px;
  border-left: 1px solid #666;
}

.global-footer-code-box img {
  margin-right: 20px;
  width: 125px;
  height: 125px;
  display: flex;
}

.footer-code-box-title {
  font-size: 20px;
  font-weight: 700;
  color: #ccc;
}

.footer-code-box-text {
  font-size: 16px;
  font-weight: 400;
  color: #ccc;
}

.global-footer .footer-copyright .copy {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: #ccc;
}

.global-footer .footer-copyright .copy a {
  margin: 0 5px;
  font-size: 20px;
  color: #ccc;
}

.global-footer .footer-copyright .copy a:hover {
  color: #084BC5;
}

.global-footer .footer-copyright .link {
  color: #666666;
  font-size: 12px;
  padding-top: 10px;
  text-align: center;
}

.global-footer .footer-copyright .link .link-item {
  color: #666666;
  margin-left: 8px;
}

.global-footer .footer-copyright .link .link-item:first-child {
  margin-left: 0;
}

.global-footer .footer-copyright .link .link-item:hover {
  color: #084BC5;
}

.global-banner {
  margin-top: 80px;
  padding-top: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/**************************************************************************** * 首页 */
.index-banner .swiper-slide .banner-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0 20px;
}

.index-banner .swiper-slide .banner-word .title {
  font-size: 48px;
  font-weight: 400;
  transform: translateY(-50%);
  opacity: 0;
  margin-bottom: 20px;
  transition: all 0.8s ease 0.5s;
}

.index-banner .swiper-slide .banner-word .subtitle {
  transform: translateY(-80%);
  opacity: 0;
  transition: all 1s ease 0s;
  font-size: 22px;
  font-weight: 200;
}

.banner-word-more {
  transform: translateY(-80%);
  opacity: 0;
  transition: all 1s ease 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  padding: 20px 45px;
  background: #084BC5;
}

.banner-word-more:hover img {
  transform: translateX(10px);
}

.banner-word-more img {
  width: 17px !important;
  height: 17px;
  transition: all 1s ease 0s;
}

.banner-word-more p {
  font-size: 24px;
  margin-right: 15px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 1600px) {
  .index-banner .swiper-slide .banner-word .title {
    font-size: 44px;
  }
}

@media (max-width: 1200px) {
  .index-banner .swiper-slide .banner-word .title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .index-banner .swiper-slide .banner-word .subtitle {
    font-size: 18px;
  }

  .banner-word-more {
    margin-top: 30px;
    padding: 15px 45px;
  }

  .banner-word-more p {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .index-banner .swiper-slide .banner-word .title {
    font-size: 30px;
    margin-bottom: 12px;
  }
}

@media (max-width: 768px) {
  .index-banner .swiper-slide .banner-word .title {
    font-size: 20px;
  }

  .index-banner .swiper-slide .banner-word .subtitle {
    font-size: 14px;
  }

  .banner-word-more {
    margin-top: 20px;
    padding: 10px 30px;
  }

  .banner-word-more img {
    width: 12px;
    height: 12px;
  }

  .banner-word-more p {
    font-size: 12px;
    margin-right: 10px;
  }
}

@media (max-width: 576px) {
  .index-banner .swiper-slide .banner-word .title {
    font-size: 16px;
  }

  .index-banner .swiper-slide .banner-word .subtitle {
    font-size: 12px;
  }

  .banner-word-more {
    display: none;
  }
}

.index-banner .swiper-slide.swiper-slide-active .banner-word .title {
  transform: translateY(0);
  opacity: 1;
}

.index-banner .swiper-slide.swiper-slide-active .banner-word .subtitle {
  transform: translateY(0);
  opacity: 1;
}

.index-banner .swiper-slide.swiper-slide-active .banner-word .banner-word-more {
  transform: translateY(0);
  opacity: 1
}

.index-banner .swiper-slide img {
  display: block;
  width: 100%;
}

.index-banner .swiper-pagination {
  bottom: 60px;
  left: 0%;
}


.index-banner .swiper-pagination .swiper-pagination-bullet {
  width: 27px;
  height: 11px;
  background-color: #ffffff;
  border-radius: 0;
  opacity: 1;
  margin: 0 5px;
}

.index-banner .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #005bac;
}

.index-product {
  padding-left: 80px;
  display: flex;
  justify-content: space-between;
}

.product-class {
  font-size: 36px;
  font-weight: 600;
  line-height: 36px;
  color: #084BC5;
  margin-top: 40px;
}

.product-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #CDD2D9;
  margin-top: 20px;
}

.product-t {
  font-size: 46px;
  font-weight: 500;
  line-height: 50px;
  color: #000000;
  margin-top: 30px;
}

.index-product-list {
  display: flex;
  margin-top: 36px;

}

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

.index-product-box-active {
  display: block;
}

.product-item {
  padding-bottom: 40px;
  cursor: pointer;
}

.product-item:hover img {
  box-shadow: 0 0 10px #084BC5;
}

.product-item img {
  width: 28vw;
  height: auto;
  transition: all 1s ease 0s;
}

.product-item1 {
  margin-right: 60px;
}

.product-item-name {
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  color: #000;
  margin-top: 40px;
  text-align: center;
}

.product-item-type {
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  color: #084BC5;
  margin-top: 5px;
  text-align: center;
}

.index-product-right {
  width: 30%;
}

.product-class-item {
  display: flex;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px #E3E3E3;
  padding: 25px 40px;
  align-items: center;
  transition: all 1s ease 0s;
  margin-top: 25px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
}

.product-class-item:hover {
  background-color: #084BC5;
  box-shadow: 0px 2px 10px #A1B0FF;
  color: #fff;
}

.product-class-item-active {
  background-color: #084BC5;
  box-shadow: 0px 2px 10px #A1B0FF;
  color: #fff;
}

.product-class-item i {
  margin-right: 30px;
}

.index-about {
  display: flex;
  /* align-items: ; */
  background-color: #F6F6F6;
  justify-content: space-between;
}

.index-about-video {
  display: none;
  position: relative;
}

.index-about-video img {
  width: 100%;
  height: auto;
}

.index-about-video video {
  width: 100%;
  height: auto;
  display: none;
}

.index-about-video .play {
  width: 48px;
  height: 48px;
  position: absolute;
  left: 50%;
  cursor: pointer;
  top: 50%;
  transform: translate(-50%, -50%);
}



.index-about-left-t {
  padding: 60px 30px;
  background-color: #084BC5;
}

.index-about-left-t img {
  width: 121px;
  height: 98px;
}

.index-about-left-b {
  background-color: #3753A2;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 10px;
  color: #fff;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  padding: 125px 72px;
}

.index-about-left-b p {
  margin: 25px 0;
}

.index-about-right {
  width: calc(100% - 189px);
  padding: 90px 0 50px 120px;
}

.index-about-right-top {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.index-about-right-top-r {
  width: 64%;
  height: auto;
  position: relative;
}

.index-about-right-top-r img {
  width: 100%;
  height: auto;
}

.index-about-right-top-r video {
  width: 100%;
  height: auto;
  display: none;
}

.index-about-right-top-r .play {
  width: 48px;
  height: 48px;
  position: absolute;
  left: 50%;
  cursor: pointer;
  top: 50%;
  transform: translate(-50%, -50%);
}

.index-about-right-top-l {
  position: relative;
  z-index: 100;
  width: 36%;
}

.index-about-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  color: #000;
}

.index-about-text {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  color: #CDD2D9;
}

.index-about-c {
  margin-top: 43px;

  background-image: url(../images/index-about-bj.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 65px 35px 65px;

}

.index-about-name {
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
  color: #000;
}

.index-about-info {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #666;
  margin-bottom: 50px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  line-clamp: 8;
  -webkit-box-orient: vertical;
}

.more {
  display: inline-block;
  font-size: 25px;
  font-weight: 400;
  background: #084BC5;
  color: #fff;
  padding: 20px 50px;
  cursor: pointer;
  transition: all 1s ease 0s;
}

.more:hover {
  color: #fff;
}

.more:hover img {
  color: #fff;
  transform: translateX(10px);
}

.more img {
  margin-left: 15px;
  width: 17px;
  transition: all 1s ease 0s;
  height: 17px;
}

.index-about-right-b {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 55px;
}

.index-about-right-b-item-t {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.index-about-right-b-item-b {
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  line-height: 16px;
  color: #000;
}

.index-about-right-b-item-t .num {
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
  color: #084BC5;
}

.wei {
  font-size: 12px;
  font-weight: 400;
  line-height: 17.38px;
  color: #084BC5;
}

.index-news {
  background-image: url("../images/news-bj1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 80px 60px 80px;
}

.index-news-top .index-about-title {
  color: #fff;
}

.index-news-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.index-news-top-r {
  background-color: #fff;
  color: #084BC5;
}

.index-news-top-r:hover {
  background-color: #fff;
  color: #084BC5;
}

.index-news-list {
  display: flex;
  align-items: center;
  margin: 0 -12px;
  flex-wrap: wrap;
  margin-top: 91px;
}

.index-news-item-box {
  width: calc(25% - 24px);
  margin: 0 12px;
}

.news-box .index-news-item-box {
  margin-bottom: 30px;
}

.news-box .index-news-item-box:last-child, .news-box .index-news-item-box:nth-last-child(2), .news-box .index-news-item-box:nth-last-child(3), .news-box .index-news-item-box:nth-last-child(4) {
  margin-bottom: 0;
}

.index-news-item {

  position: relative;
  padding: 30px;
}

.index-news-item:hover .index-news-item-bj {
  box-shadow: 0px 0px 10px #ddd;
  background-color: #eee;
}

.index-news-item-top {
  position: relative;
  z-index: 100;
  width: 100%;
}

.index-news-item-bj {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  transition: all 1s ease 0s;
  height: 80%;
}

.index-news-item-img {
  display: block;
  position: relative;
  width: 100%;
  max-height: 215px;
  overflow: hidden;
}

.index-news-item-time {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  padding: 12px 14px;
  background-color: #fff;
  z-index: 100;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.index-news-item-img img {
  width: 100%;
  height: 100%;
  transition: all 1s ease 0s;
}

.index-news-item-img img:hover {
  transform: scale(1.1);
}

.index-news-item-r {
  margin-top: 36px;
}

.index-news-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #084BC5;
  line-height: 25px;
  min-height: 50px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.index-news-item-text {
  margin: 20px 0 40px 0;
  font-size: 16px;
  font-weight: 400;
  height: 66px;
  line-height: 22px;
  color: #666;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.index-news-item-more {
  font-size: 20px;
  font-weight: 600;
  color: #084BC5;
  display: flex;
  align-items: center;
}

.index-news-item-more:hover img {
  transform: translateX(10px);
}

.index-news-item-more img {
  width: 14px;
  height: 14px;
  margin-left: 15px;
  transition: all 1s ease 0s;
}

.index-rong {
  padding: 80px 80px 70px 80px;
  background-image: url(../images/index-rong-bj.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.index-rong-top p {
  text-align: center;
}

.index-rong-top .index-about-title {
  color: #084BC5;
}

.rongSwiper-item {
  margin-right: 40px;
  background-color: #fff;
  transition: all .5s ease .1s;
  padding: 50px;
  position: relative;
  cursor: pointer;
}

.rongSwiper-item:hover {
  box-shadow: 0 0 10px #084BC5;
}

.rongSwiper-x {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #084BC5;
}

@keyframes x {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.rongSwiper-item:hover .rongSwiper-x {
  animation: x 0.5s linear forwards;
}

.rongSwiper-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rongSwiper-item-img>img {
  width: 100%;
  height: auto;

}

.rongSwiper-item-look {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.rongSwiper {
  margin-top: 50px;
  padding: 10px 5px;
  z-index: 1000;
  position: relative;
}

.rongSwiper-box {
  padding: 0 114px;
  position: relative;
}

.rongSwiper-name {
  margin: 30px 0;
}

/* .rongSwiper-btn-box {  position: absolute;  bottom: 30px;  left: 50%;  transform: translateX(-50%);  display: flex;  align-items: center;  width: 150px;} */
.about-rong-title {
  color: #333;
}

.rongSwiper-btn-box {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  width: 100%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rongSwiper-btn-box .rongSwiper-btn-next, .rongSwiper-btn-box .rongSwiper-btn-prev {
  width: 52px;
  transition: all .5s ease .1s;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #CCCCCC;
  cursor: pointer;
}

.rongSwiper-btn-box .rongSwiper-btn-next:hover, .rongSwiper-btn-box .rongSwiper-btn-prev:hover {
  background-color: #084BC5;
}

.rongSwiper-btn-box .rongSwiper-btn-next i, .rongSwiper-btn-box .rongSwiper-btn-prev i {
  font-size: 16px;
  color: #000000;
  transition: all .5s ease .1s;
}

.rongSwiper-btn-box .rongSwiper-btn-next:hover i, .rongSwiper-btn-box .rongSwiper-btn-prev:hover i {
  color: #fff;
}

.img-overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.img-overlay .img-dialog {
  /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);*/
  position: relative;
  border-radius: 2px;
  box-sizing: border-box;
  -moz-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.img-overlay .iconfont {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.img-overlay .img-dialog .dialog-img {
  display: block;
  max-width: 75vw;
  max-height: 90vh;
}

/* 关于我们 */
.top-banner {
  width: 100%;
}

.top-banner img {
  width: 100%;
  height: auto;
}

.about-box {
  padding: 50px 80px;
}

.about-item {
  display: flex;
  position: relative;
  justify-content: flex-end;
  background-color: #084BC5;
}

.about-item-l {
  padding: 44px 90px;
  width: 50%;
  position: absolute;
  left: 0;
  bottom: 70px;
  background-image: url(../images/about-bj2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-name {
  font-size: 25px;
  font-weight: 700;
  color: #000;
}

.about-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 35px;
  margin-top: 25px;
  color: #666;
}

.about-item-r {
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

.about-num-item {
  margin-bottom: 80px;
  width: 33.33%;
}

.about-item-r img {
  width: 50%;
  height: auto;
}

.about-num {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.about-num-item .index-about-right-b-item-t .num {
  color: #fff;
}

.about-num-item .index-about-right-b-item-t .wei {
  color: #fff;
}

.about-num-item .index-about-right-b-item-b {
  color: #fff;
}

.about-chang {
  margin-top: 80px;
}

.about-chang-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-top: 50px;
}

.about-chang-item:hover {
  box-shadow: 0 0 10px #084BC5;
}

.about-chang-item {
  margin: 15px;
  transition: all .5s ease .1s;
  width: calc(33.33% - 30px);
}

.about-chang-item img {
  width: 100%;
  height: auto;
}

.about-chang-more {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-wh-c {
  align-items: flex-start;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 163px 0;
  flex-wrap: nowrap;
  background-image: url(../images/abour-bj3.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-wh-item {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.about-wh-item img {
  width: 56px;
  height: 49px;
}

.about-wh-item-title {
  margin: 50px 0 30px 0;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.about-wh-item-text {

  font-size: 20px;
  line-height: 44px;
  font-weight: 200;
  color: #ccc;
}

/* 产品中心 */
.product-box {
  background-color: #f6f6f6;
}

.product-top .index-about-title {
  color: #4074D2;
  text-align: center;
}

.product-top .index-about-text {
  text-align: center;
}

.product-nav {
  padding: 30px 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.product-nav-item {
  margin: 5px 30px;
  cursor: pointer;
  font-size: 25px;
  font-weight: 400;
  color: #000 !important;
  transition: all .5s ease .1s;
}

.product-nav-item-active {
  color: #386ED0 !important;
}

.product-nav-item:hover {
  color: #386ED0 !important;
}

.contact-top {
  padding: 80px 0 75px 0;
  text-align: center;
}

.contact-top .index-about-title {
  color: #000;
}

.contact-item {
  background-color: #f6f6f6;
}

.contact-c {
  background-image: url(../images/contact-bj1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 75px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-c-left {
  width: 40%;
}

.contact-name {
  font-size: 40px;
  font-weight: 600;
  color: #000;
}

.contact-x {
  width: 67px;
  height: 4px;
  background: #000000;
  margin: 20px 0 40px 0;
}

.contact-text {
  font-size: 25px;
  line-height: 50px;
  font-weight: 500;
  color: #000;
}

.contact-map {
  width: 60%;
  height: 450px;
}

.contact-form-box {
  padding: 0px 80px 50px 80px;
  display: flex;
  justify-content: space-between;
}

.contact-form-t {
  display: flex;

  margin: 0 -33px;
}

.contact-form-b {
  margin-top: 40px;
}

.contact-form {
  width: 65%;
  padding-right: 80px;
}

.contact-form-box img {
  width: 35%;
  height: auto;
}

.form-text {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
}

input {
  outline: none;
  border: none;
  font-size: 16px;
  background: #F6F6F6;
}

textarea {
  outline: none;
  border: none;
  background: #F6F6F6;
  font-size: 16px;
}

.form-item {
  width: calc(33.33% - 66px);
  margin: 0 33px;
}

.form-item input {
  height: 45px;
  width: 100%;
  padding: 0 10px;
}

.contact-form-b textarea {
  height: 70px;
  width: 100%;
  resize: none;
  padding: 10px 15px;
}

.contact-form-b {
  display: flex;
  flex-direction: column;
}

.form-btn {
  background: #084BC5;
  margin-top: 27px;
  font-size: 20px;
  font-weight: 400;
  border: none;
  color: #fff;
  height: 56px;
}

/* 荣誉资质 */
.qualifications-box {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
  margin-top: 80px;
}

.qualifications-item {
  width: calc(33.33% - 32px);
  margin: 0 16px !important;
  margin-bottom: 32px !important;
}

/* 产品详情 */
.productDetails-nav {
  height: 93px;
  width: 100%;
  background-color: #084BC5;
}

.productDetails-t {
  display: flex;

}

.productDetails-t-l {
  width: 50%;
  height: auto;
}

.productDetails-c {
  padding: 80px;
}

.productDetails-c img {
  max-width: 100%;
}

.productDetails-t-r {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 50%;
  padding: 0 80px;
  background-image: url(../images/product-bj.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.productDetails-name {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
}

.productDetails-type {
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-top: 18px;
}

.productDetails-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
  color: #ccc;
  margin: 80px 0 70px 0;

}

.back {

  color: #fff;
  background-color: #084BC5;
}

.back:hover img {
  transform: translateX(-10px);
}

.back img {
  margin-right: 15px;
}

.contact-map .map-sign-box {
  width: 80px;
  height: 80px;
  background-color: #fff;
  box-shadow: 0px 0px 8px #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map .map-sign-box img {
  width: 60px;
}

/* 新闻中心 */
/* .news-nav{
  background-color: #f6f6f6;
} */
.news {
  background-image: url(../images/index-rong-bj.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.news-nav {
  justify-content: center;
}

.news .index-news-list {
  margin-top: 50px !important;
}


.global-pagination {
  margin-top: 40px;
  padding: 0 10px;
  display: flex;
  border-radius: 5px;
  align-items: center;
  font-size: 20px;

  justify-content: center;


}

.global-pagination a {
  color: #666;
  text-align: center;
  background-color: #f9f9f9;
  width: 40px;
  height: 60px;
  line-height: 60px;
  transition: all .5s ease .1s;
}

.global-pagination a:hover {
  color: #084BC5;
}

.global-pagination .pro {
  font-size: 25px;
  width: 40px;
}

.global-pagination .next {
  width: 40px;
  font-size: 25px;
}

.global-pagination .active {
  color: #084BC5;
}


/* 新闻详情 */
.newsDetails {
  padding: 0;
}

.newsDetails-box {
  padding-top: 60px;
  padding-bottom: 60px;
}

.newsDetails-title {
  font-size: 25px;
  font-weight: 700;
  color: #000;
  text-align: center;

}

.newsDetails-time-g {
  color: #808080;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  padding: 30px 0;
}

.newsDetails-time-g span {
  margin: 0 20px;
}

.newsDetails-time-c {
  font-size: 16px;
  font-weight: 400;

  line-height: 24px
}

.newsDetails-time-c img {
  max-width: 100%;
}

@media (max-width: 1800px) {
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
    margin-left: 60px;
  }

  .name {
    font-size: 20px;
  }

  .global-nav .container-fluid .navbar-box .contact-phone {
    margin-left: 40px;
    font-size: 20px;
  }

  .global-nav .container-fluid .navbar-box .contact-phone .icon-dianhua {
    margin-right: 15px;
  }

  .index-product-right {
    width: 28%;
  }

  .product-class-item {
    padding: 20px 40px;
    margin-top: 20px;
    font-size: 18px
  }

  .product-item-name {
    font-size: 22px;
    line-height: 40px;
    margin-top: 36px;
  }

  .product-item-type {
    font-size: 22px;
    font-weight: 600;
    line-height: 40px;
  }

  .index-about-c {
    padding: 36px 50px;
  }


  .index-about-name {
    font-size: 24px;
    line-height: 24px;
  }

  .index-about-info {
    margin-top: 25px;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
    -webkit-line-clamp: 6;
    line-clamp: 6;
  }

  .index-about-left-b {
    padding: 108px 72px;
  }

  .index-about-title {
    font-size: 36px;
    line-height: 36px;
  }

  .index-about-text {
    margin-top: 20px;
    font-size: 18px;
    line-height: 18px;
  }

  .more {
    font-size: 22px;
    padding: 15px 35px;
  }

  .more img {
    margin-left: 10px;
    width: 17px;
    height: 17px;
  }

  .index-about-right-b-item-t .num {
    font-size: 44px;
    line-height: 44px;
  }

  .global-footer-contact>img {
    width: 200px;
    height: 78px;
  }

  .footer-contact-b img {
    width: 55px;
    height: 55px;
    margin-right: 15px;
  }

  .footer-contact-b {
    margin-top: 36px;
  }

  .contact-b-text {
    font-size: 18px;
    color: #fff;
  }

  .contact-b-phone {
    margin-top: 15px;
    font-size: 20px;
  }

  .global-footer-info-item {
    margin-top: 15px;
    font-size: 18px;
  }

  .global-footer-code-box {
    padding-left: 50px;
  }

  .global-footer-code-box img {
    margin-right: 15px;
    width: 100px;
    height: 100px;
  }

  .footer-code-box-title {
    font-size: 18px;
  }

  .footer-code-box-text {
    font-size: 14px;
  }

  .global-footer .footer-copyright .copy {
    font-size: 18px;
  }

  .global-footer .footer-copyright .copy a {
    font-size: 18px;
  }

  .global-footer .footer-body {
    padding-bottom: 60px;
  }

  .global-footer {
    padding-top: 60px;
    padding-bottom: 36px;
  }

  .footer-body {
    padding: 0 140px;
  }

  .about-text {
    font-size: 18px;
    line-height: 30px;
  }

  .about-item-l {
    padding: 36px 60px;
  }
}

@media (max-width: 1700px) {
  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
    margin-left: 40px;
  }
}

@media (max-width: 1600px) {
  .global-nav {
    padding: 0 80px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
    font-size: 18px;
  }

  .global-nav .container-fluid .navbar-box .contact-phone {
    font-size: 18px;
  }

  .global-nav .container-fluid .navbar-box .contact-phone .icon-dianhua {
    margin-right: 12px;
  }

  .index-about-info {
    margin-top: 20px;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 36px;
  }

  .index-about-c {
    padding: 30px 40px 30px 40px;
  }

  .index-news-item-r {
    margin-top: 20px;
  }

  .index-news-item-title {

    font-size: 16px;
    line-height: 22px;
    height: 22px;
  }

  .index-news-item-text {
    margin: 15px 0 25px 0;
    font-size: 14px;
    height: 54px;
    line-height: 18px;
  }

  .index-news-item-more {
    font-size: 16px;
  }

  .index-news-item-more img {
    width: 12px;
    height: 12px;
    margin-left: 10px;
  }

  .index-news-item-time {
    padding: 8px 10px;
    font-size: 14px;
  }

  .index-news-item {
    padding: 25px;
  }

  .index-news-list {
    margin-top: 60px;
  }

  .index-news {
    padding: 60px;
  }

  .rongSwiper-box {
    padding: 0 80px;
  }

  .rongSwiper-item {
    margin-right: 30px;
    padding: 30px;
  }

  .index-rong {
    padding: 60px;
  }

  .about-text {
    font-size: 16px;
    line-height: 28px;
    margin-top: 15px;
  }

  .about-item-l {
    padding: 30px 50px;
  }

  .about-name {
    font-size: 20px;
  }

  .about-chang {
    margin-top: 60px;
  }

  .about-chang-list {
    margin-top: 36px;
  }

  .about-wh-c {
    padding: 140px 0;
  }

  .about-wh-item-title {
    margin: 50px 0 25px 0;
    font-size: 26px;
  }

  .about-wh-item-text {
    margin-top: 20px;
    font-size: 18px;
    line-height: 40px;
  }

  .contact-top {
    padding: 60px 0 60px 0;

  }

  .contact-c {
    padding: 60px;
  }

  .contact-name {
    font-size: 30px;
  }

  .contact-x {
    margin: 15px 0 30px 0;
  }

  .contact-text {
    font-size: 22px;
    line-height: 40px;
  }

  .contact-map {
    height: 420px;
  }

  .productDetails-t-r {
    padding: 0 60px;
  }

  .productDetails-name {
    font-size: 30px;
  }

  .productDetails-type {
    font-size: 30px;
    margin-top: 15px;
  }

  .productDetails-text {
    font-size: 14px;
    line-height: 22px;
    margin: 60px 0 50px 0;
  }
}

@media (max-width: 1400px) {
  .global-nav {
    padding: 0 60px;
  }

  .global-nav .container-fluid .navbar-brand img {
    width: 80px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
    margin-left: 30px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
    font-size: 14px;
  }

  .global-nav .container-fluid .navbar-box .contact-phone {
    margin-left: 30px;
    font-size: 16px;
  }

  .global-footer-contact>img {
    width: 160px;
    height: 60px;
  }

  .footer-contact-b img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }

  .footer-contact-b {
    margin-top: 24px;
  }

  .contact-b-text {
    font-size: 14px;
  }

  .contact-b-phone {
    margin-top: 5px;
    font-size: 22px;
  }

  .global-footer-info-item {
    margin-top: 10px;
    font-size: 14px;
  }

  .global-footer-code-box {
    padding-left: 30px;
  }

  .global-footer-code-box img {
    margin-right: 10px;
    width: 80px;
    height: 80px;
  }

  .footer-code-box-title {
    font-size: 14px;
  }

  .footer-code-box-text {
    font-size: 12px;
  }

  .global-footer .footer-copyright .copy {
    font-size: 14px;
  }

  .global-footer .footer-copyright .copy a {
    font-size: 14px;
  }

  .global-footer .footer-body {
    padding-bottom: 40px;
  }

  .global-footer {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .footer-body {
    padding: 0 80px;
  }

  .global-banner {
    margin-top: 72px;
  }

  .product-class {
    font-size: 30px;
    margin-top: 30px;
  }

  .product-text {
    font-size: 16px;
    margin-top: 15px;
  }

  .product-t {
    font-size: 36px;
    margin-top: 20px;
  }

  .product-item1 {
    margin-right: 40px;
  }

  .product-class-item {
    padding: 15px 25px;
    margin-top: 15px;
    font-size: 16px
  }

  .product-item-name {
    font-size: 18px;
    margin-top: 30px;
    line-height: 24px;
  }

  .product-item-type {
    font-size: 18px;
    line-height: 24px;
  }

  .more {
    font-size: 16px;
    padding: 15px 35px;
  }

  .more img {
    width: 15px;
    height: 15px;
  }

  .about-box {
    padding: 40px 60px;
  }

  .index-about-video {
    display: block;
    width: calc(100% - 80px);
    margin: 0 auto;
    margin-top: 30px;
  }

  .index-about-right-top-r {
    display: none;
  }

  .index-about-right-top-l {
    width: 100%;
  }

  .index-about-right {
    width: 100%;
    padding: 50px 80px 40px 80px;
  }

  .index-about-c {
    width: 100%;
    margin-top: 25px;
  }

  .index-about-left-b {
    background-color: #3753A2;
    font-size: 20px;
    padding: 284px 55px;
  }

  .index-about-left-t {
    padding: 50px 25px;
    background-color: #084BC5;
  }

  .index-about-left-t img {
    width: 90px;
    height: 78px;
  }

  .index-about-right-b-item-b {
    margin-top: 10px;
    font-size: 14px;
    line-height: 14px;
    color: #000;
  }

  .index-about-title {
    font-size: 30px;
    line-height: 30px;
  }

  s .index-about-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 16px;
  }

  .index-about-right-b-item-t .num {
    font-size: 36px;
    line-height: 36px;
  }

  .index-about-right-b {
    padding-top: 40px;
  }



  .index-news-item-box:last-child {
    display: none;
  }

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

  .index-news-item-box {
    width: calc(33.33% - 24px);
    margin: 0 12px;

  }

  .rongSwiper-btn-box .rongSwiper-btn-next, .rongSwiper-btn-box .rongSwiper-btn-prev {
    width: 45px;
    height: 45px;
  }

  .rongSwiper {
    margin-top: 30px;
  }

  .about-text {
    font-size: 14px;
    line-height: 24px;
    margin-top: 15px;
  }

  .about-item {
    flex-direction: column;
  }

  .about-item-l {
    width: 100%;
    padding: 20px 40px;
    bottom: 0;
    position: relative;
  }

  .about-name {
    font-size: 20px;
  }

  .about-item-r {
    padding: 60px 0;
    width: 100%;
  }

  .about-num-item {
    margin-bottom: 60px;
  }

  .about-chang {
    margin-top: 40px;
  }

  .about-chang-list {
    margin: 0 -10px;
    margin-top: 25px;
  }

  .about-chang-item {
    width: calc(33.33% - 20px);
    margin: 10px;
  }

  .about-chang-more {
    margin-top: 40px;
  }

  .about-wh-c {
    padding: 120px 0;
  }

  .about-wh-item-title {
    margin: 40px 0 20px 0;
    font-size: 24px;
  }

  .about-wh-item-text {
    margin-top: 15px;
    font-size: 16px;

  }

  .product-nav {
    padding: 15px 20px;
  }

  .product-nav-item {
    margin: 3px 20px;
    font-size: 18px;
  }

  .contact-top {
    padding: 40px 0;
  }

  .contact-c {
    padding: 40px;
  }

  .contact-name {
    font-size: 24px;
  }

  .contact-x {
    width: 50px;
    height: 3px;
    margin: 12px 0 20px 0;
  }

  .contact-text {
    font-size: 16px;
    line-height: 32px;
  }

  .contact-map {
    height: 380px;
  }

  .contact-form-box {
    padding: 0px 60px 36px 60px;
  }

  .contact-form {
    width: 55%;
    padding-right: 50px;
  }

  .contact-form-t {
    margin: 0 -20px;
    flex-wrap: wrap;
  }

  .contact-form-b {
    margin-top: 10px;
  }

  .contact-form-box img {
    width: 45%;
  }

  .form-text {
    font-size: 16px;
    margin-bottom: 10px;
  }


  .form-item {
    width: calc(50% - 40px);
    margin: 0 20px;
    margin-bottom: 10px;
  }

  .form-item input {
    height: 40px;
    width: 100%;
  }

  .contact-form-b textarea {
    height: 70px;
    width: 100%;
  }

  .form-btn {
    margin-top: 20px;
    font-size: 16px;
    height: 45px;
  }

  .qualifications-box {
    margin: 0 -10px;
    margin-top: 60px;
  }

  .qualifications-item {
    width: calc(33.33% - 20px);
    margin: 0 10px !important;
    margin-bottom: 20px !important;
  }

  .productDetails-c {
    padding: 60px;
  }

  .productDetails-nav {
    height: 85px;
  }

  .productDetails-t-r {
    padding: 0 40px;

  }

  .productDetails-name {
    font-size: 24px;
  }

  .productDetails-type {
    font-size: 24px;
    margin-top: 10px;
  }

  .productDetails-text {
    font-size: 12px;
    line-height: 20px;
    margin: 40px 0 36px 0;
  }

  .back img {
    margin-right: 10px;
  }

  .newsDetails-title {
    font-size: 22px;
  }

  .newsDetails-time-g {
    padding: 20px 0;
  }
}

@media (max-width: 1200px) {
  .name {
    font-size: 18px;
  }

  ::-webkit-input-placeholder {
    font-size: 12px;
    line-height: 30px;
  }

  :-ms-input-placeholder {
    font-size: 12px;
    line-height: 30px;
  }

  ::placeholder {
    font-size: 12px;
    line-height: 30px;
  }

  .global-nav {
    padding: 0 50px;
  }

  .global-nav .container-fluid .navbar-brand img {
    width: 70px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav {
    margin-top: 100px;
    margin-bottom: 20px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
    margin: 0;
    padding: 0 40px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
    font-size: 16px;
    flex: 1;
    line-height: 40px;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -ms-transition: all .1s linear;
    -o-transition: all .1s linear;
    transition: all .1s linear;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a::before {
    display: none;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a:hover {
    color: #084BC5;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active {
    color: #fff;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a.active:hover {
    color: #084BC5;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list {
    height: 0;
    background-color: unset;
    line-height: 36px;
    padding: 0;
    position: unset;
    transform: translateX(0%);
    align-items: unset;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item {
    flex: 1;
    margin-left: 50px;
    padding-bottom: 0;
    position: relative;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item:hover {
    color: #084BC5 !important;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item:first-child {
    padding-top: 0;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item:last-child {
    padding-bottom: 0;
  }

  .global-nav .container-fluid .navbar-box .contact-phone {
    order: -1;
    margin-left: 0;
    margin-right: 30px;
  }

  .global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
    color: #fff;
  }

  .global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list {
    background-color: unset;
  }

  .global-nav.scroll-top .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item {
    color: #fff;
  }

  .global-footer .footer-copyright .copy {
    padding-top: 5px;
  }

  .global-footer .footer-copyright .link {
    padding-top: 8px;
  }

  .global-footer .footer-copyright .link .link-item {
    margin-left: 8px;
  }

  .index-banner .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }

  .product-class {
    font-size: 24px;
    margin-top: 20px;
  }

  .product-text {
    font-size: 16px;
    margin-top: 12px;
  }

  .product-t {
    font-size: 30px;
    margin-top: 15px;
  }

  .product-item1 {
    margin-right: 30px;
  }

  .product-class-item {
    padding: 12px 20px;
    margin-top: 12px;
    font-size: 14px
  }

  .product-item-name {
    font-size: 16px;
    margin-top: 20px;
    line-height: 24px;
  }

  .product-item-type {
    font-size: 16px;
    line-height: 24px;
  }

  .index-product-list {
    display: flex;
    margin-top: 25px;
  }


  .about-chang-more {
    margin-top: 30px;
  }

  .about-wh-c {
    padding: 80px 0;
  }

  .about-wh-item-title {
    margin: 20px 0 15px 0;
    font-size: 18px;
  }

  .about-wh-item-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 30px;
  }

  .about-wh-item img {
    width: 40px;
    height: 32px;
  }

  .productDetails-nav {
    height: 76.5px;
  }

  .productDetails-t-l {
    width: 45%;
  }

  .productDetails-t-r {
    padding: 0 30px;
    width: 55%;
  }

  .productDetails-name {
    font-size: 20px;
  }

  .productDetails-type {
    font-size: 20px;
    margin-top: 0px;
  }

  .productDetails-text {
    font-size: 12px;
    line-height: 18px;
    margin: 30px 0 25px 0;
  }

  .newsDetails-title {
    font-size: 20px;
  }

  .newsDetails-time-g {
    padding: 20px 0;
  }
}

@media (max-width: 992px) {
  .global-nav {
    padding: 0 40px;
  }

  .global-nav .container-fluid .navbar-brand img {
    margin-right: 10px;
  }

  .name {
    font-size: 16px;
  }

  .global-nav .container-fluid .navbar-brand img {
    width: 50px;
  }

  .global-footer .footer-body {
    padding-bottom: 30px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav {
    margin-top: 80px;
  }

  .footer-contact-b {
    display: none;
  }

  .global-footer-info {
    margin: 15px 0;
  }

  .footer-body {
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-body>div {
    width: 60%;
  }

  .global-footer-code-box {
    padding-left: 0px;
    border: none;
  }

  .global-banner {
    padding-top: 350px;
    margin-top: 62px;
  }

  .product-class {
    font-size: 20px;
    margin-top: 20px;
  }

  .product-text {
    font-size: 14px;
    margin-top: 12px;
  }

  .product-t {
    font-size: 26px;
    margin-top: 15px;
  }

  .product-item1 {
    margin-right: 25px;
  }

  .product-class-item {
    padding: 8px 20px;
    margin-top: 12px;
    font-size: 12px
  }

  .product-item-name {
    font-size: 14px;
    margin-top: 12px;
    line-height: 20px;
  }

  .product-item-type {
    font-size: 14px;
    line-height: 20px;
    margin-top: 0;
  }

  .product-item img {
    width: 25vw;
    height: auto;
  }

  .index-product-list {
    display: flex;
    margin-top: 20px;
  }

  .index-product-right {
    width: 30%;
  }

  .index-product {
    padding-left: 40px;
  }

  .product-item {
    padding-bottom: 30px;
    cursor: pointer;
  }

  .index-about-right {
    padding: 30px 60px 10px 60px;
  }

  .index-about-text {
    margin-top: 15px;
    font-size: 14px;
    line-height: 14px;
  }

  .index-about-c {
    border-radius: 5px;
    margin-top: 10px;
    padding: 25px 40px 25px 40px;
  }

  .index-about-info {
    margin-top: 15px;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 25px;
  }

  .more {
    font-size: 14px;
    padding: 12px 25px;
  }

  .more img {
    width: 12px;
    height: 12px;
  }

  .index-about-left-t {
    padding: 25px 15px;
  }

  .index-about-left-b {
    background-color: #3753A2;
    font-size: 16px;
    padding: 210px 48px;
  }

  .index-about-right-b-item-t .num {
    font-size: 30px;
    line-height: 30px;
  }

  .index-about-right-b-item-b {
    margin-top: 10px;
    font-size: 12px;
    line-height: 12px;
  }

  .index-about-right-b {
    padding-top: 10px;
  }

  .index-news {
    padding: 40px;
  }

  .index-news-list {
    margin: 0;
    margin-top: 40px;
    flex-direction: column;
  }

  .index-news-item-box {
    width: 100%;
    margin: 12px 0;
  }

  .index-news-item {
    transition: all .5s ease .1s;

    position: relative;
    padding: 0;
    background-color: #fff;
  }

  .index-news-item:hover {
    box-shadow: 0px 0px 10px #ddd;
    background-color: #eee;
  }

  .index-news-item-top {
    display: flex;
    justify-content: space-between;
  }

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

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

  .index-news-item-img {
    width: 35%;
    height: auto
  }

  .index-news-item-img img {
    width: 100%;
    height: 100%;
  }

  .index-news-item-r {
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 20px;
  }

  .index-news-item-r {
    margin-top: 0px;
  }

  .index-news-item-title {

    font-size: 16px;
    line-height: 22px;
    height: 22px;
  }

  .index-news-item-text {
    margin: 0;
    font-size: 14px;
    height: 36px;
    line-height: 18px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .index-news-item-more {
    font-size: 14px;
  }

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

  .rongSwiper-item-img {
    padding: 0px;
  }

  .rongSwiper-name {
    margin: 15px 0;
    font-size: 14px;
  }

  .rongSwiper-item {
    padding: 20px;
  }

  .rongSwiper-box {
    padding: 0 60px;
  }

  .index-rong {
    padding: 40px;
  }

  .rongSwiper-btn-box .rongSwiper-btn-next, .rongSwiper-btn-box .rongSwiper-btn-prev {
    width: 36px;
    height: 36px;
  }

  .rongSwiper-btn-box .rongSwiper-btn-next i, .rongSwiper-btn-box .rongSwiper-btn-prev i {
    font-size: 14px;
  }

  .rongSwiper-item-img>img {
    max-width: 190px;
  }

  .about-box {
    padding: 30px 40px;
  }

  .about-item-l {
    padding: 15px 25px;
  }

  .about-item-r {
    padding: 30px 0;
  }

  .about-num-item {
    margin-bottom: 30px;
  }

  .about-chang-more {
    margin-top: 25px;
  }

  .about-wh-c {
    padding: 40px 0 20px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-wh-item {
    width: 33.33%;
    margin-bottom: 30px;
  }



  .about-wh-item-title {
    margin: 15px 0 5px 0;
    font-size: 14px;
  }

  .about-wh-item-text {
    margin-top: 6px;
    font-size: 12px;
    line-height: 26px;
  }

  .about-wh-item img {
    width: 36px;
    height: 28px;
  }

  .product-nav {
    padding: 12px 25px;
  }

  .product-nav-item {
    margin: 3px 15px;
    font-size: 16px;
  }

  .contact-c {
    padding: 30px;
    flex-direction: column;

  }

  .contact-top {
    padding: 40px 0;
  }

  .contact-c-left {
    width: 100%;
    margin-bottom: 20px;
  }

  .contact-name {
    font-size: 20px;
  }

  .contact-x {
    width: 50px;
    height: 3px;
    margin: 10px 0 15px 0;
  }

  .contact-text {
    font-size: 14px;
    line-height: 28px;
  }

  .contact-map {
    width: 100%;
    height: 300px;
  }

  .contact-c-b {
    display: flex;
  }

  .contact-c-b div {
    width: 50%;
    padding-right: 15px;
  }

  .contact-form-box {
    padding: 0px 40px 25px 40px;
    flex-direction: column-reverse;
  }

  .contact-form {
    width: 100%;
    margin-top: 15px;
    padding-right: 0px;
  }

  .contact-form-t {
    margin: 0 -15px;
    flex-wrap: wrap;
  }

  .contact-form-box img {
    width: 100%;
  }

  .form-text {
    font-size: 14px;
    margin-bottom: 10px;
  }


  .form-item {
    width: calc(33.33% - 30px);
    margin: 0 15px;
    margin-bottom: 10px;
  }

  .form-item input {
    height: 40px;
    width: 100%;
    font-size: 14px;
  }

  .contact-form-b textarea {
    height: 70px;
    width: 100%;
    font-size: 14px;
  }

  .form-btn {
    margin-top: 20px;
    font-size: 14px;
    height: 36px;
  }

  .qualifications-box {
    margin-top: 40px;
  }

  .qualifications-item {
    width: calc(50% - 20px);
    margin: 0 10px !important;
    margin-bottom: 20px !important;
  }

  .productDetails-c {
    padding: 40px;
  }

  .productDetails-nav {
    height: 60.36px;
  }

  .productDetails-t-r {
    padding: 0 25px;
  }

  .productDetails-name-type {
    display: flex;
  }

  .productDetails-name {
    font-size: 16px;
    margin-right: 10px;
  }

  .productDetails-type {
    font-size: 16px;
    margin-top: 0px;
  }

  .productDetails-text {
    margin: 10px 0 15px 0;
  }

  .contact-map .map-sign-box {
    width: 60px;
    height: 60px;
  }

  .contact-map .map-sign-box img {
    width: 40px;
  }

  .global-pagination-box {
    margin-top: 30px;
  }

  .global-pagination {
    font-size: 16px;
  }

  .global-pagination a {
    height: 50px;
    line-height: 50px;
  }

  .newsDetails-title {
    font-size: 18px;
  }

  .newsDetails-time-g {
    padding: 10px 0;
  }

  .newsDetails-time-g span {

    margin: 0 5px;
  }

  .newsDetails-c {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .global-nav {
    padding: 0 30px;
  }

  .about-wh-item-text {

    line-height: 22px;
  }

  .about-item-r img {
    width: 40%;
    height: auto;
  }

  .name {
    font-size: 14px;
  }

  .global-nav .container-fluid .navbar-brand img {
    width: 50px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav {
    margin-top: 70px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
    padding: 0 30px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .li-a-box .li-a {
    font-size: 14px;
    line-height: 36px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list {
    line-height: 32px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item {
    margin-left: 30px;
  }

  .global-footer .footer-body {
    padding-bottom: 15px;
  }

  .global-footer .footer-copyright .copy {
    flex-direction: column;
  }

  .global-footer-info-item {
    margin-top: 6px;
    font-size: 14px;
  }

  .footer-body>div {
    width: 85%;
  }

  .global-banner {
    padding-top: 300px;
    margin-top: 58px;
  }

  .global-footer {
    padding-top: 25px;
    padding-bottom: 20px;
  }

  .index-banner .swiper-pagination {
    bottom: 30px;
    left: 8%;
  }

  .index-banner .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }

  .index-about-video {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
  }

  .product-class {
    font-size: 20px;
    margin-top: 10px;
  }

  .product-text {
    font-size: 14px;
    margin-top: 5px;
  }

  .index-product-list {
    margin-top: 10px;
  }

  .product-t {
    font-size: 22px;
    line-height: 30px;
    margin-top: 10px;
  }

  .index-product {
    padding: 0;
    flex-direction: column-reverse;
  }

  .index-product-left {
    padding: 0px 30px;
  }

  .index-product-right {
    width: 100%;
    margin: 0 -10px;
    padding: 20px 30px 5px 30px;
    display: flex;
    flex-wrap: wrap;
  }

  .product-class-item {
    margin: 5px 10px;
    border-radius: 5px;
  }

  .product-class-item i {
    display: none;
  }

  .product-item {
    padding-bottom: 20px;
    width: 50%;
  }

  .product-item img {
    width: 100%;
    height: auto;
  }

  .index-product {
    padding-bottom: 10px;
  }

  .index-about-right {
    padding: 20px 20px 25px 20px;
  }

  .index-about-title {
    font-size: 24px;
    line-height: 24px;
  }

  .index-about-c {
    margin-top: 15px;
    padding: 25px;
  }

  .index-about-name {
    font-size: 18px;
    line-height: 18px;
  }

  .more {
    font-size: 12px;
    padding: 10px 20px;
  }

  .more img {
    width: 10px;
    height: 10px;
  }

  .index-about {
    flex-direction: column;
  }

  .index-about-left {
    display: flex;
  }

  .index-about-left-t {
    padding: 10px;
  }

  .index-about-left-t img {
    width: 70px;
    height: 60px;
  }

  .index-about-left-b {
    background-color: #3753A2;
    font-size: 14px;
    padding: 20px 0;
    width: calc(100% - 90px);
    writing-mode: horizontal-tb;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .index-about-left-b p {
    margin: 0 20px;
  }

  .index-about-right-b-item-t .num {
    font-size: 24px;
    line-height: 24px;
  }

  .index-about-right-b {
    padding-top: 20px;
  }

  .product-item1 {
    margin-right: 15px;
  }

  .news .index-news-list {
    margin-top: 30px !important;
  }

  .index-news-list {
    margin-top: 25px;
  }

  .index-news-item-box {
    width: 100%;
    margin: 5px 0;
  }

  .index-news-item {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .index-news-item-text {
    font-size: 12px;
    height: 32px;
    line-height: 16px;
  }

  .index-news {
    padding: 25px 16px 16px 16px;
  }

  .index-rong {
    padding: 25px 16px 16px 16px;
  }

  .rongSwiper-box {
    padding: 0 50px;
  }

  .rongSwiper {
    margin-top: 20px;
  }

  .about-box {
    padding: 25px 16px;
  }

  .about-item-l {
    padding: 10px 16px;
  }

  .about-chang {
    margin-top: 25px;
  }

  .about-chang-list {
    margin: 0 -8px;
    margin-top: 15px;
  }

  .about-chang-item {
    width: calc(50% - 16px);
    margin: 8px;
  }

  .about-chang-more {
    margin-top: 15px;
  }


  .contact-c {
    padding: 20px;
  }

  .contact-top {
    padding: 25px 0;
  }

  .contact-c-left {
    width: 100%;
    margin-bottom: 15px;
  }

  .contact-name {
    font-size: 16px;
  }

  .contact-x {
    width: 40px;
    height: 2px;
    margin: 10px 0;
  }

  .contact-text {
    font-size: 12px;
    line-height: 24px;
  }

  .contact-map {
    width: 100%;
    height: 280px;
  }

  .contact-c-b {
    display: flex;
    flex-direction: column;
  }

  .contact-c-b div {
    width: 100%;
    padding-right: 15px;
  }


  .contact-form-box {
    padding: 0px 16px 20px 16px;
    flex-direction: column-reverse;
  }

  .contact-form {
    margin-top: 10px;

  }

  .contact-form-t {
    margin: 0;
    flex-wrap: wrap;
  }

  .contact-form-b {
    margin: 0;
  }

  .form-text {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .form-item {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
  }

  .form-item input {
    height: 30px;
    font-size: 12px;
  }

  .contact-form-b textarea {
    height: 60px;
    font-size: 12px;
  }

  .form-btn {
    margin-top: 15px;
    font-size: 12px;
    height: 30px;
  }

  .qualifications-box {

    margin: 0 -8px;
    margin-top: 25px;
  }

  .qualifications-item {
    width: calc(50% - 16px);
    margin: 0 8px !important;
    margin-bottom: 20px !important;
  }

  .productDetails-c {
    padding: 25px 16px;
  }

  .productDetails-t {
    flex-direction: column;
  }

  .productDetails-t-l {
    width: 100%;
  }

  .productDetails-t-r {
    width: 100%;
    padding: 16px;
  }

  .productDetails-name-type {
    display: block;
  }

  .productDetails-name {
    font-size: 16px;
    margin-right: 10px;
  }

  .productDetails-type {
    font-size: 16px;
    margin-top: 0px;
  }

  .productDetails-text {
    margin: 10px 0 15px 0;
  }

  .global-pagination a {
    height: 36px;
    line-height: 36px;
  }

  .global-pagination .next, .global-pagination .pro {
    width: 36px;
    font-size: 20px;
  }

  .global-pagination {
    font-size: 14px;
    margin-top: 10px;
  }

  .newsDetails-title {
    font-size: 16px;
  }

  .newsDetails-time-g {
    padding: 6px 0;
  }
}

@media (max-width: 576px) {
  ::-webkit-input-placeholder {
    line-height: 40px;
  }

  .name {
    font-size: 12px;
  }

  :-ms-input-placeholder {
    line-height: 40px;
  }

  ::placeholder {
    line-height: 40px;
  }

  .global-nav {
    padding: 0 20px;
  }

  .index-banner .swiper-slide .banner-word {
    top: 55%;
  }

  .global-nav .container-fluid .navbar-brand {
    padding: 0;
    margin: 5px 10px;
  }

  .global-nav .container-fluid .navbar-brand img {
    width: 45px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav {
    margin-top: 50px;
    margin-bottom: 15px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li {
    padding: 0 20px;
  }

  .global-nav .container-fluid .navbar-box .navbar-collapse .navbar-nav .nav-li .nav-hide-list .hide-item {
    margin-left: 25px;
  }

  .global-nav .container-fluid .navbar-box .contact-phone {
    display: none;
  }

  .global-banner {
    padding-top: 120px;
    margin-top: 42px;
  }

  .global-title .bg {
    font-size: 30px;
  }

  .global-title .title {
    font-size: 18px;
  }

  .index-banner .swiper-pagination {
    display: none;
  }

  .index-about-video .play {
    width: 36px;
    height: 36px;
  }

  .index-product-left {
    padding: 0px 16px;
  }

  .index-product-right {
    padding: 16px 16px 5px 16px;
  }

  .product-class-item {
    margin: 5px 10px;
    padding: 8px 10px;
    border-radius: 5px;
  }

  .product-item-name {
    font-size: 12px;
    margin-top: 12px;
    line-height: 18px;
  }

  .product-item-type {
    font-size: 12px;
    line-height: 12px;
    margin-top: 6px;
  }

  .index-about-info {
    margin-top: 15px;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 20px;
  }

  .index-about-right {
    padding: 20px 16px;
  }

  .index-news-item-r {

    padding: 10px 15px;
  }

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

  .index-news-item-more {
    font-size: 12px;
  }

  .index-news-item-more img {
    width: 10px;
    height: 10px;
    margin-left: 6px;
  }


  .index-news-item-title {
    font-size: 14px;
    line-height: 20px;
    height: 20px;
  }

  .index-about-title {
    font-size: 20px;
    line-height: 20px;
  }

  .index-about-text {
    margin-top: 10px;
    font-size: 12px;
    line-height: 12px;
  }

  .rongSwiper {
    margin-top: 15px;
  }

  .about-item {
    background-color: #fff;
  }

  .about-item-r {
    background-color: #084BC5;
  }

  .about-box {
    padding: 15px 16px;
  }

  .about-wh-item {
    width: 50%;
    margin-bottom: 30px;
  }

  .about-wh-c {
    padding: 30px 0 10px 0;
  }

  .product-nav {
    padding: 12px 16px;
  }

  .product-nav-item {
    margin: 3px 15px;
    font-size: 14px;
  }

  .contact-c {
    padding: 16px;
  }

  .contact-top {
    padding: 20px 0;
  }

  .qualifications-item .rongSwiper-item-img {
    padding: 0 15px;
  }

  .qualifications-item {
    padding: 15px 0;
  }

  .productDetails-nav {
    height: 46.33px;
  }

  .global-pagination-box {
    margin-top: 20px;
  }

  .newsDetails-title {
    font-size: 14px;
  }

  .newsDetails-time-g {
    padding: 6px 0;
  }

  .newsDetails-c {
    font-size: 12px;
  }

}