.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: #003db8;
  -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: #003db8;
  -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 #003db8;
  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: #003db8;
}
.biaoti {
  width: 310px;
  height: 76px;
  position: relative;
  float: left;
  transition: 1s;
  box-sizing: border-box;
  padding: 10px 0 0 80px;
  background: url(../images/bt1.png) no-repeat left top;
}
.biaoti b {
  text-transform: uppercase;
  font-family: arial;
  font-size: 64px;
  line-height: 46px;
  font-weight: bold;
  color: #003db8;
  position: absolute;
  top: 9px;
  left: 27px;
}
.biaoti h3 {
  font-size: 34px;
  line-height: 34px;
  font-weight: bold;
  color: #333;
}
.biaoti h3 a {
  color: #333;
}
.biaoti p {
  letter-spacing: 3px;
  color: #cccccc;
  margin-top: 20px;
  font-size: 14px;
  line-height: 14px;
  line-height: 12px;
}
.product {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 52px;
  background: url("../images/bg1.jpg") no-repeat center bottom;
  overflow: hidden;
}
.product .tel {
  position: absolute;
  bottom: 80px;
  right: 46px;
  height: 140px;
}
.product .tel .dh {
  height: 41px;
  box-sizing: border-box;
  padding: 0 0 0 56px;
  font-size: 14px;
  line-height: 14px;
  color: #777777;
  background: url("../images/dh1.png") no-repeat left center;
}
.product .tel .dh p {
  font-size: 24px;
  font-weight: bold;
  color: #003db8;
  line-height: 15px;
  margin-top: 10px;
}
.product .tel .mo {
  display: block;
  width: 152px;
  height: 46px;
  background-color: #003db8;
  border-radius: 23px;
  text-align: center;
  line-height: 46px;
  margin-top: 52px;
  color: #fff;
  font-size: 14px;
}
.product .tit {
  float: right;
  width: 330px;
  height: 42px;
  background: url("../images/mo1.png") no-repeat right center;
  color: #eeeeee;
  font-family: arial;
  font-size: 56px;
  font-weight: bold;
  line-height: 42px;
  margin-top: 12px;
  text-transform: uppercase;
}
.product ul {
  width: 100%;
  margin-top: 22px;
}
.product ul li:hover {
  background: #003db8;
}
.product ul li:hover .tu {
  border: 5px solid #fff;
  box-sizing: border-box;
}
.product ul li:hover .tu img {
  transform: scale(1.2);
}
.product ul li:hover .ti {
  background: url("../images/mo3.png") no-repeat center;
  color: #fff;
}
.product ul li:nth-child(4n) {
  margin-right: 0;
}
.product ul li {
  float: left;
  width: 300px;
  height: 292px;
  background-color: #f4f4f4;
  border-radius: 2px;
  box-sizing: border-box;
  padding: 17px 21px;
  transition: 0.5s;
  margin-top: 28px;
  margin-right: 25px;
}
.product ul li .tu {
  display: block;
  width: 100%;
  height: 201px;
  overflow: hidden;
}
.product ul li .tu img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}
.product ul li .ti {
  display: block;
  width: 100%;
  line-height: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 0 20px 0 38px;
  font-size: 16px;
  background: url("../images/mo2.png") no-repeat center;
  color: #333;
  transition: 0.3s;
}
.about {
  width: 100%;
  height: 962px;
  padding-top: 28px;
  box-sizing: border-box;
  overflow: hidden;
  background: url("../images/bg2.jpg") no-repeat center bottom;
}
.about .tit {
  width: 850px;
  height: 82px;
  float: right;
  margin-top: 15px;
}
.about .tit em {
  display: block;
  float: left;
  width: 634px;
  height: 30px;
  margin-top: 10px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 10px;
  color: #333333;
}
.about .tit em i {
  font-family: arial;
  font-size: 16px;
  letter-spacing: 0;
}
.about .tit .shu {
  float: right;
  background: url(../images/2009.png) no-repeat right 26px;
  width: 204px;
  height: 82px;
}
.about .tit .shu p {
  font-family: arial;
  font-size: 74px;
  font-weight: bold;
  line-height: 54px;
  color: #003db8;
}
.about .tit .shu p i {
  font-weight: bold;
}
.about .tit .shu .anim-text span {
  display: inline-block;
}
.about .tit .shu .anim-text i {
  font-weight: bold;
  display: inline-block;
}
.about .tit .shu .anim-text > span {
  animation: slideIn 10.96s linear infinite;
  opacity: 0;
}
.about .tit .shu .anim-text > span > i {
  animation: hop2 10.96s linear infinite;
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(20vw);
  }
  20% {
    opacity: 1;
    transform: translateX(0);
  }
  80% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20vw);
  }
}
@keyframes hop2 {
  0%,
  2%,
  4%,
  6%,
  8%,
  10%,
  12%,
  14%,
  16%,
  18%,
  20% {
    transform: translateY(0);
  }
  1%,
  3%,
  5%,
  7%,
  9%,
  11%,
  13%,
  15%,
  17%,
  19% {
    transform: translateY(-0.5em);
  }
  80%,
  82%,
  84%,
  86%,
  88%,
  90%,
  92%,
  94%,
  96%,
  98%,
  100% {
    transform: translateY(0);
  }
  81%,
  83%,
  85%,
  87%,
  89%,
  91%,
  93%,
  95%,
  97%,
  99% {
    transform: translateY(-0.5em);
  }
}
.about .tit .shu b {
  display: block;
  font-size: 16px;
  line-height: 16px;
  margin-top: 10px;
  color: #333;
  font-weight: normal;
}
.about .left {
  width: 722px;
  height: 469px;
  position: relative;
  margin-top: 29px;
  transition: 1s;
  overflow: hidden;
}
.about .left img {
  width: 100%;
  height: 100%;
}
.about .left .mo {
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/mo4.png) no-repeat left top;
  position: absolute;
  bottom: 3px;
  right: 3px;
}
.about .right {
  width: 506px;
  margin-top: 75px;
  transition: 1s;
}
.about .right .ti {
  font-size: 24px;
  line-height: 24px;
  color: #333;
}
.about .right em {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #003db8;
  margin: 18px 0 37px;
}
.about .right .jie {
  width: 100%;
  line-height: 36px;
  letter-spacing: 0px;
  color: #777777;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.about .right ul {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 338px;
  height: 55px;
}
.about .right ul li {
  width: 157px;
  height: 55px;
  background-color: #eeeeee;
  border-radius: 28px;
}
.about .right ul li a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 55px;
  font-size: 16px;
  color: #333;
  box-sizing: border-box;
  padding-left: 36px;
  background: url(../images/mo5.png) no-repeat 115px center;
}
.about .right ul li a:hover {
  color: #003db8;
}
.about .picScroll-left {
  width: 100%;
  position: relative;
  height: 292px;
  margin-top: 48px;
}
.about .picScroll-left .bd {
  width: 1000px;
  float: left;
  overflow: hidden;
}
.about .picScroll-left .bd li:hover .tu img {
  transform: scale(1.2);
}
.about .picScroll-left .bd li:hover .ti {
  color: #003db8;
}
.about .picScroll-left .bd li {
  width: 300px !important;
  height: 290px;
  border-radius: 2px;
  border: solid 1px #eeeeee;
  box-sizing: border-box;
  float: left;
  margin-right: 50px;
}
.about .picScroll-left .bd li .tu {
  display: block;
  width: 100%;
  height: 232px;
  background: url("../images/box1.png") no-repeat center;
  box-sizing: border-box;
  padding: 12px;
}
.about .picScroll-left .bd li .tu a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.about .picScroll-left .bd li .tu a img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}
.about .picScroll-left .bd li .ti {
  display: block;
  width: 100%;
  line-height: 60px;
  height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 0 40px 0 60px;
  font-size: 16px;
  color: #333;
  transition: 0.3s;
  background: url("../images/mo2.png") no-repeat center;
}
.about .picScroll-left .arrow {
  float: right;
  width: 75px;
  height: 166px;
  margin-top: 47px;
  text-align: center;
  margin-right: 62px;
  background: url(../images/hd1.png) no-repeat center 150px;
}
.about .picScroll-left .arrow .ti {
  display: block;
  width: 100%;
  height: 108px;
  background: url("../images/honor.png") no-repeat center top;
  padding-top: 91px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 16px;
  color: #fff;
  margin-bottom: 34px;
}
.about .picScroll-left .arrow .prev {
  display: block;
  width: 50%;
  height: 35px;
  float: left;
}
.about .picScroll-left .arrow .next {
  display: block;
  width: 50%;
  height: 35px;
  float: right;
}
.case {
  width: 100%;
  height: 900px;
  overflow: hidden;
  padding-top: 70px;
  box-sizing: border-box;
}
.case .tel {
  width: 385px;
  height: 46px;
  margin-top: 15px;
  float: right;
}
.case .tel .dh {
  height: 41px;
  box-sizing: border-box;
  padding: 0 0 0 56px;
  font-size: 14px;
  line-height: 14px;
  color: #777777;
  background: url("../images/dh1.png") no-repeat left center;
  float: left;
}
.case .tel .dh p {
  font-family: arial;
  font-size: 24px;
  font-weight: bold;
  color: #003db8;
  line-height: 15px;
  margin-top: 10px;
}
.case .tel .mo {
  display: block;
  float: right;
  width: 152px;
  height: 46px;
  background-color: #003db8;
  border-radius: 23px;
  text-align: center;
  line-height: 46px;
  color: #fff;
  font-size: 14px;
}
.case .slideTxtBox {
  width: 100%;
  height: 625px;
  margin-top: 50px;
}
.case .slideTxtBox .bd {
  width: 800px;
  float: left;
}
.case .slideTxtBox .bd .box {
  width: 800px;
  height: 625px;
  background-color: #f4f4f4;
  border-radius: 2px;
  position: relative;
  box-sizing: border-box;
  padding: 8px;
}
.case .slideTxtBox .bd .box:hover .tu img {
  transform: scale(1.2);
}
.case .slideTxtBox .bd .box .tu {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.case .slideTxtBox .bd .box .tu img {
  width: 100%;
  height: 100%;
  transition: 1s;
}
.case .slideTxtBox .bd .box .zi {
  background: rgba(0, 61, 184, 0.9);
  width: 522px;
  height: 270px;
  border-radius: 2px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  box-sizing: border-box;
  padding: 49px 60px 0 55px;
}
.case .slideTxtBox .bd .box .zi .ti {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
  line-height: 18px;
  color: #fff;
}
.case .slideTxtBox .bd .box .zi .ti i {
  font-family: arial;
  font-size: 18px;
  margin-right: 30px;
}
.case .slideTxtBox .bd .box .zi em {
  display: block;
  width: 29px;
  height: 2px;
  background-color: #ffffff;
  margin: 12px 0 32px;
}
.case .slideTxtBox .bd .box .zi .jie {
  width: 100%;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 30px;
  letter-spacing: 0px;
  color: #ffffff;
  font-size: 14px;
}
.case .slideTxtBox .bd .box .zi .mo {
  display: block;
  width: 100%;
  height: 31px;
  margin-top: 20px;
  background: url("../images/mo6.png") no-repeat center;
}
.case .slideTxtBox .hd {
  width: 455px;
  float: right;
}
.case .slideTxtBox .hd ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.case .slideTxtBox .hd ul li.on {
  background: #003db8;
}
.case .slideTxtBox .hd ul li.on a img {
  transform: scale(1.2);
}
.case .slideTxtBox .hd ul li.on::after {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.case .slideTxtBox .hd ul li:nth-child(1),
.case .slideTxtBox .hd ul li:nth-child(2) {
  margin-top: 0;
}
.case .slideTxtBox .hd ul li {
  margin-top: 17px;
  width: 225px;
  height: 143px;
  background-color: #f4f4f4;
  border-radius: 2px;
  transition: 0.5s;
  box-sizing: border-box;
  padding: 4px;
  overflow: hidden;
  position: relative;
}
.case .slideTxtBox .hd ul li::after {
  width: 50px;
  height: 50px;
  background: url(../images/mo7.png) no-repeat left top;
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  transition: 0.5s;
  pointer-events: none;
}
.case .slideTxtBox .hd ul li a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.case .slideTxtBox .hd ul li a img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}
.news {
  width: 100%;
  height: 818px;
  background: url("../images/bg3.jpg") no-repeat center;
  overflow: hidden;
  padding-top: 80px;
  box-sizing: border-box;
}
.news .biaoti {
  position: absolute;
  top: -9px;
  left: 0px;
  z-index: 999;
}
.news .slideTxtBox {
  width: 100%;
  position: relative;
}
.news .slideTxtBox .hd {
  position: absolute;
  top: 112px;
  left: 0px;
  z-index: 999;
  width: 293px;
}
.news .slideTxtBox .hd li.on a {
  border-bottom: 1px solid #003db8;
  font-weight: bold;
  color: #003db8;
  background: url("../images/mo8.png") no-repeat right center;
}
.news .slideTxtBox .hd li {
  width: 100%;
  height: 84px;
  line-height: 84px;
}
.news .slideTxtBox .hd li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #333;
  background: url(../images/mo8.png) no-repeat 300px center;
  transition: 0.5s;
  border-bottom: 1px solid #eee;
}
.news .slideTxtBox .bd {
  width: 100%;
}
.news .slideTxtBox .bd .alone {
  float: left;
  width: 330px;
  height: 230px;
  border-radius: 2px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 8px;
  overflow: hidden;
  position: relative;
  margin-top: 415px;
}
.news .slideTxtBox .bd .alone:hover .tu img {
  transform: scale(1.2);
}
.news .slideTxtBox .bd .alone .tu {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.news .slideTxtBox .bd .alone .tu img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}
.news .slideTxtBox .bd .alone .ti {
  display: block;
  width: 270px;
  height: 56px;
  background: rgba(27, 27, 27, 0.7);
  border-radius: 2px;
  position: absolute;
  bottom: 20px;
  left: 30px;
  text-align: center;
  line-height: 56px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 0 10px;
  color: #fff;
  font-size: 16px;
}
.news .slideTxtBox .bd ul {
  float: right;
  width: 858px;
}
.news .slideTxtBox .bd ul li:first-child {
  margin-top: 0;
}
.news .slideTxtBox .bd ul li:last-child {
  border: none;
}
.news .slideTxtBox .bd ul li:hover .zi .ti {
  color: #003db8;
}
.news .slideTxtBox .bd ul li:hover .tu img {
  transform: scale(1.2);
}
.news .slideTxtBox .bd ul li {
  width: 100%;
  height: 217px;
  border-bottom: 1px dashed #eee;
  margin-top: 19px;
}
.news .slideTxtBox .bd ul li .zi {
  float: left;
  width: 535px;
  margin-top: 30px;
}
.news .slideTxtBox .bd ul li .zi .ti {
  display: block;
  width: 100%;
  line-height: 19px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
  box-sizing: border-box;
  padding-left: 39px;
  background: url("../images/xwico.png") no-repeat left center;
  font-size: 16px;
  color: #555;
}
.news .slideTxtBox .bd ul li .zi .jie {
  width: 100%;
  line-height: 24px;
  letter-spacing: 0px;
  color: #999999;
  margin: 25px 0 23px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 14px;
}
.news .slideTxtBox .bd ul li .zi .shi {
  width: 100%;
  height: 17px;
  line-height: 17px;
  position: relative;
  font-family: arial;
  font-size: 24px;
  font-weight: bold;
  color: #003db8;
}
.news .slideTxtBox .bd ul li .zi .shi::after {
  width: 63px;
  height: 1px;
  background: #ddd;
  content: "";
  position: absolute;
  top: 8px;
  right: 0px;
}
.news .slideTxtBox .bd ul li .tu {
  float: right;
  width: 274px;
  height: 193px;
  border-radius: 2px;
  background: #eee;
  box-sizing: border-box;
  padding: 5px;
}
.news .slideTxtBox .bd ul li .tu a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.news .slideTxtBox .bd ul li .tu a img {
  width: 100%;
  height: 100%;
  transition: 1s;
  object-fit: cover;
}
.yqlj {
  width: 100%;
  height: 144px;
  background: url("../images/dibg.jpg") no-repeat center top;
  overflow: hidden;
  padding-top: 77px;
  box-sizing: border-box;
}
.yqlj ul {
  width: 996px;
  height: 67px;
  float: right;
  background: url("../images/link.png") no-repeat center;
  margin-right: -75px;
  line-height: 67px;
}
.yqlj ul .ti {
  float: left;
  width: 145px;
  text-align: right;
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
  color: #333;
  margin-right: 20px;
}
.yqlj ul p:last-child {
  display: none;
}
.yqlj ul p {
  float: left;
  font-size: 16px;
  color: #999999;
  margin-left: 20px;
}
.yqlj ul li:hover {
  transform: translateX(5px);
}
.yqlj ul li:hover a {
  color: #003db8;
}
.yqlj ul li {
  float: left;
  margin-left: 20px;
  transition: 0.3s;
  font-size: 16px;
  color: #999999;
}
.yqlj ul li a {
  color: #999999;
  transition: 0.3s;
}
