.jz {
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.fd:hover,
.fd:focus {
  -webkit-animation: fd 1s;
  animation: fd 1s;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}
@-webkit-keyframes fd {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
@keyframes fd {
  0% {
    box-shadow: 0 0 0 0 var(--hover);
  }
}
@keyframes menu1 {
  0% {
    opacity: 0;
    transform: translateX(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes myfirst {
  0%,
  100% {
    -webkit-transform: translate(0, -5px) rotateZ(0);
  }
  50% {
    -webkit-transform: translate(0, 0) rotateZ(0);
  }
}
@-webkit-keyframes myfirst1 {
  0%,
  100% {
    -webkit-transform: translate(0, -10px) rotateZ(0);
  }
  50% {
    -webkit-transform: translate(0, 0) rotateZ(0);
  }
}
@keyframes myfirst2 {
  0%,
  100% {
    -webkit-transform: translate(-5px, 0);
  }
  50% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes msClock {
  0%,
  70%,
  100% {
    transform: rotate(0) scale(1);
  }
  10%,
  30% {
    transform: rotate(-15deg) scale(1.1);
  }
  20%,
  40% {
    transform: rotate(15deg) scale(1.1);
  }
}
.button.dark {
  --shadow: 0 2px 8px -1px rgba(21, 25, 36, 0.32);
  --shadow-hover: 0 4px 20px -2px rgba(21, 25, 36, 0.5);
}
.button.white {
  --shadow: 0 2px 8px -1px rgba(18, 22, 33, 0.04);
  --shadow-hover: 0 4px 20px -2px rgba(18, 22, 33, 0.12);
}
.button {
  --text: #fff;
  --font-size: 16px;
  --duration: 0.5s;
  --move-hover: -4px;
  font-family: 'Roboto';
  line-height: var(--font-size);
  display: block;
  outline: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: var(--font-size);
  background: var(--background);
  color: var(--text);
  box-shadow: var(--shadow);
  -webkit-transform: translateY(var(--y));
  transform: translateY(var(--y));
  transition: box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
  transition: transform var(--duration) ease, box-shadow var(--duration) ease, -webkit-transform var(--duration) ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
}
.button span {
  text-align: center;
}
.button span i {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
}
.button span i:nth-child(1) {
  --d: 0.05s;
}
.button span i:nth-child(2) {
  --d: 0.1s;
}
.button span i:nth-child(3) {
  --d: 0.15s;
}
.button span i:nth-child(4) {
  --d: 0.2s;
}
.button span i:nth-child(5) {
  --d: 0.25s;
}
.button span i:nth-child(6) {
  --d: 0.3s;
}
.button span i:nth-child(7) {
  --d: 0.35s;
}
.button span i:nth-child(8) {
  --d: 0.4s;
}
.button span i:nth-child(9) {
  --d: 0.45s;
}
.button span i:nth-child(10) {
  --d: 0.5s;
}
.button span i:nth-child(11) {
  --d: 0.55s;
}
.button:hover {
  --y: var(--move-hover);
  --shadow: var(--shadow-hover);
  --move: -4px;
  --shadow-active: 0 3px 1px rgba(0, 0, 0, 0.2);
}
.button:hover i {
  -webkit-animation: move var(--duration) linear var(--d);
  animation: move var(--duration) linear var(--d);
}
.button.smoke {
  --move: 12px;
  --move-y: -8px;
  --blur: 4px;
}
.button.smoke:hover i {
  --duration: 1s;
  -webkit-animation: smoke var(--duration) linear var(--d);
  animation: smoke var(--duration) linear var(--d);
}
.button.drive {
  --move: 16px;
  --skew: 25deg;
  --skew-fast: 40deg;
  --skew-bounce: -12px;
}
.button.drive:hover i {
  --duration: 1s;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-animation: drive var(--duration) linear var(--d);
  animation: drive var(--duration) linear var(--d);
}
.btnstyle1 {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
  box-sizing: border-box;
  background-color: transparent;
  cursor: pointer;
  overflow: hidden;
}
.btnstyle1::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  background-color: #017dc1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}
.btnstyle1::after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 100%;
  left: 0;
  z-index: -1;
  background-color: #017dc1;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}
.btnstyle1:hover::after {
  -webkit-transition-delay: 0.175s;
  transition-delay: 0.175s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.btnstyle1:hover::before {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.btnstyle2 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: background-color 0.6s, color 0.3s;
  transition: background-color 0.6s, color 0.3s;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
}
.btnstyle2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #017dc1;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  -webkit-transform: scale3d(0.6, 0.6, 1);
  transform: scale3d(0.6, 0.6, 1);
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  box-sizing: border-box;
}
.btnstyle2:hover {
  color: #333;
  background-color: #fff;
}
.btnstyle2:hover::before {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}
@-webkit-keyframes move {
  40% {
    -webkit-transform: translateY(var(--move));
    transform: translateY(var(--move));
    text-shadow: var(--shadow-active);
  }
}
@keyframes move {
  40% {
    -webkit-transform: translateY(var(--move));
    transform: translateY(var(--move));
    text-shadow: var(--shadow-active);
  }
}
@-webkit-keyframes smoke {
  45%,
  55% {
    -webkit-filter: blur(var(--blur));
    filter: blur(var(--blur));
  }
  50%,
  50.1% {
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(var(--move)) translateY(var(--move-y));
    transform: translateX(var(--move)) translateY(var(--move-y));
  }
  50.1% {
    -webkit-transform: translateX(calc(var(--move) * -1));
    transform: translateX(calc(var(--move) * -1));
  }
}
@keyframes smoke {
  45%,
  55% {
    -webkit-filter: blur(var(--blur));
    filter: blur(var(--blur));
  }
  50%,
  50.1% {
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(var(--move)) translateY(var(--move-y));
    transform: translateX(var(--move)) translateY(var(--move-y));
  }
  50.1% {
    -webkit-transform: translateX(calc(var(--move) * -1));
    transform: translateX(calc(var(--move) * -1));
  }
}
@-webkit-keyframes drive {
  40% {
    opacity: 1;
  }
  55% {
    -webkit-transform: skewX(var(--skew)) translateX(var(--move));
    transform: skewX(var(--skew)) translateX(var(--move));
  }
  56% {
    -webkit-transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
    transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
  }
  55%,
  56% {
    opacity: 0;
  }
  75% {
    -webkit-transform: skewX(var(--skew));
    transform: skewX(var(--skew));
  }
  85% {
    -webkit-transform: skewX(var(--skew-bounce));
    transform: skewX(var(--skew-bounce));
  }
}
@keyframes drive {
  40% {
    opacity: 1;
  }
  55% {
    -webkit-transform: skewX(var(--skew)) translateX(var(--move));
    transform: skewX(var(--skew)) translateX(var(--move));
  }
  56% {
    -webkit-transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
    transform: skewX(var(--skew-fast)) translateX(calc(var(--move) * -1));
  }
  55%,
  56% {
    opacity: 0;
  }
  75% {
    -webkit-transform: skewX(var(--skew));
    transform: skewX(var(--skew));
  }
  85% {
    -webkit-transform: skewX(var(--skew-bounce));
    transform: skewX(var(--skew-bounce));
  }
}
@keyframes movec {
  0%,
  100% {
    clip: rect(0, 300px, 5px, 0);
  }
  25% {
    clip: rect(0, 300px, 210px, 295px);
  }
  50% {
    clip: rect(205px, 300px, 210px, 0);
  }
  75% {
    clip: rect(0, 5px, 210px, 0px);
  }
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(24, 125, 178, 0.1), 0 0 0 10px #187db2;
  }
  100% {
    box-shadow: 0 0 0 10px #187db2, 0 0 0 15px rgba(24, 125, 178, 0);
  }
}
@keyframes ripple2 {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 67, 0.1), 0 0 0 10px #ffcc43;
  }
  100% {
    box-shadow: 0 0 0 10px #ffcc43, 0 0 0 15px rgba(255, 204, 67, 0);
  }
}
@keyframes tra1 {
  0% {
    transform: scale(0);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes tra2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotate {
  0% {
    transform: rotateZ(0);
  }
  50% {
    transform: rotateZ(180deg);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 51, 51, 0.1), 0 0 0 10px rgba(51, 51, 51, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(51, 51, 51, 0.1), 0 0 0 15px rgba(51, 51, 51, 0);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    -moz-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    -moz-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    -moz-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    -moz-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    -moz-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    -moz-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    -moz-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    -moz-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
/* banner */
.banner {
  width: 100%;
  position: relative;
}
.banner .prev1 {
  width: 50px;
  height: 50px;
  display: block;
  background: url("../images/arrows.png") no-repeat left center;
  transition: 0.5s;
  position: absolute;
  top: 50%;
  left: 100px;
  z-index: 999;
  transform: translateY(-25px);
}
.banner .next1 {
  width: 50px;
  height: 50px;
  display: block;
  background: url("../images/arrows.png") no-repeat right center;
  transition: 0.5s;
  transform: translateY(-25px);
  position: absolute;
  top: 50%;
  right: 100px;
  z-index: 999;
}
.swiper-banner {
  width: 100%;
  height: 100%;
}
.swiper-banner .swiper-slide a,
.swiper-banner .swiper-slide a img {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-banner .swiper-pagination-bullets {
  bottom: 30px !important;
}
.swiper-banner .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 8px !important;
  background: rgba(255, 255, 255);
  opacity: 0.8;
}
.swiper-banner .swiper-pagination-bullet-active {
  background: #017dc1;
}
.biaoti {
  float: left;
  transition: 1s;
  width: 250px;
  height: 92px;
  margin-left: -19px;
  box-sizing: border-box;
  padding: 14px 0 0 19px;
  background: url(../images/bt1.png) no-repeat left top;
}
.biaoti h3 {
  font-size: 50px;
  line-height: 50px;
  line-height: 47px;
  font-weight: bold;
  color: #333;
}
.biaoti h3 a {
  color: #333;
}
.biaoti img {
  display: block;
  margin-top: 15px;
}
.about {
  width: 100%;
  height: 893px;
  padding-top: 69px;
  box-sizing: border-box;
  overflow: hidden;
}
.about .topxunpan {
  position: relative;
  width: 299px;
  height: 50px;
  background: #f8f8f8 url(../images/lb.png) no-repeat 45px center;
  border-radius: 25px;
  float: right;
  margin-top: 23px;
  line-height: 50px;
  box-sizing: border-box;
  padding-left: 80px;
  font-size: 16px;
  color: #333;
}
.about .topxunpan .xp {
  position: relative;
  cursor: pointer;
}
.about .topxunpan .xp i {
  color: #017dc1;
  font-weight: bold;
}
.about .topxunpan .xp img {
  margin-right: 2px;
  margin-right: 5px;
  vertical-align: baseline;
}
.about .topxunpan a {
  line-height: 34px;
  color: #333;
  float: right;
  font-size: 14px;
  display: inline-block;
  transition: 0.7s;
}
.about .topxunpan .topxunpan a:hover {
  color: #999;
}
.about .topxunpan .topxunpan a::after {
  content: '|';
  margin-left: 5px;
  margin-right: 5px;
  color: #aaaaaa;
}
.about .topxunpan .xp #xunpantip {
  z-index: 999999999999999999999;
  position: absolute;
  top: 40px;
  left: 50% !important;
  width: 180px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #333;
  font-size: 14px;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  -webkit-transition: transform 0.4s, opacity 0.4s;
  -moz-transition: transform 0.4s, opacity 0.4s;
  -o-transition: transform 0.4s, opacity 0.4s;
  -ms-transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  background-color: #fff;
  border-radius: 4px;
  opacity: 0;
}
.about .topxunpan .xp #xunpantip::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  width: 0;
  height: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #fff;
}
.about .topxunpan .xp #xunpantip.xunpantextactive {
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  opacity: 1;
  font-size: 14px;
  z-index: 999999999999999999999;
}
.about .topxunpan .xp #xunpantip {
  z-index: 999999999999999999999;
  position: absolute;
  top: 45px;
  left: 0;
  width: 180px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  -webkit-transition: transform 0.4s, opacity 0.4s;
  -moz-transition: transform 0.4s, opacity 0.4s;
  -o-transition: transform 0.4s, opacity 0.4s;
  -ms-transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  background-color: #017dc1;
  border-radius: 4px;
  opacity: 0;
}
.about .topxunpan .xp #xunpantip::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  width: 0;
  height: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: #017dc1;
}
.about .topxunpan .xp #xunpantip.xunpantextactive {
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 999999999999999999999;
}
.about .slideTxtBox {
  width: 100%;
  margin-top: 40px;
  position: relative;
}
.about .slideTxtBox .hd {
  width: 165px;
  height: 480px;
  float: left;
  background-color: #ffffff;
  box-shadow: 0px 1px 30px 0px rgba(0, 0, 0, 0.1);
}
.about .slideTxtBox .hd li:last-child {
  border: none;
}
.about .slideTxtBox .hd li.on {
  background: url("../images/box.png") no-repeat center;
}
.about .slideTxtBox .hd li.on a {
  background: url(../images/g11.png) no-repeat center 48px;
  color: #fff;
  font-weight: bold;
}
.about .slideTxtBox .hd li:nth-child(2) a {
  background: url(../images/g2.png) no-repeat center 48px;
}
.about .slideTxtBox .hd li:nth-child(2).on a {
  background: url(../images/g21.png) no-repeat center 48px;
}
.about .slideTxtBox .hd li:nth-child(3) a {
  background: url(../images/g3.png) no-repeat center 48px;
}
.about .slideTxtBox .hd li:nth-child(3).on a {
  background: url(../images/g31.png) no-repeat center 48px;
}
.about .slideTxtBox .hd li {
  width: 100%;
  height: 160px;
  transition: 0.5s;
  box-sizing: border-box;
  border-bottom: 1px solid #fbfbfb;
  text-align: center;
  background: url(../images/box.png) no-repeat center -160px;
}
.about .slideTxtBox .hd li a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 94px;
  box-sizing: border-box;
  background: url(../images/g1.png) no-repeat center 48px;
  transition: 0.5s;
  font-size: 16px;
  line-height: 16px;
  color: #333;
}
.about .slideTxtBox .bd {
  width: 1045px;
  float: right;
}
.about .slideTxtBox .bd .zi {
  
  float: left;
  background: url(../images/abo..png) no-repeat left top;
  padding-top: 54px;
  box-sizing: border-box;
}
.about .slideTxtBox .bd .zi h3 {
  font-size: 26px;
  line-height: 26px;
  font-weight: bold;
  color: #333;
}
.about .slideTxtBox .bd .zi em {
  display: block;
  font-family: arial;
  font-size: 12px;
  line-height: 11px;
  color: #333;
  margin: 12px 0 82px;
}
.about .slideTxtBox .bd .zi .jie {
  width: 100%;
  line-height: 36px;
  letter-spacing: 0px;
  color: #666666;
  font-size: 16px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}
.about .slideTxtBox .bd .zi .mo {
  display: block;
  width: 143px;
  height: 25px;
  margin-top: 52px;
  background: url("../images/mo1.png") no-repeat right center;
  line-height: 25px;
  font-size: 16px;
}
.about .slideTxtBox .bd .zi .mo i:nth-child(5) {
  margin-left: 5px;
}
.about .slideTxtBox .bd .zi .mo i {
  font-family: arial;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.about .slideTxtBox .bd .tu {
  width: 375px;
  height: 552px;
  float: right;
}
.about .slideTxtBox .bd .tu img {
  width: 100%;
  height: 100%;
}
.case {
  width: 100%;
  height: 1045px;
  background: url(../images/bg1.jpg) no-repeat left top;
  padding-top: 70px;
  box-sizing: border-box;
  overflow: hidden;
}
.case .dh {
  float: right;
  width: 370px;
  height: 71px;
  margin: 20px 185px 0 0;
  box-sizing: border-box;
  padding-right: 50px;
  text-align: right;
}
.case .dh span {
  margin-right: -5px;
  display: block;
  background: url(../images/dh2.png) no-repeat 182px center;
  line-height: 18px;
  font-size: 16px;
  color: #333;
}
.case .dh em {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #eeeeee;
  margin: 14px 0 20px;
}
.case .dh p {
  font-family: arial;
  font-size: 24px;
  line-height: 17px;
  color: #333;
}
.case #multipleColumn {
  width: 100%;
  margin-top: 20px;
  position: relative;
}
.case #multipleColumn .next {
  width: 155px;
  height: 225px;
  background: url("../images/shu.png") no-repeat center;
  display: block;
  position: absolute;
  top: -185px;
  right: 0px;
  padding-top: 126px;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
  font-family: simsun;
  color: #fff;
  font-size: 20px;
}
.case #multipleColumn li:hover::after {
  background: #017dc1;
}
.case #multipleColumn li:hover .tu img {
  transform: scale(1.2);
}
.case #multipleColumn li:hover .ti {
  color: #017dc1;
}
.case #multipleColumn li:nth-child(3n) {
  margin-right: 0;
}
.case #multipleColumn li {
  float: left;
  margin-top: 40px;
  width: 400px;
  height: 355px;
  background-color: #ffffff;
  position: relative;
  box-sizing: border-box;
  padding: 20px;
  margin-right: 40px;
}
.case #multipleColumn li::after {
  width: 50px;
  height: 2px;
  background-color: #dedede;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  transition: 0.5s;
}
.case #multipleColumn li .tu {
  display: block;
  width: 100%;
  height: 270px;
  overflow: hidden;
}
.case #multipleColumn li .tu img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}
.case #multipleColumn li .ti {
  display: block;
  width: 100%;
  line-height: 64px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.customer {
  width: 100%;
  height: 534px;
  overflow: hidden;
  background: url("../images/bg2.png") no-repeat right center;
  padding-top: 70px;
  box-sizing: border-box;
}
.customer .tit {
  float: right;
  margin-top: 30px;
  height: 44px;
  background: url("../images/mapping.png") no-repeat right center;
  padding-top: 30px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 7px;
  color: #333333;
}
.customer .tit span {
  color: #017dc1;
}
.customer #multipleColumn2 {
  width: 1340px;
  height: 310px;
  margin-left: -30px;
  position: relative;
}
.customer #multipleColumn2 .next {
  display: block;
  width: 168px;
  height: 40px;
  background: url("../images/next1.png") no-repeat center;
  position: absolute;
  top: -60px;
  right: 382px;
  line-height: 40px;
  text-align: center;
  font-family: Impact;
  font-size: 20px;
  color: #333;
}
.customer #multipleColumn2 .tempWrap {
  box-sizing: border-box;
  padding: 0 30px;
  height: 310px;
}
.customer #multipleColumn2 ul {
  height: 310px;
}
.customer #multipleColumn2 li:nth-child(5n) {
  margin-right: 0;
}
.customer #multipleColumn2 li:hover .tu img {
  transform: scale(1.2);
}
.customer #multipleColumn2 li:hover .ti {
  bottom: 0;
}
.customer #multipleColumn2 li {
  margin-top: 40px;
  float: left;
  margin-right: 40px;
  width: 224px;
  height: 100px;
  background-color: #ffffff;
  box-shadow: 0px 0px 34px 6px rgba(51, 51, 51, 0.05);
  position: relative;
  overflow: hidden;
}
.customer #multipleColumn2 li .tu {
  display: block;
  width: 100%;
  height: 100%;
}
.customer #multipleColumn2 li .tu img {
  object-fit: cover;
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: 1s;
  max-width: 100%;
  max-height: 100%;
}
.customer #multipleColumn2 li .ti {
  display: block;
  transition: 0.5s;
  position: absolute;
  bottom: -35px;
  left: 0px;
  width: 100%;
  height: 35px;
  line-height: 35px;
  text-align: center;
  box-sizing: border-box;
  padding: 0 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  font-size: 16px;
  background: rgba(1, 125, 193, 0.8);
}
.reason {
  width: 100%;
  height: 1072px;
  overflow: hidden;
  background: url("../images/bg3.jpg") no-repeat center;
}
.reason .pic {
  float: left;
  margin-top: -22px;
}
.reason .tit {
  width: 700px;
  height: 202px;
  float: right;
  text-align: right;
  margin-right: 95px;
  margin-top: 70px;
}
.reason .tit h3 {
  letter-spacing: 12px;
  color: #ffffff;
  font-weight: bold;
  font-family: simsun;
  font-size: 30px;
  line-height: 30px;
  margin-right: -12px;
}
.reason .tit em {
  display: block;
  width: 60px;
  height: 2px;
  background-color: #ffffff;
  margin: 24px 0 28px;
  float: right;
}
.reason .tit p {
  letter-spacing: 12px;
  color: #ffffff;
  font-size: 14px;
  line-height: 14px;
  margin-right: -10px;
}
.reason .tit ul {
  margin-top: 62px;
  float: right;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 495px;
}
.reason .tit ul li:nth-child(2) {
  background: url("../images/ico2.png") no-repeat left center;
}
.reason .tit ul li {
  height: 40px;
  box-sizing: border-box;
  padding-left: 62px;
  background: url("../images/ico1.png") no-repeat left center;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
  text-align: left;
}
.reason .tit ul li span {
  display: block;
  color: #ffffff;
  opacity: 0.6;
  font-family: arial;
  font-size: 12px;
  line-height: 10px;
  margin-top: 10px;
}
.reason .slideTxtBox {
  width: 100%;
  position: relative;
  height: 732px;
  margin-top: -21px;
}
.reason .slideTxtBox .next {
  display: block;
  width: 164px;
  height: 155px;
  background: url(../images/next2.png);
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 999;
}
.reason .slideTxtBox .dh {
  position: absolute;
  bottom: 80px;
  left: 0px;
  height: 105px;
  box-sizing: border-box;
  padding: 23px 0 0 160px;
  z-index: 9999;
}
.reason .slideTxtBox .dh .qq {
  display: block;
  width: 105px;
  height: 105px;
  background: url("../images/qq.png") no-repeat center;
  position: absolute;
  top: 0px;
  left: 0px;
}
.reason .slideTxtBox .dh span {
  display: block;
  font-size: 16px;
  line-height: 16px;
  color: #333;
}
.reason .slideTxtBox .dh p {
  margin-top: 20px;
  font-family: arial;
  font-size: 24px;
  line-height: 17px;
  font-style: italic;
}
.reason .slideTxtBox .biao {
  width: 741px;
  height: 135px;
  position: absolute;
  top: 118px;
  left: 0px;
  z-index: 999;
  background: url("../images/ti1.png") no-repeat right bottom;
}
.reason .slideTxtBox .biao h3 {
  font-size: 50px;
  line-height: 50px;
  font-weight: bold;
  color: #333;
}
.reason .slideTxtBox .biao h3 span {
  color: #017dc1;
}
.reason .slideTxtBox .biao img {
  display: block;
  margin-top: 30px;
}
.reason .slideTxtBox .zi {
  float: left;
  width: 566px;
  margin-top: 302px;
}
.reason .slideTxtBox .zi h3 {
  width: 234px;
  height: 40px;
  background-color: #017dc1;
  border-radius: 4px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 20px;
}
.reason .slideTxtBox .zi .jie {
  width: 100%;
  line-height: 36px;
  letter-spacing: 0px;
  color: #666666;
  margin-top: 40px;
}
.reason .slideTxtBox .tu {
  float: right;
}
.product {
  width: 100%;
  height: 968px;
  padding-top: 70px;
  box-sizing: border-box;
  overflow: hidden;
}
.product .classify {
  width: 425px;
  height: 828px;
  background-color: #ffffff;
  box-shadow: 0px 0px 34px 6px rgba(51, 51, 51, 0.05);
  border-radius: 5px;
  float: left;
  box-sizing: border-box;
  padding: 35px 52px 0;
}
.product .classify li.on {
  border-bottom: 1px solid #017dc1;
}
.product .classify li.on a {
  font-weight: bold;
  color: #017dc1;
  background: url("../images/ti3.png") no-repeat center;
}
.product .classify li {
  width: 100%;
  height: 55px;
  line-height: 55px;
  margin-top: 10px;
  border-bottom: 1px solid #fafafa;
  position: relative;
  transition: 0.5s;
}
.product .classify li::before {
  content: '';
  display: block;
  transition: 0.7s;
  width: 0px;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: #017dc1;
  z-index: 99;
}
.product .classify li:hover:before {
  width: 100%;
}
.product .classify li a {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 30px 0 52px;
  background: url("../images/ti2.png") no-repeat center;
  transition: 0.5s;
  font-size: 16px;
  color: #666;
}
.product .right {
  width: 785px;
  margin-top: 70px;
}
.product .right .search {
  float: right;
  height: 40px;
  line-height: 40px;
  width: 310px;
  position: relative;
  margin-top: 20px;
}
.product .right .search input {
  float: left;
  width: 200px;
  height: 40px;
  background: transparent;
  color: #d4d3d3;
  font-size: 14px;
}
.product .right .search .sss {
  float: right;
  width: 40px;
  height: 40px;
  background: url("../images/ss.png") no-repeat center;
  cursor: pointer;
}
.product .right .search::after {
  width: 633px;
  height: 1px;
  background-color: #eeeeee;
  position: absolute;
  bottom: -8px;
  right: -320px;
  content: "";
}
.product .right .slideTxtBox2 {
  position: relative;
  width: 100%;
  height: 345px;
  margin-top: 62px;
}
.product .right .slideTxtBox2:hover .tu img {
  transform: scale(1.2);
}
.product .right .slideTxtBox2:hover .zi .ti {
  color: #017dc1;
}
.product .right .slideTxtBox2 .pageState {
  line-height: 23px;
  color: #666666;
  font-family: arial;
  font-size: 14px;
  letter-spacing: 5px;
  position: absolute;
  bottom: 40px;
  right: 168px;
  z-index: 999;
}
.product .right .slideTxtBox2 .pageState span {
  font-family: arial;
  font-size: 32px;
  font-weight: bold;
  color: #017dc1;
  font-style: italic;
}
.product .right .slideTxtBox2 .next {
  width: 145px;
  height: 32px;
  border-top: 2px solid #333;
  position: absolute;
  bottom: 23px;
  right: 0px;
  z-index: 999;
  padding-top: 16px;
  box-sizing: border-box;
  text-align: right;
  font-weight: bold;
  font-family: simsun;
  font-size: 18px;
  color: #333;
  line-height: 13px;
  font-style: italic;
}
.product .right .slideTxtBox2 .tu {
  display: block;
  float: left;
  width: 460px;
  height: 345px;
  background-color: #ffffff;
  position: relative;
  box-sizing: border-box;
  border: solid 3px #f8f8f8;
  overflow: hidden;
}
.product .right .slideTxtBox2 .tu img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  overflow: hidden;
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: 1s;
}
.product .right .slideTxtBox2 .zi {
  float: right;
  margin-top: 78px;
  width: 280px;
  text-align: right;
}
.product .right .slideTxtBox2 .zi .ti {
  display: block;
  height: 51px;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 18px;
  line-height: 18px;
  color: #333;
  background: url(../images/ti4.png) no-repeat right bottom;
}
.product .right .slideTxtBox2 .zi .jie {
  width: 100%;
  line-height: 30px;
  letter-spacing: 0px;
  color: #666666;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 20px;
}
.product .right ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}
.product .right ul li {
  width: 240px;
}
.product .right ul li:hover .tu img {
  transform: scale(1.2);
}
.product .right ul li:hover .ti {
  color: #017dc1;
  background: url("../images/mo3.png") no-repeat right center;
}
.product .right ul li .tu {
  display: block;
  width: 100%;
  height: 180px;
  background-color: #ffffff;
  position: relative;
  box-sizing: border-box;
  border: solid 3px #f8f8f8;
  overflow: hidden;
}
.product .right ul li .tu img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  overflow: hidden;
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: 1s;
}
.product .right ul li .ti {
  display: block;
  width: 100%;
  line-height: 18px;
  height: 18px;
  margin-top: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
  background: url("../images/mo2.png") no-repeat right center;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
  padding-left: 3px;
  padding-right: 45px;
}
.news {
  width: 100%;
  height: 781px;
  overflow: hidden;
  position: relative;
  background: url("../images/bg4.jpg") no-repeat center;
  padding-top: 70px;
  box-sizing: border-box;
}
.news .dh {
  float: right;
  height: 45px;
  margin-top: 38px;
  margin-right: -73px;
}
.news .dh p {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  font-family: simsun;
  line-height: 16px;
}
.news .dh span {
  display: block;
  margin-top: 18px;
  font-family: arial;
  font-size: 14px;
  line-height: 10px;
  color: #333;
  position: relative;
  box-sizing: border-box;
  padding-left: 53px;
}
.news .dh span::after {
  width: 40px;
  height: 2px;
  background-color: #333333;
  position: absolute;
  top: 4px;
  left: 0px;
  content: "";
}
.news .qq {
  display: block;
  width: 130px;
  height: 110px;
  background: url(../images/qq2.png) no-repeat left bottom;
  box-sizing: border-box;
  padding: 60px 0 0 48px;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  position: absolute;
  top: -70px;
  right: -200px;
}
.news .slideTxtBox {
  position: relative;
  width: 100%;
  height: 510px;
  margin-top: 40px;
}
.news .slideTxtBox .mos {
  position: absolute;
  bottom: 8px;
  right: -30px;
  z-index: 999;
  font-weight: bold;
  font-family: simsun;
  font-size: 18px;
  color: #fff;
  letter-spacing: 4px;
}
.news .slideTxtBox .mos i:nth-child(5) {
  margin-left: 12px;
}
.news .slideTxtBox .mos i {
  font-weight: bold;
  font-family: simsun;
}
.news .slideTxtBox .bd {
  width: 930px;
  float: left;
}
.news .slideTxtBox .bd .alone {
  width: 100%;
  height: 260px;
  background: #fff;
}
.news .slideTxtBox .bd .alone:hover .tu img {
  transform: scale(1.2);
}
.news .slideTxtBox .bd .alone:hover .zi .ti {
  color: #017dc1;
}
.news .slideTxtBox .bd .alone .tu {
  display: block;
  width: 400px;
  height: 260px;
  overflow: hidden;
  float: left;
}
.news .slideTxtBox .bd .alone .tu img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}
.news .slideTxtBox .bd .alone .zi {
  float: right;
  width: 450px;
  margin: 30px 40px 0 0;
}
.news .slideTxtBox .bd .alone .zi .shi {
  line-height: 22px;
  font-family: arial;
  font-size: 14px;
  color: #999;
}
.news .slideTxtBox .bd .alone .zi .shi span {
  font-family: arial;
  font-size: 30px;
  color: #333;
  font-weight: bold;
}
.news .slideTxtBox .bd .alone .zi .ti {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
  margin: 35px 0 18px;
  font-size: 16px;
  line-height: 16px;
  color: #333;
}
.news .slideTxtBox .bd .alone .zi .jie {
  width: 100%;
  line-height: 30px;
  letter-spacing: 0px;
  color: #666666;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news .slideTxtBox .bd .alone .zi .mo {
  display: block;
  margin-top: 24px;
  width: 95px;
  height: 25px;
  line-height: 25px;
  background: url("../images/mo4.png") no-repeat right center;
  font-size: 14px;
  font-weight: bold;
  font-family: simsun;
  color: #333;
}
.news .slideTxtBox .bd .alone .zi .mo i {
  font-weight: bold;
  font-family: simsun;
}
.news .slideTxtBox .bd ul {
  width: 100%;
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news .slideTxtBox .bd ul li:hover .ti {
  color: #017dc1;
}
.news .slideTxtBox .bd ul li:hover::after {
  opacity: 1;
}
.news .slideTxtBox .bd ul li {
  margin-top: 22px;
  width: 280px;
  height: 93px;
  box-sizing: border-box;
  padding: 5px 22px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.news .slideTxtBox .bd ul li::after {
  width: 26px;
  height: 26px;
  background-color: #017dc1;
  opacity: 0.05;
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  border-radius: 50%;
  transition: 0.5s;
}
.news .slideTxtBox .bd ul li .ti {
  display: block;
  width: 100%;
  line-height: 43px;
  height: 43px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  border-bottom: 1px dashed #dedede;
  margin-bottom: 15px;
}
.news .slideTxtBox .bd ul li .shi {
  line-height: 12px;
  float: left;
  color: #999999;
  font-family: arial;
  font-size: 12px;
}
.news .slideTxtBox .bd ul li .shi span {
  font-family: arial;
  font-size: 16px;
  color: #333;
}
.news .slideTxtBox .bd ul li .mo {
  float: right;
  line-height: 12px;
  font-weight: bold;
  font-family: simsun;
  font-size: 12px;
  color: #333;
}
.news .slideTxtBox .bd ul li .mo i:nth-child(5) {
  margin-left: 6px;
}
.news .slideTxtBox .bd ul li .mo i {
  font-weight: bold;
  font-family: simsun;
}
.news .slideTxtBox .hd {
  float: right;
  width: 480px;
  margin: 22px -200px 0 0;
}
.news .slideTxtBox .hd li.on {
  height: 170px;
  background: url("../images/xwbg.png") no-repeat center;
  padding-top: 47px;
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
}
.news .slideTxtBox .hd li.on a {
  color: #017dc1;
}
.news .slideTxtBox .hd li.on i {
  display: block;
  float: left;
  font-weight: bold;
  font-size: 22px;
  color: #017dc1;
  margin-top: 1px;
}
.news .slideTxtBox .hd li.on em {
  font-size: 0;
  display: block;
  width: 184px;
  height: 2px;
  background-color: #017dc1;
  margin: 20px 0;
}
.news .slideTxtBox .hd li.on span {
  font-weight: normal;
  color: #017dc1;
}
.news .slideTxtBox .hd li {
  width: 100%;
  height: 105px;
  line-height: 105px;
  border-top: 1px solid #f1f2f2;
  transition: 0.5s;
  overflow: hidden;
  box-sizing: border-box;
  padding-left: 53px;
  font-size: 16px;
  color: #333;
}
.news .slideTxtBox .hd li i {
  display: none;
}
.news .slideTxtBox .hd li a {
  color: #333;
}
.news .slideTxtBox .hd li em,
.news .slideTxtBox .hd li span {
  color: #666666;
  font-family: arial;
  font-size: 12px;
}
.yqlj {
  width: 100%;
  height: 164px;
  line-height: 35px;
  padding-top: 64px;
  box-sizing: border-box;
}
.yqlj ul {
  box-sizing: border-box;
  padding-left: 120px;
  background: url("../images/links.png") no-repeat left center;
  height: 35px;
}
.yqlj ul li:hover {
  transform: translateX(5px);
}
.yqlj ul li:hover a {
  color: #017dc1;
}
.yqlj ul li {
  float: left;
  transition: 0.3s;
  font-size: 14px;
  color: #999999;
  margin-left: 40px;
}
.yqlj ul li a {
  color: #999999;
  transition: 0.3s;
}
