@charset 'UTF-8';

@-webkit-keyframes amplify {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(.4);
    transform: translate(-50%, -50%) scale(.4);

    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);

    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes amplify {
  0% {
    -moz-transform: translate(-50%, -50%) scale(.4);
    transform: translate(-50%, -50%) scale(.4);

    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);

    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes amplify {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(.4);
    -moz-transform: translate(-50%, -50%) scale(.4);
    transform: translate(-50%, -50%) scale(.4);

    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);

    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes float {
  0% {
    /* opacity: 0; */
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }

  50% {
    -webkit-transform: translate3d(0, -30px, -30px);
    transform: translate3d(0, -30px, 0);
  }

  100% {
    /* -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0) */
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-moz-keyframes float {
  0% {
    /* opacity: 0; */
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }

  50% {
    -webkit-transform: translate3d(0, -30px, -30px);
    -moz-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  100% {
    /* -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0) */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes float {
  0% {
    /* opacity: 0; */
    -webkit-transform: translate3d(0, 30px, 0);
    -moz-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }

  50% {
    -webkit-transform: translate3d(0, -30px, -30px);
    -moz-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  100% {
    /* -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0) */
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.float {
  -webkit-animation-name: float;
  -moz-animation-name: float;
  animation-name: float;
  -webkit-animation-timing-function: linear;
  -moz-animation-timing-function: linear;
  animation-timing-function: linear;
  /* animation: float 5s  infinite;
  -webkit-animation: float 5s infinite; */
}

@-webkit-keyframes amplify2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(.4);
    transform: translate(-50%, -50%) scale(.4);

    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);

    opacity: .8;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes amplify2 {
  0% {
    -moz-transform: translate(-50%, -50%) scale(.4);
    transform: translate(-50%, -50%) scale(.4);

    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);

    opacity: .8;
  }

  100% {
    opacity: 0;
  }
}

@keyframes amplify2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(.4);
    -moz-transform: translate(-50%, -50%) scale(.4);
    transform: translate(-50%, -50%) scale(.4);

    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  75% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);

    opacity: .8;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes framesWidth {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@-moz-keyframes framesWidth {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes framesWidth {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes framesHeight {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

@-moz-keyframes framesHeight {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

@keyframes framesHeight {
  0% {
    height: 0;
  }

  100% {
    height: 100%;
  }
}

@-webkit-keyframes mySvg {
  0% {
    stroke-dashoffset: 167;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-moz-keyframes mySvg {
  0% {
    stroke-dashoffset: 167;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes mySvg {
  0% {
    stroke-dashoffset: 167;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotate {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes move {
  from {
    margin-left: 0;

    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    margin-left: 60%;

    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes move {
  from {
    margin-left: 0;

    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    margin-left: 60%;

    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes move {
  from {
    margin-left: 0;

    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    margin-left: 60%;

    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-moz-keyframes scale {
  0% {
    -moz-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}

ul,
li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.content1440 {
  width: 75vw;
  margin: 0 auto;
}

/* 内页banner */



.pcImg { display: none; }

.mImg { display: block; }

@media (min-width: 768px) { .header .commonMain { padding: 0vw 3.125vw; }

  .pcImg { display: block; }
  .mImg { display: none; }
  .indexTitleBox{-webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;}
}


.detailBanner {
  position: relative;
}

.detailBanner .image {
  position: relative;

  padding-top: 30.2%;
  overflow: hidden;
}

.detailBanner .image img {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  -o-object-fit: cover;
  object-fit: cover;

  -webkit-animation: scale 7s ease;
  -moz-animation: scale 7s ease;
  animation: scale 7s ease;
}

.detailBanner .content {
  position: absolute;
  top: 50%;
  left: 50%;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.detailBanner .content .title {
  font-size: 2.39583vw;
  font-weight: bold;

  margin-bottom: .88542vw;

  color: #fff;
}

.detailBanner .content .desc {
  font-size: .83333vw;
  line-height: 1.25vw;

  width: 36.45833vw;

  color: rgba(255, 255, 255, .9);

  text-align: justify;
}

/* 内页分类 */
.detailList {
  position: relative;
  z-index: 98;

  height: 3.38542vw;
  margin-bottom: -3.38542vw;
  padding: 0 4.6875vw;

  -webkit-transition: .8s ease;
  -moz-transition: .8s ease;
  transition: .8s ease;

  border-bottom: 1px solid rgba(180, 194, 204, .2);
}

.detailList.fixed {
  position: fixed;
  top: 5.2083vw;
  left: 0;

  width: 100%;

  border-top: 1px solid rgba(180, 194, 204, .2);
  background-color: rgba(255, 255, 255, .8);

  -webkit-backdrop-filter: blur(.41667vw);
  backdrop-filter: blur(.41667vw);
}

.detailList.fixed .detailListMain ul li::after {
  background-color: rgba(180, 194, 204, .2);
}

.detailList.up {
  top: 0;
}

.detailList .detailListMain ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.detailList .detailListMain ul li {
  position: relative;

  text-align: center;

  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.detailList .detailListMain ul li::after {
  position: absolute;
  top: 50%;
  right: 0;

  display: block;

  width: 1px;
  height: 1.04167vw;

  content: '';
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);

  background: #f0f3f5;
}

.detailList .detailListMain ul li:last-child::after {
  display: none;
}

.detailList .detailListMain ul li a {
  font-size: .72917vw;
  line-height: 3.38542vw;

  position: relative;

  display: inline-block;

  height: 3.38542vw;

  -webkit-transition: none;
  -moz-transition: none;
  transition: none;

  color: #3b3b3b;
}

.detailList .detailListMain ul li a::after {
  position: absolute;
  bottom: 0;
  left: 50%;

  display: block;
  visibility: hidden;

  width: -webkit-calc(100% + .52083vw);
  width: -moz-calc(100% + .52083vw);
  width: calc(100% + .52083vw);
  height: .10417vw;

  content: '';
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);

  opacity: 0;
  background: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(#0071b8), to(transparent));
  background: -webkit-linear-gradient(right, transparent, #0071b8, transparent);
  background: -moz-linear-gradient(right, transparent, #0071b8, transparent);
  background: linear-gradient(to left, transparent, #0071b8, transparent);
}

.detailList .detailListMain ul li a.active,
.detailList .detailListMain ul li a:hover {
  font-weight: bold;
}

.detailList .detailListMain ul li a.active::after,
.detailList .detailListMain ul li a:hover::after {
  visibility: visible;

  opacity: 1;
}

/* 内页标题 */
.detailTitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
}

.detailTitle.detailTitleSmall .title {
  font-size: 2.28125vw;

  margin-bottom: 1.09375vw;
}

.detailTitle .title {
  font-size: 2.39583vw;
  font-weight: bold;

  margin-bottom: 1.5625vw;

  color: #333;
}

.detailTitle .line {
  position: relative;

  width: 4.375vw;
  height: .3125vw;

  background: #0071b8;
}

.detailTitle .line::after {
  position: absolute;
  top: 0;
  right: 0;

  display: block;

  width: 1.14583vw;
  height: 100%;

  content: '';

  background: #00a13a;
}

/* 关于我们 */
.aboutusBg {
  min-height: 83.95833vw;
  padding-top: 8.07292vw;
  padding-bottom: 6.25vw;
}

.aboutusBg .aboutus .aboutusNumber {
  margin-top: .46875vw;
  padding: 1.5625vw 0 2.44792vw;

  background: url('../images/mapbg.png') no-repeat center;
}

.aboutusBg .aboutus .aboutusNumber ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.aboutusBg .aboutus .aboutusNumber ul li {
  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  width: 25%;
  height: 7.29167vw;
  margin: .78125vw 0;

  text-align: center;

  border-right: 1px solid #e3e8ec;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
}

.aboutusBg .aboutus .aboutusNumber ul li::after {
  position: absolute;
  bottom: -.78125vw;
  left: 0;

  display: block;

  width: 100%;
  height: 1px;

  content: '';

  background-color: #e3e8ec;
}

.aboutusBg .aboutus .aboutusNumber ul li:nth-child(4n+4) {
  border-right: 0;
}

.aboutusBg .aboutus .aboutusNumber ul li:nth-last-child(-n+4)::after {
  display: none;
}

.aboutusBg .aboutus .aboutusNumber ul li b {
  font-size: 2.60417vw;
  font-weight: bold;

  color: #333;
}

.aboutusBg .aboutus .aboutusNumber ul li p {
  font-size: .72917vw;

  margin-top: .10417vw;
  margin-bottom: .78125vw;

  color: #898989;
}

.aboutusBg .aboutus .aboutusVideo {
  position: relative;

  margin-bottom: 5.20833vw;
}

.aboutusBg .aboutus .aboutusVideo .image video {
  width: 100%;
  height: auto;
}

.aboutusBg .aboutus .aboutusVideo .play {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 3.22917vw;
  height: 3.22917vw;

  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  background: url('../images/icon-play.png') no-repeat;
  background-size: 3.22917vw;
}

.aboutusBg .aboutus .aboutusContent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.aboutusBg .aboutus .aboutusContent .title {
  font-size: 2.39583vw;
  font-weight: bold;
  line-height: 2.91667vw;

  margin-right: 7.29167vw;

  color: #333;

  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.aboutusBg .aboutus .aboutusContent .content {
  font-size: .83333vw;
  line-height: 1.35417vw;

  width: 49.47917vw;

  color: #898989;

  text-align: justify;
}

/* 分公司 */
.branchOffice {
  overflow: hidden;

  margin-top: 4.42708vw;
  margin-bottom: 3.48958vw;
}

.branchOffice .detailTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.branchOffice .branchOfficeSwiper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.branchOffice .branchOfficeMain {
  width: 36.45833vw;
  margin-top: 5.20833vw;
}

.branchOffice .branchOfficeMain .swiper-slide {
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.branchOffice .branchOfficeMain .swiper-slide:hover .image .pic img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.branchOffice .branchOfficeMain .swiper-slide .image {
  position: relative;
}

.branchOffice .branchOfficeMain .swiper-slide .image .pic {
  overflow: hidden;
}

.branchOffice .branchOfficeMain .swiper-slide .image .pic img {
  width: 100%;
  height: auto;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.branchOffice .branchOfficeMain .swiper-slide .image .round {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;

  visibility: hidden;

  width: 6.25vw;
  height: 6.25vw;

  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;

  opacity: 0;
  border-radius: 50%;
}

.branchOffice .branchOfficeMain .swiper-slide .image .round svg {
  font-size: .96354vw;

  display: block;
  overflow: visible;

  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}

.branchOffice .branchOfficeMain .swiper-slide .image .round path {
  fill: none;
}

.branchOffice .branchOfficeMain .swiper-slide .image .round textpath {
  fill: #0071b8;
}

.branchOffice .branchOfficeMain .swiper-slide .content {
  visibility: hidden;

  margin-top: 1.66667vw;

  opacity: 0;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.branchOffice .branchOfficeMain .swiper-slide .content .title {
  font-size: 1.14583vw;
  font-weight: bold;

  margin-bottom: .3125vw;
  padding-left: 1.77083vw;

  color: #000;
  background: url('../images/title2-icon.png') no-repeat .20833vw;
  background-size: 1.30208vw;
}

.branchOffice .branchOfficeMain .swiper-slide .content .more {
  font-size: .72917vw;

  margin-left: 1.77083vw;

  color: #0071b8;
}

.branchOffice .branchOfficeMain .swiper-slide .content .more i {
  font-size: .72917vw;

  margin-left: 2.13542vw;
}

.branchOffice .branchOfficeMain .swiper-slide:hover {
  margin-top: -3.125vw;
}

.branchOffice .branchOfficeMain .swiper-slide:hover .image .round {
  visibility: visible;

  -webkit-transition: all .6s ease .2s;
  -moz-transition: all .6s ease .2s;
  transition: all .6s ease .2s;

  opacity: 1;
}

.branchOffice .branchOfficeMain .swiper-slide:hover .content {
  visibility: visible;

  -webkit-transition: all .6s ease .2s;
  -moz-transition: all .6s ease .2s;
  transition: all .6s ease .2s;

  opacity: 1;
}

.branchOffice .branchOfficeMain .swiper-pagination {
  display: none;
}

/* 发展历程 */
.historyBg {
  padding: 7.29167vw 0;
}

.historyBg .history ul {
  position: relative;
}

.historyBg .history ul::after {
  position: absolute;
  top: -.13021vw;
  left: -webkit-calc(50% - .23438vw);
  left: -moz-calc(50% - .23438vw);
  left: calc(50% - .23438vw);

  display: block;

  width: .57292vw;
  height: .57292vw;

  content: '';

  border: 1px solid rgba(0, 113, 184, .3);
  border-radius: 50%;
}

.historyBg .history ul li {
  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  padding: 4.16667vw 0;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.historyBg .history ul li:nth-child(odd) {
  flex-direction: row-reverse;

  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
}

.historyBg .history ul li:last-child {
  padding-bottom: 0;
}

.historyBg .history ul li:last-child::after {
  height: -webkit-calc(100% - 4.16667vw);
  height: -moz-calc(100% - 4.16667vw);
  height: calc(100% - 4.16667vw);
}

.historyBg .history ul li::after {
  position: absolute;
  top: 0;
  left: 50%;

  display: block;

  width: 1px;
  height: 100%;

  content: '';

  background-color: #eee;
}

.historyBg .history ul li::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: -webkit-calc(50% - .07813vw);
  left: -moz-calc(50% - .07813vw);
  left: calc(50% - .07813vw);

  display: block;

  width: .26042vw;
  height: .26042vw;

  content: '';

  border-radius: 50%;
  background-color: #0071b8;
}

.historyBg .history ul li:hover .content .more {
  visibility: visible;

  opacity: 1;
}

.historyBg .history ul li .image {
  position: relative;

  width: 50%;
}

.historyBg .history ul li .image:hover img {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

.historyBg .history ul li .image div {
  overflow: hidden;
}

.historyBg .history ul li .image img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: auto;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.historyBg .history ul li .image .year {
  font-size: 5.20833vw;
  font-weight: lighter;

  position: absolute;
  top: 2.23958vw;
  left: 4.42708vw;

  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);

  color: #e3e8ec;
}

.historyBg .history ul li .content {
  width: 37.43%;
}

.historyBg .history ul li .content .title {
  font-size: 1.45833vw;
  font-weight: bold;

  margin-bottom: .9375vw;

  color: #000;
}

.historyBg .history ul li .content .desc {
  font-size: .9375vw;
  line-height: 1.5625vw;

  margin-bottom: 1.77083vw;

  color: rgba(0, 0, 0, .6);

  text-align: justify;
}

.historyBg .history ul li .content .more {
  font-size: .72917vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;

  width: 8.28125vw;
  height: 2.76042vw;

  cursor: pointer;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  transition: .4s;

  opacity: 0;
  color: #0071b8;
  border: .10417vw solid #0071b8;
  border-radius: 1.35417vw;

  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.historyBg .history ul li .content .more:hover {
  color: #fff;
  background-color: #0071b8;
}

.historyBg .history ul li .content .more i {
  margin-left: 2.39583vw;
}

/* 发展历程弹窗 */
.historyPopupContainer {
  width: 75vw;
  height: 42.70833vw;
}

.historyPopup {
  position: relative;

  width: 100%;
  height: 56.9444vw;
  padding: 6.9444vw 4.9306vw 0;

  cursor: pointer;
}

.historyPopup .historyPopupClose {
  font-size: 1.1111vw;
  font-weight: bold;

  position: absolute;
  top: 2.0833vw;
  right: 2.0833vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 2.5694vw;
  height: 2.5694vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #9a9a9a;
  border: .1389vw solid #9a9a9a;
  border-radius: 50%;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.historyPopup .historyPopupClose:hover {
  color: #fff;
  border-color: #0071b8;
  background-color: #0071b8;
}

.historyPopup .historyPopupYear {
  font-size: 6.9444vw;
  font-weight: lighter;

  margin-bottom: -2.2222vw;

  color: #e3e8ec;
}

.historyPopup .historyPopupMain {
  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  background: #f0f3f6 url('../images/hpbg.jpg') no-repeat top right;
  background-size: auto 100%;

  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.historyPopup .historyPopupMain .images {
  overflow: hidden;

  width: 44.0972vw;

  -webkit-box-shadow: 0 1.1111vw 1.4583vw .2083vw rgba(128, 160, 183, .3);
  box-shadow: 0 1.1111vw 1.4583vw .2083vw rgba(128, 160, 183, .3);
}

.historyPopup .historyPopupMain .images .swiper-slide {
  opacity: 0 !important;
}

.historyPopup .historyPopupMain .images .swiper-slide-active {
  opacity: 1 !important;
}

.historyPopup .historyPopupMain .images .swiper-slide img {
  width: 100%;
  height: auto;
}

.historyPopup .historyPopupMain .contents {
  position: relative;

  overflow: hidden;

  height: 22.5685vw;
  margin-top: 6.3889vw;

  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.historyPopup .historyPopupMain .contents .swiper-slide {
  /* opacity: 0 !important; */
  height: auto !important;
  margin-bottom: 1.3806vw;
  padding-right: 2.4306vw;
  padding-left: 4.5139vw;
}

.historyPopup .historyPopupMain .contents .swiper-slide:last-child {
  margin-bottom: 0;
}

.historyPopup .historyPopupMain .contents .swiper-slide-active {
  /* opacity: 1 !important; */
}

.historyPopup .historyPopupMain .contents .swiper-slide .title {
  font-size: 1.9444vw;
  font-weight: bold;

  margin-bottom: 1.1806vw;

  color: #000;
}

.historyPopup .historyPopupMain .contents .swiper-slide .desc {
  font-size: 1.1806vw;
  line-height: 2.0833vw;

  overflow-y: auto;

  max-height: 14.5833vw;
  padding-right: 1.0417vw;

  color: rgba(0, 0, 0, .6);

  text-align: justify;
}

.historyPopup .historyPopupMain .contents .swiper-slide .desc::-webkit-scrollbar {
  width: .2083vw;
  height: .2083vw;

  background-color: #d5d5d5;
}

.historyPopup .historyPopupMain .contents .swiper-slide .desc::-webkit-scrollbar-track {
  border-radius: .2083vw;
  background-color: #d5d5d5;
  -webkit-box-shadow: inset 0 0 .10417vw r gba(0, 0, 0, .1);
}

.historyPopup .historyPopupMain .contents .swiper-slide .desc::-webkit-scrollbar-thumb {
  border-radius: .2083vw;
  background-color: #0071b8;
  -webkit-box-shadow: inset 0 0 .10417vw rgba(0, 0, 0, .1);
}

.historyPopup .historyPopupMain .contents .swiper-slide .desc p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.historyPopup .historyPopupMain .contents .swiper-slide .desc p::before {
  font-size: 1.3889vw;
  font-weight: bold;

  display: block;

  margin-right: .3472vw;

  content: '·';
}

.historyPopup .historyPopupMain .swiper-button-prev,
.historyPopup .historyPopupMain .swiper-button-next {
  font-size: 1.1111vw;

  top: auto;
  bottom: 3.8889vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 3.3333vw;
  height: 3.3333vw;
  margin-top: 0;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #aeb0b2;
  border: 1px solid #aeb0b2;
  border-radius: 50%;
  background: none;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.historyPopup .historyPopupMain .swiper-button-prev:hover,
.historyPopup .historyPopupMain .swiper-button-next:hover {
  color: #fff;
  border-color: #0071b8;
  background-color: #0071b8;
}

.historyPopup .historyPopupMain .swiper-button-prev {
  left: 48.6111vw;
}

.historyPopup .historyPopupMain .swiper-button-next {
  left: 52.6389vw;
}

.historyPopup .historyPopupMain .swiper-pagination {
  display: none;
}

/* 子分公司详情 */
.subsidiaryDetail {
  margin-top: 8.28125vw;
  margin-bottom: 6.25vw;
}

.subsidiaryDetail .subsidiaryDetailTitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  margin-bottom: 3.54167vw;

  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.subsidiaryDetail .subsidiaryDetailTitle .detailTitle {
  width: 29%;

  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.subsidiaryDetail .subsidiaryDetailTitle .content {
  width: 58.88%;
}

.subsidiaryDetail .subsidiaryDetailTitle .content .desc {
  font-size: .83333vw;
  line-height: 1.25vw;

  color: #717373;

  text-align: justify;
}

.subsidiaryDetail .subsidiaryDetailTitle .content .more {
  font-size: .72917vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 8.28125vw;
  height: 2.76042vw;
  margin-top: 1.875vw;

  cursor: pointer;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  transition: .4s;

  color: #0071b8;
  border: .10417vw solid #0071b8;
  border-radius: 1.35417vw;

  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.subsidiaryDetail .subsidiaryDetailTitle .content .more:hover {
  color: #fff;
  background-color: #0071b8;
}

.subsidiaryDetail .subsidiaryDetailTitle .content .more i {
  margin-left: 2.39583vw;
}

.subsidiaryDetail .subsidiaryDetailMain {
  position: relative;
}

.subsidiaryDetail .subsidiaryDetailMain video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.subsidiaryDetail .subsidiaryDetailMain .play {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 3.22917vw;
  height: 3.22917vw;

  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  background: url('../images/icon-play.png') no-repeat;
  background-size: 3.22917vw;
}

/* 党支部设置 */
.partyIntroBg {
  padding-top: 9.53125vw;
  padding-bottom: 5.20833vw;
}

.partyIntroBg .partyIntro {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.partyIntroBg .partyIntro .left {
  width: 49.3%;
}

.partyIntroBg .partyIntro .left .detailTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.partyIntroBg .partyIntro .left .detailTitle .line {
  background-color: #d52932;
}

.partyIntroBg .partyIntro .left .detailTitle .line::after {
  display: none;
}

.partyIntroBg .partyIntro .left .desc {
  font-size: .83333vw;
  line-height: 1.35417vw;

  margin-top: 2.13542vw;
  margin-bottom: 2.29167vw;

  color: #898989;

  text-align: justify;
}

.partyIntroBg .partyIntro .left .number ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.partyIntroBg .partyIntro .left .number ul li {
  text-align: center;

  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.partyIntroBg .partyIntro .left .number ul li b {
  font-size: 2.60417vw;
  font-weight: bold;

  color: #333;
}

.partyIntroBg .partyIntro .left .number ul li p {
  font-size: .72917vw;

  margin-top: .10417vw;

  color: #898989;
}

.partyIntroBg .partyIntro .left .more {
  font-size: .72917vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 8.28125vw;
  height: 2.76042vw;
  margin-top: 2.91667vw;

  cursor: pointer;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  transition: .4s;

  color: #d52932;
  border: .10417vw solid #d52932;
  border-radius: 1.35417vw;

  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partyIntroBg .partyIntro .left .more:hover {
  color: #fff;
  background-color: #d52932;
}

.partyIntroBg .partyIntro .left .more i {
  margin-left: 2.39583vw;
}

.partyIntroBg .partyIntro .right {
  position: relative;

  width: 39.3%;
  margin-top: -.52083vw;
  padding-bottom: 2.44792vw;
}

.partyIntroBg .partyIntro .right::after {
  position: absolute;
  right: 0;
  bottom: 0;

  display: block;

  width: 15.625vw;
  height: 19.27083vw;

  content: '';

  background: url('../images/pibg2.jpg') no-repeat;
  background-size: 15.625vw 19.27083vw;
}

.partyIntroBg .partyIntro .right div {
  position: relative;
  z-index: 2;

  overflow: hidden;

  width: 22.39583vw;
}

.partyIntroBg .partyIntro .right div:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.partyIntroBg .partyIntro .right div img {
  width: 100%;
  height: auto;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

/* 主题教育 */
.educationBg {
  overflow: hidden;

  padding-top: 6.04167vw;
  padding-bottom: 7.76042vw;
}

.educationBg .education .educationTitle {
  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  margin-bottom: 2.39583vw;

  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.educationBg .education .educationTitle .detailTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.educationBg .education .educationTitle .detailTitle .title {
  color: #fff;
}

.educationBg .education .educationTitle .detailTitle .line {
  background-color: #d52932;
}

.educationBg .education .educationTitle .detailTitle .line::after {
  display: none;
}

.educationBg .education .educationTitle .detailTitle .desc {
  font-size: .78125vw;
  line-height: 1.14583vw;

  margin-top: 1.45833vw;

  color: rgba(255, 255, 255, .8);
}

.educationBg .education .educationTitle .btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.educationBg .education .educationTitle .btns .swiper-button-prev {
  margin-right: .52083vw;
}

.educationBg .education .educationTitle .btns .swiper-button-prev,
.educationBg .education .educationTitle .btns .swiper-button-next {
  font-size: .72917vw;

  position: static;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 2.5vw;
  height: 2.5vw;
  margin-top: 0;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  opacity: 1 !important;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: none;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.educationBg .education .educationTitle .btns .swiper-button-prev:hover,
.educationBg .education .educationTitle .btns .swiper-button-next:hover {
  color: #e41c24;
  border-color: #e41c24;
  background-color: #fff;
}

.educationBg .education .educationMain {
  width: 82.63%;
  padding-bottom: .83333vw;
}

.educationBg .education .educationMain .swiper-slide {
  min-height: 16.66667vw;
  padding: 3.90625vw 3.90625vw 2.60417vw 3.69792vw;
  padding-top: 3.90625vw;

  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #fff), to(#f9eced));
  background: -webkit-linear-gradient(top, #fff 10%, #f9eced);
  background: -moz-linear-gradient(top, #fff 10%, #f9eced);
  background: linear-gradient(180deg, #fff 10%, #f9eced);
}

.educationBg .education .educationMain .swiper-slide:hover::after {
  bottom: -.83333vw;
}

.educationBg .education .educationMain .swiper-slide::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;

  display: block;

  width: 94.65%;
  height: 15.78125vw;

  content: '';
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  transition: all .4s;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);

  opacity: 1;
  background-color: rgba(255, 255, 255, .3);
}

.educationBg .education .educationMain .swiper-slide .title {
  font-size: 1.45833vw;
  font-weight: bold;
  line-height: 2.03125vw;

  margin-bottom: .9375vw;
  padding-left: 1.97917vw;

  color: #000;
  background: url('../images/title-icon.png') no-repeat left top;
  background-position-y: .26042vw;
  background-size: 1.5625vw;
}

.educationBg .education .educationMain .swiper-slide .desc {
  font-size: .78125vw;
  line-height: 1.14583vw;

  overflow-y: auto;

  max-height: 6.875vw;
  padding-right: .78125vw;

  color: #696969;

  text-align: justify;
}

.educationBg .education .educationMain .swiper-slide .desc::-webkit-scrollbar {
  width: .15625vw;
  height: .15625vw;

  background-color: #d5d5d5;
}

.educationBg .education .educationMain .swiper-slide .desc::-webkit-scrollbar-track {
  border-radius: .15625vw;
  background-color: #d5d5d5;
  -webkit-box-shadow: inset 0 0 .10417vw rgba(0, 0, 0, .1);
}

.educationBg .education .educationMain .swiper-slide .desc::-webkit-scrollbar-thumb {
  border-radius: .15625vw;
  background-color: #d52932;
  -webkit-box-shadow: inset 0 0 .10417vw rgba(0, 0, 0, .1);
}

.educationBg .education .educationMain .swiper-pagination {
  display: none;
}

.weight {
  margin-top: 5.20833vw;
  margin-bottom: 6.19792vw;
}

.weight ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.weight ul li:nth-child(odd) {
  flex-direction: row;

  margin-bottom: 7.8125vw;

  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
}

.weight ul li:nth-child(odd) .image {
  width: 56.94%;
}

.weight ul li:nth-child(odd) .content {
  width: 36.11%;
}

.weight ul li:nth-child(even) {
  flex-direction: row-reverse;

  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
}

.weight ul li:nth-child(even) .image {
  width: 50%;
}

.weight ul li:nth-child(even) .content {
  width: 40.48%;
}

.weight ul li .image {
  overflow: hidden;
}

.weight ul li .image:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.weight ul li .image img {
  width: 100%;
  height: auto;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.weight ul li .content .title {
  font-size: 2.1875vw;
  font-weight: bold;

  margin-bottom: 1.92708vw;

  color: #333;
}

.weight ul li .content .title::after {
  display: block;

  width: 4.375vw;
  height: .3125vw;
  margin-top: 1.71875vw;

  content: '';

  background: #c72e36;
}

.weight ul li .content .desc {
  font-size: .83333vw;
  line-height: 1.35417vw;

  color: #898989;

  text-align: justify;
}

.weight ul li .content .desc p {
  margin-bottom: .78125vw;
}

.weight ul li .content .desc p:last-child {
  margin-bottom: 0;
}

.weight ul li .content .desc span {
  display: table-cell;
}

.innovateBg {
  min-height: 41.66667vw;
  padding-top: 3.90625vw;
  padding-bottom: 22.39583vw;
}

.innovateBg .innovate {
  text-align: center;
}

.innovateBg .innovate .title {
  font-size: 2.1875vw;
  font-weight: bold;

  margin-bottom: 1.92708vw;

  color: #333;
}

.innovateBg .innovate .title::after {
  display: block;

  width: 4.375vw;
  height: .3125vw;
  margin: 0 auto;
  margin-top: 1.71875vw;

  content: '';

  background: #c72e36;
}

.innovateBg .innovate .content {
  font-size: .83333vw;
  line-height: 1.35417vw;

  padding: 0 6.77083vw;

  color: #7d7c7c;
}

/* 品牌释义 */
.brandMeaning {
  margin-top: 8.28125vw;
}

.brandMeaning .brandMeaningMain {
  margin-top: 1.82292vw;
}

.brandMeaning .brandMeaningMain .desc {
  font-size: .83333vw;
  line-height: 1.35417vw;

  margin-bottom: 2.34375vw;
  padding: 0 8.69792vw;

  text-align: center;

  color: #898989;
}

.brandMeaning .brandMeaningMain .image img {
  width: 100%;
  height: auto;
}

/* 企业文化 */
.cultureBg {
  min-height: 50.52083vw;
  padding-top: 3.80208vw;
  padding-bottom: 13.54167vw;
}

.cultureBg .culture .cultureMain {
  position: relative;

  width: 62.5vw;
  height: 16.66667vw;
  margin: 0 auto;
  margin-top: 10.9375vw;

  border: 1px dashed #fff;
  border-radius: 16.66667vw;
}

.cultureBg .culture .cultureMain::after {
  position: absolute;
  top: -8.33333vw;
  left: 0;

  display: block;

  width: 9.47917vw;
  height: 9.47917vw;

  content: '';
  -webkit-animation: move 40s linear infinite;
  -moz-animation: move 40s linear infinite;
  animation: move 40s linear infinite;

  background: url('../images/cultureicon.png') no-repeat;
  background-size: 9.47917vw;
}

.cultureBg .culture .cultureMain ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  margin-top: 1.82292vw;

  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}

.cultureBg .culture .cultureMain ul li:nth-child(1) .titleBox {
  background-color: rgba(26, 113, 171, .9);
}

.cultureBg .culture .cultureMain ul li:nth-child(2) .titleBox {
  background-color: rgba(58, 69, 75, .9);
}

.cultureBg .culture .cultureMain ul li:nth-child(3) .titleBox {
  background-color: rgba(132, 154, 166, .9);
}

.cultureBg .culture .cultureMain ul li:nth-child(4) .titleBox {
  background-color: rgba(41, 162, 78, .9);
}

.cultureBg .culture .cultureMain ul li:hover .titleBox {
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  transform: scale(1.08);
}

.cultureBg .culture .cultureMain ul li .titleBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  width: 13.02083vw;
  height: 13.02083vw;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;

  border-radius: 50%;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
}

.cultureBg .culture .cultureMain ul li .titleBox .title {
  font-size: 1.5625vw;
  font-weight: bold;

  color: #fff;
}

.cultureBg .culture .cultureMain ul li .titleBox .desc {
  font-size: .9375vw;

  color: #fcfcfc;
}

.cultureBg .culture .cultureMain ul li .line {
  position: relative;
  z-index: 2;

  width: 1px;
  height: 6.82292vw;
  margin: -1.61458vw auto 0;

  background: #fff;
}

.cultureBg .culture .cultureMain ul li .text {
  font-size: .83333vw;
  line-height: 1.25vw;

  margin-top: .98958vw;

  text-align: center;

  color: #fff;
}

/* 荣誉资质 */
.honorBg {
  padding-top: 8.02083vw;
  padding-bottom: 5.20833vw;
}

.honorBg .honor .honorList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  margin-top: 1.71875vw;
  margin-bottom: 3.125vw;

  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.honorBg .honor .honorList ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.honorBg .honor .honorList ul li {
  margin: 0 .28646vw;
}

.honorBg .honor .honorList ul li a {
  font-size: .9375vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  min-width: 7.76042vw;
  height: 2.60417vw;
  padding: 0 1.04167vw;

  white-space: nowrap;

  color: #999;
  border: 1px solid #e5e5e5;
  border-radius: 1.30208vw;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.honorBg .honor .honorList ul li a.active {
  color: #fff;
  background-color: #0071b8;
}

.honorBg .honor .honorMain {
  margin-bottom: 5.20833vw;
}

.honorBg .honor .honorMain ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.honorBg .honor .honorMain ul li {
  width: 26.04%;
  margin-right: 2.085%;
  margin-bottom: 2.085%;

  background-color: #fff;
  -webkit-box-shadow: 0 .26042vw .78125vw #edf2f5;
  box-shadow: 0 .26042vw .78125vw #edf2f5;
}

.honorBg .honor .honorMain ul li:nth-child(3n+1) {
  width: 43.75%;
}

.honorBg .honor .honorMain ul li:nth-child(3n+3) {
  margin-right: 0;
}

.honorBg .honor .honorMain ul li:nth-last-child(-n+3) {
  margin-bottom: 0;
}

.honorBg .honor .honorMain ul li .image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  height: 19.375vw;
  padding-bottom: 3.64583vw;

  background: url('../images/honoritembg.jpg') repeat-x;
  background-size: auto 100%;

  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.honorBg .honor .honorMain ul li .image img {
  width: auto;
  height: 11.875vw;
}

.honorBg .honor .honorMain ul li .text {
  font-size: .9375vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  height: 4.16667vw;
  padding: 0 .9375vw;

  text-align: center;

  color: rgba(51, 51, 51, .9);

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* 工程业绩 */
.projects {
  margin-top: 6.5104vw;
  margin-bottom: 5.41667vw;
}

.projects.projectsMultipie .projectsItem .projectsMain ul {
  height: auto;
}

.projects .projectsItem {
  margin-bottom: 3.75vw;
}

.projects .projectsItem:last-child {
  margin-bottom: 0;
}

.projects .projectsItem .title {
  font-size: 2.08333vw;
  font-weight: bold;

  margin-bottom: .625vw;

  color: #333;
}

.projects .projectsItem .desc {
  font-size: .83333vw;

  margin-bottom: 2.44792vw;

  color: #898989;
}

.projects .projectsItem .projectsMain ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;

  height: 18.2813vw;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.projects .projectsItem .projectsMain ul.active {
  height: auto;
}

.projects .projectsItem .projectsMain ul li {
  width: 31.94%;
  margin-right: 2.09%;
  margin-bottom: 2.09%;

  cursor: pointer;
}

.projects .projectsItem .projectsMain ul li:nth-child(3n+3) {
  margin-right: 0;
}

.projects .projectsItem .projectsMain ul li:nth-last-child(-n+3) {
  margin-bottom: 0;
}

.projects .projectsItem .projectsMain ul li:hover .image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.projects .projectsItem .projectsMain ul li .image {
  overflow: hidden;
}

.projects .projectsItem .projectsMain ul li .image img {
  width: 100%;
  height: auto;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.projects .projectsItem .projectsMain ul li .text {
  font-size: .9375vw;
  font-weight: bold;

  margin-top: 1.40625vw;

  color: #333;
}

.projects .projectsItem .layui-flow-more {
  font-size: .7292vw;

  width: 100%;
  margin: 0;
  margin-top: 2.96875vw;
}

.projects .projectsItem .layui-flow-more cite {
  font-size: .78125vw;
  /* display: none; */

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 11.97917vw;
  height: 3.4375vw;
  margin: 0 auto;
  padding: 0;

  cursor: pointer;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #f8f8f8;
  border: .10417vw solid transparent;
  border-radius: 1.71875vw;
  background: #0071b8;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.projects .projectsItem .layui-flow-more cite::before {
  display: block;

  content: '查看所有工程';
}

.projects .projectsItem .layui-flow-more cite::after {
  font-size: 1.45833vw;

  display: block;

  margin-top: -.1563vw;
  margin-left: .57292vw;

  content: '+';
}

.projects .projectsItem .layui-flow-more cite:hover {
  color: #0071b8;
  border-color: #0071b8;
  background-color: transparent;
}

/* 工程业绩详情 */
.projectsPopupContainer {
  overflow: hidden;

  width: 75vw;
  height: 42.70833vw;

  border-radius: 1.04167vw !important;
}

.projectsDetail {
  position: relative;

  padding: 5.6219vw;
}

.projectsDetail .projectsDetailClose {
  font-size: 1.1111vw;
  font-weight: bold;

  position: absolute;
  top: 3.5137vw;
  right: 4.2164vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 2.5694vw;
  height: 2.5694vw;

  cursor: pointer;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #9a9a9a;
  border: .1389vw solid #9a9a9a;
  border-radius: 50%;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.projectsDetail .projectsDetailClose:hover {
  color: #fff;
  border-color: #0071b8;
  background-color: #0071b8;
}

.projectsDetail .projectsDetailTitle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  margin-right: 3.1623vw;

  border-bottom: 1px solid #e1e1e1;

  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
}

.projectsDetail .projectsDetailTitle .left {
  width: 100%;
  margin-bottom: 2.319vw;
}

.projectsDetail .projectsDetailTitle .left .detailTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.projectsDetail .projectsDetailTitle .left .detailTitle .title {
  font-size: 2.3893vw;
  line-height: 1.4;

  color: #333;
}

.projectsDetail .projectsDetailTitle .left .social-share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.projectsDetail .projectsDetailTitle .left .social-share .social-share-icon {
  font-size: 1.4055vw;
  line-height: 2.9515vw;

  width: 2.9515vw;
  height: 2.9515vw;
}

.projectsDetail .projectsDetailTitle .left .tiktok {
  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 2.9515vw;
  height: 2.9515vw;

  border: 1px solid #a0a0a0;
  border-radius: 50%;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.projectsDetail .projectsDetailTitle .left .tiktok:hover {
  background-color: #666;
}

.projectsDetail .projectsDetailTitle .left .tiktok:hover>img {
  -webkit-filter: grayscale(1) brightness(500%);
  filter: grayscale(1) brightness(500%);
}

.projectsDetail .projectsDetailTitle .left .tiktok:hover .popup {
  opacity: 1;
}

.projectsDetail .projectsDetailTitle .left .tiktok>img {
  width: auto;
  height: 1.9677vw;
}

.projectsDetail .projectsDetailTitle .left .tiktok .popup {
  position: absolute;
  bottom: 3.8651vw;
  left: 50%;

  width: 7.7301vw;
  height: 7.7301vw;
  padding: .3514vw;

  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);

  opacity: 0;
  border-radius: .4216vw;
  background-color: #fff;
  -webkit-box-shadow: 0 .3514vw .7027vw #ddd;
  box-shadow: 0 .3514vw .7027vw #ddd;
}

.projectsDetail .projectsDetailTitle .left .tiktok .popup::after {
  position: absolute;
  bottom: -1.2649vw;
  left: 50%;

  display: block;

  width: 0;
  height: 0;

  content: '';
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);

  border: .7027vw solid #fff;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.projectsDetail .projectsDetailTitle .left .tiktok .popup img {
  width: 7.0274vw;
  height: 7.0274vw;
}

.projectsDetail .projectsDetailTitle .right {
  width: 100%;
}

.projectsDetail .projectsDetailTitle .right ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  padding: 1.4055vw 0;

  border-bottom: 1px solid #e8e8e8;
}

.projectsDetail .projectsDetailTitle .right ul li:last-child {
  border-bottom: 0;
}

.projectsDetail .projectsDetailTitle .right ul li .title {
  font-size: 1.1244vw;

  min-width: 9.1356vw;
  padding-right: 1.4055vw;

  white-space: nowrap;

  color: #717373;
}

.projectsDetail .projectsDetailTitle .right ul li .desc {
  font-size: 1.1244vw;
  line-height: 1.6866vw;

  color: #282728;
}

.projectsDetail .projectsDetailMain {
  position: relative;

  overflow-y: auto;

  max-height: 31.9747vw;
  margin-top: 3.1623vw;
  padding-right: 3.1623vw;
}

.projectsDetail .projectsDetailMain::-webkit-scrollbar {
  width: .2108vw;
  height: .2108vw;

  background-color: #d5d5d5;
}

.projectsDetail .projectsDetailMain::-webkit-scrollbar-track {
  border-radius: .2108vw;
  background-color: #d5d5d5;
  -webkit-box-shadow: inset 0 0 .10417vw r gba(0, 0, 0, .1);
}

.projectsDetail .projectsDetailMain::-webkit-scrollbar-thumb {
  border-radius: .2108vw;
  background-color: #0071b8;
  -webkit-box-shadow: inset 0 0 .10417vw rgba(0, 0, 0, .1);
}

.projectsDetail .projectsDetailMain .title {
  font-size: 1.2649vw;
  font-weight: bold;

  margin-top: 2.4596vw;

  color: #000;
}

.projectsDetail .projectsDetailMain .desc {
  font-size: 1.1244vw;
  line-height: 1.546vw;

  margin-top: .7027vw;

  color: rgba(71, 75, 81, .8);

  text-align: justify;
}

.projectsDetail .projectsDetailMain img {
  margin-top: 2.4596vw;
}

/* 
.projectsDetail .projectsDetailMain .swiper-slide img {
  width: 100%;
  height: auto;
}

.projectsDetail .projectsDetailMain .swiper-button-prev {
  left: 4.2164vw;
}

.projectsDetail .projectsDetailMain .swiper-button-next {
  right: 4.2164vw;
}

.projectsDetail .projectsDetailMain .swiper-button-prev,
.projectsDetail .projectsDetailMain .swiper-button-next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3.3732vw;
  height: 3.3732vw;
  font-size: 1.1244vw;
  color: #fff;
  border: 1px solid #ffffff;
  border-radius: 50%;
  background: none;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.projectsDetail .projectsDetailMain .swiper-button-prev:hover,
.projectsDetail .projectsDetailMain .swiper-button-next:hover {
  background: #0071B8;
  border-color: #0071B8;
} */
/* 工程建设 */
.construction {
  padding-top: 8.125vw;
  padding-bottom: 5.15625vw;
}

.construction .constructionList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  margin-top: 1.71875vw;
  margin-bottom: 3.64583vw;

  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.construction .constructionList ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.construction .constructionList ul li {
  font-size: .9375vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  min-width: 7.76042vw;
  height: 2.60417vw;
  margin: 0 .28646vw;
  padding: 0 1.04167vw;

  cursor: pointer;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #999;
  border: 1px solid #e5e5e5;
  border-radius: 1.30208vw;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.construction .constructionList ul li.active {
  color: #fff;
  border-color: #0071b8;
  background-color: #0071b8;
}

.construction .constructionMain {
  overflow: hidden;
}

.construction .constructionMain .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.construction .constructionMain .swiper-slide .image {
  width: 62.34%;
}

.construction .constructionMain .swiper-slide .image img {
  width: 100%;
  height: auto;
}

.construction .constructionMain .swiper-slide .content {
  width: 18.33333vw;
  margin-right: 12.60417vw;
}

.construction .constructionMain .swiper-slide .content .title {
  font-size: 2.1875vw;
  font-weight: bold;
  line-height: 2.70833vw;

  margin-bottom: 1.14583vw;

  color: #333;
}

.construction .constructionMain .swiper-slide .content .desc {
  font-size: .83333vw;
  line-height: 1.25vw;

  color: #6d7174;

  text-align: justify;
}

/* 工程建设-工程业绩 */
.performanceBg {
  overflow: hidden;

  padding-top: 4.6875vw;
  padding-bottom: 6.71875vw;
}

.performanceBg .performance .performanceTitle {
  font-size: 2.39583vw;
  font-weight: bold;

  margin-bottom: 2.39583vw;

  text-align: center;

  color: #333;
}

.performanceBg .performance .performanceList {
  margin-bottom: 3.125vw;
}

.performanceBg .performance .performanceList ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.performanceBg .performance .performanceList ul li {
  font-size: .9375vw;
  font-weight: bold;

  position: relative;

  margin: 0 .52083vw;

  cursor: pointer;
  text-align: center;

  color: #282828;
}

.performanceBg .performance .performanceList ul li::after {
  display: block;

  width: 8.33333vw;
  height: .20833vw;
  margin-top: .83333vw;

  content: '';

  background-color: #dae5f0;
}

.performanceBg .performance .performanceList ul li.active::after {
  background-color: #0071b8;
}

.performanceBg .performance .performanceSwiper {
  position: relative;

  width: 56.25vw;
  height: 29.16667vw;
  margin: 0 auto;
}

.performanceBg .performance .performanceMain {
  position: absolute;
  top: 0;
  left: 0;

  visibility: hidden;

  width: 56.25vw;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;

  opacity: 0;
}

.performanceBg .performance .performanceMain.active {
  position: static;

  visibility: visible;

  opacity: 1;
}

.performanceBg .performance .performanceMain .swiper-slide {
  position: relative;
}

.performanceBg .performance .performanceMain .swiper-slide .image img {
  width: 100%;
  height: auto;
}

.performanceBg .performance .performanceMain .swiper-slide .content {
  position: absolute;
  bottom: 0;
  left: 0;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;

  width: 100%;
  height: 12.1875vw;
  padding: 0 2.60417vw 1.77083vw;

  -webkit-transition: all .6s ease .4s;
  -moz-transition: all .6s ease .4s;
  transition: all .6s ease .4s;

  opacity: 0;
  background: url('../images/pertextbg.png') repeat-x left bottom;
  background-size: auto 100%;

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.performanceBg .performance .performanceMain .swiper-slide .content .title {
  font-size: 1.45833vw;
  font-weight: bold;

  margin-right: 5.10417vw;

  white-space: nowrap;

  color: #fffefe;
}

.performanceBg .performance .performanceMain .swiper-slide .content .desc {
  font-size: .83333vw;
  line-height: 1.14583vw;

  color: #fffefe;

  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;

  text-align: justify;
}

.performanceBg .performance .performanceMain .swiper-slide-active .content {
  visibility: visible;

  opacity: 1;
}

.performanceBg .performance .performanceMain .swiper-pagination {
  display: none;
}

.performanceBg .performance .performanceMain .swiper-button-prev {
  left: 0;
}

.performanceBg .performance .performanceMain .swiper-button-next {
  right: 0;
}

.performanceBg .performance .performanceMain .swiper-button-prev,
.performanceBg .performance .performanceMain .swiper-button-next {
  font-size: .83333vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 2.5vw;
  height: 2.5vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #fff;
  background: rgba(0, 0, 0, .2);

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.performanceBg .performance .performanceMain .swiper-button-prev:hover,
.performanceBg .performance .performanceMain .swiper-button-next:hover {
  background: #0070b8;
}

/* 公司资质 */
.qualifications {
  margin-top: 4.63542vw;
  padding-bottom: 4.53125vw;
}

.qualifications .qualificationsMain {
  position: relative;

  overflow: hidden;

  margin-top: 2.08333vw;
  padding-bottom: 4.27083vw;
}

.qualifications .qualificationsMain .swiper-slide {
  width: 26%;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.qualifications .qualificationsMain .swiper-slide:nth-child(3n+1) {
  width: 43.75%;
}

.qualifications .qualificationsMain .swiper-slide:hover {
  -webkit-box-shadow: 0 0 .52083vw #eee;
  box-shadow: 0 0 .52083vw #eee;
}

.qualifications .qualificationsMain .swiper-slide .image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 100%;
  height: 19.375vw;

  background: url('../images/honoritembg.jpg') repeat-x left bottom;
  background-size: auto 100%;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.qualifications .qualificationsMain .swiper-slide .image img {
  width: auto;
  height: 11.09375vw;
}

.qualifications .qualificationsMain .swiper-slide .text {
  font-size: .9375vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 100%;
  height: 4.16667vw;
  padding: 0 1.04167vw;

  color: #333;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.qualifications .qualificationsMain .swiper-pagination-bullet {
  width: .57292vw;
  height: .57292vw;

  cursor: pointer;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  opacity: 1 !important;
  border: 1px solid rgba(220, 220, 220, .5);
  background: none;
}

.qualifications .qualificationsMain .swiper-pagination-bullet-active {
  border-color: #0070b8;
  background: #0071b8;
}

/* 专业团队 */
.teamBg {
  padding-top: 5.15625vw;
  padding-bottom: 3.90625vw;
}

.teamBg .team {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.teamBg .team .images {
  position: relative;

  overflow: hidden;

  width: 55.97%;
  margin-right: 6.66667vw;
  padding-bottom: 3.33333vw;
}

.teamBg .team .images .swiper-slide img {
  width: 100%;
  height: auto;
}

.teamBg .team .images .swiper-pagination-bullet {
  width: .57292vw;
  height: .57292vw;

  cursor: pointer;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  opacity: 1 !important;
  border: 1px solid rgba(220, 220, 220, .5);
  background: none;
}

.teamBg .team .images .swiper-pagination-bullet-active {
  border-color: #0070b8;
  background: #0071b8;
}

.teamBg .team .content {
  width: 25.9%;
  margin-top: -6.25vw;
}

.teamBg .team .content .detailTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.teamBg .team .content .desc {
  font-size: .88542vw;
  line-height: 1.25vw;

  margin-top: 1.97917vw;

  color: #6d7174;

text-align: justify;
}

/* 遍布全国 */
.businessBg {
  padding-top: 4.42708vw;
  padding-bottom: 3.17708vw;
}

.businessBg .business .detailTitle .desc {
  font-size: .88542vw;

  margin-top: 1.82292vw;

  color: #6d7174;
}

.businessBg .business .businessMain {
  position: relative;

  margin-top: 1.5625vw;
}

.businessBg .business .businessMain img.map {
  width: 100%;
  height: auto;
}

.businessBg .business .businessMain .china {
  font-size: .98958vw;

  position: absolute;
  z-index: 2;
  top: 39%;
  left: 76%;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 3.64583vw;
  height: 3.64583vw;

  color: #fff;
  border-radius: 50%;
  background-color: #0071b8;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.businessBg .business .businessMain .china::after {
  position: absolute;
  top: 50%;
  left: 50%;

  display: block;

  width: 9.89583vw;
  height: 9.89583vw;

  content: '';
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: amplify2 2s ease infinite;
  -moz-animation: amplify2 2s ease infinite;
  animation: amplify2 2s ease infinite;

  border-radius: 50%;
  background-color: rgba(0, 113, 184, .1);
}

.businessBg .business .businessMain .lines.active .linesItem:nth-child(1) .line i {
  -webkit-animation: framesHeight 6s ease-out forwards;
  -moz-animation: framesHeight 6s ease-out forwards;
  animation: framesHeight 6s ease-out forwards;
}

.businessBg .business .businessMain .lines.active .linesItem:nth-child(2) .line i {
  -webkit-animation: framesWidth 6s ease-out forwards;
  -moz-animation: framesWidth 6s ease-out forwards;
  animation: framesWidth 6s ease-out forwards;
}

.businessBg .business .businessMain .lines.active .linesItem:nth-child(3) .line i {
  -webkit-animation: framesWidth 6s ease-out forwards;
  -moz-animation: framesWidth 6s ease-out forwards;
  animation: framesWidth 6s ease-out forwards;
}

.businessBg .business .businessMain .lines.active .linesItem:nth-child(4) .line i {
  -webkit-animation: framesWidth 6s ease-out forwards;
  -moz-animation: framesWidth 6s ease-out forwards;
  animation: framesWidth 6s ease-out forwards;
}

.businessBg .business .businessMain .lines.active .linesItem:nth-child(5) .line i {
  -webkit-animation: framesWidth 6s ease-out forwards;
  -moz-animation: framesWidth 6s ease-out forwards;
  animation: framesWidth 6s ease-out forwards;
}

.businessBg .business .businessMain .lines.active .linesItem:nth-child(6) .line i {
  -webkit-animation: framesHeight 6s ease-out forwards;
  -moz-animation: framesHeight 6s ease-out forwards;
  animation: framesHeight 6s ease-out forwards;
}

.businessBg .business .businessMain .lines .linesItem {
  position: absolute;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(1) {
  bottom: 60%;
  left: 74%;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(1) .line {
  width: 3.28125vw;
  height: 6.09375vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(1) .line i {
  right: 0;
  bottom: 0;

  background: url('../images/line1.png') no-repeat right bottom;
  background-size: 3.28125vw 6.09375vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(1) .drop {
  top: -1px;
  left: -1px;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(1) .name {
  top: -.52083vw;
  left: 2.60417vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(2) {
  right: 21%;
  bottom: 56%;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(2) .line {
  width: 46.35417vw;
  height: 10.78125vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(2) .line i {
  right: 0;
  bottom: 0;

  background: url('../images/line2.png') no-repeat right bottom;
  background-size: 46.35417vw 10.78125vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(2) .drop {
  top: 3.75vw;
  left: -1px;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(2) .name {
  top: 5.98958vw;
  left: -1.04167vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(3) {
  right: 22%;
  bottom: 57%;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(3) .line {
  width: 17.76042vw;
  height: 6.04167vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(3) .line i {
  right: 0;
  bottom: 0;

  background: url('../images/line3.png') no-repeat right bottom;
  background-size: 17.76042vw 6.04167vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(3) .drop {
  top: -1px;
  left: -1px;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(3) .name {
  top: 2.08333vw;
  left: -.67708vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(4) {
  right: 21%;
  bottom: 28%;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(4) .line {
  width: 34.94792vw;
  height: 11.25vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(4) .line i {
  right: 0;
  bottom: 0;

  background: url('../images/line4.png') no-repeat right bottom;
  background-size: 34.94792vw 11.25vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(4) .drop {
  bottom: -1px;
  left: -1px;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(4) .name {
  bottom: -3.125vw;
  left: -.98958vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(5) {
  right: 21%;
  bottom: 35%;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(5) .line {
  width: 19.47917vw;
  height: 7.91667vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(5) .line i {
  right: 0;
  bottom: 0;

  background: url('../images/line5.png') no-repeat right bottom;
  background-size: 19.47917vw 7.91667vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(5) .drop {
  bottom: -1px;
  left: -1px;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(5) .name {
  bottom: -3.125vw;
  left: -.67708vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(6) {
  bottom: 21%;
  left: 78%;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(6) .line {
  width: 7.76042vw;
  height: 13.75vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(6) .line i {
  top: 0;
  left: 0;

  background: url('../images/line6.png') no-repeat top left;
  background-size: 7.76042vw 13.75vw;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(6) .drop {
  right: -.20833vw;
  bottom: -1px;
}

.businessBg .business .businessMain .lines .linesItem:nth-child(6) .name {
  right: -1.19792vw;
  bottom: -3.125vw;
}

.businessBg .business .businessMain .lines .linesItem .line {
  position: relative;
}

.businessBg .business .businessMain .lines .linesItem .line i {
  position: absolute;

  width: 100%;
  height: 100%;
}

.businessBg .business .businessMain .lines .linesItem .drop {
  position: absolute;
  z-index: 2;
}

.businessBg .business .businessMain .lines .linesItem .drop i {
  position: relative;
  z-index: 2;

  display: block;

  width: .57292vw;
  height: .57292vw;

  border-radius: 50%;
  background-color: #0071b8;
}

.businessBg .business .businessMain .lines .linesItem .drop::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;

  display: block;

  width: 1.875vw;
  height: 1.875vw;

  content: '';
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: amplify2 2.5s linear infinite .3s;
  -moz-animation: amplify2 2.5s linear infinite .3s;
  animation: amplify2 2.5s linear infinite .3s;

  border-radius: 50%;
  background-color: rgba(0, 113, 184, .1);
}

.businessBg .business .businessMain .lines .linesItem .drop::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;

  display: block;

  width: 3.33333vw;
  height: 3.33333vw;

  content: '';
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: amplify2 3s linear infinite .3s;
  -moz-animation: amplify2 3s linear infinite .3s;
  animation: amplify2 3s linear infinite .3s;

  border-radius: 50%;
  background-color: rgba(0, 113, 184, .1);
}

.businessBg .business .businessMain .lines .linesItem .name {
  font-size: .92188vw;

  position: absolute;

  white-space: nowrap;

  color: #333;
}

/* 产品列表 */
.products {
  overflow: hidden;

  margin-bottom: 5.15625vw;
  padding-top: 8.07292vw;
}

.products .productsList {
  margin-top: 1.71875vw;
  margin-bottom: 3.125vw;
}

.products .productsList ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.products .productsList ul li {
  margin: 0 .28646vw;
}

.products .productsList ul li a {
  font-size: .9375vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 7.76042vw;
  height: 2.60417vw;

  color: #999;
  border: 1px solid #e5e5e5;
  border-radius: 1.30208vw;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.products .productsList ul li a.active {
  color: #fff;
  background-color: #0071b8;
}

.products .productsTopping {
  position: relative;
  z-index: 2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;

  height: 28.125vw;

  background: url('../images/productstoppingbg.jpg') no-repeat center/cover;

  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.products .productsTopping .image {
  width: 43.05%;
  margin-right: 7%;
}

.products .productsTopping .image img {
  width: 100%;
  height: auto;
}

.products .productsTopping .content {
  width: 44.36%;
  margin-left: 4.21875vw;
}

.products .productsTopping .content span {
  font-size: 1.25vw;
  font-weight: bold;

  color: #0071b8;
}

.products .productsTopping .content .title {
  font-size: 2.34375vw;
  font-weight: lighter;

  display: -webkit-box;
  overflow: hidden;

  margin-top: .625vw;
  margin-bottom: .78125vw;

  text-overflow: ellipsis;

  color: #282828;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.products .productsTopping .content .desc {
  font-size: .83333vw;
  line-height: 1.25vw;

  display: -webkit-box;
  overflow: hidden;

  margin-bottom: 2.60417vw;

  text-overflow: ellipsis;

  color: #686868;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;

  text-align: justify;
}

.products .productsTopping .content .btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.products .productsTopping .content .btns .btn {
  font-size: .72917vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 8.28125vw;
  height: 2.76042vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #282828;
  border: .10417vw solid transparent;
  border-color: #fff;
  border-radius: 1.35417vw;
  background: #fff;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.products .productsTopping .content .btns .btn i {
  font-size: .72917vw;

  margin-left: 2.13542vw;
}

.products .productsTopping .content .btns .btn.more {
  margin-right: .52083vw;
}

.products .productsTopping .content .btns .btn:hover {
  color: #fff;
  border-color: #0071b8;
  background-color: #0071b8;
}

.products .productsMain {
  position: relative;

  margin-top: 8.33333vw;
  margin-bottom: 5.20833vw;
}

.products .productsMain::after {
  position: absolute;
  z-index: 1;
  top: -22.91667vw;
  left: 50%;

  display: block;

  width: 100vw;
  height: 18.75vw;

  content: '';
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);

  background-color: #f6f6f7;
}

.products .productsMain ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.products .productsMain ul li {
  width: 30.55%;
  margin-right: 4.175%;
  margin-bottom: 4.175%;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;

  border: 1px solid #e7e7e7;
}

.products .productsMain ul li:nth-child(3n+3) {
  margin-right: 0;
}

.products .productsMain ul li:nth-last-child(-n+3) {
  margin-bottom: 0;
}

.products .productsMain ul li:hover {
  -webkit-box-shadow: 0 .3125vw 1.09375vw 0 rgba(0, 157, 255, .1);
  box-shadow: 0 .3125vw 1.09375vw 0 rgba(0, 157, 255, .1);
}

.products .productsMain ul li:hover .image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.products .productsMain ul li:hover .content::after {
  visibility: visible;

  opacity: 1;
}

.products .productsMain ul li:hover .content .title {
  color: #fff;
  border-bottom-color: transparent;
}

.products .productsMain ul li:hover .content .desc {
  color: rgba(255, 255, 255, .5);
}

.products .productsMain ul li:hover .content .more {
  color: #fff;
}

.products .productsMain ul li .image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;

  height: 20.83333vw;

  background-color: #f6f6f7;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.products .productsMain ul li .image img {
  width: 91.32%;
  height: auto;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.products .productsMain ul li .content {
  position: relative;

  height: 12.5vw;
  padding: 1.92708vw 2.08333vw;
}

.products .productsMain ul li .content::after {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  visibility: hidden;

  width: 100%;
  height: 100%;

  content: '';
  -webkit-transition: all .8s ease;
  -moz-transition: all .8s ease;
  transition: all .8s ease;

  opacity: 0;
  background: url('../images/protextbg.jpg') no-repeat center/cover;
}

.products .productsMain ul li .content .title {
  font-size: 1.25vw;
  font-weight: bold;

  position: relative;
  z-index: 9;

  margin-bottom: .83333vw;
  padding-bottom: 1.25vw;

  -webkit-transition: color .4s ease;
  -moz-transition: color .4s ease;
  transition: color .4s ease;

  color: #282828;
  border-bottom: 1px solid rgba(40, 40, 40, .1);
}

.products .productsMain ul li .content .desc {
  font-size: .83333vw;
  line-height: 1.25vw;

  position: relative;
  z-index: 9;

  display: -webkit-box;
  overflow: hidden;

  margin-bottom: 1.14583vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  text-overflow: ellipsis;

  color: #5f656b;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.products .productsMain ul li .content .more {
  font-size: .72917vw;

  position: relative;
  z-index: 9;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: rgba(40, 40, 40, .8);

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.products .productsMain ul li .content .more i {
  margin-left: 2.08333vw;
}

/* 跟随导航 */
.followNavHeight {
  margin-top: 9.375vw;
}

.followNav {
  position: fixed;
  z-index: 98;
  top: 5.72917vw;
  left: 0;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 100%;
  height: 3.64583vw;
  padding: 0vw 2.6042vw;

  -webkit-transition: .8s ease;
  -moz-transition: .8s ease;
  transition: .8s ease;

  border-bottom: 1px solid #f4f4f4;
  background-color: rgba(255, 255, 255, .9);

  -webkit-backdrop-filter: blur(.41667vw);
  backdrop-filter: blur(.41667vw);
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.followNav.up {
  top: 0;
}

.followNav .title {
  font-size: .72917vw;
  font-weight: bold;

  color: #000;
}

.followNav .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.followNav .list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.followNav .list ul li {
  font-size: .72917vw;
  line-height: 3.64583vw;

  position: relative;

  margin-right: 1.5625vw;

  cursor: pointer;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #7f7f7f;
}

.followNav .list ul li:last-child {
  margin-right: 0;
}

.followNav .list ul li.active {
  color: #000;
}

.followNav .list ul li.active::after {
  visibility: visible;

  opacity: 1;
}

.followNav .list ul li::after {
  position: absolute;
  bottom: -1px;
  left: 0;

  display: block;
  visibility: hidden;

  width: 100%;
  height: .07813vw;

  content: '';
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  opacity: 0;
  background-color: #0067ac;
}

.followNav .list a {
  font-size: .625vw;
  font-weight: bold;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 4.6875vw;
  height: 1.77083vw;
  margin-left: 1.5625vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #00aece;
  border: 1px solid #00aece;
  border-radius: .88542vw;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.followNav .list a:hover {
  color: #fff;
  background-color: #00aece;
}

/* 产品信息 */
.productsInfoBg .productsInfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;

  height: 32.8125vw;

  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.productsInfoBg .productsInfo .images {
  position: relative;

  overflow: hidden;

  width: 46.85%;
  padding-bottom: 2.08333vw;
}

.productsInfoBg .productsInfo .images .swiper-slide img {
  width: 100%;
  height: auto;
}

.productsInfoBg .productsInfo .images .swiper-pagination-bullet {
  width: .57292vw;
  height: .57292vw;
  margin: 0 .33854vw !important;

  cursor: pointer;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  opacity: 1 !important;
  border: 1px solid #fff;
  background: none;
}

.productsInfoBg .productsInfo .images .swiper-pagination-bullet-active {
  background: #fff;
}

.productsInfoBg .productsInfo .content {
  width: 40.34%;
}

.productsInfoBg .productsInfo .content .title {
  font-size: 2.5vw;
  font-weight: bold;

  margin-bottom: 1.09375vw;

  color: #fff;
}

.productsInfoBg .productsInfo .content .desc {
  font-size: .83333vw;
  line-height: 1.25vw;

  margin-bottom: 3.33333vw;

  color: #fff;

  text-align: justify;
}

.productsInfoBg .productsInfo .content .more {
  font-size: .72917vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 8.28125vw;
  height: 2.76042vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #fff;
  border: .10417vw solid #0071b8;
  border-radius: 1.35417vw;
  background: #0071b8;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.productsInfoBg .productsInfo .content .more:hover {
  color: #0071b8;
  background-color: transparent;
}

.productsInfoBg .productsInfo .content .more i {
  font-size: .72917vw;

  margin-left: 2.13542vw;
}

/* 产品概述 */
.productOverview {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  padding-top: 5.78125vw;
  padding-bottom: 5.88542vw;

  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.productOverview .detailTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.productOverview .desc {
  font-size: .83333vw;
  line-height: 1.45833vw;

  overflow-y: auto;

  width: 68.4%;
  max-height: 11.66667vw;
  padding-right: 1.04167vw;

  color: #3d3d3d;

  text-align: justify;
}

.productOverview .desc::-webkit-scrollbar {
  width: .15625vw;
  height: .15625vw;

  background-color: #d5d5d5;
}

.productOverview .desc::-webkit-scrollbar-track {
  border-radius: .15625vw;
  background-color: #d5d5d5;
  -webkit-box-shadow: inset 0 0 .10417vw rgba(0, 0, 0, .1);
}

.productOverview .desc::-webkit-scrollbar-thumb {
  border-radius: .15625vw;
  background-color: #0070b8;
  -webkit-box-shadow: inset 0 0 .10417vw rgba(0, 0, 0, .1);
}

/* 功能特点 */
.productsCharBg {
  overflow: hidden;

  height: 39.27083vw;
  padding-top: 4.94792vw;
}

.productsCharBg .productsChar .detailTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.productsCharBg .productsChar .productsCharMain {
  margin-top: 2.65625vw;
}

.productsCharBg .productsChar .productsCharMain .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  height: 19.6875vw;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;

  background-color: #fff;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.productsCharBg .productsChar .productsCharMain .swiper-slide:hover {
  -webkit-box-shadow: 0 0 1.09375vw 0 rgba(0, 103, 172, .3);
  box-shadow: 0 0 1.09375vw 0 rgba(0, 103, 172, .3);
}

.productsCharBg .productsChar .productsCharMain .swiper-slide:hover .icon img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.productsCharBg .productsChar .productsCharMain .swiper-slide .icon {
  margin-top: 1.30208vw;
  margin-right: 1.35417vw;

  text-align: right;
}

.productsCharBg .productsChar .productsCharMain .swiper-slide .icon img {
  width: auto;
  height: 3.125vw;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.productsCharBg .productsChar .productsCharMain .swiper-slide .content {
  padding: 0 2.08333vw 1.875vw;
}

.productsCharBg .productsChar .productsCharMain .swiper-slide .content .title {
  font-size: 1.14583vw;
  font-weight: bold;

  margin-bottom: .41667vw;

  color: #000;
}

.productsCharBg .productsChar .productsCharMain .swiper-slide .content .desc {
  font-size: .83333vw;
  line-height: 1.14583vw;

  min-height: 2.29167vw;

  color: #696969;

  text-align: justify;
}

.productsCharBg .productsChar .productsCharMain .swiper-pagination {
  display: none;
}

/* 技术参数 */
.productsParamBg {
  padding-top: 4.375vw;
  padding-bottom: 6.71875vw;
}

.productsParamBg .productsParam .detailTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.productsParamBg .productsParam .detailTitle .title {
  color: #fff;
}

.productsParamBg .productsParam .productsParamMain {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  height: auto;
  margin-top: 2.60417vw;
  padding: 3.22917vw 4.73958vw 6.71875vw 5.3125vw;

  background: -webkit-linear-gradient(278deg, rgba(255, 255, 255, .9) 59%, #77828f);
  background: -moz-linear-gradient(278deg, rgba(255, 255, 255, .9) 59%, #77828f);
  background: linear-gradient(172deg, rgba(255, 255, 255, .9) 59%, #77828f);

  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.productsParamBg .productsParam .productsParamMain table {
  font-size: .83333vw !important;
  font-weight: normal !important;
  line-height: 1.19792vw !important;

  display: block;

  width: 100% !important;
  height: auto !important;

  text-align: left !important;

  color: #000 !important;
}

.productsParamBg .productsParam .productsParamMain table thead,
.productsParamBg .productsParam .productsParamMain table tbody {
  display: block !important;

  width: 100% !important;
}

.productsParamBg .productsParam .productsParamMain table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 100%;
  height: auto !important;
  padding: .72917vw 0;

  border-bottom: 1px solid rgba(125, 125, 125, .5);

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.productsParamBg .productsParam .productsParamMain table th,
.productsParamBg .productsParam .productsParamMain table td {
  font-weight: normal !important;

  height: auto !important;
}

.productsParamBg .productsParam .productsParamMain table th:nth-child(odd),
.productsParamBg .productsParam .productsParamMain table td:nth-child(odd) {
  width: 24%;
  padding-right: .78125vw;
}

.productsParamBg .productsParam .productsParamMain table th:nth-child(even),
.productsParamBg .productsParam .productsParamMain table td:nth-child(even) {
  padding-right: .78125vw;

  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.productsParamBg .productsParam .productsParamMain table th:last-child,
.productsParamBg .productsParam .productsParamMain table td:last-child {
  padding-right: 0;
}

.productsParamBg .productsParam .productsParamMain .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 48%;
  margin-right: 4%;
  padding: .72917vw 0;

  border-bottom: 1px solid rgba(125, 125, 125, .5);
}

.productsParamBg .productsParam .productsParamMain .item:nth-child(even) {
  margin-right: 0;
}

.productsParamBg .productsParam .productsParamMain .item .title {
  font-size: .83333vw;

  width: 10.41667vw;
  padding-right: 1.04167vw;

  color: #525252;
}

.productsParamBg .productsParam .productsParamMain .item .param {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.productsParamBg .productsParam .productsParamMain .item .param span {
  font-size: .83333vw;

  display: inline-block;

  margin-right: 1.19792vw;

  color: #000;
}

/* 资料下载 */
.productsDownload {
  margin-bottom: 5.20833vw;
  padding-top: 4.42708vw;
}

.productsDownload .detailTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.productsDownload .productsDownloadMain {
  margin-top: 2.60417vw;
}

.productsDownload .productsDownloadMain ul li {
  margin-bottom: 1.04167vw;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.productsDownload .productsDownloadMain ul li:last-child {
  margin-bottom: 0;
}

.productsDownload .productsDownloadMain ul li:hover {
  -webkit-box-shadow: 0 0 1.09375vw 0 rgba(140, 152, 161, .2);
  box-shadow: 0 0 1.09375vw 0 rgba(140, 152, 161, .2);
}

.productsDownload .productsDownloadMain ul li:hover .info .icon {
  background-color: #0071b8;
}

.productsDownload .productsDownloadMain ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  height: 4.21875vw;
  padding-right: 1.5625vw;
  padding-left: 1.45833vw;

  border: 1px solid #d7dee4;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.productsDownload .productsDownloadMain ul li .title {
  font-size: .83333vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  color: #000;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.productsDownload .productsDownloadMain ul li .title img {
  width: auto;
  height: 2.08333vw;
  margin-right: .36458vw;
}

.productsDownload .productsDownloadMain ul li .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.productsDownload .productsDownloadMain ul li .info .time {
  font-size: .72917vw;

  color: #383838;
}

.productsDownload .productsDownloadMain ul li .info .time i {
  font-size: .83333vw;

  margin-right: .15625vw;

  color: #0071b8;
}

.productsDownload .productsDownloadMain ul li .info .size {
  font-size: .72917vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  margin-left: 1.25vw;

  color: #383838;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.productsDownload .productsDownloadMain ul li .info .size i {
  font-size: .72917vw;

  margin-right: .3125vw;
}

.productsDownload .productsDownloadMain ul li .info .icon {
  font-size: .9375vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 2.08333vw;
  height: 2.08333vw;
  margin-left: 1.875vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #fff;
  border-radius: 50%;
  background-color: #57585a;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* 在线询盘 */
.consultingServiceBg .consultingService {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  height: 14.58333vw;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.consultingServiceBg .consultingService .content .title {
  font-size: 2.28125vw;
  font-weight: bold;

  margin-bottom: .52083vw;

  color: #fff;
}

.consultingServiceBg .consultingService .content .desc {
  font-size: .9375vw;

  color: #fff;
}

.consultingServiceBg .consultingService .more {
  font-size: .72917vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 8.28125vw;
  height: 2.76042vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #fff;
  border: .10417vw solid rgba(255, 255, 255, .5);
  border-radius: 1.35417vw;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.consultingServiceBg .consultingService .more:hover {
  color: #fff;
  border-color: #0070b8;
  background-color: #0070b8;
}

.consultingServiceBg .consultingService .more i {
  font-size: .72917vw;

  margin-left: 2.13542vw;
}

/* 应用领域 */
.applicationAreaBg {
  overflow: hidden;

  margin-bottom: 5.20833vw;
  padding-top: 4.47917vw;
}

.applicationAreaBg .applicationArea .applicationAreaTitle {
  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.applicationAreaBg .applicationArea .applicationAreaTitle .detailTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.applicationAreaBg .applicationArea .applicationAreaTitle .btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.applicationAreaBg .applicationArea .applicationAreaTitle .btns .swiper-button-prev {
  margin-right: .52083vw;
}

.applicationAreaBg .applicationArea .applicationAreaTitle .btns .swiper-button-prev,
.applicationAreaBg .applicationArea .applicationAreaTitle .btns .swiper-button-next {
  font-size: .83333vw;

  position: static;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 2.5vw;
  height: 2.5vw;
  margin-top: 0;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #abacad;
  border: 1px solid #abacad;
  border-radius: 50%;
  background: none;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.applicationAreaBg .applicationArea .applicationAreaTitle .btns .swiper-button-prev:hover,
.applicationAreaBg .applicationArea .applicationAreaTitle .btns .swiper-button-next:hover {
  color: #fff;
  border-color: #0071b8;
  background-color: #0071b8;
}

.applicationAreaBg .applicationArea .applicationAreaMain {
  position: relative;

  width: 52.60417vw;
  margin-top: 2.60417vw;
}

.applicationAreaBg .applicationArea .applicationAreaMain .swiper-slide {
  position: relative;
}

.applicationAreaBg .applicationArea .applicationAreaMain .swiper-slide:hover .image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.applicationAreaBg .applicationArea .applicationAreaMain .swiper-slide .image {
  overflow: hidden;
}

.applicationAreaBg .applicationArea .applicationAreaMain .swiper-slide .image img {
  width: 100%;
  height: auto;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.applicationAreaBg .applicationArea .applicationAreaMain .swiper-slide .title {
  font-size: 1.25vw;

  position: absolute;
  bottom: 0;
  left: 0;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 100%;
  height: 8.22917vw;
  padding: 2.08333vw 2.60417vw;

  color: #fff;
  background: url('../images/apptextbg.png') repeat-x;
  background-size: auto 100%;

  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.applicationAreaBg .applicationArea .applicationAreaMain .swiper-pagination {
  display: none;
}

/* 应用案例 */
.applicationCasesBg {
  overflow: hidden;

  padding-top: 4.375vw;
  padding-bottom: 7.34375vw;
}

.applicationCasesBg .applicationCases .applicationCasesTitle {
  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.applicationCasesBg .applicationCases .applicationCasesTitle .detailTitle {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.applicationCasesBg .applicationCases .applicationCasesTitle .btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.applicationCasesBg .applicationCases .applicationCasesTitle .btns .swiper-button-prev {
  margin-right: .52083vw;
}

.applicationCasesBg .applicationCases .applicationCasesTitle .btns .swiper-button-prev,
.applicationCasesBg .applicationCases .applicationCasesTitle .btns .swiper-button-next {
  font-size: .83333vw;

  position: static;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 2.5vw;
  height: 2.5vw;
  margin-top: 0;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #abacad;
  border: 1px solid #abacad;
  border-radius: 50%;
  background: none;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.applicationCasesBg .applicationCases .applicationCasesTitle .btns .swiper-button-prev:hover,
.applicationCasesBg .applicationCases .applicationCasesTitle .btns .swiper-button-next:hover {
  color: #fff;
  border-color: #0071b8;
  background-color: #0071b8;
}

.applicationCasesBg .applicationCases .applicationCasesMain {
  margin-top: 2.60417vw;
}

.applicationCasesBg .applicationCases .applicationCasesMain .swiper-slide {
  position: relative;
}

.applicationCasesBg .applicationCases .applicationCasesMain .swiper-slide:hover .image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.applicationCasesBg .applicationCases .applicationCasesMain .swiper-slide .image {
  overflow: hidden;
}

.applicationCasesBg .applicationCases .applicationCasesMain .swiper-slide .image img {
  width: 100%;
  height: auto;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.applicationCasesBg .applicationCases .applicationCasesMain .swiper-slide .title {
  font-size: 1.14583vw;

  position: absolute;
  bottom: 0;
  left: 0;

  width: 100%;
  padding: 2.03125vw 2.60417vw;

  color: #fff;
}

.applicationCasesBg .applicationCases .applicationCasesMain .swiper-pagination {
  display: none;
}

/* 人才理念 */
.idea {
  margin-top: 8.07292vw;
  margin-bottom: 5.20833vw;
}

.idea .ideaMain {
  margin-top: 2.60417vw;
}

.idea .ideaMain ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.idea .ideaMain ul li:nth-child(1) {
  width: 40.83%;
  min-height: 7.34375vw;
}

.idea .ideaMain ul li:nth-child(1) .content {
  min-height: 7.34375vw;

  background-color: #f5f7fa;
}

.idea .ideaMain ul li:nth-child(2) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column-reverse;

  width: 25.34%;

  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -moz-box-orient: vertical;
  -moz-box-direction: reverse;
  -ms-flex-direction: column-reverse;
}

.idea .ideaMain ul li:nth-child(2) .content {
  min-height: 8.85417vw;
  margin-top: 0;
  margin-bottom: .46875vw;

  background-color: rgba(0, 113, 184, .1);
}

.idea .ideaMain ul li:nth-child(3) {
  width: 32.56%;
  min-height: 7.34375vw;
}

.idea .ideaMain ul li:nth-child(3) .content {
  min-height: 7.34375vw;

  background-color: #dce7ec;
}

.idea .ideaMain ul li .image {
  overflow: hidden;
}

.idea .ideaMain ul li .image:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.idea .ideaMain ul li .image img {
  width: 100%;
  height: auto;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;
}

.idea .ideaMain ul li .content {
  margin-top: .46875vw;
  padding: 1.71875vw 1.97917vw 1.04167vw;
}

.idea .ideaMain ul li .content .title {
  font-size: 1.25vw;
  font-weight: bold;

  margin-bottom: .78125vw;

  color: #000;
}

.idea .ideaMain ul li .content .desc {
  font-size: .78125vw;
  line-height: 1.14583vw;

  color: #696969;
}

/* 员工活动 */
.activitiesBg {
  overflow: hidden;

  padding-top: 4.6875vw;
  padding-bottom: 7.8125vw;
}

.activitiesBg .activities .activitiesMain {
  position: relative;

  width: 56.25vw;
  margin: 0 auto;
  margin-top: 2.60417vw;
}

.activitiesBg .activities .activitiesMain .swiper-slide {
  position: relative;
}

.activitiesBg .activities .activitiesMain .swiper-slide::after {
  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 100%;
  height: 100%;

  content: '';
  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;

  background-color: rgba(0, 0, 0, .3);
}

.activitiesBg .activities .activitiesMain .swiper-slide .image img {
  width: 100%;
  height: auto;
}

.activitiesBg .activities .activitiesMain .swiper-slide .text {
  font-size: 1.35417vw;

  position: absolute;
  bottom: 0;
  left: 0;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;

  width: 100%;
  height: 9.01042vw;
  padding-bottom: 1.45833vw;

  -webkit-transition: all .6s ease .3s;
  -moz-transition: all .6s ease .3s;
  transition: all .6s ease .3s;

  opacity: 0;
  color: #fff;
  background: url('../images/acttextbg.png') repeat-x;
  background-size: auto 100%;

  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.activitiesBg .activities .activitiesMain .swiper-slide-active::after {
  visibility: hidden;

  opacity: 0;
}

.activitiesBg .activities .activitiesMain .swiper-slide-active .text {
  visibility: visible;

  opacity: 1;
}

.activitiesBg .activities .activitiesMain .swiper-pagination {
  display: none;
}

.activitiesBg .activities .activitiesMain .swiper-button-prev {
  left: 0;
}

.activitiesBg .activities .activitiesMain .swiper-button-next {
  right: 0;
}

.activitiesBg .activities .activitiesMain .swiper-button-prev,
.activitiesBg .activities .activitiesMain .swiper-button-next {
  font-size: .83333vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 2.5vw;
  height: 2.5vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #fff;
  background: rgba(0, 0, 0, .2);

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.activitiesBg .activities .activitiesMain .swiper-button-prev:hover,
.activitiesBg .activities .activitiesMain .swiper-button-next:hover {
  background: #0071b8;
}

/* 加入我们 */
.join {
  margin-bottom: 5.15625vw;
  padding-top: 4.58333vw;
}

.join .joinList {
  margin-top: 1.71875vw;
  margin-bottom: 2.60417vw;
}

.join .joinList ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.join .joinList ul li {
  margin: 0 .28646vw;
}

.join .joinList ul li a {
  font-size: .9375vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  min-width: 7.76042vw;
  height: 2.60417vw;

  color: #999;
  border: 1px solid #e5e5e5;
  border-radius: 1.30208vw;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.join .joinList ul li a.active {
  color: #fff;
  border-color: #0071b8;
  background-color: #0071b8;
}

.join .joinMain {
  margin-bottom: 5.20833vw;
}

.join .joinMain ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.join .joinMain ul li {
  width: 31.45%;
  min-height: 14.0625vw;
  margin-right: 2.825%;
  margin-bottom: 2.825%;
  padding: 2.34375vw;

  cursor: pointer;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  border: 1px solid #e5e5e5;
}

.join .joinMain ul li:nth-child(3n+3) {
  margin-right: 0;
}

.join .joinMain ul li:nth-last-child(-n+3) {
  margin-bottom: 0;
}

.join .joinMain ul li:hover {
  border-color: #0071b8;
  -webkit-box-shadow: 0 .3125vw 1.09375vw 0 rgba(0, 157, 255, .3);
  box-shadow: 0 .3125vw 1.09375vw 0 rgba(0, 157, 255, .3);
}

.join .joinMain ul li:hover .more {
  color: #0071b8;
}

.join .joinMain ul li .titleBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  margin-bottom: 1.19792vw;
}

.join .joinMain ul li .titleBox .icon {
  font-size: 1.77083vw;

  margin-right: .9375vw;

  color: #171a20;
}

.join .joinMain ul li .titleBox .title .name {
  font-size: 1.14583vw;
  font-weight: bold;

  margin-bottom: .3125vw;

  color: #171a20;
}

.join .joinMain ul li .titleBox .title .department {
  font-size: .78125vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  color: #535353;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.join .joinMain ul li .titleBox .title .department i {
  font-style: normal;

  margin-right: .3125vw;
}

.join .joinMain ul li .titleBox .title .department i::before {
  font-size: .98958vw;

  margin-right: .20833vw;
}

.join .joinMain ul li .titleBox .title .department span {
  margin-left: .3125vw;
}

.join .joinMain ul li .desc {
  font-size: .83333vw;
  line-height: 1.45833vw;

  display: -webkit-box;
  overflow: hidden;

  margin-bottom: .9375vw;

  text-overflow: ellipsis;

  color: #5e647a;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.join .joinMain ul li .more {
  font-size: 1.14583vw;
  font-weight: bold;

  color: #2b3951;
}

/* 加入我们弹窗 */
.joinPopupContainer {
  width: 55.36458vw;
  height: 34.21875vw;
}

.joinPopup {
  position: relative;

  padding: 7.5259vw 5.7385vw 0 9.1251vw;
}

.joinPopup .joinPopupClose {
  font-size: 1.317vw;
  font-weight: bold;

  position: absolute;
  top: 2.8222vw;
  right: 2.8222vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 3.4807vw;
  height: 3.4807vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #9a9a9a;
  border: .2822vw solid #9a9a9a;
  border-radius: 50%;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.joinPopup .joinPopupClose:hover {
  color: #fff;
  border-color: #0071b8;
  background-color: #0071b8;
}

.joinPopup .joinPopupTitle {
  width: 73.3772vw;
  margin-bottom: 2.1637vw;
  padding-bottom: 2.54vw;

  border-bottom: 1px solid #e1e1e1;
}

.joinPopup .joinPopupTitle .title {
  font-size: 3.1985vw;
  font-weight: bold;

  margin-bottom: 1.0348vw;

  color: #000;
}

.joinPopup .joinPopupTitle .department {
  font-size: 1.4111vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  color: #535353;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.joinPopup .joinPopupTitle .department i {
  font-size: 1.4111vw;

  margin-right: .5644vw;
}

.joinPopup .joinPopupTitle .department i::before {
  font-size: 1.6933vw;

  margin-right: .5644vw;
}

.joinPopup .joinPopupTitle .department span {
  margin-left: .5644vw;
}

.joinPopup .joinPopupMain {
  font-size: 1.5052vw;
  line-height: 3.0103vw;

  overflow-y: auto;

  height: 23.048vw;
  padding-right: 11.5711vw;

  color: #474b51;
}

.joinPopup .joinPopupMain::-webkit-scrollbar {
  width: .2822vw;
  height: .2822vw;

  background-color: #d5d5d5;
}

.joinPopup .joinPopupMain::-webkit-scrollbar-track {
  border-radius: .2822vw;
  background-color: #d5d5d5;
  -webkit-box-shadow: inset 0 0 .1881vw rgba(0, 0, 0, .1);
}

.joinPopup .joinPopupMain::-webkit-scrollbar-thumb {
  border-radius: .2822vw;
  background-color: #0067ac;
  -webkit-box-shadow: inset 0 0 .1881vw rgba(0, 0, 0, .1);
}

.joinPopup .joinPopupMain h3 {
  font-size: 1.6933vw;
  font-weight: bold;

  margin-bottom: 1.4111vw;

  color: #000;
}

.joinPopup .more {
  font-size: 1.317vw;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 14.3932vw;
  height: 4.7037vw;
  margin-top: 1.6933vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #fff;
  border: .2822vw solid #0071b8;
  border-radius: 2.3518vw;
  background-color: #0071b8;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.joinPopup .more:hover {
  color: #0071b8;
  background-color: transparent;
}

.joinPopup .more i {
  font-size: 1.317vw;

  margin-left: 3.1985vw;
}

/* 联系我们 */
.contactusBg {
  padding-top: 11.30208vw;
  padding-bottom: 15.10417vw;
}

.contactusBg .contactus .contactusTitle {
  margin-bottom: 5.05208vw;

  text-align: center;
}

.contactusBg .contactus .contactusTitle .title {
  font-size: .9375vw;

  margin-bottom: .67708vw;

  color: rgba(255, 255, 255, .5);
}

.contactusBg .contactus .contactusTitle .desc {
  font-size: 2.39583vw;
  line-height: 2.86458vw;

  color: #fff;
}

.contactusBg .contactus .contactusMain {
  padding: 0 4.16667vw;
}

.contactusBg .contactus .contactusMain ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contactusBg .contactus .contactusMain ul li {
  position: relative;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  padding: 0 1.04167vw;

  text-align: center;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.contactusBg .contactus .contactusMain ul li::after {
  position: absolute;
  top: 50%;
  right: 0;

  display: block;

  width: 1px;
  height: 5.72917vw;

  content: '';
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);

  background-color: rgba(255, 255, 255, .2);
}

.contactusBg .contactus .contactusMain ul li:last-child::after {
  display: none;
}

.contactusBg .contactus .contactusMain ul li .icon {
  margin-bottom: 1.25vw;
}

.contactusBg .contactus .contactusMain ul li .icon img {
  width: auto;
  height: 3.125vw;
}

.contactusBg .contactus .contactusMain ul li .desc {
  font-size: 1.04167vw;
  font-weight: bold;

  margin-bottom: .88542vw;

  color: #fff;
}

.contactusBg .contactus .contactusMain ul li .title {
  font-size: .83333vw;

  color: rgba(255, 255, 255, .5);
}

/* 留言 */
.message {
  position: relative;
  z-index: 2;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  height: 33.38542vw;
  margin-top: -5.20833vw;
  margin-bottom: 5.41667vw;

  background-color: #fff;
}

.message .left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;

  width: 30.83%;
  height: 100%;
  padding: 1.875vw 8.33333vw 1.30208vw 1.97917vw;

  background: url('../images/msgleftbg.jpg') no-repeat center/cover;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.message .left .title {
  font-size: 1.5625vw;
  font-weight: bold;
  line-height: 2.08333vw;

  color: #fff;
}

.message .left .postalCode {
  margin-bottom: 1.04167vw;
}

.message .left .postalCode p {
  font-size: 1.45833vw;
  font-weight: bold;

  color: #fff;
}

.message .left .postalCode span {
  font-size: .67708vw;

  color: rgba(245, 247, 250, .5);
}

.message .left .qrCode img {
  width: auto;
  height: 4.94792vw;
}

.message .left .qrCode p {
  font-size: .67708vw;

  margin-top: .625vw;

  color: rgba(245, 247, 250, .5);
}

.message .right {
  width: 69.17%;
  padding: 4.21875vw 7.34375vw;
}

.message .right .layui-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.message .right .messageInput {
  width: 18.17708vw;
  margin-bottom: .9375vw;
}

.message .right .messageInput p {
  font-size: .72917vw;
  font-weight: bold;

  margin-bottom: .26042vw;

  color: #000;
}

.message .right .messageInput p span {
  color: #0071b8;
}

.message .right .messageInput input {
  font-size: .72917vw !important;

  display: block;

  width: 100%;
  height: 3.02083vw;
  padding: 0 1.19792vw;

  color: rgba(0, 0, 0, .5);
  border: 1px solid #cedae0;
}

.message .right .messageInput.textarea {
  width: 100%;
  margin-bottom: 2.60417vw;
}

.message .right .messageInput.textarea textarea {
  font-size: .72917vw !important;

  display: block;

  width: 100%;
  height: 4.63542vw;
  padding: 1.19792vw;

  color: rgba(0, 0, 0, .5);
  border: 1px solid #cedae0;
}

.message .right .messageSubmit {
  width: 100%;
}

.message .right .messageSubmit button {
  font-size: .72917vw !important;

  width: 8.28125vw;
  height: 2.76042vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #fff;
  border: .10417vw solid #0071b8;
  border-radius: 1.35417vw;
  background: #0071b8;
}

.message .right .messageSubmit button:hover {
  color: #0071b8;
  background-color: transparent;
}

.message .right .messageSubmit button i {
  font-size: .625vw;

  margin-left: 2.1875vw;
}

/* 新闻列表 */
.newsBg {
  overflow: hidden;

  padding-top: 8.07292vw;
  padding-bottom: 5.15625vw;
}

.newsBg .detailTitle {
  margin-bottom: .3125vw;
}

.newsBg .news1 {
  position: relative;
  z-index: 9;

  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;

  margin-bottom: 1.875vw;

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  justify-content: space-between;

  overflow: hidden;
}
.newsBg .news1 .swiper-pagination{
  display: none;
}
.newsBg .news1 .swiper-slide {
  width: 31.67%;
  margin-right: 2.495%;
  background-color: #fff;
  border-radius: .5208vw;
  overflow: hidden;
  transition: all .8s ease;
}

.newsBg .news1 .swiper-slide:last-child {
  margin-right: 0%;
}

.newsBg .news1 .swiper-slide {
  padding: 2.0833vw;
}

.newsBg .news1 .swiper-slide:hover {
  background-color: #0071b8;
  -webkit-box-shadow: 0vw 0.781vw 1.042vw rgba(0, 113, 184, 0.3);
  box-shadow: 0vw 0.781vw 1.042vw rgba(0, 113, 184, 0.3);
}

.newsBg .news1 .swiper-slide:hover .image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.newsBg .news1 .swiper-slide:hover .time {
  color: #fff;
}

.newsBg .news1 .swiper-slide:hover .title {
  color: #fff;
}

.newsBg .news1 .swiper-slide:hover .desc {
  color: #fff;
}

.newsBg .news1 .swiper-slide:hover .moreBox {
  border-color: rgba(255, 255, 255, .4);
}

.newsBg .news1 .swiper-slide:hover .moreBox .more {
  color: #fff;
}

.newsBg .news1 .swiper-slide:hover .moreBox .more i {
  border-color: #fff;
}

.newsBg .news1 .swiper-slide:hover .moreBox .more i::after {
  background-color: #fff;
}

.newsBg .news1 .swiper-slide:hover .moreBox .more i::before {
  background-color: #fff;
}

.newsBg .news1 .swiper-slide .time {
  font-size: .8333vw;
  color: #666;
  transition: all .8s ease;
}

.newsBg .news1 .swiper-slide .title {
  font-size: 1.1458vw;
  color: #333;
  line-height: 1.6667vw;
  height: 3.3333vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: .7292vw 0px .8333vw;
  transition: all .8s ease;
}

.newsBg .news1 .swiper-slide .image {
  overflow: hidden;
}

.newsBg .news1 .swiper-slide .image img {
  width: 100%;
  height: auto;
  transition: all .8s ease;
}

.newsBg .news1 .swiper-slide .desc {
  font-size: .8333vw;
  color: #666;
  line-height: 1.3021vw;
  height: 2.6042vw;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: .9375vw 0px 2.1875vw;
  transition: all .8s ease;
}

.newsBg .news1 .swiper-slide .moreBox {
  padding-top: 1.3021vw;
  border-top: 2px solid #e6e6e6;
  transition: all .8s ease;
}

.newsBg .news1 .swiper-slide .moreBox .more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .7292vw;
  color: #808080;
  transition: all .8s ease;
}

.newsBg .news1 .swiper-slide .moreBox .more i {
  display: block;
  width: 1.25vw;
  height: 1.25vw;
  border: 1px solid #808080;
  border-radius: 50%;
  position: relative;
  transition: all .8s ease;
}

.newsBg .news1 .swiper-slide .moreBox .more i::after {
  position: absolute;
  top: 50%;
  right: .625vw;
  margin-top: -0.5px;
  width: 2.6042vw;
  height: 1px;
  background-color: #808080;
  content: "";
  display: block;
  transition: all .8s ease;
}

.newsBg .news1 .swiper-slide .moreBox .more i::before {
  position: absolute;
  top: 50%;
  left: 50%;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: .3125vw;
  height: .3125vw;
  border-radius: 50%;
  background-color: #808080;
  content: "";
  display: block;
  transition: all .8s ease;
}

.newsBg .news2 {
  margin-bottom: 4.94792vw;
}

.newsBg .news2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;

  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.newsBg .news2 ul li {
  width: 100%;
  margin-bottom: 1.875vw;

  -webkit-transition: all .8s ease;
  -moz-transition: all .8s ease;
  transition: all .8s ease;

  background-color: #fff;
  border-radius: .5208vw;
  overflow: hidden;
}

.newsBg .news2 ul li:last-child {
  margin-bottom: 0;
}

.newsBg .news2 ul li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  padding: 3.125vw 3.385vw 3.646vw;

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.newsBg .news2 ul li:hover .image img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.newsBg .news2 ul li:hover {
  background-color: #0071b8;
}

.newsBg .news2 ul li:hover .time {
  color: #fff;
}

.newsBg .news2 ul li:hover .content .title {
  color: #fff;
}

.newsBg .news2 ul li:hover .content .desc {
  color: #fff;
}

.newsBg .news2 ul li:hover .more {
  color: #fff;
}

.newsBg .news2 ul li:hover .more i {
  border-color: #fff;
}

.newsBg .news2 ul li:hover .more i::after {
  background-color: #fff;
}

.newsBg .news2 ul li:hover .more i::before {
  background-color: #fff;
}

.newsBg .news2 ul li .time {
  font-size: .8333vw;
  font-weight: bold;

  margin-right: 2.3438vw;

  color: #0071b8;

  -webkit-transition: all .8s ease;
  -moz-transition: all .8s ease;
  transition: all .8s ease;
}

.newsBg .news2 ul li .image {
  position: relative;

  overflow: hidden;
}

.newsBg .news2 ul li .image img {
  width: 100%;
  height: 14.0625vw;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;

  -o-object-fit: cover;
  object-fit: cover;
}

.newsBg .news2 ul li .content {
  margin-right: 9.4167vw;

  -webkit-transition: all .6s ease;
  -moz-transition: all .6s ease;
  transition: all .6s ease;

  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.newsBg .news2 ul li .content .desc {
  font-size: .83333vw;
  line-height: 1.4063vw;

  display: -webkit-box;
  overflow: hidden;

  height: 2.8125vw;

  text-overflow: ellipsis;

  color: #9e9e9c;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-transition: all .8s ease;
  -moz-transition: all .8s ease;
  transition: all .8s ease;
}

.newsBg .news2 ul li .content .title {
  font-size: 1.04167vw;
  font-weight: normal;
  line-height: 1.5104vw;

  display: -webkit-box;
  overflow: hidden;

  margin-bottom: .6563vw;

  text-overflow: ellipsis;

  color: #1d1615;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-transition: all .8s ease;
  -moz-transition: all .8s ease;
  transition: all .8s ease;
}

.newsBg .news2 ul li .more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .7292vw;
  color: #808080;
  transition: all .8s ease;
}

.newsBg .news2 ul li .more i {
  display: block;
  width: 1.25vw;
  height: 1.25vw;
  border: 1px solid #808080;
  border-radius: 50%;
  position: relative;
  transition: all .8s ease;
  margin-left: 3.6458vw;
}

.newsBg .news2 ul li .more i::after {
  position: absolute;
  top: 50%;
  right: .625vw;
  margin-top: -0.5px;
  width: 2.6042vw;
  height: 1px;
  background-color: #808080;
  content: "";
  display: block;
  transition: all .8s ease;
}

.newsBg .news2 ul li .more i::before {
  position: absolute;
  top: 50%;
  left: 50%;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: .3125vw;
  height: .3125vw;
  border-radius: 50%;
  background-color: #808080;
  content: "";
  display: block;
  transition: all .8s ease;
}


/* 分页 */
@media (min-width: 0) {
  .pageMain {
    position: relative;

    overflow: hidden;
  }

  .pageMain .layui-laypage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;

    margin: 0;
  }

  .pageMain .commonMain {
    max-width: var(--content-Wdith);
    margin: 0 auto;
    padding: 0 20px;
  }

  .pageMain #pagination {
    display: none;

    text-align: center;
  }

  .pageMain #pagination a {
    font-size: 14px;
    line-height: 30px;

    position: relative;

    width: 30px;
    height: 30px;
    margin: 0 4px;
    padding: 0;

    cursor: pointer;

    border: none;
    border-radius: 8px;
  }

  .pageMain #pagination a:hover {
    color: #0071b8;
  }

  .pageMain #pagination a.layui-laypage-prev {
    font-size: 16px;
  }

  .pageMain #pagination a.layui-laypage-next {
    font-size: 16px;
  }

  .pageMain #pagination .layui-laypage .layui-laypage-curr {
    font-size: 14px;
    font-weight: 600;
    line-height: 30px;

    width: 30px;
    height: 30px;
    margin: 0 4px;
    padding: 0;

    border: none;
  }

  .pageMain #pagination .layui-laypage .layui-laypage-curr em {
    display: block;

    border-radius: 8px;
    background: #0071b8;
  }

  .pageMain .loadMore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
  }

  .pageMain .loadMore a {
    font-size: 12px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;

    width: 130px;
    height: 45px;

    -webkit-transition: .8s ease;
    -moz-transition: .8s ease;
    transition: .8s ease;

    color: #314a61;
    border: 2px solid #0071b8;
    border-radius: 45px;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    justify-content: center;
  }

  .pageMain .loadMore a .icon {
    display: block;

    width: 12px;
    height: 13px;
    margin-left: 10px;

    -webkit-transition: .6s ease;
    -moz-transition: .6s ease;
    transition: .6s ease;

    background-image: url('../images/solution001_06.png');
    background-repeat: no-repeat;
    background-position: 0 -14px;
  }

  .pageMain .loadMore a:hover {
    color: #fff;
    background: #0071b8;
  }

  .pageMain .loadMore a:hover .icon {
    background-position: 0 0;
  }
}

@media (min-width: 768px) {
  .pageMain .commonMain {
    max-width: var(--content-Wdith-768);
  }

  .pageMain #pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .pageMain #pagination a {
    font-size: .7292vw;
    font-weight: normal;
    line-height: 2.5vw;

    width: 2.5vw;
    height: 2.5vw;
    margin: 0vw .5208vw;

    border-radius: 0vw;
    background-color: #f8f8f8;
  }

  .pageMain #pagination a:hover {
    color: #fff !important;
    background: #0071b8 !important;
  }

  .pageMain #pagination .layui-laypage .layui-laypage-curr {
    font-size: .7292vw;
    line-height: 2.5vw;

    width: 2.5vw;
    height: 2.5vw;
  }

  .pageMain #pagination .layui-laypage .layui-laypage-curr em {
    font-size: .7292vw;

    top: 0vw;
    left: 0vw;

    padding: 0vw;

    border-radius: 0vw;
  }

  .pageMain #pagination a.layui-laypage-prev {
    font-size: .6771vw;
  }

  .pageMain #pagination a.layui-laypage-next {
    font-size: .6771vw;
  }

  .pageMain .loadMore {
    display: none;
  }
}

@media (min-width: 1200px) {
  .pageMain .commonMain {
    max-width: var(--content-Wdith-1200);
  }

  .pageMain #pagination a {
    font-size: .7292vw;
    line-height: 2.5vw;

    width: 2.5vw;
    height: 2.5vw;
    margin: 0vw .5208vw;

    border-radius: 0vw;
  }

  .pageMain #pagination .layui-laypage .layui-laypage-curr {
    font-size: .9375vw;

    width: 2.5vw;
    height: 2.5vw;
  }

  .pageMain #pagination .layui-laypage .layui-laypage-curr em {
    border-radius: 0vw;
  }

  .pageMain #pagination a.layui-laypage-prev i {
    font-size: .625vw;
  }

  .pageMain #pagination a.layui-laypage-next i {
    font-size: .625vw;
  }
}

/* 视频弹窗 */
@media (min-width: 0) {
  .PopupVideoBox {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .5);
  }

  .PopupVideo {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    max-width: 960px;
    padding: 0 20px;

    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .PopupVideo video {
    width: 100%;
  }

  .PopupVideo iframe {
    width: 100%;
    min-height: 500px;
  }

  .PopupVideo .videoPlayer {
    overflow: hidden;

    border-radius: 10px;
  }

  .closeVideo {
    position: absolute;
    top: -25px;
    right: 25px;

    width: 22px;
    height: 22px;

    cursor: pointer;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .closeVideo::after {
    position: absolute;
    left: 50%;

    display: block;

    width: 2px;
    height: 100%;

    content: '';
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);

    background: #fff;
  }

  .closeVideo::before {
    position: absolute;
    top: 50%;

    display: block;

    width: 100%;
    height: 2px;

    content: '';
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);

    background: #fff;
  }
}

@media (min-width: 768px) {
  .PopupVideo .videoPlayer {
    border-radius: .625vw;
  }

  .PopupVideo {
    max-width: 60vw;
    padding: 0vw 1.5625vw;
  }

  .PopupVideo iframe {
    min-height: 31.25vw;
  }

  .closeVideo {
    top: -1.5625vw;
    right: 1.5625vw;

    width: 1.375vw;
    height: 1.375vw;
  }

  .closeVideo::after {
    width: .125vw;
  }

  .closeVideo::before {
    height: .125vw;
  }
}

@media (min-width: 1200px) {
  .PopupVideo .videoPlayer {
    border-radius: .5208vw;
  }

  .PopupVideo {
    max-width: 50vw;
    padding: 0vw 1.3021vw;
  }

  .PopupVideo iframe {
    min-height: 26.0417vw;
  }

  .closeVideo {
    top: -1.3021vw;
    right: 1.3021vw;

    width: 1.1458vw;
    height: 1.1458vw;
  }

  .closeVideo::after {
    width: .1042vw;
  }

  .closeVideo::before {
    height: .1042vw;
  }
}

/* 新闻详情 */
.newsDetailBg {
  padding-top: 5.88542vw;
  padding-bottom: 6.30208vw;
}

.newsDetailBg .newsDetailHead {
  margin-top: 4.11458vw;
  margin-bottom: 3.59375vw;

  text-align: center;
}

.newsDetailBg .newsDetailHead .time {
  font-size: .625vw;
  font-weight: bold;

  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  color: #8e8e8e;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.newsDetailBg .newsDetailHead .time span {
  font-size: .625vw;
  line-height: 1.04167vw;

  display: block;

  width: 1.82292vw;
  height: 1.04167vw;
  margin-right: .52083vw;

  color: #fff;
  border-radius: .10417vw;
  background: #0071b8;
}

.newsDetailBg .newsDetailHead .title {
  font-size: 2.60417vw;
  font-weight: bold;
  line-height: 3.125vw;

  margin-top: .67708vw;

  color: #000;
}

.newsDetailBg .newsDetailMain {
  padding: 4.16667vw 11.97917vw 6.71875vw;

  background-color: #fff;
}

.newsDetailBg .newsDetailMain .newsDetailShare {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  margin-bottom: 2.70833vw;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.newsDetailBg .newsDetailMain .newsDetailShare span {
  font-size: .72917vw;

  margin-right: .3125vw;

  color: #2a303b;
}

.newsDetailBg .newsDetailMain .newsDetailShare .social-share .social-share-icon {
  font-size: .78125vw;
  line-height: 1.875vw;

  width: 1.77083vw;
  height: 1.77083vw;
  margin-right: .46875vw;

  color: #000;
  border: 0;
  background-color: #f4f4f4;
}

.newsDetailBg .newsDetailMain .newsDetailShare .social-share .social-share-icon:hover {
  color: #fff;
}

.newsDetailBg .newsDetailMain .newsDetailShare .social-share .icon-wechat:hover {
  background-color: #24af41;
}

.newsDetailBg .newsDetailMain .newsDetailShare .social-share .icon-weibo:hover {
  background-color: #e71f19;
}

.newsDetailBg .newsDetailMain .newsDetailShare .social-share .icon-tencent:hover {
  background-color: #408ff5;
}

.newsDetailBg .newsDetailMain .newsDetailShare .social-share .icon-twitter:hover {
  background-color: #1296db;
}

.newsDetailBg .newsDetailMain .content {
  font-size: .9375vw;
  line-height: 1.77083vw;

  color: #2a303b;

  text-align: justify;
}

.newsDetailBg .newsDetailMain .content img,
.newsDetailBg .newsDetailMain .content video {
  display: block;

  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.newsDetailBg .newsDetailMain .newsDetailBtns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  width: 51.04167vw;
  margin: 0 auto;
  margin-top: 4.84375vw;
  padding-top: 4.11458vw;

  border-top: 1px solid rgba(125, 132, 136, .2);

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.newsDetailBg .newsDetailMain .newsDetailBtns .btn {
  background-color: #f8f9fb;
}

.newsDetailBg .newsDetailMain .newsDetailBtns .btn:hover .title {
  color: #0070b8;
}

.newsDetailBg .newsDetailMain .newsDetailBtns .btn a {
  display: block;

  width: 20.3125vw;
  height: 8.85417vw;
  padding: 1.40625vw 2.8125vw;
}

.newsDetailBg .newsDetailMain .newsDetailBtns .btn span {
  font-size: .625vw;
  line-height: 1.04167vw;

  display: block;

  width: 2.65625vw;
  height: 1.04167vw;
  margin-bottom: .98958vw;

  text-align: center;

  color: #fff;
  background: #0070b8;
}

.newsDetailBg .newsDetailMain .newsDetailBtns .btn .title {
  font-size: 1.04167vw;

  display: -webkit-box;
  overflow: hidden;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  text-overflow: ellipsis;

  color: #000;

  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.newsDetailBg .newsDetailMain .newsDetailBtns .return {
  background-color: #f8f9fb;
}

.newsDetailBg .newsDetailMain .newsDetailBtns .return:hover a {
  color: #0070b8;
}

.newsDetailBg .newsDetailMain .newsDetailBtns .return a {
  font-size: 1.04167vw;
  line-height: 8.85417vw;

  display: block;

  width: 8.33333vw;
  height: 8.85417vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;
  text-align: center;

  color: #000;
}

.newsDetailBg .newsDetailMain .newsDetailBtns .return img {
  width: .9375vw;
  height: auto;
  margin-top: -.10417vw;
}

/* 面包屑导航 */
.breadcrumbsNav {
  padding: 0vw 2.6042vw;
}

.breadcrumbsNav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumbsNav ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumbsNav ul li:first-child a {
  font-size: .83333vw;
  font-weight: bold;
}

.breadcrumbsNav ul li a {
  font-size: .72917vw;

  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  transition: all .4s ease;

  color: #4c505f;
}

.breadcrumbsNav ul li a:hover {
  color: #0070b8;
}

.breadcrumbsNav ul li i {
  font-size: .83333vw;
  font-weight: bold;

  margin: 0 .28646vw;

  color: #4c505f;
}

@media (max-width: 1200px) {
  .pc {
    display: none !important;
  }

  .mobile {
    display: block !important;
  }
}

/* 移动端 */
@media (max-width: 992px) {
  .content1440 {
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
  }

  /* 内页banner */
  .detailBanner .content .title {
    font-size: 27px;

    margin-bottom: 0;
  }

  .detailBanner .content .desc {
    font-size: 13px;
    line-height: 21px;

    display: none;

    width: 40%;
  }

  /* 内页分类 */
  .detailList.fixed {
    top: 60px;
  }

  .detailList {
    height: 50px;
    margin-bottom: -50px;
    padding: 0 0;
  }

  .detailList .detailListMain ul li::after {
    height: 18px;
  }

  .detailList .detailListMain ul li a {
    font-size: 15px;
    line-height: 50px;

    height: 50px;
  }

  /* 内页标题 */
  .detailTitle .title {
    font-size: 25px;
  }

  .detailTitle.detailTitleSmall .title {
    font-size: 23px;

    margin-bottom: 15px;
  }

  .detailTitle .line {
    width: 44px;
    height: 3px;
  }

  .detailTitle .line::after {
    width: 12px;
  }

  /* 关于我们 */
  .aboutusBg {
    padding-top: 80px;
  }

  .aboutusBg .aboutus .aboutusNumber {
    margin-top: 15px;
    padding: 15px 0 35px;
  }

  .aboutusBg .aboutus .aboutusNumber ul li::after {
    bottom: -17.5px;
  }

  .aboutusBg .aboutus .aboutusNumber ul li {
    height: 75px;
    margin: 17px 0;
  }

  .aboutusBg .aboutus .aboutusNumber ul li b {
    font-size: 26px;
  }

  .aboutusBg .aboutus .aboutusNumber ul li p {
    font-size: 12px;

    margin-top: 4px;
  }

  .aboutusBg .aboutus .aboutusVideo .play {
    width: 40px;
    height: 40px;

    background-size: 40px;
  }

  .aboutusBg .aboutus .aboutusContent .title {
    font-size: 23px;
  }

  .aboutusBg .aboutus .aboutusContent .content {
    font-size: 13px;
    line-height: 23px;
  }

  /* 分公司 */
  .branchOffice .branchOfficeMain {
    width: 48%;
    padding-bottom: 40px;
  }

  .branchOffice .branchOfficeMain .swiper-slide .content .title {
    font-size: 15px;

    padding-left: 27px;

    background-size: 19px;
  }

  .branchOffice .branchOfficeMain .swiper-slide .content .more {
    font-size: 12px;
  }

  .branchOffice .branchOfficeMain .swiper-slide .content .more i {
    font-size: 12px;

    margin-left: 20px;
  }

  .branchOffice .branchOfficeMain .swiper-slide .image .round svg {
    font-size: 17px;

    letter-spacing: 2px;
  }

  .branchOffice .branchOfficeMain .swiper-pagination {
    display: block;
  }

  .branchOffice .branchOfficeMain .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;

    opacity: 1 !important;
    border: 1px solid rgba(220, 220, 220, .5);
    background: none;
  }

  .branchOffice .branchOfficeMain .swiper-pagination-bullet-active {
    border-color: #0071b8;
    background: #0071b8;
  }

  /* 分公司详情 */
  .subsidiaryDetail {
    margin: 90px auto 70px;
  }

  .subsidiaryDetail .subsidiaryDetailTitle {
    margin-bottom: 35px;
  }

  .subsidiaryDetail .subsidiaryDetailTitle .content .desc {
    font-size: 14px;
    line-height: 24px;
  }

  .subsidiaryDetail .subsidiaryDetailTitle .content .more {
    font-size: 12px;

    width: 100px;
    height: 33px;

    border-radius: 30px;
  }

  .subsidiaryDetail .subsidiaryDetailTitle .content .more i {
    font-size: 12px;

    margin-left: 13px;
  }

  .subsidiaryDetail .subsidiaryDetailMain .play {
    width: 40px;
    height: 40px;

    background-size: 40px;
  }

  /* 党支部设置 */
  .partyIntroBg {
    padding: 100px 0 60px;
  }

  .partyIntroBg .partyIntro .left {
    width: 60%;
  }

  .partyIntroBg .partyIntro .left .desc {
    font-size: 13px;
    line-height: 25px;
  }

  .partyIntroBg .partyIntro .left .number ul li b {
    font-size: 28px;
  }

  .partyIntroBg .partyIntro .left .number ul li p {
    font-size: 12px;
  }

  .partyIntroBg .partyIntro .left .more {
    font-size: 12px;

    width: 100px;
    height: 33px;

    border-radius: 30px;
  }

  .partyIntroBg .partyIntro .left .more i {
    font-size: 12px;

    margin-left: 13px;
  }

  .partyIntroBg .partyIntro .right {
    width: 30%;
  }

  /* 主题教育 */
  .educationBg {
    padding: 70px 0;
  }

  .educationBg .education .educationTitle .detailTitle .desc {
    font-size: 14px;
    line-height: 25px;
  }

  .educationBg .education .educationTitle .btns .swiper-button-prev,
  .educationBg .education .educationTitle .btns .swiper-button-next {
    font-size: 11px;

    width: 30px;
    height: 30px;
  }

  .educationBg .education .educationMain {
    padding-bottom: 40px;
  }

  .educationBg .education .educationMain .swiper-slide .title {
    font-size: 16px;
  }

  .educationBg .education .educationMain .swiper-slide .desc {
    font-size: 12px;
    line-height: 21px;

    max-height: 84px;
  }

  .educationBg .education .educationMain .swiper-slide .desc::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }

  .educationBg .education .educationMain .swiper-pagination {
    display: block;
  }

  .educationBg .education .educationMain .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;

    opacity: 1 !important;
    border: 1px solid #fff;
    background: none;
  }

  .educationBg .education .educationMain .swiper-pagination-bullet-active {
    border-color: #d52932;
    background: #d52932;
  }

  .weight {
    margin: 51px auto 60px;
  }

  .weight ul li:nth-child(odd) {
    margin-bottom: 60px;
  }

  .weight ul li .content .desc {
    font-size: 13px;
    line-height: 25px;
  }

  /* 创新 */
  .innovateBg {
    padding: 50px 0 300px;
  }

  .innovateBg .innovate .content {
    font-size: 13px;
    line-height: 25px;

    padding: 0;
  }

  /* 品牌释义 */
  .brandMeaning {
    margin-top: 90px;
  }

  .brandMeaning .brandMeaningMain .desc {
    font-size: 13px;
    line-height: 25px;

    padding: 0 6%;
  }

  /* 企业文化 */
  .cultureBg {
    padding-top: 50px;
    padding-bottom: 130px;
  }

  .cultureBg .culture .cultureMain ul li .titleBox .title {
    font-size: 16px;
  }

  .cultureBg .culture .cultureMain ul li .titleBox .desc {
    font-size: 14px;
  }

  .cultureBg .culture .cultureMain ul li .text {
    font-size: 13px;
    line-height: 22px;
  }

  /* 发展历程 */
  .historyBg {
    padding: 90px 0;
  }

  .historyBg .history ul li {
    padding: 50px 0;
  }

  .historyBg .history ul li .content {
    width: 42%;
  }

  .historyBg .history ul li .content .title {
    font-size: 16px;

    margin-bottom: 11px;
  }

  .historyBg .history ul li .content .desc {
    font-size: 13px;
    line-height: 25px;

    margin-bottom: 18px;
  }

  .historyBg .history ul li .content .more {
    font-size: 12px;

    width: 100px;
    height: 33px;

    border-radius: 30px;
  }

  .historyBg .history ul li .content .more i {
    font-size: 12px;

    margin-left: 13px;
  }

  /* 荣誉资质 */
  .honorBg {
    padding: 99px 0 51px;
  }

  .honorBg .honor .honorList {
    margin: 25px 0 35px;
  }

  .honorBg .honor .honorList ul li {
    margin: 0 4px;
  }

  .honorBg .honor .honorList ul li a {
    font-size: 13px;

    min-width: 87px;
    height: 34px;
    padding: 0 12px;

    border-radius: 30px;
  }

  .honorBg .honor .honorMain ul li .image {
    height: 250px;
    padding-bottom: 50px;
  }

  .honorBg .honor .honorMain ul li .image img {
    height: 138px;
  }

  .honorBg .honor .honorMain ul li .text {
    font-size: 12px;

    height: 50px;
    padding: 0 16px;
  }

  /* 产品列表 */
  .products {
    padding-top: 90px;
  }

  .products .productsList {
    margin: 25px auto 35px;
  }

  .products .productsList ul li {
    margin: 0 4px;
  }

  .products .productsList ul li a {
    font-size: 13px;

    min-width: 87px;
    height: 34px;
    padding: 0 12px;

    border-radius: 30px;
  }

  .products .productsTopping {
    height: 320px;
  }

  .products .productsTopping .content span {
    font-size: 12px;
  }

  .products .productsTopping .content .title {
    font-size: 22px;

    margin: 6px 0 10px;
  }

  .products .productsTopping .content .desc {
    font-size: 13px;
    line-height: 22px;

    margin-bottom: 27px;
  }

  .products .productsTopping .content .btns .btn {
    font-size: 12px;

    width: 90px;
    height: 33px;

    border-radius: 30px;
  }

  .products .productsTopping .content .btns .btn i {
    font-size: 12px;

    margin-left: 7px;
  }

  .products .productsTopping .content .btns .btn.more {
    margin-right: 12px;
  }

  .products .productsMain ul li {
    width: 48.5%;
    margin-right: 3%;
  }

  .products .productsMain ul li:nth-child(3n+3) {
    margin-right: 3%;
  }

  .products .productsMain ul li:nth-child(2n+2) {
    margin-right: 0;
  }

  .products .productsMain ul li:nth-last-child(-n+3) {
    margin-bottom: 3%;
  }

  .products .productsMain ul li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }

  .products .productsMain ul li .image {
    height: 310px;
  }

  .products .productsMain ul li .image img {
    width: 80%;
  }

  .products .productsMain ul li .content {
    height: 160px;
  }

  .products .productsMain ul li .content .title {
    font-size: 16px;

    margin-bottom: 10px;
    padding-bottom: 12px;
  }

  .products .productsMain ul li .content .desc {
    font-size: 13px;
    line-height: 22px;

    margin-bottom: 12px;
  }

  .products .productsMain ul li .content .more {
    font-size: 12px;
  }

  .products .productsMain ul li .content .more i {
    margin-left: 21px;
  }

  /* 工程建设 */
  .construction {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .construction .constructionList {
    margin: 25px auto 35px;
  }

  .construction .constructionList ul li {
    font-size: 13px;

    min-width: 87px;
    height: 34px;
    margin: 0 4px;
    padding: 0 12px;

    border-radius: 30px;
  }

  .construction .constructionMain .swiper-slide .content {
    width: 30%;
    margin-right: 20px;
  }

  .construction .constructionMain .swiper-slide .content .title {
    font-size: 22px;
    line-height: 28px;
  }

  .construction .constructionMain .swiper-slide .content .desc {
    font-size: 13px;
    line-height: 22px;
  }

  /* 工程业绩 */
  .performanceBg {
    padding-top: 50px;
    padding-bottom: 60px;
  }

  .performanceBg .performance .performanceTitle {
    font-size: 25px;

    margin-bottom: 25px;
  }

  .performanceBg .performance .performanceList {
    margin-bottom: 35px;
  }

  .performanceBg .performance .performanceList ul li {
    font-size: 13px;

    margin: 0 6px;
  }

  .performanceBg .performance .performanceList ul li::after {
    width: 80px;
    height: 2px;
    margin-top: 7px;
  }

  .performanceBg .performance .performanceSwiper {
    width: 70%;
    height: auto;
  }

  .performanceBg .performance .performanceMain {
    width: 100%;
  }

  .performanceBg .performance .performanceMain .swiper-slide .content .title {
    font-size: 16px;

    margin-right: 50px;
  }

  .performanceBg .performance .performanceMain .swiper-slide .content .desc {
    font-size: 12px;
    line-height: 20px;
  }

  .performanceBg .performance .performanceMain .swiper-button-prev,
  .performanceBg .performance .performanceMain .swiper-button-next {
    font-size: 12px;

    width: 30px;
    height: 36px;
  }

  /* 公司资质 */
  .qualifications {
    margin-top: 50px;
    padding-bottom: 60px;
  }

  .qualifications .qualificationsMain {
    margin-top: 25px;
    padding-bottom: 50px;
  }

  .qualifications .qualificationsMain .swiper-slide .image {
    height: 250px;
  }

  .qualifications .qualificationsMain .swiper-slide .image img {
    height: 138px;
  }

  .qualifications .qualificationsMain .swiper-slide .text {
    font-size: 12px;

    height: 50px;
    padding: 0 16px;
  }

  .qualifications .qualificationsMain .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  /* 专业团队 */
  .teamBg {
    padding: 60px 0 50px;
  }

  .teamBg .team .content .desc {
    font-size: 13px;
    line-height: 22px;
  }

  .teamBg .team .images {
    padding-bottom: 50px;
  }

  .teamBg .team .images .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  /* 遍布全国 */
  .businessBg .content1440 {
    width: 75vw !important;
  }

  /* 跟随导航 */
  .followNavHeight {
    margin-top: 46px;
  }

  .followNav {
    top: 60px;

    height: 46px;
  }

  .followNav.up {
    top: 60px;
  }

  .followNav .title {
    font-size: 15px;
  }

  .followNav .list ul {
    display: none;
  }

  .followNav .list ul li {
    font-size: 12px;
    line-height: 46px;

    margin-right: 17px;
  }

  .followNav .list ul li::after {
    height: 1.5px;
  }

  .followNav .list a {
    font-size: 12px;

    width: 80px;
    height: 29px;

    border-radius: 30px;
  }

  /* 产品详情 */
  .productsInfoBg .productsInfo {
    height: 400px;
  }

  .productsInfoBg .productsInfo .content .title {
    font-size: 26px;

    margin-bottom: 14px;
  }

  .productsInfoBg .productsInfo .content .desc {
    font-size: 13px;
    line-height: 22px;

    margin-bottom: 33px;
  }

  .productsInfoBg .productsInfo .images {
    padding-bottom: 50px;
  }

  .productsInfoBg .productsInfo .images .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
  }

  .productsInfoBg .productsInfo .content .more {
    font-size: 12px;

    width: 100px;
    height: 33px;

    border-radius: 30px;
  }

  .productsInfoBg .productsInfo .content .more i {
    font-size: 12px;

    margin-left: 13px;
  }

  /* 产品概述 */
  .productOverview {
    padding: 60px 0;
  }

  .productOverview .desc {
    font-size: 13px;
    line-height: 22px;

    max-height: 154px;
    padding-right: 20px;
  }

  .productOverview .desc::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }

  /* 功能特点 */
  .productsCharBg {
    height: auto;
    padding: 60px 0;
  }

  .productsCharBg .productsChar .productsCharMain {
    position: relative;

    margin-top: 25px;
    padding-bottom: 40px;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-slide {
    height: 220px;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-slide .content {
    padding: 0 18px 14px;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-slide .content .title {
    font-size: 16px;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-slide .content .desc {
    font-size: 13px;
    line-height: 22px;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-slide .icon img {
    height: 40px;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-pagination {
    display: block;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;

    opacity: 1 !important;
    border: 1px solid rgba(220, 220, 220, .5);
    background: none;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-pagination-bullet-active {
    border-color: #0071b8;
    background: #0071b8;
  }

  /* 技术参数 */
  .productsParamBg {
    padding: 60px 0 60px;
  }

  .productsParamBg .productsParam .productsParamMain {
    margin-top: 25px;
    padding: 40px 30px 60px;
  }

  .productsParamBg .productsParam .productsParamMain .item {
    padding: 12px 0;
  }

  .productsParamBg .productsParam .productsParamMain .item .title {
    font-size: 12px;

    width: 25%;
  }

  .productsParamBg .productsParam .productsParamMain .item .param span {
    font-size: 12px;
  }

  .productsParamBg .productsParam .productsParamMain table {
    font-size: 12px !important;
    line-height: 20px !important;
  }

  .productsParamBg .productsParam .productsParamMain table tr {
    padding: 12px 0;
  }

  .productsParamBg .productsParam .productsParamMain table th:nth-child(odd),
  .productsParamBg .productsParam .productsParamMain table td:nth-child(odd) {
    width: 95px;
    padding-right: 15px;
  }

  /* 资料下载 */
  .productsDownload {
    margin-bottom: 60px;
    padding-top: 60px;
  }

  .productsDownload .productsDownloadMain {
    margin-top: 25px;
  }

  .productsDownload .productsDownloadMain ul li {
    margin-bottom: 14px;
  }

  .productsDownload .productsDownloadMain ul li a {
    height: 60px;
  }

  .productsDownload .productsDownloadMain ul li .title img {
    height: 31px;
    margin-right: 8px;
  }

  .productsDownload .productsDownloadMain ul li .title {
    font-size: 14px;
  }

  .productsDownload .productsDownloadMain ul li .info .time {
    font-size: 12px;
  }

  .productsDownload .productsDownloadMain ul li .info .time i {
    font-size: 15px;

    margin-right: 3px;
  }

  .productsDownload .productsDownloadMain ul li .info .size {
    font-size: 12px;
  }

  .productsDownload .productsDownloadMain ul li .info .size i {
    font-size: 14px;

    margin-right: 3px;
  }

  .productsDownload .productsDownloadMain ul li .info .icon {
    font-size: 14px;

    width: 31px;
    height: 31px;
  }

  /* 在线询盘 */
  .consultingServiceBg .consultingService {
    height: 200px;
  }

  .consultingServiceBg .consultingService .content .title {
    font-size: 23px;

    margin-bottom: 9px;
  }

  .consultingServiceBg .consultingService .content .desc {
    font-size: 13px;
  }

  .consultingServiceBg .consultingService .more {
    font-size: 12px;

    width: 100px;
    height: 33px;

    border-radius: 30px;
  }

  .consultingServiceBg .consultingService .more i {
    font-size: 12px;

    margin-left: 13px;
  }

  /* 应用领域 */
  .applicationAreaBg {
    margin-bottom: 60px;
    padding-top: 60px;
  }

  .applicationAreaBg .applicationArea .applicationAreaMain {
    width: 48%;
    margin-top: 25px;
    padding-bottom: 40px;
  }

  .applicationAreaBg .applicationArea .applicationAreaTitle .btns .swiper-button-prev,
  .applicationAreaBg .applicationArea .applicationAreaTitle .btns .swiper-button-next {
    font-size: 11px;

    width: 30px;
    height: 30px;
  }

  .applicationAreaBg .applicationArea .applicationAreaTitle .btns .swiper-button-prev {
    margin-right: 10px;
  }

  .applicationAreaBg .applicationArea .applicationAreaMain .swiper-slide .title {
    font-size: 16px;

    height: 80px;
    padding: 20px 18px;
  }

  /* 应用案例 */
  .applicationCasesBg {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .applicationCasesBg .applicationCases .applicationCasesMain {
    margin-top: 25px;
    padding-bottom: 40px;
  }

  .applicationCasesBg .applicationCases .applicationCasesMain .swiper-slide .title {
    font-size: 16px;

    padding: 20px 18px;
  }

  .applicationCasesBg .applicationCases .applicationCasesTitle .btns .swiper-button-prev,
  .applicationCasesBg .applicationCases .applicationCasesTitle .btns .swiper-button-next {
    font-size: 11px;

    width: 30px;
    height: 30px;
  }

  .applicationCasesBg .applicationCases .applicationCasesTitle .btns .swiper-button-prev {
    margin-right: 10px;
  }

  /* 工程业绩 */
  .projects {
    margin: 90px auto 60px;
  }

  .projects .projectsItem {
    margin-bottom: 40px;
  }

  .projects .projectsItem .title {
    font-size: 24px;

    margin-bottom: 8px;
  }

  .projects .projectsItem .desc {
    font-size: 14px;

    margin-bottom: 25px;
  }

  .projects .projectsItem .projectsMain ul {
    height: 33.871vw;
  }

  .projects .projectsItem .projectsMain ul li {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .projects .projectsItem .projectsMain ul li:nth-child(3n+3) {
    margin-right: 3%;
  }

  .projects .projectsItem .projectsMain ul li:nth-child(2n+2) {
    margin-right: 0;
  }

  .projects .projectsItem .projectsMain ul li:nth-last-child(-n+3) {
    margin-bottom: 3%;
  }

  .projects .projectsItem .projectsMain ul li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }

  .projects .projectsItem .projectsMain ul li .text {
    font-size: 16px;

    margin-top: 14px;

    text-align: center;
  }

  .projects .projectsItem .layui-flow-more {
    font-size: 13px;

    margin-top: 35px;
  }

  .projects .projectsItem .layui-flow-more cite {
    font-size: 12px;

    width: 126px;
    height: 36px;

    border-width: 2px;
    border-radius: 30px;
  }

  .projects .projectsItem .layui-flow-more cite::after {
    font-size: 16px;

    margin-top: 0;
    margin-left: 11px;
  }

  /* 工程业绩 */
  .projectsDetail {
    padding: 60px;
  }

  .projectsDetail .projectsDetailClose {
    font-size: 12px;

    top: 40px;
    right: 45px;

    width: 30px;
    height: 30px;

    border-width: 2px;
  }

  .projectsDetail .projectsDetailTitle .left .detailTitle .title {
    font-size: 22px;
  }

  .projectsDetail .projectsDetailMain {
    margin-top: 30px;
    padding-right: 30px;
  }

  .projectsDetail .projectsDetailMain::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }

  .projectsDetail .projectsDetailMain .title {
    font-size: 14px;

    margin-top: 15px;
  }

  .projectsDetail .projectsDetailMain .desc {
    font-size: 12px;
    line-height: 22px;

    margin-top: 8px;
  }

  .projectsDetail .projectsDetailMain img {
    margin-top: 20px;
  }

  /* 新闻列表 */
  .newsBg {
    padding-top: 90px;
  }

  .newsBg .news1 {
    margin-bottom: 3%;
  }

  .newsBg .news1 .swiper-slide {
    width: 48.5%;
    margin-right: 3%;
    border-radius: 10px;
  }

  .newsBg .news1 .swiper-slide .time {
    font-size: 13px;
  }

  .newsBg .news1 .swiper-slide .title {
    font-size: 15px;
    line-height: 25px;
    height: 50px;
  }

  .newsBg .news1 .swiper-slide .desc {
    font-size: 14px;
    line-height: 23px;
    height: 46px;
  }

  .newsBg .news1 .swiper-slide .moreBox .more {
    font-size: 12px;
  }

  .newsBg .news1 .swiper-slide .moreBox .more i {
    width: 20px;
    height: 20px;
  }

  .newsBg .news1 .swiper-slide .moreBox .more i::before {
    width: 4px;
    height: 4px;
  }

  .newsBg .news1 .swiper-slide .moreBox .more i::after {
    width: 37px;
    right: 10px;
  }

  .newsBg .news2 ul li {
    border-radius: 10px;
    margin-bottom: 23px;
  }

  .newsBg .news2 ul li .image img {
    height: auto;
  }

  .newsBg .news2 ul li .content .title {
    font-size: 15px;
    line-height: 25px;
  }

  .newsBg .news2 ul li .content .desc {
    font-size: 13px;
    line-height: 22px;

    height: 44px;
  }

  .newsBg .news2 ul li .time {
    font-size: 14px;
  }

  .newsBg .news2 ul li .more {
    font-size: 12px;
  }

  .newsBg .news2 ul li .more i {
    width: 20px;
    height: 20px;
    margin-left: 45px;
  }

  .newsBg .news2 ul li .more i::before {
    width: 4px;
    height: 4px;
  }

  .newsBg .news2 ul li .more i::after {
    width: 37px;
    right: 10px;
  }

  /* 新闻详情 */
  .newsDetailBg {
    padding: 40px 0 60px;
  }

  .newsDetailBg .newsDetailHead {
    margin-top: 40px;
    margin-bottom: 35px;
  }

  .newsDetailBg .newsDetailHead .time span {
    font-size: 11px;
    line-height: 19px;

    width: 36px;
    height: 19px;
  }

  .newsDetailBg .newsDetailHead .time {
    font-size: 13px;
  }

  .newsDetailBg .newsDetailHead .title {
    font-size: 28px;
    line-height: 40px;

    margin-top: 15px;
  }

  .newsDetailBg .newsDetailMain {
    padding: 41px 80px 66px;
  }

  .newsDetailBg .newsDetailMain .newsDetailShare span {
    font-size: 13px;
  }

  .newsDetailBg .newsDetailMain .newsDetailShare .social-share .social-share-icon {
    font-size: 15px;
    line-height: 28px;

    width: 28px;
    height: 28px;
    margin-right: 6px;
  }

  .newsDetailBg .newsDetailMain .content {
    font-size: 15px;
    line-height: 27px;
  }

  .newsDetailBg .newsDetailMain .newsDetailBtns {
    width: 100%;
  }

  .newsDetailBg .newsDetailMain .newsDetailBtns .btn {
    width: 38%;
  }

  .newsDetailBg .newsDetailMain .newsDetailBtns .btn a {
    width: 100%;
    height: 115px;
    padding: 20px 20px;
  }

  .newsDetailBg .newsDetailMain .newsDetailBtns .btn span {
    font-size: 12px;
    line-height: 21px;

    width: 46px;
    height: 21px;
  }

  .newsDetailBg .newsDetailMain .newsDetailBtns .return a {
    font-size: 15px;
    line-height: 115px;

    width: 120px;
  }

  .newsDetailBg .newsDetailMain .newsDetailBtns .return img {
    width: 15px;
    margin-top: -4px;
  }

  .newsDetailBg .newsDetailMain .newsDetailBtns .btn .title {
    font-size: 15px;
  }

  /* 面包屑导航 */
  .breadcrumbsNav ul li:first-child a {
    font-size: 15px;
  }

  .breadcrumbsNav ul li i {
    font-size: 13px;

    margin: 0 5px;
  }

  .breadcrumbsNav ul li a {
    font-size: 14px;
  }

  /* 人才理念 */
  .idea {
    margin: 90px auto 60px;
  }

  .idea .ideaMain ul li .content .title {
    font-size: 16px;
  }

  .idea .ideaMain ul li .content .desc {
    font-size: 13px;
    line-height: 21px;

    min-height: 42px;
  }

  /* 员工活动 */
  .activitiesBg {
    padding: 60px 0;
  }

  .activitiesBg .activities .activitiesMain {
    width: 80%;
  }

  .activitiesBg .activities .activitiesMain .swiper-slide .text {
    font-size: 16px;

    height: 90px;
    padding-bottom: 20px;
  }

  /* 加入我们 */
  .join {
    margin-bottom: 60px;
    padding-top: 60px;
  }

  .join .joinList {
    margin: 25px auto 35px;
  }

  .join .joinList ul li {
    margin: 0 4px;
  }

  .join .joinList ul li a {
    font-size: 13px;

    min-width: 87px;
    height: 34px;
    padding: 0 12px;

    border-radius: 30px;
  }

  .join .joinMain ul li {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
    padding: 24px;
  }

  .join .joinMain ul li:nth-child(3n+3) {
    margin-right: 3%;
  }

  .join .joinMain ul li:nth-child(2n+2) {
    margin-right: 0;
  }

  .join .joinMain ul li:nth-last-child(-n+3) {
    margin-bottom: 3%;
  }

  .join .joinMain ul li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }

  .join .joinMain ul li .titleBox {
    margin-bottom: 11px;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .join .joinMain ul li .titleBox .title .department i::before {
    font-size: 15px;

    margin-right: 4px;
  }

  .join .joinMain ul li .titleBox .icon {
    font-size: 34px;

    margin-right: 15px;
  }

  .join .joinMain ul li .titleBox .title .name {
    font-size: 16px;

    margin-bottom: 4px;
  }

  .join .joinMain ul li .titleBox .title .department {
    font-size: 13px;
  }

  .join .joinMain ul li .desc {
    font-size: 13px;
    line-height: 21px;

    height: 42px;
    margin-bottom: 17px;
  }

  .join .joinMain ul li .more {
    font-size: 16px;
  }

  /* 加入我们弹窗 */
  .joinPopupContainer {
    width: 70vw;
    height: 60vw;
  }

  .joinPopup .joinPopupClose {
    font-size: 12px;

    top: 30px;
    right: 26px;

    width: 30px;
    height: 30px;

    border-width: 2px;
  }

  .joinPopup .joinPopupTitle {
    margin-bottom: 35px;
    padding-bottom: 20px;
  }

  .joinPopup .joinPopupTitle .title {
    font-size: 22px;
  }

  .joinPopup .joinPopupTitle .department {
    font-size: 13px;
  }

  .joinPopup .joinPopupTitle .department i {
    font-size: 13px;
  }

  .joinPopup .joinPopupTitle .department i::before {
    font-size: 17px;
  }

  .joinPopup .joinPopupMain h3 {
    font-size: 15px;
  }

  .joinPopup .joinPopupMain {
    font-size: 13px;
    line-height: 25px;

    height: 215px;
  }

  .joinPopup .joinPopupMain::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }

  .joinPopup .more {
    font-size: 12px !important;

    width: 110px;
    height: 36px;
    margin-top: 30px;

    border-radius: 30px;
  }

  .joinPopup .more i {
    font-size: 11px;

    margin-left: 20px;
  }

  /* 发展历程弹窗 */
  .historyPopupContainer {
    width: 80vw;
    height: 46.371vw;
  }

  .historyPopup {
    padding: 40px 30px 0;
  }

  .historyPopup .historyPopupClose {
    font-size: 12px;

    top: 20px;
    right: 15px;

    width: 30px;
    height: 30px;

    border-width: 2px;
  }

  .historyPopup .historyPopupYear {
    font-size: 54px;
  }

  .historyPopup .historyPopupMain .contents {
    margin-top: 34px;
  }

  .historyPopup .historyPopupMain .contents .swiper-slide .title {
    font-size: 16px;

    margin: 0 0 15px;
  }

  .historyPopup .historyPopupMain .contents .swiper-slide .desc {
    font-size: 12px;
    line-height: 22px;

    max-height: 110px;
    padding-right: 20px;
  }

  .historyPopup .historyPopupMain .contents .swiper-slide .desc::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }

  .historyPopup .historyPopupMain .contents .swiper-slide .desc p::before {
    font-size: 13px;
  }

  .historyPopup .historyPopupMain .swiper-button-next {
    left: 53.6389vw;
  }

  .historyPopup .historyPopupMain .swiper-button-prev,
  .historyPopup .historyPopupMain .swiper-button-next {
    font-size: 12px;

    width: 30px;
    height: 30px;
  }

  /* 联系我们 */
  .contactusBg {
    padding: 112px 0 150px;
  }

  .contactusBg .contactus .contactusTitle .title {
    font-size: 12px;

    margin-bottom: 7px;
  }

  .contactusBg .contactus .contactusTitle .desc {
    font-size: 24px;
    line-height: 32px;
  }

  .contactusBg .contactus .contactusMain ul li {
    padding: 0 10px;
  }

  .contactusBg .contactus .contactusMain ul li .icon img {
    height: 42px;
  }

  .contactusBg .contactus .contactusMain ul li .desc {
    font-size: 15px;
  }

  .contactusBg .contactus .contactusMain ul li .title {
    font-size: 14px;
  }

  /* 留言 */
  .message {
    height: 400px;
    margin-top: -60px;
    margin-bottom: 60px;
  }

  .message .left {
    padding: 30px 110px 30px 30px;
  }

  .message .left .title {
    font-size: 16px;
    line-height: 26px;
  }

  .message .left .postalCode {
    margin-bottom: 15px;
  }

  .message .left .postalCode p {
    font-size: 15px;
  }

  .message .left .postalCode span {
    font-size: 12px;
  }

  .message .left .qrCode img {
    height: 60px;
  }

  .message .left .qrCode p {
    font-size: 12px;
  }

  .message .right {
    padding: 30px 40px;
  }

  .message .right .messageInput {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 3%;
  }

  .message .right .messageInput:nth-child(2n+2) {
    margin-right: 0;
  }

  .message .right .messageInput p {
    font-size: 13px;

    margin-bottom: 9px;
  }

  .message .right .messageInput input {
    font-size: 12px !important;

    height: 40px;
  }

  .message .right .messageInput.textarea {
    margin-right: 0;
    margin-bottom: 5%;
  }

  .message .right .messageInput.textarea textarea {
    font-size: 12px !important;

    height: 85px;
  }

  .message .right .messageSubmit button {
    font-size: 12px !important;

    width: 96px;
    height: 36px;

    border-radius: 30px;
  }

  .message .right .messageSubmit button i {
    font-size: 11px;

    margin-left: 20px;
  }
}

@media (max-width: 768px) {

  /* 内页分类 */
  .detailList {
    display: none;
  }

  /* 内页标题 */
  .detailTitle {
    width: 80%;
    margin: 0 auto;

    text-align: center;
  }

  .detailTitle .title {
    font-size: 24px;

    margin-bottom: 14px;
  }

  .detailTitle .line {
    width: 51px;
    height: 3px;
  }

  .detailTitle .line::after {
    width: 12px;
  }

  /* 内页banner */
  .detailBanner .image {
    padding-top: 60.2%;
  }

  .detailBanner .content .title {
    font-size: 26px;
  }

  .detailBanner .content .desc {
    font-size: 14px;

    width: 80%;
  }

  /* 关于我们 */
  .aboutusBg {
    padding: 40px 0;
  }

  .aboutusBg .aboutus .aboutusNumber ul li {
    width: 50%;
  }

  .aboutusBg .aboutus .aboutusNumber ul li:nth-child(2n+2) {
    border-right: 0;
  }

  .aboutusBg .aboutus .aboutusNumber ul li:nth-last-child(-n+4)::after {
    display: block;
  }

  .aboutusBg .aboutus .aboutusNumber ul li:nth-last-child(-n+2)::after {
    display: none;
  }

  .aboutusBg .aboutus .aboutusNumber ul li p {
    font-size: 13px;

    margin-top: 2px;
  }

  .aboutusBg .aboutus .aboutusVideo {
    margin-bottom: 40px;
  }

  .aboutusBg .aboutus .aboutusVideo .image video {
    min-height: 230px;

    -o-object-fit: cover;
    object-fit: cover;
  }

  .aboutusBg .aboutus .aboutusVideo .play {
    width: 52px;
    height: 52px;

    background-size: 52px;
  }

  .aboutusBg .aboutus .aboutusContent {
    flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .aboutusBg .aboutus .aboutusContent .title {
    font-size: 24px;
    line-height: 35px;

    margin-right: 0;
    margin-bottom: 25px;

    text-align: center;
  }

  .aboutusBg .aboutus .aboutusContent .content {
    font-size: 15px;
    line-height: 25px;

    width: 100%;
  }

  /* 分公司 */
  .branchOffice {
    margin: 40px 0;
  }

  .branchOffice .detailTitle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .branchOffice .branchOfficeMain {
    width: 100%;
    margin-top: 25px;
  }

  .branchOffice .branchOfficeMain .swiper-slide-active {
    margin: 0;
  }

  .branchOffice .branchOfficeMain .swiper-slide .image .round {
    display: none;
  }

  .branchOffice .branchOfficeMain .swiper-slide:hover {
    margin-top: 0px;
  }

  .branchOffice .branchOfficeMain .swiper-slide .content {
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
  }

  .branchOffice .branchOfficeMain .swiper-slide .content .title {
    font-size: 18px;

    margin-bottom: 6px;
  }

  .branchOffice .branchOfficeMain .swiper-slide .content .more {
    font-size: 14px;

    margin-left: 27px;
  }

  /* 分公司详情 */
  .subsidiaryDetail {
    margin: 40px auto;
  }

  .subsidiaryDetail .subsidiaryDetailTitle {
    flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .subsidiaryDetail .subsidiaryDetailTitle .detailTitle {
    width: 80%;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .subsidiaryDetail .subsidiaryDetailTitle .content {
    width: 100%;
    margin-top: 35px;
  }

  .subsidiaryDetail .subsidiaryDetailTitle .content .desc {
    font-size: 15px;
    line-height: 28px;
  }

  .subsidiaryDetail .subsidiaryDetailTitle .content .more {
    font-size: 13px;

    width: 115px;
    height: 44px;
    margin-top: 35px;

    border-width: 2px;
    border-radius: 30px;
  }

  .subsidiaryDetail .subsidiaryDetailTitle .content .more i {
    font-size: 12px;
  }

  .subsidiaryDetail .subsidiaryDetailMain video {
    min-height: 230px;
  }

  .subsidiaryDetail .subsidiaryDetailMain .play {
    width: 52px;
    height: 52px;

    background-size: 52px;
  }

  /* 党支部设置 */
  .partyIntroBg {
    padding: 40px 0;
  }

  .partyIntroBg .partyIntro {
    flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .partyIntroBg .partyIntro .left {
    width: 100%;
  }

  .partyIntroBg .partyIntro .left .detailTitle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .partyIntroBg .partyIntro .left .desc {
    font-size: 14px;
    line-height: 24px;

    margin: 25px 0 30px;
  }

  .partyIntroBg .partyIntro .left .number ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .partyIntroBg .partyIntro .left .number ul li {
    margin-bottom: 20px;

    -webkit-box-flex: 50%;
    -webkit-flex: 50%;
    -moz-box-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
  }

  .partyIntroBg .partyIntro .left .number ul li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }

  .partyIntroBg .partyIntro .left .number ul li p {
    font-size: 13px;

    margin-top: 4px;
  }

  .partyIntroBg .partyIntro .left .more {
    font-size: 13px;

    width: 115px;
    height: 44px;
    margin: 35px auto 0;

    border-width: 2px;
    border-radius: 30px;
  }

  .partyIntroBg .partyIntro .left .more i {
    font-size: 12px;
  }

  .partyIntroBg .partyIntro .right {
    width: 100%;
    margin-top: 35px;
  }

  .partyIntroBg .partyIntro .right div {
    width: 100%;
  }

  .partyIntroBg .partyIntro .right::after {
    display: none;
  }

  /* 主题教育 */
  .educationBg {
    padding: 40px 0;
  }

  .educationBg .education .educationTitle {
    margin-bottom: 25px;
  }

  .educationBg .education .educationTitle .detailTitle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .educationBg .education .educationTitle .detailTitle .desc {
    margin-top: 25px;
  }

  .educationBg .education .educationTitle .btns {
    display: none;
  }

  .educationBg .education .educationMain {
    overflow: hidden;

    width: 100%;
  }

  .educationBg .education .educationMain .swiper-slide {
    min-height: auto;
    padding: 22px 20px;
  }

  .educationBg .education .educationMain .swiper-slide .title {
    font-size: 18px;
    line-height: 30px;

    margin-bottom: 9px;
    padding-left: 25px;

    background-position-y: 5px;
    background-size: 20px;
  }

  .educationBg .education .educationMain .swiper-slide .desc {
    font-size: 14px;
    line-height: 24px;

    max-height: none;
  }

  .weight {
    margin: 40px auto;
  }

  .weight ul li {
    flex-direction: column !important;

    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -moz-box-orient: vertical !important;
    -moz-box-direction: normal !important;
    -ms-flex-direction: column !important;
  }

  .weight ul li:nth-child(odd) {
    margin-bottom: 30px;
  }

  .weight ul li .image {
    width: 100% !important;
  }

  .weight ul li .content {
    width: 100% !important;
    margin-top: 30px;
  }

  .weight ul li .content .title {
    font-size: 18px;

    margin-bottom: 15px;
  }

  .weight ul li .content .desc {
    font-size: 14px;
    line-height: 24px;
  }

  .weight ul li .content .title::after {
    width: 51px;
    height: 3px;
    margin-top: 16px;
  }

  .innovateBg {
    padding: 40px 0 103%;
  }

  .innovateBg .innovate .title {
    font-size: 24px;

    width: 80%;
    margin: 0 auto;
  }

  .innovateBg .innovate .title::after {
    width: 51px;
    height: 3px;
    margin-top: 16px;
  }

  .innovateBg .innovate .content {
    font-size: 14px;
    line-height: 24px;

    margin-top: 25px;

    text-align: left;
    text-align: justify;
  }

  /* 品牌释义 */
  .brandMeaning {
    margin-top: 40px;
  }

  .brandMeaning .brandMeaningMain {
    margin-top: 25px;
  }

  .brandMeaning .brandMeaningMain .desc {
    font-size: 14px;
    line-height: 24px;

    margin-bottom: 25px;
    padding: 0;

    text-align: justify;
  }

  /* 企业文化 */
  .cultureBg {
    padding: 40px 0 80px;
  }

  .cultureBg .culture .cultureMain::after {
    display: none;
  }

  .cultureBg .culture .cultureMain {
    width: 100%;
    height: auto;
    margin-top: 25px;

    border: 0;
    border-radius: 0;
  }

  .cultureBg .culture .cultureMain ul {
    flex-direction: column;

    margin-top: 0;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .cultureBg .culture .cultureMain ul li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;

    margin-bottom: 18px;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cultureBg .culture .cultureMain ul li:last-child {
    margin-bottom: 0;
  }

  .cultureBg .culture .cultureMain ul li:nth-child(1) .text {
    color: #666;
  }

  .cultureBg .culture .cultureMain ul li:nth-child(2) .text {
    color: #666;
  }

  .cultureBg .culture .cultureMain ul li .titleBox {
    width: 105px;
    height: 105px;
    margin: 0 auto;
    margin-right: 20px;
  }

  .cultureBg .culture .cultureMain ul li .titleBox .title {
    font-size: 18px;
  }

  .cultureBg .culture .cultureMain ul li .titleBox .desc {
    font-size: 14px;
  }

  .cultureBg .culture .cultureMain ul li .line {
    display: none;
  }

  .cultureBg .culture .cultureMain ul li .text {
    font-size: 14px;
    line-height: 24px;

    text-align: left;
  }

  /* 发展历程 */
  .historyBg {
    padding: 40px 0;
  }

  .historyBg .history ul::after {
    display: none;
  }

  .historyBg .history ul li {
    flex-direction: column !important;

    margin-bottom: 30px;
    padding: 40px 0 0;

    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -moz-box-orient: vertical !important;
    -moz-box-direction: normal !important;
    -ms-flex-direction: column !important;
  }

  .historyBg .history ul li::before {
    display: none;
  }

  .historyBg .history ul li::after {
    display: none;
  }

  .historyBg .history ul li .content {
    width: 100%;
    margin-top: 25px;
  }

  .historyBg .history ul li .content .title {
    font-size: 18px;

    margin-bottom: 10px;
  }

  .historyBg .history ul li .content .desc {
    font-size: 14px;
    line-height: 24px;

    margin-bottom: 13px;
  }

  .historyBg .history ul li .content .more {
    font-size: 13px;

    visibility: visible;

    width: 115px;
    height: 44px;

    opacity: 1;
    border-width: 2px;
    border-radius: 30px;
  }

  .historyBg .history ul li .content .more i {
    font-size: 12px;
  }

  .historyBg .history ul li .image {
    width: 100%;
  }

  .historyBg .history ul li .image .year {
    font-size: 32px;
    font-weight: bold;

    top: -5px;
    left: 0;
  }

  .historyPopupContainer {
    width: 100vw;
    height: auto;
    min-height: 50%;
  }

  .historyPopup {
    height: auto;
    padding: 20px 0 0;
  }

  .historyPopup .historyPopupClose {
    font-size: 12px;

    top: 20px;
    right: 15px;

    width: 30px;
    height: 30px;

    border-width: 2px;
  }

  .historyPopup .historyPopupYear {
    font-size: 32px;
    font-weight: bold;

    margin-bottom: 5px;
    margin-left: 20px;
  }

  .historyPopup .historyPopupMain {
    flex-direction: column;

    padding-bottom: 10px;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .historyPopup .historyPopupMain .images {
    width: 100%;
  }

  .historyPopup .historyPopupMain .contents {
    width: 100%;
    height: 230px;
    padding-bottom: 30px;

    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

  .historyPopup .historyPopupMain .contents .swiper-slide {
    padding: 0 20px;
  }

  .historyPopup .historyPopupMain .contents .swiper-slide .desc p::before {
    font-size: 15px;
  }

  .historyPopup .historyPopupMain .contents {
    margin-top: 25px;
  }

  .historyPopup .historyPopupMain .contents .swiper-slide .title {
    font-size: 18px;

    margin: 0 0 8px;
  }

  .historyPopup .historyPopupMain .contents .swiper-slide .desc {
    font-size: 14px;
    line-height: 25px;

    max-height: 125px;
  }

  .historyPopup .historyPopupMain .swiper-button-prev,
  .historyPopup .historyPopupMain .swiper-button-next {
    display: none;
  }

  .historyPopup .historyPopupMain .swiper-pagination {
    display: block;
  }

  .historyPopup .historyPopupMain .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;

    opacity: 1 !important;
    border: 1px solid #999;
    background: none;
  }

  .historyPopup .historyPopupMain .swiper-pagination-bullet-active {
    border-color: #0071b8;
    background: #0071b8;
  }

  /* 荣誉资质 */
  .honorBg {
    padding: 40px 0;
  }

  .honorBg .honor .honorList {
    margin: 25px 0 20px;
  }

  .honorBg .honor .honorList ul {
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -moz-box-pack: left;
    -ms-flex-pack: left;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .honorBg .honor .honorList ul li {
    width: -webkit-calc((100% - 20px) / 3);
    width: -moz-calc((100% - 20px) / 3);
    width: calc((100% - 20px) / 3);
    margin: 0;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .honorBg .honor .honorList ul li:nth-child(3n+3) {
    margin-right: 0;
  }

  .honorBg .honor .honorList ul li a {
    font-size: 14px;

    width: 100%;
    min-width: auto;
    height: 40px;
    padding: 0 12px;

    border-radius: 30px;
  }

  .honorBg .honor .honorMain ul li {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 20px !important;

    -webkit-box-shadow: 0 5px 15px #edf2f5;
    box-shadow: 0 5px 15px #edf2f5;
  }

  .honorBg .honor .honorMain ul li .image img {
    height: 158px;
  }

  .honorBg .honor .honorMain ul li .text {
    font-size: 14px;

    height: 60px;
  }

  /* 工程建设 */
  .construction {
    padding: 40px 0;
  }

  .construction .constructionList {
    margin: 25px auto 20px;
  }

  .construction .constructionList ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .construction .constructionList ul li {
    font-size: 14px;

    min-width: 95px;
    height: 40px;
    margin-bottom: 8px;
    padding: 0 12px;

    border-radius: 30px;
  }

  .construction .constructionMain {
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
    margin: 0 auto;
  }

  .construction .constructionMain .swiper-slide {
    flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .construction .constructionMain .swiper-slide .image {
    width: 100%;
  }

  .construction .constructionMain .swiper-slide .content {
    width: 100%;
    margin-top: 24px;
    margin-right: 0;
  }

  .construction .constructionMain .swiper-slide .content .title {
    font-size: 18px;
    line-height: 26px;

    margin-bottom: 8px;
  }

  .construction .constructionMain .swiper-slide .content .desc {
    font-size: 14px;
    line-height: 24px;
  }

  /* 工程业绩 */
  .performanceBg {
    padding: 40px 0;
  }

  .performanceBg .performance .performanceList ul li {
    font-size: 16px;
  }

  .performanceBg .performance .performanceSwiper {
    width: 100%;
    height: auto;
  }

  .performanceBg .performance .performanceMain {
    padding-bottom: 40px;
  }

  .performanceBg .performance .performanceMain .swiper-slide .content {
    position: static;

    visibility: visible;
    flex-direction: column;

    height: auto;
    padding: 20px;

    opacity: 1;
    background: none;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .performanceBg .performance .performanceMain .swiper-slide .content .title {
    font-size: 18px;

    margin-bottom: 8px;

    color: #333;
  }

  .performanceBg .performance .performanceMain .swiper-slide .content .desc {
    font-size: 14px;
    line-height: 24px;

    color: #666;
  }

  .performanceBg .performance .performanceMain .swiper-button-prev,
  .performanceBg .performance .performanceMain .swiper-button-next {
    display: none;
  }

  .performanceBg .performance .performanceMain .swiper-pagination {
    display: block;
  }

  .performanceBg .performance .performanceMain .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;

    opacity: 1 !important;
    border: 1px solid rgb(220, 220, 220);
    background: none;
  }

  .performanceBg .performance .performanceMain .swiper-pagination-bullet-active {
    border-color: #0071b8;
    background: #0071b8;
  }

  /* 公司资质 */
  .qualifications {
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .qualifications .qualificationsMain .swiper-slide {
    width: 100% !important;
  }

  .qualifications .qualificationsMain {
    margin-top: 30px;
    padding-bottom: 30px;
  }

  .qualifications .qualificationsMain .swiper-slide .image img {
    height: 158px;
  }

  .qualifications .qualificationsMain .swiper-slide .text {
    font-size: 15px;

    height: 55px;
  }

  /* 专业团队 */
  .teamBg {
    padding: 40px 0;
  }

  .teamBg .team {
    flex-direction: column-reverse;

    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -moz-box-orient: vertical;
    -moz-box-direction: reverse;
    -ms-flex-direction: column-reverse;
  }

  .teamBg .team .images {
    width: 100%;
    margin-right: 0;
    padding-bottom: 40px;
  }

  .teamBg .team .content {
    width: 100%;
    margin-top: 0;
  }

  .teamBg .team .content .detailTitle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .teamBg .team .content .desc {
    font-size: 14px;
    line-height: 24px;

    margin-top: 25px;
    margin-bottom: 30px;

    text-align: center;
  }

  /* 遍布全国 */
  .businessBg {
    padding: 40px 0;
  }

  .businessBg .business .detailTitle .desc {
    font-size: 14px;
    line-height: 24px;

    margin-top: 25px;
    margin-bottom: 30px;

    text-align: center;
  }

  .businessBg .content1440 {
    width: -webkit-calc(100% - 40px) !important;
    width: -moz-calc(100% - 40px) !important;
    width: calc(100% - 40px) !important;
  }

  .businessBg .business .businessMain .china {
    font-size: 13px;

    top: 37%;
    left: 74%;

    width: 35px;
    height: 35px;
  }

  .businessBg .business .businessMain .china::after {
    width: 65px;
    height: 65px;
  }

  .businessBg .business .businessMain .lines .linesItem .drop i {
    width: 4px;
    height: 4px;
  }

  .businessBg .business .businessMain .lines .linesItem .drop::after {
    width: 12px;
    height: 12px;
  }

  .businessBg .business .businessMain .lines .linesItem .drop::before {
    width: 25px;
    height: 25px;
  }

  .businessBg .business .businessMain .lines .linesItem .name {
    font-size: 12px;
  }

  .businessBg .business .businessMain .lines .linesItem:nth-child(1) .name {
    top: -2.52083vw;
    left: 4.60417vw;
  }

  .businessBg .business .businessMain .lines .linesItem:nth-child(2) .name {
    top: 7.98958vw;
    left: -4.04167vw;
  }

  .businessBg .business .businessMain .lines .linesItem:nth-child(3) .name {
    top: 3.08333vw;
    left: -2.67708vw;
  }

  .businessBg .business .businessMain .lines .linesItem:nth-child(4) .name {
    bottom: -7.125vw;
    left: -3.98958vw;
  }

  .businessBg .business .businessMain .lines .linesItem:nth-child(5) .name {
    bottom: -6.125vw;
    left: -2.67708vw;
  }

  .businessBg .business .businessMain .lines .linesItem:nth-child(6) .name {
    right: -4.19792vw;
    bottom: -7.125vw;
  }

  /* 产品列表 */
  .products {
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .products .productsList {
    margin: 25px auto 20px;
  }

  .products .productsList ul {
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -moz-box-pack: left;
    -ms-flex-pack: left;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .products .productsList ul li {
    width: -webkit-calc((100% - 20px) / 3);
    width: -moz-calc((100% - 20px) / 3);
    width: calc((100% - 20px) / 3);
    margin: 0;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  .products .productsList ul li:nth-child(3n+3) {
    margin-right: 0;
  }

  .products .productsList ul li a {
    font-size: 14px;

    width: 100%;
    min-width: auto;
    height: 40px;
    padding: 0 12px;

    border-radius: 30px;
  }

  .products .productsTopping {
    flex-direction: column;

    height: auto;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .products .productsTopping .image {
    width: 86%;
    margin: 0 auto;
    padding: 30px 0;
  }

  .products .productsTopping .content {
    width: 100%;
    margin-left: 0;
    padding: 0 20px 27px;
  }

  .products .productsTopping .content span {
    font-size: 13px;
  }

  .products .productsTopping .content .title {
    font-size: 18px;
    font-weight: bold;
  }

  .products .productsTopping .content .desc {
    font-size: 14px;
    line-height: 24px;

    margin-bottom: 20px;
  }

  .products .productsTopping .content .btns .btn {
    font-size: 13px;

    width: 105px;
    height: 41px;

    border-width: 2px;
    border-radius: 30px;
  }

  .products .productsTopping .content .btns .btn i {
    font-size: 12px;
  }

  .products .productsTopping .content .btns .btn.more {
    margin-right: 15px;
  }

  .products .productsMain {
    margin: 25px auto 35px;
  }

  .products .productsMain::after {
    display: none;
  }

  .products .productsMain ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .products .productsMain ul li .image {
    height: auto;
    padding: 30px 0;
  }

  .products .productsMain ul li .image img {
    width: 100%;
  }

  .products .productsMain ul li .content {
    height: auto;
    padding: 20px 24px;
  }

  .products .productsMain ul li .content .title {
    font-size: 18px;

    margin-bottom: 10px;
    padding-bottom: 12px;
  }

  .products .productsMain ul li .content .desc {
    font-size: 14px;
    line-height: 24px;

    margin-bottom: 12px;

    text-align: justify;
  }

  /* 产品详情 */
  .productsInfoBg {
    padding: 40px 0;
  }

  .productsInfoBg .productsInfo {
    flex-direction: column;

    height: auto;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .productsInfoBg .productsInfo .images {
    width: 100%;
  }

  .productsInfoBg .productsInfo .content {
    width: 100%;
    margin-top: 25px;
  }

  .productsInfoBg .productsInfo .content .title {
    font-size: 22px;

    margin-bottom: 10px;
  }

  .productsInfoBg .productsInfo .content .desc {
    font-size: 14px;
    line-height: 24px;

    margin-bottom: 20px;
  }

  .productsInfoBg .productsInfo .content .more {
    font-size: 13px;

    width: 115px;
    height: 44px;

    border-width: 2px;
    border-radius: 30px;
  }

  .productsInfoBg .productsInfo .content .more i {
    font-size: 12px;
  }

  /* 产品概述 */
  .productOverview {
    flex-direction: column;

    padding: 40px 0;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .productOverview .detailTitle {
    margin-bottom: 30px;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .productOverview .desc {
    font-size: 15px;
    line-height: 26px;

    overflow: visible;

    width: 100%;
    max-height: none;
    padding-right: 0;
  }

  /* 功能特点 */
  .productsCharBg {
    padding: 40px 0;
  }

  .productsCharBg .productsChar .detailTitle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .productsCharBg .productsChar .productsCharMain {
    overflow: hidden;

    margin-top: 30px;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-slide {
    border-radius: 10px;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-slide .icon {
    margin-top: 25px;
    margin-right: 20px;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-slide .icon img {
    height: 55px;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-slide .content {
    padding: 0 20px 18px;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-slide .content .title {
    font-size: 18px;

    margin-bottom: 8px;
  }

  .productsCharBg .productsChar .productsCharMain .swiper-slide .content .desc {
    font-size: 14px;
    line-height: 24px;
  }

  /* 技术参数 */
  .productsParamBg {
    padding: 40px 0;
  }

  .productsParamBg .productsParam .detailTitle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .productsParamBg .productsParam{
    border-radius: 0px 0px 12px 12px;
    overflow: hidden;
  }

  .productsParamBg .productsParam .productsParamMain {
    overflow: hidden;

    margin-top: 30px;
    padding: 27px 22px;

    border-radius: 10px;
  }

  .productsParamBg .productsParam .productsParamMain .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
    padding: 9px 0;
  }

  .productsParamBg .productsParam .productsParamMain .item .title {
    font-size: 14px;
  }

  .productsParamBg .productsParam .productsParamMain .item .param span {
    font-size: 14px;

    margin-right: 9px;
  }

  .productsParamBg .productsParam .productsParamMain{
    overflow-x: auto;
    padding-bottom: 15px;
  }

  .productsParamBg .productsParam .productsParamMain::-webkit-scrollbar {
    width: 3px;
    height: 3px;
  
    background-color: #d5d5d5;
  }
  
  .productsParamBg .productsParam .productsParamMain::-webkit-scrollbar-track {
    border-radius: 3px;
    background-color: #d5d5d5;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .1);
  }
  
  .productsParamBg .productsParam .productsParamMain::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: #0070b8;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .1);
  }

  .productsParamBg .productsParam .productsParamMain table {
    font-size: 14px !important;
    line-height: 23px !important;
    min-width: 768px;
  }

  .productsParamBg .productsParam .productsParamMain table tr {
    padding: 0;

    /* border-bottom: 0; */

    /* -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; */
  }

  .productsParamBg .productsParam .productsParamMain table th:nth-child(odd),
  .productsParamBg .productsParam .productsParamMain table td:nth-child(odd) {
    /* width: 100%; */
    margin: 9px 0 4px;
    padding-right: 14px;
  }
  .productsParamBg .productsParam .productsParamMain table th:last-child,
  .productsParamBg .productsParam .productsParamMain table td:last-child{
    padding-right: 0px;
  }

  .productsParamBg .productsParam .productsParamMain table th:nth-child(even),
  .productsParamBg .productsParam .productsParamMain table td:nth-child(even) {
    /* width: 100%; */
    padding-bottom: 9px;
    padding-right: 14px;

    /* border-bottom: 1px solid rgba(125, 125, 125, .5); */

    -webkit-box-flex: 0;
    -webkit-flex: none;
    -moz-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }

  /* 资料下载 */
  .productsDownload {
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .productsDownload .detailTitle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .productsDownload .productsDownloadMain {
    margin-top: 30px;
  }

  .productsDownload .productsDownloadMain ul li {
    margin-bottom: 15px;
  }

  .productsDownload .productsDownloadMain ul li a {
    height: auto;
    padding: 18px 13px;

    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .productsDownload .productsDownloadMain ul li .title {
    font-size: 14px;

    margin-bottom: 0;
  }

  .productsDownload .productsDownloadMain ul li .title img {
    height: 31px;
    margin-right: 4px;
  }

  .productsDownload .productsDownloadMain ul li .info {
    width: 32px;
    margin-left: 15px;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .productsDownload .productsDownloadMain ul li .info .icon {
    font-size: 13px;

    width: 28px;
    height: 28px;
    margin-right: 0;
    margin-left: 0;
  }

  .productsDownload .productsDownloadMain ul li .info .time {
    font-size: 13px;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    display: none;

    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .productsDownload .productsDownloadMain ul li .info .time i {
    font-size: 17px;
  }

  .productsDownload .productsDownloadMain ul li .info .size {
    font-size: 13px;

    display: none;

    margin-left: 15px;
  }

  /* 在线询盘 */
  .consultingServiceBg .consultingService {
    height: 150px;
  }

  .consultingServiceBg .consultingService .content .title {
    font-size: 23px;

    margin-bottom: 5px;
  }

  .consultingServiceBg .consultingService .content .desc {
    font-size: 14px;
  }

  .consultingServiceBg .consultingService .more {
    font-size: 13px;

    width: 115px;
    height: 44px;

    border-width: 2px;
    border-radius: 30px;
  }

  .consultingServiceBg .consultingService .more i {
    font-size: 12px;
  }

  /* 应用领域 */
  .applicationAreaBg {
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .applicationAreaBg .applicationArea .applicationAreaTitle .detailTitle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .applicationAreaBg .applicationArea .applicationAreaTitle .btns {
    display: none;
  }

  .applicationAreaBg .applicationArea .applicationAreaMain {
    overflow: hidden;

    width: 100%;
    margin-top: 30px;
  }

  .applicationAreaBg .applicationArea .applicationAreaMain .swiper-slide .title {
    font-size: 16px;
  }

  .applicationAreaBg .applicationArea .applicationAreaMain .swiper-pagination {
    display: block;
  }

  .applicationAreaBg .applicationArea .applicationAreaMain .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;

    opacity: 1 !important;
    border: 1px solid rgba(220, 220, 220, .5);
    background: none;
  }

  .applicationAreaBg .applicationArea .applicationAreaMain .swiper-pagination-bullet-active {
    border-color: #0071b8;
    background: #0071b8;
  }

  /* 应用领域 */
  .applicationCasesBg {
    padding: 40px 0;
  }

  .applicationCasesBg .applicationCases .applicationCasesTitle .detailTitle {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .applicationCasesBg .applicationCases .applicationCasesTitle .btns {
    display: none;
  }

  .applicationCasesBg .applicationCases .applicationCasesMain {
    overflow: hidden;

    margin-top: 30px;
  }

  .applicationCasesBg .applicationCases .applicationCasesMain .swiper-slide .title {
    font-size: 16px;
  }

  .applicationCasesBg .applicationCases .applicationCasesMain .swiper-pagination {
    display: block;
  }

  .applicationCasesBg .applicationCases .applicationCasesMain .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;

    opacity: 1 !important;
    border: 1px solid rgba(220, 220, 220, .5);
    background: none;
  }

  .applicationCasesBg .applicationCases .applicationCasesMain .swiper-pagination-bullet-active {
    border-color: #0071b8;
    background: #0071b8;
  }

  /* 跟随导航 */
  .followNavHeight {
    margin-top: 55px;
  }

  .followNav {
    height: 55px;
  }

  /* 工程业绩 */
  .projects {
    margin: 40px auto;
  }

  .projects .projectsItem .title {
    font-size: 23px;
  }

  .projects .projectsItem .desc {
    font-size: 15px;
    line-height: 25px;

    margin-bottom: 19px;
  }

  .projects .projectsItem .projectsMain ul {
    height: 217.6354vw;
  }

  .projects .projectsItem .projectsMain ul li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 26px !important;
  }

  .projects .projectsItem .projectsMain ul li:last-of-type {
    margin-bottom: 0 !important;
  }

  .projects .projectsItem .projectsMain ul li .text {
    font-size: 16px;

    margin-top: 10px;
  }

  .projects .projectsItem .layui-flow-more {
    margin-top: 30px;
  }

  .projects .projectsItem .layui-flow-more cite {
    font-size: 13px;

    width: 134px;
    height: 43px;
  }

  .projects .projectsItem .layui-flow-more cite::after {
    font-size: 20px;

    margin-left: 4px;
  }

  /* 工程业绩详情 */
  .projectsDetail {
    padding: 25px 20px;
  }

  .projectsDetail .projectsDetailClose {
    top: 20px;
    right: 15px;
  }

  .projectsPopupContainer {
    width: -webkit-calc(100% - 40px);
    width: -moz-calc(100% - 40px);
    width: calc(100% - 40px);
    height: 600px;
  }

  .projectsDetail .projectsDetailTitle {
    margin-right: 0;
  }

  .projectsDetail .projectsDetailTitle .left {
    margin-bottom: 20px;
  }

  .projectsDetail .projectsDetailTitle .left .social-share {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .projectsDetail .projectsDetailTitle .left .social-share .social-share-icon {
    font-size: 16px;
    line-height: 33px;

    width: 33px;
    height: 33px;
  }

  .projectsDetail .projectsDetailTitle .left .tiktok {
    width: 33px;
    height: 33px;
  }

  .projectsDetail .projectsDetailTitle .left .tiktok img {
    height: 22px;
  }

  .projectsDetail .projectsDetailTitle .left .tiktok .popup {
    bottom: 42px;

    width: 84px;
    height: 84px;
    padding: 5px;

    -webkit-box-shadow: 0 5px 10px #ddd;
    box-shadow: 0 5px 10px #ddd;
  }

  .projectsDetail .projectsDetailTitle .left .tiktok .popup::after {
    bottom: -11px;

    border-width: 6px;
  }

  .projectsDetail .projectsDetailTitle .left .tiktok .popup img {
    width: 100%;
    height: auto;
  }

  .projectsDetail .projectsDetailMain {
    max-height: 350px;
  }

  .projectsDetail .projectsDetailMain .title {
    font-size: 15px;

    margin-top: 13px;
  }

  .projectsDetail .projectsDetailMain .desc {
    font-size: 14px;
    line-height: 24px;

    margin-top: 8px;
  }

  .projectsDetail .projectsDetailMain img {
    margin-top: 13px;
  }

  /* 新闻列表 */
  .newsBg {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .newsBg .news1 .swiper-slide {
    width: 100%;
    margin-right: 15px;
    padding: 20px;
  }

  .newsBg .news2 {
    margin-bottom: 30px;
  }
  .newsBg .news1{
    margin-bottom: 38px;
    padding-bottom: 50px;
  }
  .newsBg .news1 .swiper-pagination{
    display: block;
  }
  .newsBg .news1 .swiper-pagination-bullet-active{
    background: #0071b8;
  }
  .newsBg .news1 .swiper-slide .time {
    font-size: 14px;
  }

  .newsBg .news1 .swiper-slide .title {
    font-size: 16px;
    line-height: 24px;
    height: 48px;
    margin: 10px 0px 10px;
  }

  .newsBg .news1 .swiper-slide .desc {
    font-size: 14px;
    line-height: 22px;
    height: 44px;
    margin: 10px 0px 20px;
  }

  .newsBg .news1 .swiper-slide .moreBox {
    padding-top: 15px;
  }

  .newsBg .news1 .swiper-slide .moreBox .more {
    font-size: 14px;
  }

  .newsBg .news1 .swiper-slide .moreBox .more i {
    width: 24px;
    height: 24px;
  }

  .newsBg .news1 .swiper-slide .moreBox .more i::before {
    width: 6px;
    height: 6px;
  }

  .newsBg .news1 .swiper-slide .moreBox .more i::after {
    width: 50px;
    right: 12px;
  }

  .newsBg .news2 ul li {
    margin-bottom: 15px;
  }

  .newsBg .news2 ul li a {
    flex-direction: column;

    padding: 20px;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .newsBg .news2 ul li .content {
    margin-right: 0;
  }

  .newsBg .news2 ul li .content .title {
    font-size: 18px;
    line-height: 27px;

    min-height: none;
    margin-bottom: 10px;

    text-align: justify;
  }

  .newsBg .news2 ul li .content .desc {
    font-size: 14px;
    line-height: 21px;

    height: auto;

    text-align: justify;
  }

  .newsBg .news2 ul li .time {
    font-size: 14px;

    margin-right: 0;
    margin-bottom: 10px;
  }

  .newsBg .news2 ul li .more {
    font-size: 14px;
    margin-top: 15px;
  }

  .newsBg .news2 ul li .more i {
    width: 24px;
    height: 24px;
  }

  .newsBg .news2 ul li .more i::before {
    width: 6px;
    height: 6px;
  }

  .newsBg .news2 ul li .more i::after {
    width: 50px;
    right: 12px;
  }

  /* 新闻详情 */
  .newsDetailBg {
    padding: 20px 0 40px;
  }

  .breadcrumbsNav ul li:first-child a {
    font-size: 14px;
  }

  .breadcrumbsNav ul li a {
    font-size: 13px;
  }

  .breadcrumbsNav ul li i {
    font-size: 12px;

    margin: 0 3px;
  }

  .newsDetailBg .newsDetailHead {
    margin: 30px 0 25px;
  }

  .newsDetailBg .newsDetailHead .title {
    font-size: 24px;
    line-height: 32px;

    margin-top: 10px;
  }

  .newsDetailBg .newsDetailMain .newsDetailShare {
    margin-bottom: 25px;
  }

  .newsDetailBg .newsDetailMain {
    padding: 30px 17px;
  }

  .newsDetailBg .newsDetailMain .content {
    font-size: 15px;
    line-height: 27px;
  }

  .newsDetailBg .newsDetailMain .newsDetailBtns {
    flex-direction: column;

    margin-top: 35px;
    padding-top: 30px;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .newsDetailBg .newsDetailMain .newsDetailBtns .btn {
    width: 100%;
    height: auto;
    margin-bottom: 13px;
  }

  .newsDetailBg .newsDetailMain .newsDetailBtns .btn span {
    margin-bottom: 7px;
  }

  .newsDetailBg .newsDetailMain .newsDetailBtns .btn a {
    height: auto;
  }

  .newsDetailBg .newsDetailMain .newsDetailBtns .return a {
    line-height: 55px;

    width: 100%;
    height: 55px;
  }

  /* 人才理念 */
  .idea {
    margin: 40px auto;
  }

  .idea .ideaMain {
    margin-top: 30px;
  }

  .idea .ideaMain ul {
    flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .idea .ideaMain ul li {
    flex-direction: column !important;

    width: 100% !important;
    margin-bottom: 15px;

    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -moz-box-orient: vertical !important;
    -moz-box-direction: normal !important;
    -ms-flex-direction: column !important;
  }

  .idea .ideaMain ul li:last-child {
    margin-bottom: 0;
  }

  .idea .ideaMain ul li .content {
    margin: 0;
    padding: 20px 16px;
  }

  .idea .ideaMain ul li .image img {
    height: 65.1vw;

    -o-object-fit: cover;
    object-fit: cover;
  }

  .idea .ideaMain ul li .content .title {
    font-size: 18px;

    margin-bottom: 8px;
  }

  .idea .ideaMain ul li .content .desc {
    font-size: 14px;
    line-height: 24px;

    min-height: auto;

    text-align: justify;
  }

  /* 员工活动 */
  .activitiesBg {
    padding: 40px 0;
  }

  .activitiesBg .activities .activitiesMain {
    width: 100%;
    margin-top: 25px;
    padding-bottom: 40px;
  }

  .activitiesBg .activities .activitiesMain .swiper-slide .image img {
    min-height: 220px;

    -o-object-fit: cover;
    object-fit: cover;
  }

  .activitiesBg .activities .activitiesMain .swiper-button-prev,
  .activitiesBg .activities .activitiesMain .swiper-button-next {
    display: none;
  }

  .activitiesBg .activities .activitiesMain .swiper-pagination {
    display: block;
  }

  .activitiesBg .activities .activitiesMain .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;

    opacity: 1 !important;
    border: 1px solid rgb(220, 220, 220);
    background: none;
  }

  .activitiesBg .activities .activitiesMain .swiper-pagination-bullet-active {
    border-color: #0071b8;
    background: #0071b8;
  }

  /* 加入我们 */
  .join {
    margin-bottom: 40px;
    padding-top: 40px;
  }

  .join .joinList {
    margin: 25px auto 20px;
  }

  .join .joinList ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .join .joinList ul li {
    margin-bottom: 8px;
  }

  .join .joinList ul li a {
    font-size: 14px;

    min-width: 95px;
    height: 40px;
    padding: 0 12px;

    border-radius: 30px;
  }

  .join .joinMain {
    margin-bottom: 35px;
  }

  .join .joinMain ul li {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 15px !important;
  }

  .join .joinMain ul li:last-child {
    margin-bottom: 0 !important;
  }

  .join .joinMain ul li .titleBox .title .name {
    font-size: 18px;

    margin-bottom: 5px;
  }

  .join .joinMain ul li .titleBox .title .department {
    font-size: 14px;
  }

  .join .joinMain ul li .titleBox .title .department i {
    margin-right: 5px;
  }

  .join .joinMain ul li .titleBox .title .department i::before {
    font-size: 18px;
  }

  .join .joinMain ul li .titleBox .title .department span {
    margin-left: 5px;
  }

  .join .joinMain ul li .desc {
    font-size: 14px;
    line-height: 24px;

    height: auto;
    margin-bottom: 23px;

    text-align: justify;
  }

  .join .joinMain ul li .more {
    font-size: 20px;
  }

  /* 加入我们弹窗 */
  .joinPopupContainer {
    width: 100%;
    height: 500px;
  }

  .joinPopup {
    padding: 30px 20px;
  }

  .joinPopup .joinPopupClose {
    top: 20px;
    right: 10px;
  }

  .joinPopup .joinPopupTitle {
    width: 90%;
  }

  .joinPopup .joinPopupTitle .title {
    margin-bottom: 6px;
  }

  .joinPopup .joinPopupTitle .department i {
    font-size: 14px;

    margin-right: 4px;
  }

  .joinPopup .joinPopupTitle .department i::before {
    font-size: 18px;
  }

  .joinPopup .joinPopupTitle .department span {
    font-size: 14px;

    margin-left: 4px;
  }

  .joinPopup .joinPopupMain {
    height: 255px;
    padding-right: 10%;
  }

  .joinPopup .more {
    font-size: 13px !important;

    height: 40px;
  }

  /* 联系我们 */
  .contactusBg {
    padding: 50px 0 40px;
  }

  .contactusBg .contactus .contactusTitle {
    margin-bottom: 30px;
  }

  .contactusBg .contactus .contactusTitle .title {
    font-size: 15px;

    margin-bottom: 6px;
  }

  .contactusBg .contactus .contactusMain {
    padding: 0;
  }

  .contactusBg .contactus .contactusMain ul {
    flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .contactusBg .contactus .contactusMain ul li {
    width: 100%;
    padding: 18px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .contactusBg .contactus .contactusMain ul li::after {
    display: none;
  }

  .contactusBg .contactus .contactusMain ul li:first-child {
    padding-top: 0;
  }

  .contactusBg .contactus .contactusMain ul li:last-child {
    padding-bottom: 0;

    border-bottom: 0;
  }

  .contactusBg .contactus .contactusMain ul li .icon {
    margin-bottom: 10px;
  }

  .contactusBg .contactus .contactusMain ul li .icon img {
    height: 46px;
  }

  .contactusBg .contactus .contactusMain ul li .desc {
    font-size: 16px;

    margin-bottom: 5px;
  }

  /* 留言 */
  .messageBg {
    padding: 40px 0;

    background-color: #f9fafe;
  }

  .message {
    overflow: hidden;
    flex-direction: column;

    height: auto;
    margin-top: 0;
    margin-bottom: 0;

    border-radius: 20px;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
  }

  .message .left {
    width: 100%;
  }

  .message .left .title {
    font-size: 18px;

    margin-bottom: 8px;
  }

  .message .left .postalCode {
    margin-bottom: 20px;
  }

  .message .left .postalCode span {
    font-size: 13px;
  }

  .message .left .qrCode p {
    font-size: 13px;

    margin-top: 5px;
  }

  .message .right {
    width: 100%;
    padding: 30px 18px 40px;
  }

  .message .right .messageInput {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 18px;
  }

  .message .right .messageInput p {
    font-size: 14px;
  }

  .message .right .messageInput input {
    font-size: 14px !important;

    height: 50px;
    padding: 0 14px;
  }

  .message .right .messageInput input::-webkit-input-placeholder {
    font-size: 14px !important;
  }

  .message .right .messageInput input:-moz-placeholder {
    font-size: 14px !important;
  }

  .message .right .messageInput input::-moz-placeholder {
    font-size: 14px !important;
  }

  .message .right .messageInput input:-ms-input-placeholder {
    font-size: 14px !important;
  }

  .message .right .messageInput input::placeholder {
    font-size: 14px !important;
  }

  .message .right .messageInput.textarea {
    margin-bottom: 25px;
  }

  .message .right .messageInput.textarea textarea {
    font-size: 14px !important;

    padding: 9px 14px;
  }

  .message .right .messageInput.textarea textarea::-webkit-input-placeholder {
    font-size: 14px !important;
  }

  .message .right .messageInput.textarea textarea:-moz-placeholder {
    font-size: 14px !important;
  }

  .message .right .messageInput.textarea textarea::-moz-placeholder {
    font-size: 14px !important;
  }

  .message .right .messageInput.textarea textarea:-ms-input-placeholder {
    font-size: 14px !important;
  }

  .message .right .messageInput.textarea textarea::placeholder {
    font-size: 14px !important;
  }

  .message .right .messageSubmit button {
    font-size: 16px !important;

    display: block;

    width: 113px;
    height: 45px;
    margin: 0 auto;
  }

  .message .right .messageSubmit button i {
    font-size: 14px;

    margin-left: 28px;
  }
}