@charset "utf-8";
/* 这个css是初始化的css，在任何项目里面都可以使用 */
/* 禁用iPhone中Safari的字号自动调整 */
*{ font-family:"思源黑体";}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  /* 解决IOS默认滑动很卡的情况 */
  -webkit-overflow-scrolling: touch;
  font-size: calc(100vw / 120);
  overflow-x: hidden;
}
/* 取消链接高亮 */
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* 设置HTML5元素为块 */

footer,
header,
nav {
  display: block;
}
/* 图片自适应 */
img {
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */
  -ms-interpolation-mode: bicubic;
  /*为了照顾ie图片缩放失真*/
}
/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
a,
img,
footer,
header, 
nav {
  margin: 0;
  padding: 0;
}
 
em,
i {
  font-style: normal;
}
ul,
li {
  list-style-type: none;
}
.w100 {
  width: 100%;
}
.pr {
  position: relative;
}
.pa {
  position: absolute;
}
.px {
  position: fixed;
}
a:hover,
a:link,
a:visited {
  text-decoration: none;
}
.clearfix {
  zoom: 1;
}
.overh {
  overflow: hidden;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.ta {
  text-align: center;
}
.tr {
  text-align: right;
}
 
 
.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
} 
.line5 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
 
.z {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  /* IE 9 */
  -moz-transform: translate(-50%, -50%);
  /* Firefox */
  -webkit-transform: translate(-50%, -50%);
  /* Safari 和 Chrome */
  -o-transform: translate(-50%, -50%);
}
.l0 {
  top: 50%;
  -ms-transform: translateY(-50%);
  /* IE 9 */
  -moz-transform: translateY(-50%);
  /* Firefox */
  -webkit-transform: translateY(-50%);
  /* Safari 和 Chrome */
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cen {
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* IE 9 */
  -moz-transform: translateX(-50%);
  /* Firefox */
  -webkit-transform: translateX(-50%);
  /* Safari 和 Chrome */
  -o-transform: translateX(-50%);
}
 
.p15 {
  padding: 15px;
}
.w50 {
  width: 50%;
}
.bd {
  font-weight: bold;
}
 
.fix {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ju {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.hide {
  overflow: hidden;
}
.container {
  padding: 0 16.25rem;
  max-width: 100%;
}
.phone-show {
  display: none;
}
@media (max-width: 767px) {
  .phone-show {
    display: block;
  }
  .pc-hide {
    display: none;
  }
}
@media (max-width: 1600px) {
  body,
  html {
    font-size: calc(100vw / 110);
  }
  .container {
    padding: 0 10rem;
  }
}
@media (max-width: 1440px) {
  body,
  html {
    font-size: calc(100vw / 100);
  }
  .container {
    padding: 0 8rem;
  }
}
@media (max-width: 1366px) {
  body,
  html {
    font-size: calc(100vw / 95);
  }
}
@media (max-width: 1280px) {
  body,
  html {
    font-size: calc(100vw / 90);
  }
}
@media (max-width: 990px) {
  body,
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 15px;
  }
}
.line .bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 10;
}
.line .bg:before,
.line .bg:after {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  content: '';
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.line .bg:before {
  border-top: 2px solid #0070c0;
  border-bottom: 2px solid #0070c0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.line .bg:after {
  border-right: 2px solid #0070c0;
  border-left: 2px solid #0070c0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}
.line:hover .bg:after,
.line:hover .bg:before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.swimg {
  animation: swing 1s infinite linear;
}
.iconimg {
  cursor: pointer;
}
.iconimg:hover {
  animation: swing 1s infinite linear;
}
.scoll {
  bottom: 5%;
  animation: scrool 3s infinite;
}
@keyframes scrool {
  0% {
    bottom: 5%;
  }
  50% {
    bottom: 7%;
  }
  100% {
    bottom: 5%;
  }
}
.imgfd {
  -webkit-animation: fd 30s ease-out infinite;
  -moz-animation: fd 30s ease-out infinite;
  -o-animation: fd 30s ease-out infinite;
  animation: fd 30s ease-out infinite;
}
@keyframes fd {
  0% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }
}
#header .sou-div {
  cursor: pointer;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 5rem;
  padding: 0 3.44rem;
  z-index: 100;
  line-height: 5rem;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
#header.active {
  line-height: 4rem;
  height: 4rem;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  background: #0070c0;
}
#header .na-ul > li {
  display: inline-block;
  color: #FFF;
  font-size: 1.325rem;
  font-weight: 500;
  padding: 0 1.875rem;
}
#header .na-ul > li > a {
  color: #FFF;
  position: relative;
  display: block;
}
#header .na-ul > li > a::after {
  content: '';
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #fff;
  transform: scale(0);
  -ms-transform: scale(0);
  /* IE 9 */
  -moz-transform: scale(0);
  /* Firefox */
  -webkit-transform: scale(0);
  /* Safari 和 Chrome */
  -o-transform: scale(0);
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  transform-origin: center center;
}
#header .na-ul > li:hover > a::after,
#header .na-ul > li.active > a::after {
  transform: scale(1);
  -ms-transform: scale(1);
  /* IE 9 */
  -moz-transform: scale(1);
  /* Firefox */
  -webkit-transform: scale(1);
  /* Safari 和 Chrome */
  -o-transform: scale(1);
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
#header .deng-div {
  color: #FFF;
  padding-left: 1.5rem;
}
#header .deng-div svg {
  width: 1.25rem;
  height: 1.25rem;
}
#header .sou-div {
  margin-left: 1.5rem;
}
.yu-div a {
  color: #fff;
}
.er-div-box {
  width: 100vw;
  left: 0;
  border-top: 1px solid #000;
  background: #013471;
  padding: 3.125rem 0;
  transform: scaleY(0);
  transform-origin: top center;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.er-div-box .left {
  width: 35%;
  border-radius: 1.875rem;
  overflow: hidden;
}
.er-div-box .left .color-page1 .swiper-pagination {
  padding: 0;
}
.er-div-box .left .zui-new-p {
  color: #000;
  top: 1rem;
  left: 2rem;
  z-index: 2;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
.er-div-box .re {
  width: 62%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.er-div-box .re .er-box {
  width: 25%;
  padding: 0 1rem;
}
.er-div-box .re .er-box .div1 {
  color: #FFF;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  padding-bottom: 1rem;
  line-height: normal;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.er-div-box .re .er-box .head-div-a {
  margin-top: 0.8rem;
  color: #8C8C8C;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  /* 200% */
}
.er-div-box .re .er-box .head-div-a a {
  color: #8C8C8C;
}
.er-div-box .re .er-box .head-div-a a {
  display: block;
}
.er-div-box .re .er-box .head-div-a a:hover {
  color: #0070c0;
}
.heads .na-ul > li:hover .er-div-box {
  transform: scaleY(1);
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.guanyu-ul {
  text-align: center;
}
.guanyu-ul li {
  display: inline-block;
  color: #FFF;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* 200% */
  margin: 0 2rem;
}
.guanyu-ul li a {
  color: #FFF;
}
.guanyu-ul li a:hover {
  color: #ddd;
}
.er-div-box2 {
  padding: 0;
}
 
 
 
.content {
  padding: 5rem 0;
}
 
.more {
  margin-top: 2rem;
}
.more a {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 175% */
}
 
.footer {
  background: #013471;
  padding-top: 2.5rem;
}
.foot-lxwm {
  margin-top: 2rem;
  padding-bottom: 2rem;
}
.foot-logo {
  margin: 2.5rem 0;
}
.foot-logo img {
  width: 15.25rem;
}
.foot-bot {
  background: #004190;
  color: #FFF;
  font-size: .8rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.875rem;
  /* 187.5% */
  padding: 0.6rem 0;
}
.foot-top {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.p1 {
  color: #FFF;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.foot-a {
  margin-top: 0.5rem;
  color: #FFF;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.875rem;
  /* 187.5% */
}
.foot-a a {
  display: block;
  color: #FFF;
}
.foot-a a:hover {
  color: #ddd;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.foot-ul li {
  float: left;
  margin-right: 10%;
}
.foot-ul li:last-child {
  margin-right: 0;
}
 
.head-en {
  color: #000;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  padding-bottom: 1rem;
  text-transform: uppercase;
  position: relative;
}
.head-en::after {
  content: '';
  position: absolute;
  width: 3.875rem;
  height: 0.25rem;
  background: #0070c0;
  left: 0;
  bottom: 0;
}
.head-en.nojia {
  padding-bottom: 0rem;
}
.head-en.nojia::after {
  display: none;
}
.head-en.bai {
  color: #fff;
}
.top-bot-news {
  background: #F0F7FB;
}
.index-new-bot-lunbo {
  margin-top: 3rem;
}
.index-new-bot-lunbo .swiper-slide {
  background: #FFF;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.06);
}
.index-new-bot-lunbo .swiper-slide .new-botd {
  padding: 1rem 1.8rem;
}
.index-new-bot-lunbo .swiper-slide .new-botd .renqi {
  color: #0070c0;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 175% */
}
.index-new-bot-lunbo .swiper-slide .new-botd .p1 {
  color: #000;
  margin-top: 0.7rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75rem;
  /* 175% */
}
.index-new-bot-lunbo .swiper-slide .new-botd .p1 a {
  color: #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}


 
.compensate-for-scrollbar {
  margin-right: 0 !important;
}
 
.head-p.bai-head {
  color: #fff;
}
.head-p {
  color: #000;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1.1;
  /* 60% */
}
 
 
 
 
.color-page {
  padding-bottom: 1rem;
}
.color-page .swiper-pagination {
  width: 100%;
  bottom: -2rem;
}
.color-page .swiper-pagination .swiper-pagination-bullet {
  border-radius: 0.1875rem;
  background: rgba(0, 0, 0, 0.3);
  width: 1.875rem;
  height: 0.375rem;
  margin: 0 0.3rem;
  opacity: 1;
}
.color-page .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-radius: 0.1875rem;
  background: #0070c0;
}
 
.more1 {
  margin-top: 2rem;
}
.more1 a {
  border-radius: 0rem 1.875rem;
  background: #0070c0;
  display: inline-block;
  width: 12.5rem;
  height: 3.5rem;
  color: #FFF;
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3.5rem;
}
 
 
.cooperative {
  background: url(5.jpg) no-repeat;
  background-size: cover;
}
.cooperative .cooperative-lunbo {
  margin-top: 2rem;
}
.color-page.bai-page .swiper-pagination .swiper-pagination-bullet {
  background: #FFF;
  opacity: 0.5;
}
.color-page.bai-page .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FFF;
  opacity: 1;
}
 
.bai-head:after {
  background: #fff;
}
.bai-page {
  padding-bottom: 2rem;
}
.pro-div {
  background: #FFF;
  padding: 2rem;
}
.pro-div .tite {
  position: relative;
  color: #010101;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.7;
  padding-bottom: 0.5rem;
}
.pro-div .tite a {
  display: block;
  color: #010101;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.pro-div .tite::after {
  content: '';
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* IE 9 */
  -moz-transform: translateX(-50%);
  /* Firefox */
  -webkit-transform: translateX(-50%);
  /* Safari 和 Chrome */
  -o-transform: translateX(-50%);
  bottom: 0;
  position: absolute;
  height: 1px;
  background: #0070c0;
  width: 1.875rem;
}
.pro-div .xh-p {
  color: #000;
  margin-top: 1rem;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.875rem;
  /* 187.5% */
}
.pro-div .div2 {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 0.4rem;
  height: 3rem;
  font-size: 1rem;
  font-style: normal;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-weight: 400;
  line-height: 1.5;
  /* 150% */
}
.pro-div .overh {
  margin-top: 2rem;
}
 
 
 
.bai-more a {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}
 
 
.industry-solutions {
  padding: 5rem 0 7rem;
}
 
 
@keyframes xzreverse {
  form {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
 
 
 
 
.lunbo .bai-more a {
  border-radius: 0rem 1.875rem;
  border: 1px solid #FFF;
  background: #FFF;
  color: #0070c0;
}
.lunbo .lunbo-wenzi {
  top: 50%;
  -ms-transform: translateY(-50%);
  /* IE 9 */
  -moz-transform: translateY(-50%);
  /* Firefox */
  -webkit-transform: translateY(-50%);
  /* Safari 和 Chrome */
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
.lunbo .lunbo-wenzi .le {
  width: 45%;
  height: 31.97788rem;
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.lunbo .lunbo-wenzi .le .div1 {
  color: #FFF;
  font-size: 3.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  /* 126.667% */
  text-transform: uppercase;
}
.lunbo .lunbo-wenzi .le .div1 img {
  width: 3.75rem;
}
.lunbo .lunbo-wenzi .le .div2 {
  color: #FFF;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  /* 150% */
}
.lunbo .lunbo-wenzi .re {
  width: 40%;
}
.lunbo .lunbo-wenzi .le .div1 img {
  animation: xzreverse 10s linear infinite;
  -webkit-animation: xzreverse 10s linear infinite;
}


@keyframes scrool1 {
  0% {
    top: 100%;
  }
  50% {
    top: 50%;
  }
  100% {
    top: -0.5%;
  }
}
#wave {
  position: absolute;
  bottom: -0.5rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 100%;
  transition: all 9500ms linear;
  background: linear-gradient(180deg, #9CCFFF 0%, rgba(176, 217, 255, 0.64) 35.94%, rgba(212, 234, 255, 0) 100%);
}
@keyframes slideInFromTop {
  from {
    top: 100%;
  }
  to {
    top: 0;
  }
}

/* 定义从 100% 移动到 0 的动画 */
@keyframes slideInFromBottom {
  from {
    top: 0%;
  }
  to {
    top: 98%;
  }
}

#wave {
  position: absolute;
  bottom: -0.5rem;
  z-index: -1;
  width: 100%;
  height: 100%;

 background: linear-gradient(180deg, #9CCFFF 0%, rgba(176, 217, 255, 0.64) 35.94%, rgba(212, 234, 255, 0) 100%);
}


/* 当应用此类时，元素会从顶部进入 */
.up {
  animation: slideInFromTop 9500ms linear forwards;
}

/* 当应用此类时，元素会从底部进入 */
.down {
  animation: slideInFromBottom 9500ms linear forwards;
}
#wave.active {
  background: linear-gradient(to bottom, rgba(255, 141, 141, 0.64) 50%, rgba(176, 217, 255, 0.64) 50%);
}
 
.scoll {
  bottom: 5%;
  width: 100%;
  text-align: center;
  color: #FFF;
  z-index: 2;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.scoll a {
  color: #fff;
}
.lunbo .swiper-pagination {
  position: absolute;
  color: #FFF;
  bottom: 5%;
  left: 15%;
}
.lunbo .swiper-pagination .swiper-pagination-bullet {
  background: transparent;
  color: #FFF;
  text-align: justify;
  margin: 0 1rem;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.index-products .index-products-top {
  padding: 7.625rem 0 3.75rem;
  background: url(8.jpg) no-repeat;
  background-size: cover;
}
.index-products .index-products-top .more1 {
  margin-top: 0;
}
.index-products-lunbo .swiper-slide .pro-div .tite,
.index-products-lunbo .swiper-slide .pro-div .xh-p {
  font-size: 1.025rem;
}
.index-products-lunbo .swiper-slide .pro-div {
  height: 26.8125rem;
  text-align: center;
}
.index-products-lunbo .swiper-slide .pro-div .overh img {
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  height: 14.25rem;
}
.index-products-lunbo .swiper-slide .pro-a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 3.5rem;
  opacity: 0;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.index-products-lunbo .swiper-slide .pro-a a {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-block;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  border-radius: 1.875rem;
  background: #FFF;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px 0px rgba(28, 59, 75, 0.2);
}
.index-products-lunbo .swiper-slide .pro-a a i {
  font-size: 1.25rem;
  color: #0070c0;
}
.index-products-lunbo .swiper-slide:hover {
  background: #0070c0;
}
.index-products-lunbo .swiper-slide:hover .overh img {
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  height: 15.625rem;
}
.index-products-lunbo .swiper-slide:hover .pro-a {
  top: 0rem;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  opacity: 1;
}
.index-products-lunbo .swiper-slide:nth-child(odd) .pro-div {
  background: #E8EEF1;
}
.index-products-lunbo .swiper-slide:nth-child(odd) .pro-div:hover {
  background: #0070c0;
}
.pro-div {
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  overflow: hidden;
  cursor: pointer;
}
.pro-div:hover {
  background: #0070c0;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.pro-div:hover .tite::after {
  background: #FFF;
}
.pro-div:hover .tite a {
  color: #fff;
}
.pro-div:hover .xh-p a {
  color: #fff;
}
.pro-div:hover .div2 {
  color: #fff;
}
 
 
 
.index-support {
  padding: 7.5rem 0;
}
.index-support .miaos {
  color: #020202;
  margin-top: 4rem;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  /* 150% */
}
.index-support .index-support-ul {
  overflow: hidden;
  margin-top: 5rem;
  box-shadow: 0px 4px 10px 0px rgba(28, 59, 75, 0.2);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 0rem 6.25rem 0rem 6.25rem;
  background: rgba(255, 255, 255, 0.9);
}
.index-support .index-support-ul li {
  width: 33.33%;
  height: 100%;
  text-align: center;
  cursor: pointer;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 4.3rem 1rem;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.index-support .index-support-ul li img {
  height: 3.75rem;
}
.index-support .index-support-ul li .img2 {
  display: none;
}
.index-support .index-support-ul li:last-child {
  border: none;
}
.index-support .index-support-ul li .pp1 {
  color: #0070c0;
  text-align: center;
  margin-top: 1rem;
  height: 3rem;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.index-support .index-support-ul li .pp1 a {
  color: #0070c0;
}
.index-support .index-support-ul li:hover {
  background: #0070c0;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.index-support .index-support-ul li:hover .img1 {
  display: none;
}
.index-support .index-support-ul li:hover .img2 {
  display: inline-block;
}
.index-support .index-support-ul li:hover .pp1 a {
  color: #fff;
}
.index-about {
  padding: 10rem 0;
}
.index-about .index-about-top .le {
  width: 40%;
}
.index-about .index-about-top .le .hes-p1 {
  color: #FFF;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  /* 150% */
  margin-top: 2rem;
  text-transform: uppercase;
}
.index-about .index-about-top .re {
  width: 60%;
}
.index-about .index-about-top .re .miaos {
  color: #FFF;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.66;
  /* 166.667% */
}
.index-about .about-ul {
  display: flex;
  justify-content: space-between;
  z-index: 3;
  padding: 7rem 3rem 0;
  width: 100%;
}
.index-about .about-ul li {
  color: #fff;
  text-align: center;
  font-size: 1.125rem;
  width: 16.25rem;
  height: 16.25rem;
  border-radius: 100%;
  padding-top: 4rem;
  border: 3px solid #fff;
  position: relative;
}
.index-about .about-ul li svg {
  overflow: visible;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* IE 9 */
  -moz-transform: translateX(-50%);
  /* Firefox */
  -webkit-transform: translateX(-50%);
  /* Safari 和 Chrome */
  -o-transform: translateX(-50%);
  width: 100%;
  height: 100%;
  bottom: 0;
}
.index-about .about-ul li:nth-child(1) svg g {
  stroke: #005BBF;
}
.index-about .about-ul li:nth-child(1) svg path {
  fill: #005BBF;
}
.index-about .about-ul li:nth-child(2) svg g {
  stroke: #3594CA;
}
.index-about .about-ul li:nth-child(2) svg path {
  fill: #3594CA;
}
.index-about .about-ul li:nth-child(3) svg g {
  stroke: #12A5B0;
}
.index-about .about-ul li:nth-child(3) svg path {
  fill: #12A5B0;
}
.index-about .about-ul li:nth-child(4) svg g {
  stroke: #22B07B;
}
.index-about .about-ul li:nth-child(4) svg path {
  fill: #22B07B;
}
.index-about .about-ul li span {
  color: #fff;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
}
.index-about .about-ul li sup {
  font-size: 1.75rem;
  color: #fff;
  position: relative;
  font-weight: 700;
  top: -2rem;
}
.index-about .about-ul li > p {
  margin-top: 0.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
}
@keyframes drawHalfCircle {
  0% {
    stroke-dasharray: 0, 110;
  }
  50% {
    stroke-dasharray: 26, 110;
    /* 绘制一半的半圆 */
  }
  100% {
    stroke-dasharray: 26, 110;
    /* 保持绘制状态 */
  }
}
.index-about.active .car-img {
  right: 45%;
  animation: move-right 2s ease-in-out;
}
.index-about.active .aircraft-img {
  left: 45%;
  top: 20%;
  animation: move-left 4s ease-in-out;
}
.index-about.active .redflag-img {
  right: 0%;
  animation: move-right1 2s ease-in-out;
}
@keyframes move-right {
  0% {
    right: 0%;
  }
  100% {
    right: 45%;
  }
}
@keyframes move-left {
  0% {
    left: 0;
    top: 0;
  }
  100% {
    left: 45%;
    top: 20%;
  }
}
@keyframes move-right1 {
  0% {
    right: -10%;
  }
  100% {
    right: 0%;
  }
}
.index-pro .miao-a a {
  background: transparent;
}
@media (max-width: 1440px) {
  .redflag-img {
    top: 37%;
  }
}
.QZNrsqFt_0 {
  animation: draw 2000ms linear 0ms forwards;
}
@keyframes draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes QZNrsqFt_fade {
  0% {
    stroke-opacity: 1;
  }
  94.44444444444444% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
.index-about .about-ul li svg .circle {
  -webkit-transition: stroke-dashoffset 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: stroke-dashoffset 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: stroke-dashoffset 3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: stroke-dashoffset 3s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  stroke-dasharray: 430;
  stroke-dashoffset: 430;
}
.index-about .about-ul li svg.a2 .circle {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.index-about .about-ul li svg.a3 .circle {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.index-about .about-ul li svg.a4 .circle {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}
.index-about .about-ul li .iagg {
  width: 100%;
}
@media (max-width: 768px) {
  .index-about .about-ul li .a {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .index-about .about-ul li p {
    font-size: 0.9rem;
  }
}
.index-about.active .about-ul li svg.a1 .circle {
  stroke-dashoffset: 200;
}
.index-about.active .about-ul li svg.a2 .circle {
  stroke-dashoffset: 200;
}
.index-about.active .about-ul li svg.a3 .circle {
  stroke-dashoffset: 200;
}
.index-about.active .about-ul li svg.a4 .circle {
  stroke-dashoffset: 200;
}
.index-about .about-ul li {
  background: rgba(255, 255, 255, 0.1);
}
.index-new {
  padding: 8rem 0;
}
.index-new .more1 {
  margin-top: 0;
}
.index-solution {
  background: url(ind01bg.jpg) no-repeat;
  background-size: cover;
}
.index-solution .du {
  top: 25%;
  left: 30%;
  font-size: 18.75rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.5rem;
  /* 13.333% */
  text-transform: uppercase;
  z-index: 1;
  -webkit-text-stroke: 1px #f2f2f2;
  -webkit-text-fill-color: transparent;
}
.a3_list1 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.a3_list1 li {
  width: 6%;
  height: 57.5rem;
  cursor: pointer;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.a3_list1 li .wenbba {
  width: 85rem;
  opacity: 0;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.a3_list1 li .a3_head {
  text-align: center;
  padding-top: 5rem;
}
.a3_list1 li .a3_head b {
  color: #FFF;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.375rem;
  /* 135% */
  text-transform: uppercase;
}
.a3_list1 li .a3_head p {
  color: #FFF;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: right;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3.75rem;
  /* 230.769% */
  text-transform: uppercase;
  position: absolute;
  bottom: 4.1875rem;
  left: 50%;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  /* IE 9 */
  -moz-transform: translateX(-50%);
  /* Firefox */
  -webkit-transform: translateX(-50%);
  /* Safari 和 Chrome */
  -o-transform: translateX(-50%);
}
.a3_list1 li:nth-child(1) {
  background: #0070c0;
}
.a3_list1 li:nth-child(2) {
  background: #3594CA;
}
.a3_list1 li:nth-child(3) {
  background: #12A5B0;
}
.a3_list1 li:nth-child(4) {
  background: #22B07B;
}
.a3_list1 li .a3_c1 {
  margin-top: 3.75rem;
}
.a3_list1 li .a3_c1 > .p {
  color: #060606;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  /* 166.667% */
}
.a3_list1 li .wehhach .le {
  width: 47%;
}
.a3_list1 li .wehhach .a3_c2 {
  width: 50%;
}
.a3_list1 li .wehhach .a3_c2 img {
  border-radius: 0 7.5rem;
}
.a3_list1 li.active {
  width: 82%;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  background: transparent;
  padding: 11.875rem 5.9375rem 11.875rem 16.125rem;
}
.a3_list1 li.active .wenbba {
  width: 100%;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  opacity: 1;
}
.a3_list1 li.active .a3_head {
  display: none;
}
.a3_list1 li.active .dh-svg {
  opacity: .04;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.a3_list1 li .item {
  height: 100%;
}
.a3_list1 li .item .img_ar {
  height: 100%;
}
.a3_list1 li .item .img_ar .prazs {
  height: 100%;
  position: relative;
}
.dh-svg {
  left: 1rem;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  top: 50%;
  -ms-transform: translateY(-50%);
  /* IE 9 */
  -moz-transform: translateY(-50%);
  /* Firefox */
  -webkit-transform: translateY(-50%);
  /* Safari 和 Chrome */
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  z-index: 1;
}
.a3_list1 li .wehhach .a3_c2 {
  position: relative;
}
.a3_list1 li .wehhach .a3_c2 img {
  position: relative;
  z-index: 3;
}
 
.a3_list1 li .wehhach .a3_c2::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #0070c0;
  opacity: 0.4;
  border-radius: 0 7.5rem;
  top: 1rem;
  left: -1rem;
}
.index-solution .du {
  z-index: -1;
}
 


.more1 a {
  position: relative;
  z-index: 1;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.more1 a i {
  font-size: 1.25rem;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  display: inline-block;
}
.more1 a:hover {
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  color: #0070c0;
  border: 1px solid transparent;
  background: linear-gradient(180deg, #9CCFFF 0%, rgba(176, 217, 255, 0.8) 35.94%, #d4eaff 100%);
}
.more1 a:hover i {
  margin-left: 5px;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.lunbo .swiper-slide {
  font-size: 0;
}
 
.lunbo .swiper-slide > img {
  height: 100vh;
  object-fit: cover;
  -webkit-animation: fd 30s ease-out infinite;
  -moz-animation: fd 30s ease-out infinite;
  -o-animation: fd 30s ease-out infinite;
  animation: fd 30s ease-out infinite;
}
 
.index-new-bot-lunbo .swiper-slide {
  cursor: pointer;
}
.index-new-bot-lunbo .swiper-slide .overh img {
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.index-new-bot-lunbo .swiper-slide .more i {
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.index-new-bot-lunbo .swiper-slide:hover .new-botd .p1 a {
  color: #0070c0;
}
.index-new-bot-lunbo .swiper-slide:hover .overh img {
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  /* IE 9 */
  -moz-transform: scale(1.1);
  /* Firefox */
  -webkit-transform: scale(1.1);
  /* Safari 和 Chrome */
  -o-transform: scale(1.1);
}
.index-new-bot-lunbo .swiper-slide:hover .more a {
  color: #0070c0;
}
.index-new-bot-lunbo .swiper-slide:hover .more i {
  margin-left: 0.3125rem;
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.more i {
  font-size: 1.25rem;
}
.cooperative-lunbo .swiper-slide {
  overflow: hidden;
  cursor: pointer;
}
.cooperative-lunbo .swiper-slide img {
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.cooperative-lunbo .swiper-slide:hover img {
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  /* IE 9 */
  -moz-transform: scale(1.1);
  /* Firefox */
  -webkit-transform: scale(1.1);
  /* Safari 和 Chrome */
  -o-transform: scale(1.1);
}
 
 
 
@media (max-width: 1440px) {
  #header .na-ul > li {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
 
  .head-en,
  .head-p {
    font-size: 2.5rem;
  }
 
  .foot-ul li {
    margin-right: 7%;
  } .a3_list1 li.active {
    padding: 5rem 5rem 5rem 10rem;
  }
 
}
@media (max-width: 990px) {
  .index-about .about-ul li {
    width: 11.25rem;
    height: 11.25rem;
  }
  .index-about .index-about-top .le .hes-p1 {
    font-size: 1.5rem;
  }
  .index-about {
    padding: 5rem 0;
  }
  .index-about .about-ul {
    padding: 2rem 0 0;
  }
  .a3_list1 li .a3_head b {
    font-size: 2rem;
  }
  .index-about .about-ul li span {
    font-size: 2rem;
  }
  .a3_list1 li .wehhach .le {
    width: 100%;
  }
  .a3_list1 li .wehhach .a3_c2 {
    width: 100%;
    margin-top: 1rem;
  }
  .a3_list1 li.active {
    padding: 5rem 5rem 5rem 8rem;
  }
  .lunbo .lunbo-wenzi .le .div1 {
    font-size: 2rem;
  }
  .lunbo .lunbo-wenzi .le .div1 img {
    height: 40px;
  }
 
  .lunbo .lunbo-wenzi .le {
    width: 100%;
  }
 
  #header {
    display: none;
  }
 
 
  
  .head-p {
    font-size: 2rem;
  }
 
 
 
}
 
.index-solution {
  overflow: hidden;
}
@media (max-width: 767px) {
 
 
  .ban > img {
    height: 300px;
    object-fit: cover;
  }
 
  .content {
    padding: 3rem 0;
  }
  .head-en {
    font-size: 1.8rem;
  }
 
 
  .more {
    margin-top: 1rem;
  }
 
 
  .lunbo .lunbo-wenzi {
    top: 20%;
  }
  .dh-svg {
    display: none;
  }
  .a3_list1 li.active {
    padding: 2rem;
  }
  .a3_list1 li.active {
    width: 100%;
  }
  .a3_list1 li {
    width: 100%;
    height: auto;
  }
  .a3_list1 li .a3_head p {
    position: relative;
  }
  .a3_list1 {
    display: none;
  }
  .index-products .index-products-top {
    padding: 3rem 0 2rem;
  }
  .index-support {
    padding: 3rem 0;
  }
  .index-support .miaos {
    margin-top: 1rem;
  }
  .index-support .index-support-ul li .pp1 {
    font-size: 1rem;
  }
  .index-support .index-support-ul li {
    padding: 2rem 0.5rem;
  }
  .index-support .index-support-ul {
    margin-top: 1rem;
    border-radius: 0;
  }
  .index-support .index-support-ul li img {
    height: 2.75rem;
  }
  .index-support {
    position: relative;
  }
  .index-support .container {
    position: relative;
    z-index: 2;
  }
  .index-support::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    left: 0;
    top: 0;
    z-index: 1;
  }
  .index-about {
    padding: 3rem 0;
  }
  .index-about .index-about-top .le {
    width: 100%;
  }
  .index-about .index-about-top .re {
    width: 100%;
    margin-top: 1rem;
  }
  .index-about .about-ul li {
    width: 9.25rem;
    display: inline-block;
    height: 9.25rem;
    font-size: 1rem;
    padding-top: 2rem;
    margin: 1%;
  }
  .index-about .about-ul {
    display: block;
    text-align: center;
  }
  .index-new {
    padding: 3rem 0;
  }
  .index-support .miaos,
  .index-about .index-about-top .re .miaos {
    font-size: 1rem;
  }
  .lunbo .lunbo-wenzi .le .div2 {
    font-size: 1rem;
  }
 
 
  .index-about .about-ul li sup {
    top: -1rem;
  }
}
.a3_list1 li .wehhach .a3_c2 a {
  overflow: hidden;
  display: block;
  border-radius: 0 7.5rem;
}
.a3_list1 li .wehhach .a3_c2 img {
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
}
.a3_list1 li .wehhach:hover .head-en {
  color: #0070c0;
}
.a3_list1 li .wehhach:hover .a3_c2 img {
  transition: 400ms ease-in-out;
  -moz-transition: 400ms ease-in-out;
  /* Firefox 4 */
  -webkit-transition: 400ms ease-in-out;
  /* Safari and Chrome */
  -o-transition: 400ms ease-in-out;
  /* Opera */
  transform: scale(1.1);
  -ms-transform: scale(1.1);
  /* IE 9 */
  -moz-transform: scale(1.1);
  /* Firefox */
  -webkit-transform: scale(1.1);
  /* Safari 和 Chrome */
  -o-transform: scale(1.1);
}
.ban {
  overflow: hidden;
}
.ban > img {
  -webkit-animation: fd 30s ease-out infinite;
  -moz-animation: fd 30s ease-out infinite;
  -o-animation: fd 30s ease-out infinite;
  animation: fd 30s ease-out infinite;
}
 
 
@media (max-width: 1280px) {
  .guanyu-ul li {
    margin: 0 1rem;
  }
}
@media (max-width: 1200px) {
 
 
  .cooperative .color-page .swiper-pagination {
    display: none;
  }
}



 
@media (max-width: 767px) {
 
    .lunbo .lunbo-wenzi .le .div1{
        font-size: 1.5rem;
    }
 
   .lunbo .swiper-pagination {
    bottom: 6%;
    left: 0%;
  }
 
  .lunbo .swiper-slide > img {
    height: 93vh;
  }
  .lunbo .swiper-pagination {
    width: 100%;
    bottom: 16%;
    text-align: center;
  }
 
  .lunbo .swiper-pagination {
    bottom: 12%;
  }
 
}
.foot-bot a {
  color: #fff;
}
.lunbo .swiper-slide {
  overflow: hidden;
}


.icenter {width: 1400px;margin: auto;position: relative;}
 
/*n_banner*/
.n_banner { width:100%; position:relative;}
.n_banner img{ width:100%; display:block; margin:0; padding:0;}

/*n_home*/
.n_home {padding: 0;position: relative; z-index: 9; margin-bottom: 3.125rem; border-bottom:2px solid #e5e5e5;}
.n_home .icenter { position: relative; display: flex; justify-content: space-between; align-items: center; }
.n_home ul { position: relative; flex-grow: 1; }
.n_home ul li{display: block; font-size:16px; color: #373941; float: left;line-height:65px; margin-right:30px; z-index: 1; position: relative;border-radius: 3px;}
.n_home ul li a{ display: block; color:#333; position: relative; }
.n_home ul li a:after{ content: ""; width: 0; height: 0; position: absolute; border: 5px solid transparent; border-bottom: 5px solid #034ba3; left: 50%; margin-left: -5px; bottom: 0; opacity: 0; transition: .5s;}
.n_home ul li a:before{ content: ""; display: block; width: 100%; transform: scaleX(0); height: 2px; background: #034ba3; position: absolute; left: 0; bottom: 0; z-index: -1; opacity: 1; transition: .5s;}
.n_home ul li:hover a:before{ width: 100%; opacity: 1; transform: scaleX(1);}  
.n_home ul li:hover a:after{ opacity: 1;}
.n_home ul li.on a:before{ width: 100%; opacity: 1; transform: scaleX(1); }  
.n_home ul li.on a:after{ opacity: 1;}
.n_home .home { left: 0;bottom: 0; font-size:14px;color: #747679;}
.n_home .home img{ vertical-align: middle; margin-bottom: 3px; margin-right: 10px; width: 13px;}
.n_home .home span, .n_home .home a, .home i,.n_home .home em {font-size:14px;color: #333;transition: all 0.36s ease-in-out;font-style: normal;}
.n_home .home i{margin: 0 10px;font-style: normal; width: 4px; height: 6px; }
.n_home .home em { color: #333;font-style: normal;}


/*local*/
.local {height: 60px; line-height:60px;font-size: 16px; background:#eee;}
.local a { color:#333;}
.local i {font-style: normal;}
.local span {padding: 0 3px;height: 60px;line-height: 60px; color:#333;}
    
/*n_nav*/
.n_nav {height: 60px;background:#003e89; margin-top:0;}
.n_nav ul {width: 100%; display:flex;}
.n_nav li {padding:0 20px;height: 60px;font-size: 16px;line-height:60px;text-align: center;border-right: 1px solid #0352b1;}
.n_nav li:last-child{border:none;}
.n_nav li a {display: block;height: 55px;color: #fff;}
.n_nav li.cur,.n_nav li:hover {background:#034ba3;}
.n_nav li.cur a,.n_nav li:hover a {color: #fff;}

	
/*n_mian */ 
.n_main { width:100%; position:relative; margin:70px auto 90px;}
.n_main .n_tit{ width: 100%;background: #fff; text-align: center; position:relative; border-bottom:1px solid #ddd; padding-bottom:30px;}
.n_main .n_tit span{font-size: 30px;color: #333; position:relative;}
	
.n_about{ min-height:350px; padding-bottom:50px; text-align:justify; line-height:30px; margin-top:40px;}


.news { width:100%;position: relative; margin-top:-60px;}
.news dl dd a{display: flex;justify-content: space-between;align-items: center;}
.news dl dd {padding: 60px 0;border-bottom: 0.1rem solid #dddddd;}
.news dl dd .img{overflow: hidden; width:30%; transition: all 0.9s; position: relative;}
.news dl dd .img img{width: 100%;height: 100%;transition: all 0.36s;}
.news dl dd .img .tou{position: relative;top: 0;left: 0; z-index:-1;}
.news dl dd .img .shi{position: absolute;top: 0;left: 0; z-index:2;}
.news dl dd:hover .img img{width: 100%; transform: scale(1.05);transition: all 0.9s;}
.news dl dd .text {width: 67%;}
.news dl dd .text h3 {font-size: 28px;color: #333333;font-weight: bold;}
.news dl dd a:hover .text h3 {color:#034ba3;}
.news dl dd .text .date {font-size: 18px;color: #666666;margin:20px 0;}
.news dl dd .text p {font-size: 16px;color: #666666;line-height:25px;margin-bottom:10px;}
.news dl dd .text .more{width: 120px; height:40px; line-height:40px; text-align:center; color:#333; border:1px solid #034ba3;}
.news dl dd a:hover .text .more {background:#034ba3;color: #fff;}
.news dl dd a:hover .text .more span {color: #fff;}


/* ab01 */
.ab01 {position: relative;margin: 90px 0;}
.ab01 .con .le{width: 68%;position: relative;}
.ab01 .con .re {width: 60%;position: absolute; right: 0px; top: 50%; transform: translateY(-50%); box-shadow: 5px -1px 20px rgba(0,0,0,0.2); padding: 30px 60px 60px; background: #fff;}
.ab01 .con .re h4 {font-size: 30px;font-weight: bold;color: #333333; position: relative;}
.ab01 .con .re h4:after{width: 40px;height: 1px;background: #381015;content: "";display: block;margin-top: 20px;}
.ab01 .con .re .txt { width:100%; line-height:30px; text-align:justify;margin-top:30px;}

/*ab02*/
.ab02 {position: relative;overflow: hidden;background: url(ab02.jpg);background-size: cover;padding: 90px 0; margin-bottom:90px;}
.ab02 .con {display: flex;flex-direction: column;justify-content: center;align-items: center;}
.ab02 .con h5 {font-size: 30px;font-weight: bold;color: #333;margin-bottom: 32px;}

/*ab03*/
.ab03 .item1{ width:100%; position:relative;}
.ab03 .item1 .img{ width:100%;}
.ab03 .item1 .img img{ width:100%;}
.ab03 .item1 .txt{ width:100%; height:100%; position:absolute; left:0; top:0;display: flex;align-items: center; padding-left:50px;}
.ab03 .item1 .txt .tt{ color:#fff;}
.ab03 .item1 .txt .tt h5{ margin-bottom:10px; font-size:24px;}
.ab03 .item1 .txt .tt span{ font-size: 16px;}
.ab03 .item1 .txt .tt p{ font-size:18px; line-height: 25px; margin-top:20px; color:#fff; }
.ab03 .item2{ width:100%; position:relative; margin-top:6px;}
.ab03 .item2 ul{display: flex;justify-content: space-between;align-items: center;}
.ab03 .item2 ul li{ width:24.5%; padding: 60px; background:#eee;}
.ab03 .item2 ul li:nth-child(1),.ab03 .item2 ul li:nth-child(3){ background:#034ba3; color:#fff;}
.ab03 .item2 ul li .txt{ width:100%; height:100%; display: flex;align-items: center;}
.ab03 .item2 ul li .txt .tt{ color:#333;}
.ab03 .item2 ul li .txt .tt h5{ margin-bottom:10px; font-size:24px;}
.ab03 .item2 ul li .txt .tt span{ font-size: 16px;}
.ab03 .item2 ul li .txt .tt p{ font-size:14px; height:50px; line-height: 25px; margin-top:20px; color:#333; }
.ab03 .item2 ul li:nth-child(1) .txt .tt,.ab03 .item2 ul li:nth-child(3) .txt .tt{color:#fff;}
.ab03 .item2 ul li:nth-child(1) .txt .tt p,.ab03 .item2 ul li:nth-child(3) .txt .tt p{color:#fff;}
.ab03 .item3{ width:100%; position:relative; margin-top:10px;}
.ab03 .item3 ul{display: flex;justify-content: space-between;align-items: center;}
.ab03 .item3 ul li{ width:49.6%; position:relative;}
.ab03 .item3 ul li .img{ width:100%;}
.ab03 .item3 ul li .img img{ width:100%;}
.ab03 .item3 ul li .txt{ width:100%; height:100%; position:absolute; left:0; top:0;display: flex;align-items: center; padding-left:50px;}
.ab03 .item3 ul li .txt .tt{ color:#fff;}
.ab03 .item3 ul li .txt .tt h5{ margin-bottom:10px; font-size:24px;}
.ab03 .item3 ul li .txt .tt span{ font-size: 16px;}
.ab03 .item3 ul li .txt .tt p{ font-size:18px; line-height: 25px; margin-top:20px; color:#fff; }


/*n_fuwu*/
.n_fuwu{ width: 100%; background: #fff;}
.n_fuwu .con{display: flex;justify-content: space-between;align-items: center; background: #f3f4f8;}
.n_fuwu .con .img{ width: 50%; position:relative; overflow: hidden;}
.n_fuwu .con .img img{ width:100%; position:relative; transition: 1s;}
.n_fuwu .con:hover .img img{ transform: scale(1.05); }
.n_fuwu .con .txt{ width: 50%;height: 100%; background: #f3f4f8; padding: 0 50px;}
.n_fuwu .con .txt h5{ font-size:24px; color: #434343; margin-bottom:30px;}
.n_fuwu .con .txt p{ font-size:16px; color: #606060; line-height:30px; }

/*n_fuwu01*/
.n_fuwu01{ width: 100%; background: #fff; margin-top:50px;}
.n_fuwu01 .con{display: flex;justify-content: space-between;align-items: center; background: #f3f4f8;}
.n_fuwu01 .con .img{ width: 50%; position:relative; overflow: hidden;}
.n_fuwu01 .con .img img{ width:100%; position:relative; transition: 1s;}
.n_fuwu01 .con:hover .img img{ transform: scale(1.05); }
.n_fuwu01 .con .txt{ width: 50%;height: 100%; background: #f3f4f8; padding: 0 50px;}
.n_fuwu01 .con .txt h2{ font-size:20px; color: #434343; margin-bottom:30px;}
.n_fuwu01 .con .txt p{ font-size:14px; color: #606060; line-height:30px; }





/*n_lianx*/
.n_lianx .n_top h3{ font-size:24px; margin:10px auto; text-align:center;}
.n_lianx .n_top p{ font-size:16px; margin:20px auto; text-align:center; color:#666;}
.n_lianx .txt ul{display: flex; justify-content:space-between;align-items: center;}
.n_lianx .txt ul li{ width:32%; background:#e6e6e6;display: flex; justify-content: center;align-items: center; text-align:center; padding:30px 0;}
.n_lianx .txt ul li h1{ font-size:18px; font-weight:bold; padding:5px 0; color:#333;}
.n_lianx .txt ul li p{ font-size:16px; padding:5px 0; color:#333;}

