@font-face {
  font-family: 'sanSc';
  src: url('../css/fonts/SourceHanSansSC-Light.woff2') format('opentype');
}
* {
  margin: 0;
  padding: 0;
}
body,
html {
  height: 100%;
  position: relative;
  width: 100%;
}
img {
  display: block;
}
a {
  color: #333;
  text-decoration: none;
}
ul,
ol,
li,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hamburger {
  display: none;
}
.x-center {
  width: 1200px;
}
.center {
  width: 1300px;
}
.header-box.active {
  background-color: rgba(227, 231, 239, 1);
}
.header-box {
  width: 100%;
  background-color: rgba(227, 231, 239, 0.9);
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
}
.header-box .headerInner {
  margin: 0 auto;
  width: calc(100% - 260px);
  height: 110px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.headerInner .logo img {
  height: 45px;
  width: auto !important;
}
.headerInner .right {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.headerInner .right .nav {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.headerInner .right .nav .one {
  position: relative;
}
.headerInner .right .nav .one > a {
  display: block;
  font-family: sanSc;
  font-weight: 400;
  font-size: 18px;
  color: #222222;
  line-height: 110px;
  position: relative;
}
.headerInner .right .nav .one > a .flow {
  position: absolute;
  left: calc(100% + 5px);
  top: 50%;
  transform: translateY(-50%);
  background-color: #2891ff;
  font-family: sanSc;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  border-radius: 10px;
  line-height: 1;
  padding: 2px 4px;
}
.headerInner .right .nav .one:not(:first-of-type) {
  margin-left: 90px;
}
.headerInner .right .nav .one > a::after {
  display: block;
  content: '';
  width: 0;
  height: 4px;
  background-color: #2891ff;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.headerInner .right .nav .one > a:hover::after {
  width: 100%;
}
.headerInner .right .nav .one.active > a::after {
  width: 100%;
}
.headerInner .right .nav .one .two {
  display: flex;
  display: -webkit-flex;
  position: absolute;
  left: 0px;
  top: 100%;
  transform: scaleY(0);
  transform-origin: center top;
  opacity: 0;
  transition: 0.3s;
  padding-bottom: 30px;
}
.flow-nav-bg {
  position: fixed;
  left: 0px;
  top: 110px;
  background-color: rgba(227, 231, 239, 0.9);
  width: 100vw;
  height: 0;
  z-index: 9999;
  transition: 0.3s;
}
.headerInner .right .nav .one:hover > .two {
  transform: scaleY(1);
  opacity: 1;
}
.headerInner .right .nav .one .two .gzrq {
  width: 72px;
}
.headerInner .right .nav .one .two .gzrq img {
  width: 100%;
}
.headerInner .right .nav .one .two .gzrq P {
  font-family: sanSc;
  font-weight: 400;
  font-size: 12px;
  color: #000000;
  margin-top: 10px;
}
.headerInner .right .nav .one .two a:hover > span {
  background-color: #2891ff;
}
.headerInner .right .nav .one .two a:hover > p {
  color: #2891ff;
}
.headerInner .right .nav .one .two a {
  width: 162px;
}
.headerInner .right .nav .one .two a:not(:first-of-type) {
  margin-top: 20px;
}
.headerInner .right .nav .one .two a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.headerInner .right .nav .one .two a span {
  width: 6px;
  height: 6px;
  background-color: #000000;
  transition: 0.3s;
}
.headerInner .right .nav .one .two a p {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  margin-left: 7px;
  width: calc(100% - 6px - 7px);
  transition: 0.3s;
}
.headerInner .right .search-language {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  margin: 0 90px;
  height: 110px;
}
.headerInner .right .search-language .search {
  position: relative;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.headerInner .right .search-language .search::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 4px;
  background-color: #2891ff;
  transition: 0.3s;
}
.headerInner .right .search-language .search:hover::after {
  width: 30px;
}
.headerInner .right .search-language .search form {
  position: absolute;
  right: 0px;
  top: 110px;
  width: 600px;
  border: 2px solid #2891ff;
  height: 40px;
  display: flex;
  display: -webkit-flex;
  transform: scaleY(0);
  transform-origin: center top;
  opacity: 0;
  transition: 0.3s;
}
.headerInner .right .search-language .search:hover > form {
  transform: scaleY(1);
  opacity: 1;
}
.headerInner .right .search-language .search form button {
  outline: none;
  border: none;
  border-radius: 0px;
  background-color: #2891ff;
  width: 45px;
  height: 100%;
  cursor: pointer;
}
.headerInner .right .search-language .search form button i {
  font-size: 22px;
  color: #ffffff;
}
.headerInner .right .search-language .search form input {
  width: calc(100% - 45px);
  height: 100%;
  background-color: #ffffff;
  border: none;
  outline: none;
  text-indent: 10px;
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #222222;
}
.headerInner .right .search-language .icon {
  font-size: 20px;
  color: #222222;
  cursor: pointer;
}
.headerInner .right .search-language .language {
  font-family: sanSc;
  font-weight: 400;
  font-size: 12px;
  color: #222222;
  display: block;
  line-height: 1;
  padding: 3px 1px;
  border: 1px solid #222222;
  margin-left: 20px;
}
.headerInner .right .phone {
  font-family: sanSc;
  font-weight: bold;
  font-size: 24px;
  color: #134a9a;
}
.mySwiper .s-c {
  width: 100%;
  height: 100vh;
}
.mySwiper .s-c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mySwiper .s-c .ct {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.mySwiper .s-c .ct h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 60px;
  color: #222222;
  line-height: 80px;
}
.mySwiper .s-c .ct h3 span {
  color: #2891ff;
}
.mySwiper .swiper-pagination {
  bottom: 20px;
}
.mySwiper .swiper-pagination-bullet {
  background-color: transparent;
  border: 1px solid #000000;
  width: 10px;
  height: 10px;
  opacity: 1;
}
.mySwiper .swiper-pagination-bullet-active {
  background-color: #000000;
}
.mySwiper .s-c.active4 .ct h3 span {
  color: #ff7d32;
}
.mySwiper .s-c.active4 .ct .pb-more::before {
  background-color: #ff7d32;
}
.mySwiper .s-c.active5 .ct h3 span {
  color: #003c96;
}
.mySwiper .s-c.active5 .ct .pb-more::before {
  background-color: #003c96;
}
.mySwiper .s-c.active6 .ct h3 span {
  color: #00c8dc;
}
.mySwiper .s-c.active6 .ct .pb-more::before {
  background-color: #00c8dc;
}
.pb-more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  background-color: transparent;
  border: 1px solid #000000;
  width: 170px;
  height: 45px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.pb-more span {
  font-family: sanSc;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  transition: 0.3s;
}
.pb-more i {
  font-size: 16px;
  color: #000000;
  margin-left: 10px;
  transition: 0.3s;
}
.pb-more::before {
  display: block;
  content: '';
  width: 0;
  height: 100%;
  background-color: #2891ff;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: 0.3s;
  z-index: -1;
}
.pb-more:hover {
  border-color: transparent;
}
.pb-more:hover::before {
  width: 100%;
}
.pb-more:hover > span,
.pb-more:hover > i {
  color: #ffffff;
}
.pb-more.active {
  border-color: transparent;
}
.pb-more.active::before {
  width: 100%;
}
.pb-more.active span,
.pb-more.active i {
  color: #ffffff;
}
.i1-box {
  width: 100%;
  background-color: #e3e7ef;
}
.i1-box .i1Inner {
  margin: 0 auto;
  padding: 110px 0;
  width: 800px;
}
.i1Inner h6 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 18px;
  color: #222222;
  width: 100%;
  margin: 40px auto 0;
  line-height: 36px;
}
.i1Inner .videoPlay,
.i1Inner .videoPend {
  margin: 70px auto 0;
  width: max-content;
}
.i1Inner .videoBz {
  margin-top: 70px;
  display: none;
}
.i1Inner .videoPend {
  display: none;
}
.pb-h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 46px;
  color: #222222;
  line-height: 60px;
  text-align: center;
}
.i2-box {
  width: 100%;
  background-color: #e3e7ef;
}
.i2-box .i2Inner {
  margin: 0 auto;
  padding: 50px 0 70px 0;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.i2Inner .pb-h3 {
  text-align: left;
  /*font-size: 38px;*/
}
/*.i2Inner .row{*/
/*  display: flex;*/
/*  display: -webkit-flex;*/
/*  align-items: center;*/
/*  -webkit-align-items: center;*/
/*  justify-content: space-between;*/
/*  -webkit-justify-content: space-between;*/
/*  margin: 35px 0;*/
/*}*/
/*.i2Inner .row .list{*/
/*  width: 280px;*/
/*}*/
.i2Inner .left {
  width: 430px;
}
.i2Inner .list {
  margin: 20px 0;
}
.i2Inner .list a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  width: calc(100% - 60px);
  padding: 25px 30px;
}
.i2Inner .list a span {
  font-family: sanSc;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  transition: 0.3s;
}
.i2Inner .list a i {
  font-size: 18px;
  color: #000000;
  margin-left: auto;
  transition: 0.3s;
}
.i2Inner .list a:not(:last-of-type) {
  border-bottom: 1px solid #000000;
}
.i2Inner .list a:hover > span {
  color: #2891ff;
}
.i2Inner .list a:hover > i {
  color: #2891ff;
}
.i2Inner .right {
  width: 780px;
  /* height: 330px; */
}
.i2Inner .right img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}
.i2Inner .right img:not(:first-of-type) {
  display: none;
}
/*.i3-box .i2Inner .pb-h3{*/
/*  margin-left: auto;*/
/*}*/
/*.i3-box .i2Inner .row{*/
/*  flex-direction: row-reverse;*/
/*  -webkit-flex-direction: row-reverse;*/
/*}*/
/*.i3-box .i2Inner .row .right{*/
/*  width: 720px;*/
/*}*/
/*.i3-box .i2Inner .row .list{*/
/*  width: 410px;*/
/*}*/
/*.i3-box .i2Inner .row .list a{*/
/*  padding: 30px 30px;*/
/*}*/
/*.i3-box .i2Inner .pb-more{*/
/*  margin-left: 890px;*/
/*}*/
.i3-box .i2Inner {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.i4-box {
  width: 100%;
  height: 925px;
  position: relative;
}
.i4-box .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.i4-box .flow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
}
.i4-box .flow .pb-h3 {
  color: #ffffff;
}
.i4-box .flow .pb-more {
  margin: 25px 0 0 0;
  border-color: #ffffff;
}
.i4-box .flow .pb-more span,
.i4-box .flow .pb-more i {
  color: #ffffff;
}
.i4-box .flow .pb-more:hover {
  border-color: transparent;
}
.i4-box .flow .right {
  width: 700px;
}
.i4-box .flow .right img {
  width: 100%;
}
.i5-box {
  width: 100%;
  background-color: #e4e8f1;
}
.i5-box .i5Inner {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.i5Inner .item {
  width: calc(100% / 2);
  position: relative;
}
.i5Inner .item:last-of-type .flow {
  left: calc(50% - 200px);
  transform: translateY(-50%);
}
.i5Inner .item .bg {
  width: 100%;
}
.i5Inner .item .flow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.i5Inner .item .pb-h3 {
  text-align: left;
  width: max-content;
}
.i5Inner .item .pb-more {
  margin: 30px 0 0 0;
}
.i5Inner .item:nth-of-type(1) .pb-more {
  border-color: #003c96;
  background-color: #003c96;
}
.i5Inner .item:nth-of-type(1) .pb-more span,
.i5Inner .item:nth-of-type(1) .pb-more i {
  color: #ffffff;
}
.i5Inner .item:nth-of-type(1) .pb-more:hover {
  border-color: transparent;
}
.i5Inner .item:nth-of-type(1) .pb-more:hover::before {
  width: 0;
}
.i5Inner .item:nth-of-type(2) .pb-more {
  border-color: #00c8dc;
  background-color: #00c8dc;
}
.i5Inner .item:nth-of-type(2) .pb-more span,
.i5Inner .item:nth-of-type(2) .pb-more i {
  color: #ffffff;
}
.i5Inner .item:nth-of-type(2) .pb-more:hover {
  border-color: transparent;
}
.i5Inner .item:nth-of-type(2) .pb-more:hover::before {
  width: 0;
}
.i6-box {
  width: 100%;
  background-color: #e3e7ef;
}
.i6-box .i6Inner {
  padding: 130px 0;
  margin: 0 auto;
}
.i6-pbContainer {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  width: 100%;
  height: 600px;
}
.i6-pbContainer .left {
  width: 900px;
  height: 100%;
  position: relative;
}
.i6-pbContainer .left .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}
.i6-pbContainer .left .txt {
  width: calc(100% - 120px);
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  padding: 0 60px;
}
.i6-pbContainer .left .txt h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 46px;
  color: #ffffff;
  line-height: 60px;
  width: 100%;
}
.i6-pbContainer .left .txt .pb-more {
  margin: 25px 0 0 0;
  border-color: #ffffff;
}
.i6-pbContainer .left .txt .pb-more span,
.i6-pbContainer .left .txt .pb-more i {
  color: #ffffff;
}
.i6-pbContainer .left .txt .pb-more:hover {
  border-color: transparent;
}
.i6-pbContainer .right {
  width: calc(100% - 900px - 30px);
  height: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.i6-pbContainer .right .item {
  width: 100%;
  height: calc((100% - 50px) / 2);
  position: relative;
}
.i6-pbContainer .right .item .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}
.i6-pbContainer .right .item .txt {
  width: calc(100% - 80px);
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  padding: 0 40px;
}
.i6-pbContainer .right .item .txt h4 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 22px;
  color: #ffffff;
  line-height: 46px;
}
.i6-pbContainer .right .item:nth-of-type(2) .ll-txt {
  width: calc(100% - 40px);
  height: 100%;
  background-color: #2891ff;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  padding-left: 40px;
}
.i6-pbContainer .right .item:nth-of-type(2) .ll-txt .row {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.i6-pbContainer .right .item:nth-of-type(2) .ll-txt .row span {
  font-family: sanSc;
  font-weight: 400;
  font-size: 30px;
  color: #ffffff;
  line-height: 1;
}
.i6-pbContainer .right .item:nth-of-type(2) .ll-txt .row p {
  font-size: 12px;
  color: #2891ff;
  border-radius: 8px;
  background-color: #ffffff;
  padding: 0px 3px;
  margin-left: 10px;
}
.banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .flow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.banner .flow h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 60px;
  color: #222222;
  line-height: 80px;
}
.banner .flow h3 span {
  color: #f67e28;
}
.banner .bottom {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
}
.banner .bottom .ct {
  margin: 0 auto;
  padding-bottom: 35px;
}
.banner .bottom .ct .b-nav {
  display: flex;
  display: -webkit-flex;
}
.banner .bottom .ct .b-nav a {
  width: auto;
  border-top: 3px solid #b3b3b3;
  transition: 0.3s;
  font-family: sanSc;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  padding-top: 10px;
}
.banner .bottom .ct .b-nav a:not(:first-of-type) {
  margin-left: 30px;
}
.banner .bottom .ct .b-nav a.active {
  border-top-color: #f67e28;
}
.banner .bottom .ct .b-nav a:hover {
  border-top-color: #f67e28;
}
.banner .bottom .ct h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 36px;
  color: #000000;
  margin-top: 60px;
}
.so-box {
  width: 100%;
  background-color: #ffffff;
}
.so-box .soInner {
  margin: 0 auto;
  padding: 50px 0 150px 0;
}
.soInner .container {
  width: 940px;
}
.soInner .container .item:not(:first-of-type) {
  margin-top: 100px;
}
.soInner .container .item h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 24px;
  color: #f67e28;
  margin-bottom: 20px;
}
.soInner .container .item p {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 30px;
  text-indent: 32px;
  text-align: justify;
}
.soInner .container .item img {
  width: 100%;
  margin: 30px auto 0;
}
.soInner .container .item .rq-box {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-top: 25px;
}
.soInner .container .item .rq-box .rq {
  width: calc(100% / 2);
  margin-bottom: 40px;
}
.soInner .container .item .rq-box .rq .name {
  width: 75%;
  font-family: sanSc;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}
.soInner .container .item .rq-box .rq .nr {
  width: 75%;
  font-family: sanSc;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-top: 5px;
}
.soInner .container .item .b-box {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.soInner .container .item .b-box .b {
  width: calc((100% - 200px) / 3);
  margin-right: 100px;
}
.soInner .container .item .b-box .b:nth-of-type(3n) {
  margin-right: 0px;
}
.soInner .container .item .b-box .b .name {
  font-family: sanSc;
  font-weight: 500;
  font-size: 16px;
  color: #f67e28;
}
.soInner .container .item .b-box .b .zw {
  font-family: sanSc;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-top: 5px;
}
.banner.gx h3 span {
  color: #2891ff;
}
.banner.gx .bottom .ct .b-nav a.active {
  border-top-color: #2891ff;
}
.banner.gx .bottom .ct .b-nav a:hover {
  border-top-color: #2891ff;
}
.gxso-box {
  width: 100%;
  background-color: #ffffff;
}
.gxso-box .gxsoInner {
  margin: 0 auto;
  padding: 100px 0 150px 0;
}
.gxsoInner .container {
  width: 940px;
}
.gxsoInner .container .item:not(:first-of-type) {
  margin-top: 100px;
}
.gxsoInner .container .item > img {
  width: 100%;
  margin: 25px auto 0;
}
.gxsoInner .container .item h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 24px;
  color: #2891ff;
}
.gxsoInner .container .item p {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 30px;
  text-indent: 32px;
  margin-top: 25px;
}
.gxsoInner .container .item .row {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  margin-top: 25px;
}
.gxsoInner .container .item .row .left {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 30px;
  text-indent: 32px;
  text-align: justify;
}
.gxsoInner .container .item .row .left {
  width: calc(100% - 450px - 80px);
}
.gxsoInner .container .item .row .right {
  width: 450px;
}
.gxsoInner .container .item .row.one .left {
  width: calc(100% - 650px - 80px);
}
.gxsoInner .container .item .row.one .right {
  width: 650px;
}
.gxsoInner .container .item .row .right img {
  width: 100%;
}
.gxsoInner .container .item .sd-box {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-top: 35px;
}
.gxsoInner .container .item .sd-box .sd {
  width: calc((100% - 100px) / 2);
  margin-right: 100px;
  margin-bottom: 20px;
}
.gxsoInner .container .item .sd-box .sd:nth-of-type(2n) {
  margin-right: 0px;
}
.gxsoInner .container .item .sd-box .sd {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.gxsoInner .container .item .sd-box .sd .left {
  width: 200px;
  height: 120px;
}
.gxsoInner .container .item .sd-box .sd .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gxsoInner .container .item .sd-box .sd .right {
  width: calc(100% - 200px - 15px);
  padding-left: 15px;
}
.gxsoInner .container .item .sd-box .sd .right .name {
  font-family: sanSc;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
}
.gxsoInner .container .item .sd-box .sd .right a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-top: 20px;
}
.gxsoInner .container .item .sd-box .sd .right a span {
  font-family: sanSc;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}
.gxsoInner .container .item .sd-box .sd .right a i {
  font-size: 14px;
  color: #000000;
  margin-left: 10px;
}
.gxsoInner .container .item .ld-box {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-top: 35px;
}
.gxsoInner .container .item .ld-box .ld {
  width: calc((100% - 60px) / 2);
  margin-right: 60px;
  margin-bottom: 35px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.gxsoInner .container .item .ld-box .ld:nth-of-type(2n) {
  margin-right: 0px;
}
.gxsoInner .container .item .ld-box .ld .left {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.gxsoInner .container .item .ld-box .ld .left img {
  width: 100%;
  height: 100%;
}
.gxsoInner .container .item .ld-box .ld .right {
  width: calc(100% - 50px - 20px);
  margin-left: 20px;
}
.gxsoInner .container .item .ld-box .ld .right .name {
  font-family: sanSc;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}
.gxsoInner .container .item .ld-box .ld .right .zw {
  font-family: sanSc;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-top: 5px;
}
.gxsoInner .container .item .rq-box {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-top: 25px;
}
.gxsoInner .container .item .rq-box .rq {
  width: calc(100% / 2);
  margin-bottom: 40px;
}
.gxsoInner .container .item .rq-box .rq .name {
  width: 75%;
  font-family: sanSc;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}
.gxsoInner .container .item .rq-box .rq .nr {
  width: 75%;
  font-family: sanSc;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-top: 5px;
}
.banner.zq h3 span {
  color: #003c96;
}
.banner.zq .bottom .ct .b-nav a.active {
  border-top-color: #003c96;
}
.banner.zq .bottom .ct .b-nav a:hover {
  border-top-color: #003c96;
}
.banner.yl h3 span {
  color: #00c8dc;
}
.banner.yl .bottom .ct .b-nav a.active {
  border-top-color: #00c8dc;
}
.banner.yl .bottom .ct .b-nav a:hover {
  border-top-color: #00c8dc;
}
.yl-box {
  width: 100%;
  background-color: #ffffff;
}
.yl-box .ylInner {
  margin: 0 auto;
  padding: 80px 0 150px 0;
}
.ylInner .container {
  width: 940px;
}
.ylInner .item:not(:first-of-type) {
  margin-top: 100px;
}
.ylInner .item .two-item:not(:first-of-type) {
  margin-top: 200px;
}
.ylInner .item .title {
  font-family: sanSc;
  font-weight: 400;
  font-size: 36px;
  color: #000000;
}
.ylInner .item .row {
  margin-top: 30px;
}
.ylInner .item .row h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 24px;
  color: #00c8dc;
}
.ylInner .item .row p {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  line-height: 30px;
  text-indent: 32px;
  margin-top: 20px;
}
.ylInner .item .dq-row {
  margin-top: 50px;
}
.ylInner .item .dq-row h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 24px;
  color: #00c8dc;
}
.ylInner .item .dq-row .ct {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.ylInner .item .dq-row .ct .left {
  max-width: calc(100% - 550px - 30px);
}
.ylInner .item .dq-row .ct .left .h-box {
  margin-top: 20px;
}
.ylInner .item .dq-row .ct .left .h {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.ylInner .item .dq-row .ct .left .h span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #000000;
}
.ylInner .item .dq-row .ct .left .h p {
  margin-left: 10px;
  width: calc(100% - 3px - 10px);
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}
.ylInner .item .dq-row .ct .left .h:not(:first-of-type) {
  margin-top: 7px;
}
.ylInner .item .dq-row .ct .right {
  max-width: 550px;
}
.ylInner .item .dq-row .ct .right img {
  max-width: 100%;
}
.ylInner .item .i-row {
  margin-top: 110px;
}
.ylInner .item .i-row h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 24px;
  color: #00c8dc;
}
.ylInner .item .i-row img {
  margin-top: 25px;
  width: 100%;
}
.prd-banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.prd-banner .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prd-banner .flow-pd-img {
  position: absolute;
  right: calc((100% - 1300px) / 2);
  bottom: 0px;
  width: 550px;
}
.prd-banner.wxb .flow-pd-img {
  bottom: 150px;
}
.prd-banner .flow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.prd-banner .flow .title {
  font-family: sanSc;
  font-weight: 400;
  font-size: 60px;
  color: #ffffff;
  text-align: center;
}
.prd-banner .flow .js {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 30px;
  margin: 40px auto 0;
  text-indent: 34px;
  width: 800px;
}
.prd-banner .flow .title span {
  font-size: 100px;
  display: inline-block;
  font-family: sanSc;
  font-weight: bold;
}
.prd-banner .flow .flow-cao {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-top: 40px;
}
.prd-banner .flow .flow-cao a,
.prd-banner .flow .flow-cao span {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  text-indent: 0px;
}
.prd-banner.wkb .flow .flow-cao a,
.prd-banner.wkb .flow .flow-cao span {
  font-size: 28px;
}
.prd-banner .flow .flow-cao span {
  margin: 0 10px;
}
.prd-banner.yd .title {
  text-align: left;
}
.prd-banner.yd .js {
  margin: 40px 0 0 0;
  width: 670px;
}
.prd-banner.wxb .js {
  width: 550px;
}
/*.prd-banner.wkb .js{*/
/*  width: 550px;*/
/*  text-align: justify;*/
/*}*/
.prd-banner.newyzy .flow {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
}
.prd-banner.newyzy .flow .left {
  width: calc(100% - 600px - 50px);
}
.prd-banner.newyzy .flow .right {
  width: 600px;
}
.prd-banner.newyzy .flow .right img {
  width: 100%;
}
.prd-banner.newyzy .flow .js {
  width: 100%;
}
.pro-box {
  width: 100%;
  background-color: #e3e8ef;
  padding-bottom: 100px;
}
.pro-box .row {
  width: 100%;
  height: 900px;
  position: relative;
  background-color: #e3e8ef;
  overflow: hidden;
}
.pro-box .row .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro-box .row .ct {
  display: flex;
  display: -webkit-flex;
  /*align-items: center;*/
  justify-content: space-between;
  /*-webkit-align-items: center;*/
  -webkit-justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.pro-box .row .ct .left {
  width: 690px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.pro-box .row .ct .left img {
  width: 100%;
}
.pro-box .row .ct .right {
  width: calc(100% - 690px - 30px);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.pro-box .row .ct .right .wz h4 {
  font-family: sanSc;
  font-size: 36px;
  color: #ffffff;
  font-weight: 400;
}
.pro-box .row .ct .right .wz h3 {
  font-family: sanSc;
  font-size: 40px;
  color: #ffffff;
  font-weight: 400;
  margin-top: 10px;
}
.pro-box .row .ct .right .wz .txt {
  margin-top: 15px;
}
.pro-box.wkb .ct .right .wz .txt {
  /*width: 300px;*/
}
/*.pro-box.wkb .row:nth-of-type(2) .ct .left img{*/
/*    transform: translateY(100px);*/
/*}*/
.pro-box .row .ct .right .wz .txt p {
  font-family: sanSc;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  line-height: 30px;
}
/*.pro-box .row .ct .right .wz .txt p:not(:first-of-type){*/
/*  margin-top: 10px;*/
/*}*/
.pro-box .row:nth-of-type(odd) .ct {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.pro-box .row:nth-of-type(odd) .ct .right .wz h4,
.pro-box .row:nth-of-type(odd) .ct .right .wz h3,
.pro-box .row:nth-of-type(odd) .ct .right .wz .txt p {
  color: #000000;
}
.pro-box.wkb .row .ct .left {
  width: 700px;
}
.pro-box.wkb .row .ct .right {
  width: calc(100% - 700px - 50px);
  /*justify-content: flex-start;*/
  /*-webkit-justify-content: flex-start;*/
}
.pro-box.wkb .row:nth-of-type(2) .ct .right .wz {
  transform: translateX(-50px);
}
.pro-box.wkb .row .ct .right .wz h4 {
  font-family: sanSc;
  font-size: 40px;
  color: #ffffff;
  font-weight: 400;
}
.pro-box.wkb .row .ct .right .wz .txt {
  margin-top: 20px;
}
.pro-box.wkb .row .ct .right .wz .txt p {
  font-family: sanSc;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}
.pro-box.wkb .row .ct .right .wz .txt p:not(:first-of-type) {
  margin-top: 10px;
}
.pro-box.wkb .row:nth-of-type(odd) .ct .right .wz h4,
.pro-box.wkb .row:nth-of-type(odd) .ct .right .wz h3,
.pro-box.wkb .row:nth-of-type(odd) .ct .right .wz .txt p {
  color: #000000;
}
.pro-box.csyzy-box .row .ct .left {
  width: 750px;
}
.pro-box.csyzy-box .row .ct .right {
  width: calc(100% - 750px - 50px);
}
.pro-box.csyzy-box .row .ct .right .wz .txt p {
  font-size: 18px;
  line-height: 36px;
}
.wxprd-box {
  width: 100%;
}
.row-video-box {
  width: 100%;
  background-color: #e3e8ef;
  height: 800px;
  position: relative;
}
.row-video-box .ct {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
}
.row-video-box .imgct {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.row-video-box .imgct img {
  width: 100%;
}
.row-video-box .caolg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.row-video-box .caolg img {
  width: 100%;
}
.wxprd-box .row {
  width: 100%;
  height: 900px;
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}
.wxprd-box .row .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wxprd-box .row .ct {
  display: flex;
  display: -webkit-flex;
  /*align-items: center;*/
  justify-content: space-between;
  /*-webkit-align-items: center;*/
  -webkit-justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wxprd-box .row .ct .left {
  width: 800px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.wxprd-box .row .ct .left img {
  max-width: 100%;
}
.wxprd-box .row .ct .right {
  width: calc(100% - 800px);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.wxprd-box .row .ct .right .wz h4 {
  font-family: sanSc;
  font-size: 36px;
  color: #ffffff;
  font-weight: 400;
}
.wxprd-box .row .ct .right .wz h3 {
  font-family: sanSc;
  font-size: 40px;
  color: #ffffff;
  font-weight: 400;
  margin-top: 10px;
}
.wxprd-box .row .ct .right .wz .txt {
  margin-top: 30px;
}
.wxprd-box .row .ct .right .wz .txt .t-r {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.wxprd-box .row .ct .right .wz .txt .t-r p {
  font-family: sanSc;
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
}
.wxprd-box .row .ct .right .wz .txt .t-r span {
  font-family: sanSc;
  font-size: 26px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
}
.wxprd-box .row .ct .right .wz .txt .t-r:not(:first-of-type) {
  margin-top: 20px;
}
.wxprd-box .row:nth-of-type(odd) .ct {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.wxprd-box .row:nth-of-type(odd) .ct .wz h4,
.wxprd-box .row:nth-of-type(odd) .ct .wz h3,
.wxprd-box .row:nth-of-type(odd) .ct .wz .txt .t-r span,
.wxprd-box .row:nth-of-type(odd) .ct .wz .txt .t-r p {
  color: #000000;
}
.wxprd-box .fajg-box {
  width: 100%;
  background-color: #ffffff;
}
.wxprd-box .fajg-box .fajg {
  margin: 0 auto;
  padding: 100px 0 200px 0;
}
.wxprd-box .fajg-box .fajg .title {
  font-family: sanSc;
  font-size: 40px;
  color: #2891ff;
  font-weight: 400;
}
.wxprd-box .fajg-box .fajg img {
  width: 100%;
  margin-top: 50px;
}
.ydprd-box {
  width: 100%;
}
.ydprd-box.wxb {
  background-color: #ffffff;
  /*padding-bottom: 100px;*/
}
.ydprd-box.wkb {
  background-color: #e3e7ef;
  padding-bottom: 100px;
}
.ydprd-box .row {
  width: 100%;
  height: 900px;
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}
.ydprd-box .row .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ydprd-box.wkb .row .ct {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.ydprd-box .row .ct {
  display: flex;
  display: -webkit-flex;
  /*align-items: center;*/
  justify-content: space-between;
  /*-webkit-align-items: center;*/
  -webkit-justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ydprd-box .row .ct .left {
  width: 720px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.ydprd-box .row .ct .left img {
  width: 100%;
}
.ydprd-box .row .ct .right {
  width: calc(100% - 720px);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.ydprd-box .row .ct .right .wz h3 {
  font-family: sanSc;
  font-size: 40px;
  color: #ffffff;
  font-weight: 400;
  margin-top: 10px;
}
.ydprd-box .row .ct .right .wz .txt {
  margin-top: 20px;
}
.ydprd-box .row .ct .right .wz .txt p {
  font-family: sanSc;
  font-size: 18px;
  color: #ffffff;
  font-weight: 500;
}
.ydprd-box .row .ct .right .wz .txt p:not(:first-of-type) {
  margin-top: 10px;
}
.ydprd-box .no-row {
  width: 100%;
  height: 900px;
  position: relative;
  background-color: #e3e8ef;
  overflow: hidden;
}
.ydprd-box .no-row:nth-of-type(odd) .ct {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.ydprd-box .no-row .ct {
  display: flex;
  display: -webkit-flex;
  /*align-items: center;*/
  justify-content: space-between;
  /*-webkit-align-items: center;*/
  -webkit-justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ydprd-box .no-row .ct .left {
  width: 720px;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.ydprd-box .no-row .ct .left img {
  width: 100%;
}
.ydprd-box .no-row .ct .right {
  width: calc(100% - 720px);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
}
.ydprd-box .no-row .ct .right .wz h3 {
  font-family: sanSc;
  font-size: 40px;
  color: #000000;
  font-weight: 400;
}
.ydprd-box .no-row .ct .right .wz .txt {
  margin-top: 15px;
}
.ydprd-box .no-row .ct .right .wz .txt p {
  font-family: sanSc;
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  line-height: 36px;
}
.ydprd-box .no-row .ct .right .wz .txt p:not(:first-of-type) {
  /*margin-top: 10px;*/
}
.wkb-xz {
  width: 100%;
  height: 900px;
  position: relative;
}
.wkb-xz h3 {
  position: absolute;
  top: 90px;
  left: 0;
  text-align: center;
  font-family: sanSc;
  font-size: 40px;
  color: #ffffff;
  font-weight: 400;
  width: 100%;
}
.wkb-xz .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wkb-xz .ct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  overflow: hidden;
}
.wkb-xz .ct .item {
  width: calc((100% - 60px) / 2);
}
.wkb-xz .ct .item img {
  width: calc(100% - 10px);
  border: 5px solid #b9ceed;
}
.wkb-xz .ct .item p {
  text-align: center;
  font-family: sanSc;
  font-size: 28px;
  color: #ffffff;
  font-weight: 500;
  margin-top: 20px;
}
.n1-box {
  width: 100%;
  background-color: #e3e7ef;
}
.n1-box .n1Inner {
  margin: 0 auto;
  padding: 150px 0 100px 0;
}
.n2-box {
  width: 100%;
  background-color: #e3e7ef;
}
.n2-box .n2Inner {
  margin: 0 auto;
  padding: 0 0 110px 0;
}
.n2Inner .left {
  width: 900px;
}
.n2Inner .left .top {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
}
.n2Inner .left .top h3 {
  font-family: sanSc;
  font-size: 36px;
  color: #2891ff;
  font-weight: 400;
  line-height: 1;
}
.n2Inner .left .top .query {
  display: flex;
  display: -webkit-flex;
  width: 250px;
  height: 40px;
  border: 3px solid #000000;
}
.n2Inner .left .top .query button {
  border: none;
  outline: none;
  background-color: #000000;
  width: 40px;
  height: 100%;
}
.n2Inner .left .top .query button i {
  color: #ffffff;
  font-size: 20px;
}
.n2Inner .left .top .query input {
  width: calc(100% - 40px);
  border: none;
  background-color: #ffffff;
  outline: none;
  height: 100%;
  font-family: sanSc;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  text-indent: 20px;
}
.n2Inner .left .n2-nav {
  display: flex;
  display: -webkit-flex;
  margin-top: 20px;
}
.n2Inner .left .n2-nav a {
  font-family: sanSc;
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  text-decoration: underline;
  transition: 0.3s;
}
.n2Inner .left .n2-nav a:hover {
  color: #2891ff;
}
.n2Inner .left .n2-nav a.active {
  color: #2891ff;
}
.n2Inner .left .n2-nav span {
  font-family: sanSc;
  font-size: 18px;
  color: #000000;
  font-weight: 500;
  margin: 0 7px;
}
.n2Inner .n-list {
  margin-top: 40px;
}
.n2Inner .n-list li {
  width: 100%;
  transition: 0.3s;
}
.n2Inner .n-list li:hover {
  box-shadow: 0px 0px 15px 0px rgb(40 145 255 / 50%);
}
.n2Inner .n-list li a {
  display: flex;
  display: -webkit-flex;
  background-color: #ffffff;
  align-items: center;
  justify-content: space-between;
  -webkit-align-items: center;
  -webkit-justify-content: space-between;
  padding: 20px 30px;
  width: calc(100% - 60px);
  position: relative;
}
.n2Inner .n-list li a .n-l {
  width: 280px;
  height: 150px;
}
.n2Inner .n-list li a .n-l img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.n2Inner .n-list li a .n-r {
  width: calc(100% - 280px - 40px);
}
.n2Inner .n-list li a .n-r .title {
  font-family: sanSc;
  font-size: 20px;
  color: #000000;
  font-weight: 500;
  line-height: 40px;
  height: 80px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: 0.3s;
}
.n2Inner .n-list li:hover > a .n-r .title {
  color: #2891ff;
}
.n2Inner .n-list li a .n-r .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-top: 15px;
}
.n2Inner .n-list li a .n-r .more span {
  font-family: sanSc;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  line-height: 1;
}
.n2Inner .n-list li a .n-r .more i {
  font-size: 14px;
  color: #000000;
  margin-left: 10px;
}
.n2Inner .n-list li a .flow-type {
  position: absolute;
  right: 0px;
  bottom: 35px;
  font-family: sanSc;
  font-size: 16px;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
  border-radius: 12px 0 0 12px;
  background-color: #2891ff;
  padding: 5px 10px;
}
.n2Inner .n-list li:not(:first-of-type) {
  margin-top: 20px;
}
.ser-box {
  width: 100%;
  background-color: #e3e7ef;
}
.ser-box .serInner {
  margin: 0 auto;
  padding: 150px 0 100px 0;
}
.serInner h3 {
  font-family: sanSc;
  color: #2891ff;
  font-weight: 400;
  font-size: 30px;
  margin-bottom: 30px;
}
.serInner a {
  display: block;
  text-decoration: underline;
  font-family: sanSc;
  color: #000000;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}
.serInner a span {
  color: #2891ff;
}
.serInner a:not(:first-of-type) {
  margin-top: 5px;
}
/* 分页 */
.page {
  width: 100%;
  margin-top: 30px;
}
.page .el-pagination {
  text-align: center;
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 0px;
}
.page .el-pagination .btn-prev {
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin-right: 15px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 50%;
}
.page .el-pagination .btn-next {
  padding: 0;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background: transparent;
  border: none;
  border-radius: 50%;
}
.page .el-pagination .btn-prev i,
.page .el-pagination .btn-next i {
  font-size: 14px;
}
.page .el-pager {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.page .el-pager li {
  width: 12px;
  min-width: 12px;
  height: 12px;
  line-height: unset;
  background: transparent;
  border: 1px solid #000000 !important;
  margin-right: 15px;
  padding: 0px;
  border-radius: 50%;
  color: transparent;
}
.page .el-pager li.active {
  background-color: #000000;
  color: transparent;
}
.page .el-pagination .el-pager li:hover {
  color: transparent !important;
  background-color: #000000;
}
.page .el-pagination .el-pager .btn-quicknext:hover {
  color: #000000;
}
.n-slide-box {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: calc((100% - 1300px) / 2);
  width: 155px;
  display: none;
}
.n-slide-box .title {
  font-family: sanSc;
  font-weight: 500;
  font-size: 22px;
  color: #000000;
}
.n-slide-box ul {
  margin-top: 20px;
}
.n-slide-box ul li:not(:first-of-type) {
  margin-top: 15px;
}
.n-slide-box ul li .one {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.n-slide-box ul li .one i {
  font-size: 20px;
  color: #e3e7ef;
  transition: 0.3s;
}
.n-slide-box ul li .one span {
  font-family: sanSc;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-left: 3px;
  width: calc(100% - 18px - 3px);
  transition: 0.3s;
}
.n-slide-box ul li .one:hover > i,
.n-slide-box ul li .one:hover > span {
  color: #2891ff;
}
.n-slide-box ul li.active .one i,
.n-slide-box ul li.active .one span {
  color: #2891ff;
}
.n-slide-box ul li .two {
  padding: 18px 0 5px 0;
}
.n-slide-box ul li .two a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  padding-left: 23px;
}
.n-slide-box ul li .two a .rund {
  width: 6px;
  height: 6px;
  background-color: #e3e7ef;
  transition: 0.3s;
}
.n-slide-box ul li .two a p {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-left: 5px;
  width: calc(100% - 6px - 5px);
  transition: 0.3s;
}
.n-slide-box ul li .two a.active p {
  color: #2891ff;
}
.n-slide-box ul li .two a:hover > .rund {
  background-color: #2891ff;
}
.n-slide-box ul li .two a:hover > p {
  color: #2891ff;
}
.n-slide-box ul li .two a:not(:first-of-type) {
  margin-top: 10px;
}
.n-slide-box #backTop span {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}
.share-banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.share-banner .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.share-banner .ct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.share-banner .ct h3 {
  font-family: sanSc;
  font-size: 60px;
  color: #222222;
  font-weight: 500;
}
.share-banner .ct .ab {
  display: flex;
  display: -webkit-flex;
  margin-top: 50px;
}
.share-banner .ct .ab .pb-more {
  margin: 0;
}
.share-banner .ct .ab .pb-more:not(:first-of-type) {
  margin-left: 15px;
}
.s1-box {
  width: 100%;
  background-color: #e3e7ef;
}
.s1-box .s1Inner {
  margin: 0 auto;
  padding: 60px 0 140px 0;
}
.s1Inner .numContent {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.s1Inner .numContent .it {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.s1Inner .numContent .it:last-of-type {
  margin-left: 150px;
}
.s1Inner .numContent .it .num {
  font-family: sanSc;
  font-size: 60px;
  color: #2891ff;
  font-weight: 500;
  line-height: 1;
}
.s1Inner .numContent .it p {
  font-family: sanSc;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
  line-height: 1;
}
.s1Inner .item-box {
  margin-top: 50px;
}
.s1Inner .item-box .item {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  border-top: 1px solid #000000;
}
.s1Inner .item-box .item:not(:first-of-type) {
  margin-top: 100px;
}
.s1Inner .item-box .item .left {
  width: calc(100% - 900px - 40px - 10px);
  font-family: sanSc;
  font-size: 18px;
  color: #000000;
  font-weight: 400;
  padding: 10px 0 0 40px;
}
.s1Inner .item-box .item .right {
  width: 900px;
}
.s1Inner .item-box .item .right a {
  display: block;
  border-bottom: 1px solid #000000;
  font-family: sanSc;
  font-size: 18px;
  color: #000000;
  font-weight: 400;
  padding: 10px 0;
}
.s2-box {
  width: 100%;
  background-color: #e3e7ef;
}
.s2-box .img-box {
  width: 100%;
}
.s2-box .img-box .ct {
  margin: 0 auto;
  padding: 100px 0;
}
.s2-box .img-box .ct img {
  width: 100%;
}
.s2-box .s2Inner {
  margin: 0 auto;
  padding: 150px 0 80px 0;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.s2Inner .left .row {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.s2Inner .left .row .sz {
  font-family: sanSc;
  font-size: 50px;
  color: #000000;
  font-weight: 500;
  line-height: 1;
}
.s2Inner .left .row p {
  font-family: sanSc;
  font-size: 18px;
  color: #000000;
  font-weight: 400;
  line-height: 1;
}
.s2Inner .left .row:not(:first-of-type) {
  margin-top: 15px;
}
.s2Inner .right h3 {
  font-family: sanSc;
  font-size: 50px;
  color: #000000;
  font-weight: 500;
  line-height: 1;
}
.s2Inner .right h4 {
  font-family: sanSc;
  font-size: 40px;
  color: #000000;
  font-weight: 500;
  line-height: 1;
  margin-top: 25px;
}
.s2Inner .pb-more {
  margin-top: 40px;
}
.a-index2Box {
  width: 100%;
  position: relative;
  background-color: #e3e7ef;
}
.a-index2Box .pb-h3 {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}
.a-index2Box .bg {
  width: 100%;
  height: 925px;
}
.a-index2Box .a-index2InnerBox {
  height: 100%;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.a-index2InnerBox .my-history-swiper {
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 110px;
  z-index: 1;
}
.a-index2InnerBox .my-history-swiper .content {
  width: 90%;
  margin: 0 auto;
  height: 500px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}
.a-index2InnerBox .my-history-swiper .content .left {
  width: 1px;
  height: 220px;
  background-color: #b9b8b8;
  position: relative;
}
.a-index2InnerBox .my-history-swiper .content .left span {
  width: 15px;
  background: #999999;
  border-radius: 50%;
  height: 15px;
  display: block;
  position: absolute;
  bottom: 0px;
  left: calc(-50% + 1px);
  transform: translateX(-50%);
}
.a-index2InnerBox .my-history-swiper .content .right {
  margin-left: 20px;
  width: calc(100% - 20px - 1px);
}
.a-index2InnerBox .my-history-swiper .content .right .time {
  font-size: 32px;
  font-family: Arial;
  font-weight: 400;
  color: #000000;
}
.a-index2InnerBox .my-history-swiper .content .right .text {
  margin-top: 10px;
}
.a-index2InnerBox .my-history-swiper .content .right .text h6 {
  font-size: 16px;
  font-family: Source Han Sans SC;
  font-weight: 400;
  color: #000000;
  margin-bottom: 10px;
}
.a-index2InnerBox .my-history-swiper .content .right .text .desc {
  font-size: 16px;
  font-family: Source Han Sans SC;
  font-weight: 400;
  color: #666666;
}
.a-index2InnerBox
  .my-history-swiper
  .content
  .right
  .text
  p:not(:first-of-type) {
  margin-top: 4px;
}
.a-index2InnerBox .my-history-swiper .swiper-slide:nth-of-type(odd) .content {
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.a-index2InnerBox
  .my-history-swiper
  .swiper-slide:nth-of-type(odd)
  .content
  .left
  span {
  top: 0px;
  bottom: auto;
}
.a-index2InnerBox
  .my-history-swiper
  .swiper-slide.swiper-slide-active
  .content
  .left {
  background-color: #2891ff;
}
.a-index2InnerBox
  .my-history-swiper
  .swiper-slide.swiper-slide-active
  .content
  .left
  span {
  background-color: #2891ff;
}
.s3-box {
  width: 100%;
  background-color: #e3e7ef;
}
.s3Inner {
  margin: 0 auto;
  padding: 100px 0 80px 0;
}
.s3Inner .mide {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
}
.s3Inner .mide .item {
  width: calc((100% - 240px) / 5);
  margin-right: 60px;
  margin-bottom: 80px;
}
.s3Inner .mide .item:nth-of-type(5n) {
  margin-right: 0;
}
.s3Inner .mide .item .time {
  font-family: sanSc;
  font-weight: 400;
  font-size: 24px;
  color: #000000;
}
.s3Inner .mide .item .line {
  width: 60%;
  height: 1px;
  background-color: #bfb9b9;
  margin: 7px 0 22px 0;
}
.s3Inner .mide .item h6 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}
.s3Inner .mide .item .desc .txt {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  margin-top: 7px;
}
.s3Inner .mide .item .desc .txt p:not(:first-of-type) {
  margin-top: 12px;
}
.post-banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.post-banner .bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-banner .ct {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.post-banner .ct .container {
  width: 830px;
}
.post-banner .ct .container .top {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.post-banner .ct .container .top h3 {
  font-family: sanSc;
  font-weight: 500;
  font-size: 40px;
  color: #2891ff;
}
.post-banner .ct .container .top .js {
  text-align: right;
  font-family: sanSc;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}
.post-banner .ct .container .post-ul {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  margin-top: 40px;
}
.post-banner .ct .container .post-ul li {
  width: calc((100% - 35px) / 2);
  margin-right: 35px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  transition: 0.3s;
}
.post-banner .ct .container .post-ul li:hover {
  box-shadow: 0px 0px 15px 0px rgb(40 145 255 / 50%);
}
.post-banner .ct .container .post-ul li:nth-of-type(2n) {
  margin-right: 0px;
}
.post-banner .ct .container .post-ul li a {
  width: calc(100% - 50px);
  padding: 25px 25px;
  display: block;
}
.post-banner .ct .container .post-ul li a .name {
  font-family: sanSc;
  font-weight: 500;
  font-size: 18px;
  color: #000000;
}
.post-banner .ct .container .post-ul li a .tz {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-top: 15px;
}
.post-banner .ct .container .post-ul li a .tz span {
  font-family: sanSc;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  line-height: 1;
}
.post-banner .ct .container .post-ul li a .tz i {
  font-size: 16px;
  color: #000000;
  margin-left: 7px;
}
.post-banner .content {
  margin-top: 40px;
  background-color: #ffffff;
}
.post-banner .content .tb {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  border-bottom: 1px solid #e3e7ef;
  padding: 7px 30px;
  width: calc(100% - 60px);
}
.post-banner .content .tb .jc {
  font-family: sanSc;
  font-weight: 500;
  font-size: 20px;
  color: #000000;
}
.post-banner .content .tb .backList {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  cursor: pointer;
}
.post-banner .content .tb .backList span {
  font-family: sanSc;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}
.post-banner .content .tb .backList i {
  font-size: 16px;
  margin-left: 5px;
  color: #000000;
}
.post-banner .content .zs {
  width: calc(100% - 60px);
  padding: 20px 30px 30px 30px;
  height: calc(385px - 50px);
  overflow-y: auto;
}
.post-banner .content .zs::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px; /*高宽分别对应横竖滚动条的尺寸 */
  height: 5px;
}
.post-banner .content .zs::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 3px;
  background: rgba(40, 145, 255, 0.2);
}
.post-banner .content .zs::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  /* box-shadow: inset 0 0 5px rgba(0,0,0,0.1); */
  border-radius: 5px;
  background: #eeeeee;
}
.post-banner .content .zs .item:not(:first-of-type) {
  margin-top: 30px;
}
.post-banner .content .zs .item .jc {
  font-family: sanSc;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}
.post-banner .content .zs .item .txt {
  margin-top: 10px;
}
.post-banner .content .zs .item .txt p {
  font-family: sanSc;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
.post-banner .content .zs .item .txt p:not(:first-of-type) {
  margin-top: 7px;
}
.post-banner .content .zs .item .title {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
}
.pro-box.xclb .row .ct .right .wz h4 {
  font-size: 40px;
}
.pro-box.xclb .row .ct .right .wz .txt {
  margin-top: 20px;
}
.pro-box.xclb .row .ct .right .wz .txt p {
  font-size: 18px;
  line-height: unset;
}
.pro-box.xclb .ct .right .wz .txt p:not(:first-of-type) {
  margin-top: 10px;
}
.pb-pro-wz .ct {
  margin: 0 auto;
  padding: 40px 0;
  line-height: 26px;
}
.pb-pro-wz .ct img {
  max-width: 100%;
  margin: 10px auto !important;
}
.pb-pro-wz .ct table {
  max-width: 100%;
  border-collapse: collapse;
  border: 1px solid #bbbbbb;
  margin: 10px auto;
}
.pb-pro-wz .ct table tr,
.pb-pro-wz .ct table td {
  border: 1px solid #bbbbbb;
  padding: 12px !important;
}
.map-box {
  width: 100%;
  height: 100vh;
  position: relative;
}
.map-box .flow-map {
  position: absolute;
  top: 50%;
  left: calc((100% - 1300px) / 2);
  transform: translateY(-50%);
  z-index: 999;
}
.tdt-container a.tdt-infowindow-close-button {
  display: none !important;
}
.map-box .flow-map {
  width: 350px;
}
.map-box .flow-map .searh-box {
  display: flex;
  display: -webkit-flex;
  width: calc(100% - 4px);
  border: 2px solid #2891ff;
  height: 35px;
}
.map-box .flow-map .searh-box input {
  border: none;
  background: #ffffff;
  width: calc(100% - 45px);
  height: 100%;
  outline: none;
  font-family: sanSc;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  text-indent: 15px;
}
.map-box .flow-map .searh-box button {
  width: 45px;
  height: 100%;
  background-color: #2891ff;
  outline: none;
  border: none;
}
.map-box .flow-map .searh-box button i {
  font-size: 16px;
  color: #ffffff;
}
.map-box .flow-map ul {
  margin-top: 10px;
  background-color: #ffffff;
  max-height: 465px;
  overflow-y: auto;
}
.map-box .flow-map ul::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px; /*高宽分别对应横竖滚动条的尺寸 */
  height: 5px;
}
.map-box .flow-map ul::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 3px;
  background: rgba(40, 145, 255, 0.2);
}
.map-box .flow-map ul::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  /* box-shadow: inset 0 0 5px rgba(0,0,0,0.1); */
  border-radius: 5px;
  background: #eeeeee;
}
.map-box .flow-map ul li {
  width: 100%;
  border-bottom: 1px solid #e3e7ef;
}
.map-box .flow-map ul li .li-div {
  display: block;
  width: calc(100% - 40px);
  padding: 15px 20px;
  cursor: pointer;
}
.map-box .flow-map ul li .li-div h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 18px;
  color: #2891ff;
}
.map-box .flow-map ul li .li-div p,
.map-box .flow-map ul li .li-div span {
  font-family: sanSc !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #000000 !important;
}
.map-box .flow-map ul li .li-div .txt {
  margin-top: 5px;
}
.map-box .flow-map ul li .li-div p:not(:first-of-type) {
  margin-top: 5px;
}
#map {
  width: 100%;
  height: 100%;
}
#map .amap-logo {
  display: none;
  opacity: 0 !important;
}
#map .amap-copyright {
  display: none !important;
}
#map .amap-info-close {
  display: none;
}
#map .c-map-h3 {
  font-family: sanSc;
  font-weight: 500;
  font-size: 20px;
  color: #2891ff;
}
#map .c-map-h4 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-top: 5px;
}
#map .c-map-p {
  font-family: sanSc;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  margin-top: 5px;
}
#map .amap-info {
  width: 360px;
}
#map .amap-info-content {
  padding: 10px;
}
.slide-box {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: calc((100% - 1300px) / 2);
  width: 155px;
  display: none;
}
.slide-box.zq .item h3 {
  color: #003c96;
}
.slide-box ul li:not(:first-of-type) {
  margin-top: 15px;
}
.slide-box ul li .one {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.slide-box ul li .one i {
  font-size: 20px;
  color: #e3e7ef;
  transition: 0.3s;
}
.slide-box ul li .one span {
  font-family: sanSc;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-left: 3px;
  width: calc(100% - 18px - 3px);
  transition: 0.3s;
}
.slide-box ul li .one:hover > i,
.slide-box ul li .one:hover > span {
  color: #2891ff;
}
.slide-box ul li.active .one i,
.slide-box ul li.active .one span {
  color: #2891ff;
}
.slide-box ul li .two {
  padding: 18px 0 5px 0;
  display: none;
}
.slide-box ul li .two a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  padding-left: 23px;
}
.slide-box ul li .two a .rund {
  width: 6px;
  height: 6px;
  background-color: #e3e7ef;
  transition: 0.3s;
}
.slide-box ul li .two a p {
  font-family: sanSc;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-left: 5px;
  width: calc(100% - 6px - 5px);
  transition: 0.3s;
}
.slide-box ul li .two a:hover > .rund {
  background-color: #2891ff;
}
.slide-box ul li .two a:hover > p {
  color: #2891ff;
}
.slide-box ul li .two a:not(:first-of-type) {
  margin-top: 10px;
}
#backTop {
  margin-top: 25px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
#backTop i {
  font-size: 20px;
  color: #e3e7ef;
  transition: 0.3s;
}
#backTop span {
  font-family: sanSc;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin-left: 3px;
  width: calc(100% - 18px - 3px);
  transition: 0.3s;
}
#backTop:hover > i,
#backTop:hover > span {
  color: #2891ff;
}
.footer-box {
  width: 100%;
  background-color: #000000;
}
.footer-box .footerInner {
  margin: 0 auto;
  width: calc(100% - 260px);
}
.footerInner .top {
  width: calc(100% - 80px);
  padding: 0 40px;
  padding: 100px 40px 100px 40px;
}
.footerInner .top .f-logo img {
  width: 250px;
}
.footerInner .top .mide {
  margin-top: 30px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -webkit-justify-content: space-between;
}
.footerInner .top .mide .left {
  width: 420px;
}
.footerInner .top .mide .left h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
}
.footerInner .top .mide .left .txt {
  margin-top: 25px;
}
.footerInner .top .mide .left .txt .row {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.footerInner .top .mide .left .txt .row .d {
  width: 5px;
  height: 5px;
  background-color: #ffffff;
}
.footerInner .top .mide .left .txt .row p {
  font-family: sanSc;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  margin-left: 5px;
  width: calc(100% - 5px - 5px);
}
.footerInner .top .mide .left .txt .row:last-of-type {
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.footerInner .top .mide .left .txt .row:last-of-type .d {
  margin-bottom: 8px;
}
.footerInner .top .mide .left .txt .row:last-of-type p {
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}
.footerInner .top .mide .left .txt .row:last-of-type p span:last-of-type {
  font-size: 40px;
  line-height: 1;
  font-family: sanSc;
}
.footerInner .top .mide .left .txt .row:not(:first-of-type) {
  margin-top: 20px;
}
.footerInner .top .mide .right {
  width: calc(100% - 400px - 100px);
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.footerInner .top .mide .right li h3 {
  font-family: sanSc;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
}
.footerInner .top .mide .right li .txt {
  margin-top: 25px;
}
.footerInner .top .mide .right li .txt a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.footerInner .top .mide .right li .txt a .d {
  width: 5px;
  height: 5px;
  background-color: #ffffff;
}
.footerInner .top .mide .right li .txt a p {
  margin-left: 5px;
  font-family: sanSc;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}
.footerInner .top .mide .right li .txt a:not(:first-of-type) {
  margin-top: 22px;
}
.footerInner .top .mide .right li .qr {
  width: 72px;
  margin-top: 27px;
}
.footerInner .top .mide .right li .qr img {
  width: 100%;
}
.footerInner .top .mide .right li .qr p {
  font-family: sanSc;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  margin-top: 10px;
  line-height: 20px;
}
.footerInner .bottom {
  width: 100%;
  border-top: 1px solid #ffffff;
  width: calc(100% - 80px);
  padding: 40px 40px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.footerInner .bottom a {
  font-family: sanSc;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
}
.footerInner .bottom a:not(:first-of-type) {
  margin-left: 15px;
}
@media only screen and (max-width: 1760px) {
  .i5Inner .item .pb-h3 {
    /*height: 180px;*/
  }
}
@media only screen and (max-width: 1560px) {
  .center {
    width: 1000px;
  }
  .header-box .headerInner {
    width: calc(100% - 200px);
  }
  .headerInner .right .nav .one:not(:first-of-type) {
    margin-left: 60px;
  }
  .headerInner .right .search-language {
    margin: 0 60px;
  }
  /*.i2Inner .row .right{*/
  /*  width: 620px;*/
  /*}*/
  /*.i3-box .i2Inner .row .right{*/
  /*  width: 520px;*/
  /*}*/
  /*.i3-box .i2Inner .pb-more{*/
  /*  margin-left: 590px;*/
  /*}*/
  .i4-box {
    height: 700px;
  }
  .i6-pbContainer .left {
    width: 700px;
  }
  .i6-pbContainer .right {
    width: calc(100% - 700px - 30px);
  }
  .i6-pbContainer .left .txt h3 {
    font-size: 36px;
  }
  .i6-pbContainer {
    height: 500px;
  }
  .i6-pbContainer .right .item .txt h4 {
    font-size: 20px;
    line-height: 42px;
  }
  .i6-pbContainer .right .item:nth-of-type(2) .ll-txt .row span {
    font-size: 26px;
  }
  .footer-box .footerInner {
    width: calc(100% - 200px);
  }
  .banner .bottom .ct h3 {
    margin-top: 40px;
  }
  .banner .bottom .ct {
    padding-bottom: 20px;
  }
  .gxsoInner .container {
    width: 740px;
  }
  .gxsoInner .container .item .row.one .right {
    width: 450px;
  }
  .gxsoInner .container .item .row.one .left {
    width: calc(100% - 450px - 80px);
  }
  .gxsoInner .container .item .sd-box .sd .left {
    width: 160px;
    height: 100px;
  }
  .gxsoInner .container .item .sd-box .sd .right {
    width: calc(100% - 160px - 15px);
  }
  .gxsoInner .container .item .sd-box .sd {
    width: calc((100% - 50px) / 2);
    margin-right: 50px;
  }
  .slide-box {
    right: calc((100% - 1000px) / 2);
  }
  .map-box .flow-map {
    left: calc((100% - 1000px) / 2);
  }
  .n-slide-box {
    right: calc((100% - 1000px) / 2);
  }
  .n2Inner .left {
    width: 700px;
  }
  .n2Inner .n-list li a .n-l {
    width: 250px;
  }
  .n2Inner .n-list li a .n-r {
    width: calc(100% - 250px - 30px);
  }
  .post-banner .content .zs {
    height: calc(380px - 50px);
  }
  /*.post-banner{*/
  /*  height: 750px;*/
  /*}*/
  .map-box {
    height: 700px;
  }
  .map-box .flow-map ul {
    max-height: 300px;
  }
  .s1Inner .item-box .item .right {
    width: 700px;
  }
  .s1Inner .item-box .item .left {
    width: calc(100% - 700px - 40px - 10px);
  }
  .soInner .container {
    width: 740px;
  }
  .prd-banner .flow-pd-img {
    width: 350px;
  }
  .ydprd-box .no-row .ct .left {
    width: 560px;
  }
  .ydprd-box .no-row .ct .right {
    width: calc(100% - 560px - 30px);
  }
  .ydprd-box .row .ct .left {
    width: 560px;
  }
  .ydprd-box .row .ct .right {
    width: calc(100% - 560px - 30px);
  }
  .prd-banner .flow-pd-img {
    right: calc((100% - 1000px) / 2);
  }
  .row-video-box {
    height: 680px;
  }
  .ydprd-box .no-row {
    height: 680px;
  }
  .ydprd-box .row {
    height: 680px;
  }
  .wxprd-box .row .ct .left {
    width: 560px;
  }
  .wxprd-box .row .ct .right {
    width: calc(100% - 560px - 30px);
  }
  .wxprd-box .row {
    height: 680px;
  }
  .prd-banner.yd .js {
    width: 570px;
  }
  .prd-banner.yd .title {
    width: 570px;
  }
  .ylInner .container {
    width: 740px;
  }
  .ylInner .item .dq-row .ct .right {
    max-width: 450px;
  }
  .ylInner .item .dq-row .ct .left {
    max-width: calc(100% - 450px - 30px);
  }
  .pro-box .row .ct .left {
    width: 480px;
  }
  .pro-box .row .ct .right {
    width: calc(100% - 480px - 15px);
  }
  .pro-box .row .ct .right .wz h4 {
    font-size: 30px;
  }
  .pro-box .row .ct .right .wz h3 {
    font-size: 34px;
  }
  .pro-box .row .ct .right .wz .txt p {
    font-size: 12px;
    line-height: 24px;
  }
  .pro-box .row {
    height: 680px;
  }
  .prd-banner .flow .title {
    font-size: 48px;
  }
  .pro-box.wkb .row .ct .right .wz h4 {
    font-size: 34px;
  }
  .ydprd-box .row .ct .right .wz h3 {
    font-size: 34px;
  }
  .ydprd-box .no-row .ct .right .wz h3 {
    font-size: 34px;
  }
  .wxprd-box .row .ct .right .wz h4 {
    font-size: 30px;
  }
  .wxprd-box .row .ct .right .wz h3 {
    font-size: 34px;
  }
  .i2Inner .left {
    width: 320px;
  }
  .i2Inner .right {
    width: 630px;
  }
  .i2Inner .pb-h3 {
    font-size: 34px;
    line-height: 40px;
  }
  .i2Inner .list a {
    padding: 15px 30px;
  }
  .pro-box.wkb .row .ct .left {
    width: 540px;
  }
  .pro-box.wkb .row .ct .right {
    width: calc(100% - 540px - 40px);
  }
  /*.pro-box.wkb .row:nth-of-type(2) .ct .left img{*/
  /*    transform: translateY(80px);*/
  /*}*/
  .pro-box.csyzy-box .row .ct .left {
    width: 560px;
  }
  .pro-box.csyzy-box .row .ct .right {
    width: calc(100% - 560px - 50px);
  }
  .i4-box .flow .right {
    width: 500px;
  }
  .prd-banner.newyzy .flow .right {
    width: 500px;
  }
  .prd-banner.newyzy .flow .left {
    width: calc(100% - 500px - 50px);
  }
  .wkb-xz {
    height: 680px;
  }
  .wkb-xz h3 {
    font-size: 34px;
    top: 70px;
  }
  .wkb-xz .ct .item p {
    font-size: 20px;
  }
  .pro-box.xclb .row .ct .right .wz h4 {
    font-size: 34px;
  }
  .s3Inner .mide .item {
    width: calc((100% - 160px) / 5);
    margin-right: 40px;
    margin-bottom: 60px;
  }
  .s3Inner .mide {
    margin-top: 65px;
  }
  .a-index2Box .pb-h3 {
    top: 60px;
  }
  .a-index2Box .bg {
    height: 625px;
  }
  .a-index2InnerBox .my-history-swiper {
    bottom: 45px;
  }
  .a-index2InnerBox .my-history-swiper .content {
    height: 400px;
  }
  .a-index2InnerBox .my-history-swiper .content .right .text h6 {
    font-size: 16px;
  }
  .a-index2InnerBox .my-history-swiper .content .right .text .desc {
    font-size: 14px;
  }
  .a-index2InnerBox .my-history-swiper .content .right .time {
    font-size: 26px;
  }
  .a-index2InnerBox .my-history-swiper .content .left {
    height: 180px;
  }
}
@media only screen and (max-width: 1360px) {
  .header-box .headerInner {
    width: calc(100% - 80px);
  }
  .footer-box .footerInner {
    width: calc(100% - 80px);
  }
  .prd-banner.wxb .flow-pd-img {
    bottom: 100px;
  }
  .headerInner .logo img {
    width: 182px;
  }
  .headerInner .right .nav .one:not(:first-of-type) {
    margin-left: 35px;
  }
  .headerInner .right .nav .one:last-of-type {
    margin-left: 70px;
  }
  .headerInner .right .search-language {
    margin: 0 25px;
  }
  .i2Inner .list a {
    padding: 10px 30px;
  }
  .i2Inner .list a span {
    font-size: 16px;
  }
  .i3-box .i2Inner .list a {
    padding: 15px 30px;
  }
  /*.i2Inner .pb-h3{*/
  /*  font-size: 32px;*/
  /*  line-height: 42px;*/
  /*}*/
  /*.i2Inner .row{*/
  /*  margin: 20px 0;*/
  /*}*/
  .i2Inner .pb-more span {
    font-size: 16px;
  }
  .i2Inner .pb-more {
    width: 140px;
    height: 38px;
  }
  /*.i2Inner .row{*/
  /*  align-items: unset;*/
  /*  -webkit-align-items: unset;*/
  /*}*/
  /*.i2Inner .right{*/
  /*  height: auto;*/
  /*  position:relative;*/
  /*}*/
  /*.i2Inner .right img{*/
  /*  position: absolute;*/
  /*  top: 50%;*/
  /*  left: 50%;*/
  /*  transform: translate(-50%,-50%);*/
  /*  height: auto;*/
  /*}*/
  /*.i3-box .i2Inner .right{*/
  /*  height: auto;*/
  /*  width: 620px;*/
  /*}*/
  /* .i2Inner .pb-h3 br{*/
  /*  display: none;*/
  /*}*/
  /*.i3-box .i2Inner .list{*/
  /*   width: 300px;*/
  /*}*/
  /*.i3-box .i2Inner .pb-more{*/
  /*   margin-left: 700px;*/
  /*}*/
  .prd-banner.yd .js {
    margin: 20px 0 0 0;
  }
  .header-box .headerInner {
    height: 80px;
  }
  .flow-nav-bg {
    top: 80px;
  }
  .headerInner .right .nav .one > a {
    line-height: 80px;
  }
  .headerInner .right .nav .one > a::after {
    bottom: 18px;
  }
  .post-banner .ct .container .top h3 {
    font-size: 30px;
  }
  .post-banner .ct .container .post-ul li a .name {
    font-size: 16px;
  }
  .post-banner .ct .container .post-ul li a .tz span {
    font-size: 14px;
  }
  .post-banner .ct .container .post-ul li a .tz i {
    font-size: 14px;
  }
  .post-banner .ct .container .post-ul li a .tz {
    margin-top: 10px;
  }
  .post-banner .ct .container .post-ul li a {
    padding: 15px 15px;
    width: calc(100% - 30px);
  }
  .post-banner .ct .container {
    width: 700px;
  }
  .post-banner .ct .container .post-ul {
    margin-top: 30px;
  }
  .page {
    margin-top: 20px;
  }
  .post-banner .content .tb .jc {
    font-size: 16px;
  }
  .post-banner .content .zs .item .title {
    font-size: 14px;
  }
  .post-banner .content {
    margin-top: 30px;
  }
  .post-banner .content .zs {
    height: calc(280px - 35px);
    padding: 15px 30px 20px 30px;
  }
  .post-banner .ct {
    top: 20%;
    transform: translateX(-50%);
  }
  .footerInner .top .mide .right {
    width: calc(100% - 420px - 30px);
  }
}
