@charset "UTF-8";
@use 'sass:math';
body {
  font-family: 'Inter', 'Noto Sans SC', sans-serif !important;
}

body * {
  outline: none;
}

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: #808080;
  --color-zt: #1141C9;
  --head-height: 6.25rem;
  --cbasta: 13.5416666667%;
  --pandrd: 5.375rem;
}

@media (max-width: 1366px) {
  :root {
    --cbasta: 5.25%;
  }
}

@media (max-width: 768px) {
  :root {
    --cbasta: 4%;
    --pandrd: 2rem;
  }
}

.wh {
  padding: 0 var(--cbasta);
}

.wh1 {
  padding: 0 5.20833%;
}

@media (max-width: 768px) {
  .wh1 {
    padding: 0 4%;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.flex-z {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.flex_left {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: center;
}

.flex_left1 {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

.flex2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}

.flex21 {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.more-msl {
  display: inline-block;
  color: var(--color-zt);
  text-decoration: none;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  font: 400 1rem/3.125rem "Inter";
  border-radius: 1.5625rem;
  width: 10rem;
  text-align: center;
  border: 1px solid var(--color-zt);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

@media (max-width: 768px) {
  .more-msl {
    line-height: 2.8rem;
    width: 9rem;
    font-size: .875rem;
  }
}

.more-msl:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-zt);
  border-radius: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.more-msl:hover {
  color: #fff;
}

.more-msl:hover::before {
  -webkit-transform: scale(2);
  transform: scale(2);
}

.more-msl.bs {
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}

.more-msl.bs:before {
  background: #fff;
}

.more-msl.bs:hover {
  color: var(--color-zt);
}

.more-msl.hs {
  color: #8E8E8E;
  background: transparent;
  border-color: #8E8E8E;
}

.more-msl.hs:before {
  background: var(--color-zt);
}

.more-msl.hs:hover {
  color: #fff;
  border-color: var(--color-zt);
}

.more-msl.ls {
  color: var(--color-zt);
  background: transparent;
  border-color: var(--color-zt);
}

.more-msl.ls:before {
  background: var(--color-zt);
}

.more-msl.ls:hover {
  color: #fff;
}

.more-a {
  width: fit-content;
  padding: 0.85rem 1.65rem;
  border-radius: 2rem;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 1.5em;
  font-size: 1.125rem;
  border: 1px solid var(--color-zt);
  font-size: 1rem;
}

.more-a i {
  font-size: 1rem;
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .more-a {
    padding: 0.7rem 1.65rem;
  }
}

.more-a > * {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}

.more-a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-zt);
  transform: scaleX(1);
  transform-origin: center right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 2rem;
}

.more-a:hover {
  color: var(--color-zt);
}

.more-a:hover::after {
  transform-origin: center right;
  transform: scaleX(0);
}

.more-a.bs {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.more-a.bs > * {
  color: #fff;
}

.more-a.bs::after {
  background: var(--color-zt);
}

.more-a.bs:hover {
  border-color: var(--color-zt);
}

.more-b {
  width: fit-content;
  padding: 0.85rem 1.65rem;
  border-radius: 2rem;
  color: #424242;
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 1.5em;
  font-size: 1.125rem;
  border: 1px solid #424242;
  font-size: 1rem;
}

.more-b i {
  font-size: 1rem;
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .more-b {
    padding: 0.7rem 1.65rem;
  }
}

.more-b > * {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}

.more-b::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: var(--color-zt);
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: 2rem;
}

.more-b:hover {
  color: #fff;
  border-color: var(--color-zt);
}

.more-b:hover::after {
  transform-origin: center left;
  transform: scaleX(1);
}

.more-b.bs {
  color: #fff;
  background: transparent;
  border-color: #fff;
}

.more-b.bs > * {
  color: #fff;
}

.more-b.bs::after {
  background: var(--color-zt);
}

.more-b.bs:hover {
  border-color: var(--color-zt);
}

@media (max-width: 990px) {
  body {
    padding-bottom: 0;
    overflow: hidden;
  }
}

@media (max-width: 990px) {
  .pc-hidden {
    display: none;
  }
}

.m-hidden {
  display: none;
}

@media (max-width: 990px) {
  .m-hidden {
    display: block;
  }
}

@media (max-width: 990px) {
  .m-img {
    padding-bottom: 66%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-imgny {
    padding-bottom: 70%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-imgny > img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .pc-banner .swiper-slide.a {
    padding-bottom: calc(70vh - 60px);
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .pc-banner .swiper-slide.a .img {
    position: static !important;
  }
  .pc-banner .swiper-slide.a .img > img {
    position: absolute !important;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .m-img-news {
    padding-bottom: 68.20276%;
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
  }
  .m-img-news img {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.head {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
}

.head .head2 {
  line-height: var(--head-height);
  position: relative;
  transition: all .6s;
  --as-calore: #fff;
}

.head .head2 .logo a {
  display: flex;
}

.head .head2 .logo a img {
  height: 1.875rem;
}

.head .head2 .gpxx {
  color: var(--color-zt);
  font-size: 1.125rem;
  line-height: 1.5em;
  font-weight: 500;
  margin-left: 1.35rem;
  padding-left: 1.125rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.head .head2 .zywena {
  margin: 0 1rem;
  position: relative;
}

.head .head2 .zywena a.rhgxt {
  color: var(--as-calore);
  line-height: 1.25rem;
  display: block;
  border-left: 1px solid #D0D0D0;
  padding: 0 1.5rem;
}

.head .head2 .zywena a.rhgxt i {
  font-size: 1.25rem;
  font-weight: 400;
}

.head .head2 .zywena .yy-sec {
  position: absolute;
  left: 50%;
  top: 3rem;
  width: 5.5rem;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #e6e6e6;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  display: none;
  text-align: center;
}

.head .head2 .zywena .yy-sec a {
  color: #333;
  display: block;
  line-height: 1.75em;
  font-size: 1rem;
  font-weight: 500;
}

.head .head2 .zywena .yy-sec a + a {
  border-top: 1px solid #333;
}

.head .head2 .zywena .yy-sec a:hover {
  color: var(--color-zt);
}

.head .head2 .more-sxa {
  background: #0052D8;
  color: #fff;
  font-size: .875rem;
  line-height: 2.8rem;
  padding: 0 1.5em;
  border-radius: 2rem;
}

.head .head2 .sska a {
  color: var(--as-calore);
  line-height: 1.25rem;
  display: block;
}

.head .head2 .sska a i {
  font-size: 1.25rem;
  font-weight: 500;
}

.head .head2 {
  --as-calore: #555555;
  background: #fff;
}

.head .head2 #menu .nav_a1 > li:hover > a,
.head .head2 #menu .nav_a1 > li.active > a {
  color: var(--color-zt);
}

.head .head2 #menu .nav_a1 > li > a span::after {
  background: var(--color-zt);
}

#menu {
  margin-right: 1vw;
}

#menu .nav_a1 > li {
  float: left;
}

#menu .nav_a1 > li a {
  display: block;
  color: var(--as-calore);
  font-family: "Noto Sans SC";
}

#menu .nav_a1 > li > a {
  font-size: 1rem;
  padding: 0 1.5rem;
  transition: all .6s;
  font-weight: 400;
  position: relative;
}

#menu .nav_a1 > li > a span {
  position: relative;
  display: block;
}

#menu .nav_a1 > li > a span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: all .4s ease;
}

#menu .nav_a1 > li > a span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: 0.5rem;
  width: 100%;
}

#menu .nav_a1 > li > a i {
  position: absolute;
  left: 50%;
  bottom: 1.125rem;
  width: .75rem;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0;
}

#menu .nav_a1 > li > a i img {
  width: 100%;
}

#menu .nav_a1 > li .sec {
  position: absolute;
  top: calc(100% + 1px);
  width: 26.4375rem;
  max-width: inherit;
  left: 50%;
  background: white;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 400ms ease-in-out;
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  padding: 2.625rem 2.9375rem 1.8125rem;
  text-align: center;
}

#menu .nav_a1 > li .sec.sec1 {
  width: 58.875rem;
  left: auto;
  right: -130%;
  padding: 1.6rem 2.5rem 2.5rem;
}

#menu .nav_a1 > li .sec.sec1 .secat1 dl {
  flex: 1;
  text-align: left;
}

#menu .nav_a1 > li .sec.sec1 .secat1 dl a {
  display: block;
}

#menu .nav_a1 > li .sec.sec1 .secat1 dl > a {
  color: var(--color-zt);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5em;
  padding: 0.45rem 0;
}

#menu .nav_a1 > li .sec.sec1 .secat1 dl .asrcxa a {
  color: #575757;
  font-size: 1rem;
  line-height: 1.85em;
}

#menu .nav_a1 > li .sec.sec1 .secat1 dl .asrcxa a:hover {
  color: var(--color-zt);
}

#menu .nav_a1 > li .sec > a {
  color: #555;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 3.125rem;
}

#menu .nav_a1 > li .sec > a:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#menu .nav_a1 > li .sec > a:hover {
  color: #fff;
  background-color: var(--color-zt);
}

#menu .nav_a1 > li:hover .sec {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scaleY(1);
}

#menu .nav_a1 > li:hover .sec.sec1 {
  transform: translateY(0);
}

#menu .nav_a1 > li:hover .sec_box {
  transform: scaleY(1);
  opacity: 1;
}

#menu .nav_a1 > li:hover > a, #menu .nav_a1 > li.active > a {
  color: #fff;
}

#menu .nav_a1 > li:hover > a i, #menu .nav_a1 > li.active > a i {
  opacity: 1;
}

#menu .nav_a1 > li:hover > a span::after, #menu .nav_a1 > li.active > a span::after {
  width: 100%;
}

.sec_box {
  position: absolute;
  left: 0%;
  width: 100%;
  background-color: #fff;
  opacity: 0;
  transition: 400ms ease-in-out;
  transform: scaleY(0);
  transform-origin: top center;
}

.sec_box .left {
  width: 46%;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 2.625rem;
  padding-bottom: 3.0625rem;
  padding-left: 2.9375rem;
  padding-right: 2.9375rem;
}

.sec_box .left .ul .li {
  border-bottom: 1px solid #EFEFEF;
  position: relative;
}

.sec_box .left .ul .li a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  line-height: 3.375rem;
  padding: 0 1.1875rem 0 1.75rem;
}

.sec_box .left .ul .li a span {
  color: #2A2926;
  font-size: 1rem;
  font-weight: 500;
}

.sec_box .left .ul .li a i {
  font-size: 1rem;
  color: #8F8F8F;
}

.sec_box .left .ul .li:hover a, .sec_box .left .ul .li.active a {
  background-color: var(--color-zt);
}

.sec_box .left .ul .li:hover a span,
.sec_box .left .ul .li:hover a i, .sec_box .left .ul .li.active a span,
.sec_box .left .ul .li.active a i {
  color: #fff;
}

.sec_box .right {
  background-color: #fff;
  flex: 1;
  padding-top: 2.625rem;
  padding-bottom: 3.0625rem;
}

.sec_box .right .pro_con_box {
  display: none;
  align-items: center;
  justify-content: space-between;
}

.sec_box .right .pro_con_box.active {
  display: flex;
}

.sec_box .right .pro_con_box .pro_tab_box {
  padding-left: 2.4375rem;
  flex: 1;
}

.sec_box .right .pro_con_box .pro_tab_box .pro_ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-auto-flow: column;
}

.sec_box .right .pro_con_box .pro_tab_box .pro_ul .pro_li {
  line-height: 3.375rem;
}

.sec_box .right .pro_con_box .pro_tab_box .pro_ul .pro_li a {
  color: #555;
  font-family: "Noto Sans SC";
  font-size: .9375rem;
  font-weight: 400;
  line-height: 3.125rem;
}

.sec_box .right .pro_con_box .pro_tab_box .pro_ul .pro_li:hover a {
  color: var(--color-zt) !important;
}

.sec_box .right .pro_con_box .pro_con {
  padding-right: 2.125rem;
}

.sec_box .right .pro_con_box .top_pro_box {
  display: none;
}

.sec_box .right .pro_con_box .top_pro_box.active {
  display: block;
}

.sec_box .right .pro_con_box .top_pro_box .over {
  width: 17.5rem;
  border-radius: 1.25rem;
  background: #F8F8F8;
  padding: 2.5rem 2.5rem 1.5625rem;
}

/* 搜索 */
.sskbj {
  padding: 0;
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.sskbj .searchbox1 {
  width: 100%;
  padding: 40px calc(100% * 0.104);
  height: 28.125rem;
  background-color: #fff;
  text-align: right;
  display: none;
}

.sskbj .searchbox1 .searchs {
  width: 80%;
  max-width: 800px;
  margin-top: 2vw;
}

.sskbj .searchbox1 .searchs dt {
  font-size: 2rem;
  line-height: 1.5em;
  text-align: left;
  margin-bottom: 1em;
}

.sskbj .searchbox1 .searchs .sertext {
  width: 75%;
  border-radius: 1.875rem;
  font-size: 1rem;
  text-indent: 1em;
}

.sskbj .searchbox1 .searchs .serbtn {
  border-radius: 1.875rem;
}

.sskbj .search-close-btn {
  width: 3rem;
  height: 3rem;
  text-align: center;
  line-height: 3rem;
  background: #f0f0f0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.6s;
}

.sskbj .search-close-btn:hover {
  transform: rotate(180deg);
}

.sskbj .search-close-btn i {
  color: #000;
  font-size: 1.8rem;
  font-weight: 600;
}

.sskbj .serbtn {
  background: var(--color-zt);
}

.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  animation: sticky 1s;
}

@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

/*手机端头部*/
.m-bm-head {
  position: fixed;
  top: 0;
  z-index: 999;
  left: 0;
  right: 0;
}

.m-bm-head .m-bm-head-box {
  position: relative;
  height: 60px;
}

.m-bm-head .m-bm-head-box .m-bm-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto 4%;
  max-width: 100%;
  height: 40px;
}

.m-bm-head .m-bm-head-box .m-bm-logo h1,
.m-bm-head .m-bm-head-box .m-bm-logo a {
  display: inline;
  font-size: 0;
}

.m-bm-head .m-bm-head-box .m-bm-logo img {
  height: 40px;
  max-width: 40%;
}

.m-bm-head .m-bm-head-box .m-bm-logo a {
  display: flex;
}

.m-bm-head .m-bm-head-box .m-bm-logo a p {
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

.m-bm-head .m-bm-head-box .sskza {
  color: #000;
  font-family: "Inter";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
}

.m-bm-head .m-bm-head-box .sskza i {
  font-size: 1.25rem;
  margin-right: 0.25rem;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 4% auto 0;
  width: 20px;
  height: 15px;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn span, .m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  display: block;
  height: 1.5px;
  width: 100%;
  background: #fff;
  transition: all .5s;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5px 0;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn:after, .m-bm-head .m-bm-head-box .m-bm-navbtn:before {
  content: '';
  -webkit-transform-origin: 7.5%;
  -moz-transform-origin: 7.5%;
  -ms-transform-origin: 7.5%;
  -o-transform-origin: 7.5%;
  transform-origin: 7.5%;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked span {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.m-bm-head .m-bm-head-box .m-bm-navbtn.clicked:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m-bm-head .m-bm-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--color-zt);
}

.m-bm-head .m-bm-menu .m-bm-menu-box {
  height: -webkit-calc(100vh - 60px);
  height: -moz-calc(100vh - 60px);
  height: calc(100vh - 60px);
  overflow: auto;
  padding-bottom: 80px;
}

.m-bm-head .mrhgxt {
  color: #fff;
  font: 500 1.125rem/60px "helvetica";
  margin-left: 63%;
  position: relative;
  z-index: 9;
}

.m-bm-head .mrhgxt i {
  font-size: 1.125rem;
  margin-right: 0.25em;
}

.m-bm-nav > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.m-bm-nav > li > a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #fff;
  font-family: "Inter";
  padding: 0 4%;
  font-weight: 600;
}

.m-bm-nav > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Inter";
  font-weight: 500;
}

.m-bm-nav > li .sec {
  display: none;
  padding: 10px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.m-bm-nav > li .sec .tit1 {
  position: relative;
}

.m-bm-nav > li .sec .tit1 .aniut {
  height: 35px;
  line-height: 35px;
}

.m-bm-nav > li .sec .tit1 .aniut i {
  font-size: 1.125rem;
}

.m-bm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 35px;
}

.m-bm-nav > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}

.m-bm-nav .aniut {
  position: absolute;
  width: 40px;
  height: 50px;
  line-height: 50px;
  right: 2%;
  top: 0;
  text-align: center;
  z-index: 9;
}

.m-bm-nav .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  color: #fff;
}

.m-bm-head.white {
  background: #fff;
}

.m-bm-head.white .m-bm-head-box .m-bm-navbtn span,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:after,
.m-bm-head.white .m-bm-head-box .m-bm-navbtn:before {
  background: #000;
}

.m-bm-head.white .m-bm-menu {
  background: #fff;
}

.m-bm-head.white .m-bm-nav > li,
.m-bm-head.white .m-bm-nav > li .sec {
  border-color: rgba(51, 51, 51, 0.1);
}

.m-bm-head.white .m-bm-nav > li > a,
.m-bm-head.white .m-bm-nav .aniut i,
.m-bm-head.white .m-bm-nav > li .sec a,
.m-bm-head.white .mrhgxt {
  color: #000;
}

.cp_sort1 {
  background: #F4F5F5;
  border-radius: 2rem;
  border: 1px solid #DBDBDB;
  padding: 1rem;
}

.cp_sort1 > li {
  position: relative;
}

.cp_sort1 > li + li {
  margin-top: 1rem;
}

.cp_sort1 > li > .sec {
  padding: 0;
}

.cp_sort1 > li > .sec > .tit1 > a.clicked {
  border-bottom: 1px solid #DEDEDE;
}

.cp_sort1 > li > .sec > .tit1 > a.clicked, .cp_sort1 > li > .sec > .tit1 > a:hover {
  color: #0052D8;
}

.cp_sort1 > li > .sec > .tit1 > .sec {
  padding: 0;
  border-bottom: 1px solid #DEDEDE;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 {
  padding: 0 2%;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 .aniut {
  right: 2%;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a {
  font-size: .875rem;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a.clicked {
  border-bottom: 1px solid #DEDEDE;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a.clicked, .cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > a:hover {
  color: #0052D8;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec {
  padding: 0;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec > .tit1 > a {
  font-size: .75rem;
  line-height: 2rem;
}

.cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec > .tit1 > a.clicked, .cp_sort1 > li > .sec > .tit1 > .sec > .tit1 > .sec > .tit1 > a:hover {
  color: #0052D8;
}

.cp_sort1 > li > a {
  display: block;
  line-height: 3.5rem;
  font-size: 1rem;
  color: #020202;
  font-family: "Inter";
  padding: 0 8%;
  font-weight: 600;
  background: #FFFFFF;
  box-shadow: 0px 0px 0.5rem 0px rgba(0, 0, 0, 0.05);
  border-radius: 1.875rem;
}

.cp_sort1 > li > a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
  font-family: "Inter";
  font-weight: 500;
}

.cp_sort1 > li > a.clicked {
  background: #0052D8;
  color: #fff;
}

.cp_sort1 > li > a.clicked + .aniut i {
  color: #fff;
}

.cp_sort1 > li .sec {
  display: none;
  padding: 1rem 0 0.1rem;
}

.cp_sort1 > li .sec .tit1 {
  position: relative;
  padding: 0 8%;
}

.cp_sort1 > li .sec .tit1 .aniut {
  height: 2.8125rem;
  line-height: 2.8125rem;
  right: 8%;
}

.cp_sort1 > li .sec .tit1 .aniut i {
  font-size: 1.125rem;
}

.cp_sort1 > li .sec .tit1 a {
  color: #020202;
  font-size: 1rem;
  line-height: 2.8125rem;
}

.cp_sort1 > li .sec a {
  display: block;
  font-size: 12px;
  color: #020202;
  line-height: 35px;
}

.cp_sort1 > li .sec a span {
  display: inline-block;
  min-width: 40%;
  max-width: 50%;
}

.cp_sort1 .aniut {
  position: absolute;
  width: auto;
  height: 3.5rem;
  line-height: 3.5rem;
  right: 8%;
  top: 0;
  text-align: center;
  z-index: 9;
}

.cp_sort1 .aniut i {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.125rem;
  color: #888888;
}

@media (max-width: 990px) {
  body {
    padding: 60px 0 0 !important;
  }
}

/* end */
.pc-banner {
  position: relative;
  overflow: hidden;
}

.pc-banner .mySwipera {
  position: relative;
}

.pc-banner .mySwipera .swiper-slide {
  overflow: hidden;
}

.pc-banner .mySwipera .swiper-slide .img {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pc-banner .mySwipera .swiper-slide .img:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
}

.pc-banner .mySwipera .swiper-slide .img.imgdt:after {
  display: none;
}

.pc-banner .mySwipera .swiper-slide .img > img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  -webkit-animation-name: banscaleDraw;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 20s;
}

.pc-banner .mySwipera .swiper-slide .img > img.aimg {
  visibility: hidden;
}

@media (max-width: 990px) {
  .pc-banner .mySwipera .swiper-slide .img > img.aimg {
    visibility: inherit;
  }
}

.pc-banner .mySwipera .swiper-slide .img #myvideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.pc-banner .mySwipera .swiper-slide:hover .img .imgxa2 {
  z-index: 1;
}

.pc-banner .mySwipera .banwez1 {
  width: auto;
  z-index: 99;
  color: #5D5D5D;
  left: 5%;
  bottom: 5%;
  transform: translateY(4rem);
  opacity: 0;
  transition: all .4s;
}

.pc-banner .mySwipera .banwez1 .cont-pa {
  color: #fff;
  opacity: 0.4;
}

.pc-banner .mySwipera .banwez1 .cont-pa .tit {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.125em;
  position: relative;
  letter-spacing: 1rem;
}

@media (max-width: 768px) {
  .pc-banner .mySwipera .banwez1 .cont-pa .tit {
    font-size: 2rem;
    line-height: 1.2em;
  }
}

.pc-banner .mySwipera .banwez1 .cont-pa .p1txt {
  font-size: 2.75rem;
  line-height: 1.65em;
  margin-top: 0;
}

.pc-banner a.mouse {
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  display: block;
  z-index: 9;
}

.pc-banner a.mouse p {
  color: #FFFFFF;
  font: 400 .875rem/1.5em "Inter";
  margin-top: 0.5em;
}

.pc-banner a.mouse .xdt {
  background: rgba(255, 255, 255, 0.6);
  width: .0625rem;
  height: 2rem;
  margin: 0 auto;
  position: relative;
}

.pc-banner a.mouse .xdt::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 0.4rem;
  border-radius: 50%;
  background: white;
  transform: translateX(-50%);
  animation: scroll2 1s linear infinite;
}

.pc-banner.on .mySwipera .banwez1 {
  transform: translateY(0);
  opacity: 1;
}

@keyframes circ {
  0% {
    stroke-dashoffset: 100;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes run {
  from {
    bottom: 70%;
    opacity: 0;
  }
  to {
    bottom: 35%;
    opacity: 1;
  }
}

@keyframes wiht {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes scroll2 {
  0% {
    top: 0;
  }
  60% {
    top: 50%;
  }
  100% {
    top: 100%;
  }
}

@keyframes banscaleDraw {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.swiper {
  overflow: hidden;
}

.overa {
  overflow: hidden;
}

/* 图片动画 */
.fang {
  overflow: hidden;
  display: block;
}

.fang img {
  transition: all .6s;
}

.fang:hover img {
  transform: scale(1.1);
}

.xz img {
  transition: all .5s;
}

.xz:hover img {
  transform: rotateY(180deg);
}

.top {
  transition: all .5s;
}

.top:hover {
  transform: translateY(-1rem);
}

.gong-pagination span {
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  margin: 0 .25rem;
}

.gong-pagination span.swiper-pagination-bullet-active {
  background: #fff;
}

.gong-pagination.hs span {
  background: rgba(0, 0, 0, 0.3);
}

.gong-pagination.hs span.swiper-pagination-bullet-active {
  background: #0052D8;
}

.head .intro {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 100%;
  height: 100vh;
  transition: all 0.4s;
}

.head .intro .con > div.text > div {
  opacity: 0;
}

.head .h1 {
  position: absolute;
  left: 5%;
  top: 24px;
}

.head .h1 a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 36.875rem;
  height: 5.5rem;
  background: url(../images/logo1.svg) no-repeat center;
  text-indent: -9999px;
  transition: all 0.4s;
}

.ani .head h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 380%);
  width: 36.875rem;
  height: 5.5rem;
  animation: intro4 0.8s 4.4s;
  animation-fill-mode: forwards;
  perspective: 1000px;
  z-index: 1;
}

.ani .head h1 a.front {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 100%;
  height: 100%;
  background: url(../images/logo.svg) no-repeat left;
  background-size: cover;
  animation: intro3-0 1s ease 2s, intro3 1s ease 3s;
  animation-fill-mode: forwards;
}

.ani .head:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 2.5rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transform: scale(100);
  animation: outro1 1s 4.5s;
  animation-fill-mode: forwards;
}

.ani .head .intro {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: transparent;
  animation: intro5 0s ease-out 5s;
  animation-fill-mode: forwards;
}

.ani .head .intro .con {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.ani .head .intro .con > div.text {
  animation-fill-mode: forwards;
  text-align: center;
}

.ani .head .intro .con > div.text > div {
  opacity: 0;
  animation: intro0 1.6s ease-out 0.5s;
  animation-fill-mode: forwards;
}

.ani .head .intro .con > div.text > div > span {
  display: inline-block;
  font-family: "Lexend";
  font-size: 64px;
  color: #111;
  line-height: 1em;
  font-weight: 200;
  letter-spacing: 15px;
  animation: intro1 1s ease 0.6s, intro2 0.6s ease 2s;
  animation-fill-mode: forwards;
}

.ani .head .intro .con > div.text > div > span.a {
  margin-left: 20px;
}

@keyframes intro0 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes intro1 {
  0% {
    letter-spacing: 15px;
  }
  100% {
    letter-spacing: 0px;
  }
}

@keyframes intro2 {
  0% {
    letter-spacing: 0;
  }
  100% {
    letter-spacing: 55px;
    opacity: 0;
  }
}

@keyframes intro5 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    transform: scale(0);
  }
}

@keyframes outro1 {
  0% {
    opacity: 1;
    transform: scaleY(20) scaleX(4);
  }
  70% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scaleY(0);
  }
}

@keyframes outro2 {
  0% {
    z-index: -999px;
    opacity: 0;
  }
  100% {
    z-index: 5000;
    opacity: 1;
  }
}

@keyframes intro3-0 {
  0% {
    width: 22%;
    transform: translate(-50%, -50%) translateZ(-500px);
    opacity: 0;
  }
  100% {
    width: 22%;
    transform: translate(-50%, -50%) translateZ(0);
    opacity: 1;
  }
}

@keyframes intro3 {
  0% {
    width: 22%;
  }
  100% {
    width: 100%;
  }
}

@keyframes intro3-1 {
  0% {
    background: url(../images/logo.svg) no-repeat left;
    background-size: cover;
    opacity: 1;
  }
  100% {
    background: url(../images/logo1.svg) no-repeat left;
    background-size: cover;
    opacity: 0;
  }
}

@keyframes intro3-2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes intro4 {
  0% {
    width: 36.875rem;
    height: 5.5rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 370%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 12.5625rem;
    height: 1.875rem;
    left: 5.2083333333%;
    top: 2.45rem;
    transform: translate(0, 0);
    opacity: 0;
  }
}

@keyframes intro4_m {
  0% {
    width: 300px;
    height: 59px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 37vh);
    opacity: 0;
  }
  100% {
    width: 180px;
    height: 35px;
    left: 5%;
    top: 24px;
    transform: translate(0, 0);
    opacity: 1;
  }
}

.gong-p {
  color: #7A7A7A;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.75em;
  text-align: justify;
}

@media (max-width: 768px) {
  .gong-p {
    font-size: 1rem;
  }
}

.gong-p.bs {
  color: #fff;
}

.title1 {
  color: #424242;
  font-weight: 700;
}

.title1 .tit {
  font-size: 2.5rem;
  line-height: 1.25em;
}

.title1 .ftit {
  font-size: 1.875rem;
  line-height: 1.25em;
}

.title1.bs {
  color: #fff;
}

.iconfont1 {
  font-family: "iconfont" !important;
}

.sy-body {
  overflow: visible;
  position: relative;
}

.cont1 {
  position: relative;
}

.cont1 .title1 {
  margin-bottom: 3rem;
}

.cont1 .conwrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400vh;
}

.cont1 .conwrap .boxwrap {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
}

.cont1 .conwrap .boxwrap .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.cont1 .conwrap .boxwrap:nth-child(1) {
  z-index: 1;
}

.cont1 .conwrap .boxwrap:nth-child(1) .bg {
  background: url(../picture/sec2_bg2.jpg) no-repeat;
  background-size: cover;
}

.cont1 .conwrap .boxwrap:nth-child(1) .sticky .imgarea > div {
  background: url(../picture/sec2_img2.jpg) no-repeat;
  background-size: cover;
}

.cont1 .conwrap .boxwrap:nth-child(2) {
  z-index: 2;
  clip-path: inset(100% 0 0 0);
}

.cont1 .conwrap .boxwrap:nth-child(2) .bg {
  background: url(../picture/sec2_bg1.jpg) no-repeat;
  background-size: cover;
}

.cont1 .conwrap .boxwrap:nth-child(2) .sticky .imgarea > div {
  background: url(../picture/sec2_img1.jpg) no-repeat;
  background-size: cover;
}

.cont1 .conwrap .boxwrap:nth-child(3) {
  z-index: 3;
  clip-path: inset(100% 0 0 0);
}

.cont1 .conwrap .boxwrap:nth-child(3) .bg {
  background: url(../picture/sec2_bg3.jpg) no-repeat;
  background-size: cover;
}

.cont1 .conwrap .boxwrap:nth-child(3) .sticky .imgarea > div {
  background: url(../picture/sec2_img3.jpg) no-repeat;
  background-size: cover;
}

.cont1 .conwrap .boxwrap:nth-child(4) {
  z-index: 4;
  clip-path: inset(100% 0 0 0);
}

.cont1 .conwrap .boxwrap:nth-child(4) .bg {
  background: url(../picture/sec2_bg4.jpg) no-repeat;
  background-size: cover;
}

.cont1 .conwrap .boxwrap:nth-child(4) .sticky .imgarea > div {
  background: url(../picture/sec2_img4.jpg) no-repeat;
  background-size: cover;
}

.cont1 .conwrap .boxwrap:nth-child(5) {
  z-index: 4;
  clip-path: inset(100% 0 0 0);
}

.cont1 .conwrap .boxwrap:nth-child(5) .bg {
  background: url(../picture/sec2_bg5.jpg) no-repeat;
  background-size: cover;
}

.cont1 .conwrap .boxwrap:nth-child(5) .sticky .imgarea > div {
  background: url(../picture/sec2_img5.jpg) no-repeat;
  background-size: cover;
}

.cont1 .conwrap .boxwrap:nth-child(6) {
  z-index: 4;
  clip-path: inset(100% 0 0 0);
}

.cont1 .conwrap .boxwrap:nth-child(6) .bg {
  background: url(../picture/sec2_bg6.jpg) no-repeat;
  background-size: cover;
}

.cont1 .conwrap .boxwrap:nth-child(6) .sticky .imgarea > div {
  background: url(../picture/sec2_img6.jpg) no-repeat;
  background-size: cover;
}

.cont1 .conwrap .boxwrap .con {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
}

.cont1 .conwrap .boxwrap .sticky {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 var(--cbasta);
  transform: translate(-50%, 0);
}

.cont1 .conwrap .boxwrap .sticky .txtarea {
  box-sizing: border-box;
  width: 60%;
  padding-right: 5vw;
}

.cont1 .conwrap .boxwrap .sticky .txtarea h3 {
  font-size: 2.75rem;
  color: var(--color-zt);
  font-weight: 700;
  line-height: 1em;
}

.cont1 .conwrap .boxwrap .sticky .txtarea .p {
  margin: 1.25rem 0 1.25rem;
  font-size: 1.125rem;
  color: #fff;
  line-height: 1.8em;
  text-align: justify;
}

.cont1 .conwrap .boxwrap .sticky .imgarea {
  overflow: hidden;
  width: 40%;
  height: 31.5vw;
}

.cont1 .conwrap .boxwrap .sticky .imgarea > div {
  width: 100%;
  height: 100%;
  border-radius: 3.75rem;
}

.cont1 .asjhx_a1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .875rem;
  margin-bottom: 2rem;
}

.cont1 .asjhx_a1 li {
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  height: 3.75rem;
}

.cont1 .asjhx_a1 li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0) invert(1);
}

.cont1 .asjhx_a1 li:hover {
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cont2 {
  overflow: hidden;
  padding: 4.5rem 0 0;
  background: #f5f5f5;
}

.cont2 .a2v1 {
  padding: 5rem 0 4.375rem;
}

.cont2 .conwrap {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  mix-blend-mode: multiply;
}

.cont2 .conwrap .bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  mix-blend-mode: multiply;
}

.cont2 .conwrap .bg video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cont2 .conwrap .bg img {
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: -1;
  width: 100%;
  height: 100%;
  mix-blend-mode: color;
  background-image: linear-gradient(#000, #fff);
}

.cont2 .conwrap .innerwrap {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  opacity: 0;
}

.cont2 .conwrap .subTitle {
  position: absolute;
  left: 100%;
  top: 50%;
  z-index: 20;
  white-space: nowrap;
  transform: translate(0, -50%);
  font-size: 8.5vw;
  font-weight: bold;
  color: #000;
}

.cont2 .conwrap .innerwrap .txtarea {
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.8em;
  text-wrap: balance;
  padding: 0 calc(var(--cbasta) * 1.5);
}

.cont2 .conwrap .more {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 50;
}

.cont2 .conwrap .more > div {
  transform-origin: center center;
  transform: scale(1);
  transition: all 0.24s;
  opacity: 1;
}

.cont2 .conwrap .more > div > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 190px;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  background: #1141C9;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
}

.cont2 .conwrap .more.off > div {
  transform: scale(0);
  opacity: 0;
}

.cont2 .conwrap .more > a i {
  display: block;
  width: .875rem;
  height: 9px;
  margin-left: 10px;
  background: url(../image/btnmore_arr2.png) no-repeat;
}

.cont3 {
  padding: 6.875rem 0 14.375rem;
  background: #F4F4FB url(../picture/sec4_bg.png) no-repeat center bottom;
  background-size: 100% auto;
}

.cont3 .conwrap {
  padding-top: 4.375rem;
}

.cont3 .conwrap .boxwrap {
  position: relative;
  margin-bottom: 1.25rem;
}

.cont3 .conwrap .boxwrap .img {
  width: 29.428%;
  padding: 12% 0;
  margin: 0 auto;
  border-radius: 50px;
}

.cont3 .conwrap .boxwrap .img.img1 {
  transform: translateX(calc(100% + 20px));
  background: url(../picture/sec4_img1.jpg) no-repeat center;
  background-size: cover;
}

.cont3 .conwrap .boxwrap .img.img2 {
  transform: translateX(calc(-100% - 20px));
  background: url(../picture/sec4_img2.jpg) no-repeat center;
  background-size: cover;
}

.cont3 .conwrap .boxwrap .img.img3 {
  transform: translateX(calc(100% + 20px));
  background: url(../picture/sec4_img3.jpg) no-repeat center;
  background-size: cover;
}

.cont3 .conwrap .boxwrap .txts {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 29.428%;
  padding: 12% 0;
  background: #fff;
  border-radius: 50px;
  transition: all .4s;
}

.cont3 .conwrap .boxwrap .txts > div {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

.cont3 .conwrap .boxwrap:nth-child(1) .txts {
  left: calc(50% + 14.714% + 20px);
}

.cont3 .conwrap .boxwrap:nth-child(2) .txts {
  right: calc(50% + 14.714% + 20px);
}

.cont3 .conwrap .boxwrap:nth-child(3) .txts {
  left: calc(50% + 14.714% + 20px);
}

.cont3 .conwrap .boxwrap .txts > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 12%;
}

.cont3 .conwrap .boxwrap .txts > div .icon {
  width: 4.375rem;
  margin-bottom: 2.5rem;
}

.cont3 .conwrap .boxwrap .txts > div .icon svg path {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

.cont3 .conwrap .boxwrap .txts > div .icon.in-view svg path {
  animation: ani2 2s linear;
  animation-fill-mode: forwards;
}

.cont3 .conwrap .boxwrap .txts > div dl {
  width: 100%;
}

.cont3 .conwrap .boxwrap .txts > div dl dt {
  font-size: 2rem;
  color: #424242;
  font-weight: 700;
  line-height: 1.25em;
}

.cont3 .conwrap .boxwrap .txts > div dl dd {
  margin-top: 0.6rem;
  font-size: 1.25rem;
  color: #7F7F7F;
  line-height: 1.8em;
}

.cont3 .conwrap .boxwrap .txts > div dl a.mrepo-xa {
  display: block;
  margin-left: auto;
  margin-top: 1rem;
  width: fit-content;
  color: #7F7F7F;
}

.cont3 .conwrap .boxwrap .txts > div dl a.mrepo-xa i {
  font-size: 1.25rem;
}

.cont3 .conwrap .boxwrap .txts:hover {
  background: var(--color-zt);
}

.cont3 .conwrap .boxwrap .txts:hover > div .icon svg {
  filter: brightness(0) invert(1);
}

.cont3 .conwrap .boxwrap .txts:hover > div dl dt,
.cont3 .conwrap .boxwrap .txts:hover > div dl dd,
.cont3 .conwrap .boxwrap .txts:hover > div dl a.mrepo-xa {
  color: #fff;
}

@keyframes ani2 {
  0% {
    stroke-dashoffset: 500;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.cont4 {
  padding: 8.625rem 0 30rem;
  background: url(../picture/bj1.jpg) no-repeat center bottom;
  background-size: cover;
}

.cont4 .a4v2 {
  color: #808080;
  font-size: 1.25rem;
  line-height: 1.65em;
  margin-top: 1.5rem;
}

.cont4 .xcpas_aa1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 3rem 0 5rem;
}

.cont4 .xcpas_aa1 li {
  text-align: center;
  color: #555555;
  font-size: 1.25rem;
  line-height: 1.5em;
}

.cont4 .xcpas_aa1 li .p1 b {
  font-weight: 400;
}

.cont4 .xcpas_aa1 li .p1 span {
  color: #1141C9;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.25em;
  margin-right: 0.2rem;
}

.public_text {
  width: 100%;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 1rem;
  transform: translateX(-50%);
}

.public_text .p:first-child {
  position: relative;
  z-index: 55;
  color: #333333;
}

.public_text .p:not(:first-child) {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.public_text .p p {
  width: fit-content;
  margin: auto;
  font-weight: bold;
  font-size: 1.875rem;
  line-height: 1.5em;
}

.foot-fot {
  position: relative;
  background: #1141C9;
}

.foot-fot .foota1 {
  position: relative;
  z-index: 1;
}

@media (max-width: 990px) {
  .foot-fot .foota1 {
    display: none;
  }
}

.foot-fot .foota1 .foot-tit {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 600;
}

.foot-fot .foota1 .foot-tit a {
  color: #fff;
  display: block;
}

.foot-fot .foota1 .foota1b1 {
  padding: 5rem 0 8.125rem;
}

.foot-fot .foota1 .foota1b1 .dlogo img {
  height: 1.875rem;
}

.foot-fot .foota1 .foota1b1 .fo-a1 .dseca {
  margin-top: 1rem;
  line-height: 2;
  font-size: 1rem;
}

.foot-fot .foota1 .foota1b1 .fo-a1 .dseca a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.foot-fot .foota1 .foota1b1 .fo-a1 .dseca a:hover {
  color: #fff;
}

.foot-fot .foota1 .foota1b1 .erhjxsct {
  width: 28%;
}

.foot-fot .foota1 .foota1b1 .erhjxsct .asdjx1 {
  font-size: 1rem;
  line-height: 1.75em;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.foot-fot .foota1 .foota1b1 .erhjxsct .asdjx1 li i {
  font-size: 1.125rem;
  margin-right: 0.5rem;
}

.foot-fot .foota1 .foota1b1 .fen_x a {
  margin: 0 .75rem !important;
  border: none;
}

.foot-fot .foota1 .foota1b1 .fen_x a i {
  color: #fff;
  font-size: 1.5rem;
}

.foot-fot .foota2 {
  color: rgba(255, 255, 255, 0.7);
  font: 400 .875rem/1.65em "Noto Sans SC";
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.35em 0;
}

.foot-fot .foota2 a {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  width: fit-content;
}

.foot-fot .foota2 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  transition: all 0.4s;
  background: var(--color-zt);
}

.foot-fot .foota2 a:hover {
  color: #fff;
}

.foot-fot .foota2 a:hover::after {
  width: 100%;
}

.foot-fot .foota2 a:hover {
  color: #fff;
}

.foot-fot .foota2 p + p {
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .foot-fot .foota2 p + p {
    margin-left: 0;
  }
}

.foot-fot .foota2 p + p span:last-child {
  display: none;
}

.foot1-m {
  display: none;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (max-width: 990px) {
  .d_nav {
    display: none;
  }
  .fix-gonga {
    display: none !important;
  }
}

/*手机底部*/
@media (max-width: 991px) {
  .foot1-m {
    display: block;
  }
}

.hidden {
  display: none;
}

/*内页css*/
.loadmore-nodata {
  margin: 0 auto 9em;
}

.text-center {
  text-align: center;
}

.pagination {
  display: flex;
  padding-left: 0;
  margin: 1.25rem 0;
  border-radius: .25rem;
  justify-content: center;
}

.pagination > li {
  margin: 0 .3125rem;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
}

.pagination > li:hover {
  background: var(--color-zt);
  color: #fff;
  text-align: center;
}

.pagination > li:hover a {
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 3.125rem;
}

.pagination > li.active {
  background: var(--color-zt);
  color: #fff;
}

.pagination > li.active a {
  color: #fff;
}

.pagination > li.disabled:hover {
  color: #333;
  background: #FFF;
}

.pager {
  padding-left: 0;
  margin: 2.6875rem 0;
  text-align: center;
  list-style: none;
}

@media (max-width: 768px) {
  .pager {
    margin: 1.5rem 0;
  }
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 2.375rem;
  height: 2.375rem;
  background: #fff;
}

.pager li > a i,
.pager li > span i {
  line-height: 2.375rem;
  font-weight: 700;
  font-size: .875rem;
}

.pager li > a:focus,
.pager li > a:hover {
  text-decoration: none;
  background-color: #eee;
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager .disabled > a,
.pager .disabled > a:focus,
.pager .disabled > a:hover,
.pager .disabled > span {
  color: #777;
  cursor: not-allowed;
  background-color: transparent;
}

.ajhhsd {
  color: #A4A4A4;
  font: 400 1rem/2rem "Inter";
  padding: 1.25em 0;
}

@media (max-width: 768px) {
  .ajhhsd {
    line-height: 1.5em;
    padding: 0.75em 0;
  }
}

.ajhhsd span {
  padding: 0 0.05em;
}

.ajhhsd span:last-child {
  display: none;
}

.ajhhsd a {
  color: #A4A4A4;
}

.ajhhsd a:hover {
  color: var(--color-zt);
}

.xw_ny_banner {
  background: #333;
  background-size: cover;
  padding: 16.5rem 0 7.25rem;
}

@media (max-width: 990px) {
  .xw_ny_banner {
    padding: 7.25rem 0;
  }
}

@media (max-width: 768px) {
  .xw_ny_banner {
    padding: 4rem 0;
  }
}

.xw_ny_banner h2 {
  color: #FFFFFF;
  font: 600 3.125rem/1.2em "Inter";
}

@media (max-width: 768px) {
  .xw_ny_banner h2 {
    font-size: 1.8rem;
  }
}

.nav-page li {
  padding-bottom: 1em;
}

.nav-page li + li {
  border-top: 1px solid #f0f0f0;
  padding-top: 1em;
}

.nav-page li > a {
  display: block;
  font: 600 1.35rem/1.5em "Inter";
  color: #333;
}

@media (max-width: 768px) {
  .nav-page li > a {
    font-size: 1.25rem;
  }
}

.nav-page li .sec {
  margin-top: 0.5em;
}

.nav-page li .sec a {
  display: inline-block;
  font: 500 1rem/1.6em "Inter";
  color: #777;
  margin-right: 1em;
}

.nav-page li .sec a:hover {
  color: var(--color-zt);
}

@media (max-width: 768px) {
  .mt40 {
    margin-top: 1rem;
  }
}

.ssy-sskaa {
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .ssy-sskaa {
    margin-bottom: 1.5rem;
  }
}

.ssy-sskaa .searchsa form {
  width: 50%;
  border: 1px solid #999;
  padding: 0 1.5em;
  border-radius: 2rem;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ssy-sskaa .searchsa form {
    width: 90%;
  }
}

.ssy-sskaa .searchsa form input {
  width: 70%;
  font: 500 1.25rem/4rem "Inter";
  background: transparent;
  color: #999;
}

@media (max-width: 768px) {
  .ssy-sskaa .searchsa form input {
    font-size: 1.125rem;
    line-height: 3rem;
  }
}

.ssy-sskaa .searchsa form button {
  width: auto;
  outline: none;
  border: none;
  background: transparent;
}

.ssy-sskaa .searchsa form button i {
  font: 500 1.6rem/4rem "Inter";
  color: #333;
}

@media (max-width: 768px) {
  .ssy-sskaa .searchsa form button i {
    font-size: 1.35rem;
    line-height: 3rem;
  }
}

.ss-list li {
  padding: 1rem 0;
}

.ss-list li + li {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .ss-list li + li {
    margin-top: 0.5rem;
  }
}

.ss-list li div.img {
  width: 25%;
}

@media (max-width: 768px) {
  .ss-list li div.img {
    width: 100%;
  }
}

.ss-list li div.img a.img {
  display: block;
  border: 1px solid #f2f2f2;
}

.ss-list li .xw-nycont {
  width: 72%;
}

.ss-list li .xw-nycont.w100 {
  width: 100%;
}

@media (max-width: 768px) {
  .ss-list li .xw-nycont {
    width: 100%;
    margin-top: 1.2em;
  }
}

.ss-list li .xw-nycont h2 a {
  display: block;
  color: #656363;
  font: 500 1.25rem/1.35em "Inter";
  overflow: hidden;
  margin-bottom: 0.2em;
}

.ss-list li .xw-nycont h2 a:hover {
  color: var(--color-zt);
}

@media (max-width: 768px) {
  .ss-list li .xw-nycont h2 a {
    font-size: 1.125rem;
  }
}

.ss-list li .xw-nycont .datea {
  color: #999999;
  font: 500 0.95rem/1.5em "Inter";
}

.ss-list li .xw-nycont .p {
  color: #999999;
  font: 500 1rem/1.5em "Inter";
  margin-top: 0.5em;
}

.ss-list li .xw-nycont a.more-b {
  margin-top: 1em;
}

.shzr-content {
  color: #454545;
  font: 400 1rem/2em "Inter";
  padding: 1rem 0 3rem;
}

.shzr-content strong {
  color: #333;
}

.shzr-content h4 {
  margin-bottom: 0.5em;
}

/*内页end*/
@keyframes fd {
  0% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.nbanner {
  position: relative;
  overflow: hidden;
}

.nbanner .img {
  width: 100%;
  font-size: 0;
}

.nbanner .img img {
  width: 100%;
  -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;
}

.nbanner .nbanner-wen1 {
  position: absolute;
  width: 100%;
  z-index: 1;
}

.nbanner .nbanner-wen1 .banner-cont {
  color: #fff;
  font-weight: 600;
}

.nbanner .nbanner-wen1 .banner-cont .p1 {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 4rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p1 {
    font-size: 2rem;
  }
}

.nbanner .nbanner-wen1 .banner-cont .p2 {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 2.75rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  .nbanner .nbanner-wen1 .banner-cont .p2 {
    font-size: 1.25rem;
  }
}

.nbanner .fldah {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

.nbanner .fldah .ny-nav {
  gap: 1px;
}

.nbanner .fldah .ny-nav li {
  flex: 1;
  background: #fff;
  position: relative;
}

.nbanner .fldah .ny-nav li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #0052D8;
  transition: all .4s;
}

.nbanner .fldah .ny-nav li a {
  display: block;
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.5em;
  padding: 1.55rem 0.5em;
  text-align: center;
}

.nbanner .fldah .ny-nav li:hover, .nbanner .fldah .ny-nav li.on {
  background: rgba(255, 255, 255, 0.85);
}

.nbanner .fldah .ny-nav li:hover::after, .nbanner .fldah .ny-nav li.on::after {
  width: 100%;
}

.nbanner .fldah .ny-nav li:hover a, .nbanner .fldah .ny-nav li.on a {
  color: #0052D8;
}

.nbanner .fldah.sticky {
  background: #fff;
  position: fixed !important;
  bottom: auto;
  top: var(--head-height);
  z-index: 9;
}

.nbanner .fldah.sticky .ny-nav li a {
  padding: 1rem 0.5em;
  font-size: 1.125rem;
}

.nbanner .mbx-cont {
  width: 100%;
  position: absolute;
  bottom: 4.375rem;
}

.nbanner .mbx-cont .ajhhsd {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
}

.nbanner .mbx-cont .ajhhsd i {
  font-size: 1rem;
  color: #FFF;
  margin-right: .375rem;
}

.nbanner .mbx-cont .ajhhsd a {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
}

.n_mbx {
  margin-top: -4.375rem;
  position: sticky;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  left: 0;
  top: var(--head-height);
  width: 100%;
  z-index: 9;
}

.n_mbx .tit {
  color: #575757;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1em;
  border-right: 1px solid #D8D8D8;
  padding-right: 2.25rem;
  margin-right: 2.25rem;
}

@media (max-width: 768px) {
  .n_mbx .tit {
    display: none;
  }
}

.n_mbx .n_src {
  font-size: 0;
  overflow-y: hidden;
  overflow-x: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .n_mbx .n_src {
    white-space: nowrap;
    display: block;
  }
}

.n_mbx .n_src li {
  display: inline-block;
  position: relative;
}

.n_mbx .n_src li::before {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background-color: var(--color-zt);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all .6s;
}

.n_mbx .n_src li + li {
  margin-left: 1px;
}

.n_mbx .n_src li a {
  display: block;
  color: #575757;
  font-size: 1.125rem;
  line-height: 1.75em;
  font-weight: 400;
  position: relative;
  padding: 1.25rem 1.5em;
  transition: all .6s;
}

@media (max-width: 768px) {
  .n_mbx .n_src li a {
    line-height: 2.6rem;
    font-size: 1.1rem;
    padding: 0.5rem 1em;
  }
}

.n_mbx .n_src li:hover::before, .n_mbx .n_src li.active::before {
  width: 100%;
}

.n_mbx .n_src li:hover a, .n_mbx .n_src li.active a {
  color: var(--color-zt);
}

.list_content {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .list_content {
    padding: 2rem 0;
  }
}

@-webkit-keyframes scale2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.fang-img {
  -webkit-animation: scale2 4s infinite linear;
  -moz-animation: scale2 4s infinite linear;
  -o-animation: scale2 4s infinite linear;
  animation: scale2 4s infinite linear;
}

#abt1,
#abt2,
#abt3,
#abt4,
#abt5,
#abt6 {
  height: var(--head-height);
  margin-top: calc(var(--head-height) * -1);
}

@media (max-width: 990px) {
  #abt1,
  #abt2,
  #abt3,
  #abt4,
  #abt5,
  #abt6 {
    height: 60px;
    margin-top: -60px;
  }
}

.ny-title {
  color: #9F9E9F;
  font-weight: 700;
}

.ny-title .tit {
  color: #020202;
  font-size: 2.5rem;
  line-height: 1.35em;
}

@media (max-width: 768px) {
  .ny-title .tit {
    font-size: 1.85rem;
  }
}

.ny-title .entit {
  font-size: 1.5rem;
  line-height: 1.25em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .ny-title .entit {
    font-size: 1.25rem;
  }
}

.ny-title.bs {
  color: #fff;
}

.ny-title.bs .tit {
  color: #fff;
}

@keyframes bannerLun {
  0% {
    opacity: 0;
    transform: translateY(100px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    filter: blur(0px);
  }
}

.channel_industry {
  padding-top: 9.875rem;
  padding-bottom: 8.5625rem;
}

.channel_industry .content {
  width: 100%;
  height: 12.5rem;
}

.channel_industry .industry_box2 {
  display: none;
}

.channel_industry .industry_box2 .industry_box {
  margin-bottom: 20px;
}

.channel_industry .industry_box2 .industry_box::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(121, 121, 121, 0.34) 0%, rgba(121, 121, 121, 0) 100%);
  position: absolute;
  top: 0;
  z-index: 11;
}

.channel_industry .industry_box2 .industry_box .over {
  border-radius: 1.25rem;
}

.channel_industry .industry_box2 .industry_box .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel_industry .industry_box2 .industry_box .flex_tit {
  width: 100%;
  position: absolute;
  top: 60%;
  padding: 20px;
  z-index: 22;
  display: flex;
  justify-content: space-between;
}

.channel_industry .industry_box2 .industry_box .flex_tit .tit {
  color: #FFF;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  font-family: "Noto Sans SC";
  font-size: 22px;
  font-weight: 700;
}

.channel_industry .industry_box2 .industry_box .flex_tit .icon {
  width: 2.75rem;
  height: 2.75rem;
}

.channel_industry .industry_box2 .industry_box .more {
  font-size: 1rem;
  color: #fff;
  position: absolute;
  width: 100%;
  bottom: 1.25rem;
  padding-left: 1.25rem;
}

.channel_industry .swiper_industry {
  position: relative;
  overflow: unset;
  margin: 0 -1.5625rem;
}

.channel_industry .swiper_industry .swiper-slide {
  padding: 0 1.5625rem;
}

.channel_industry .swiper_industry .swiper-slide .industry_box::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(121, 121, 121, 0.34) 0%, rgba(121, 121, 121, 0) 100%);
  position: absolute;
  top: 0;
  z-index: 11;
}

.channel_industry .swiper_industry .swiper-slide .industry_box .over {
  border-radius: 1.25rem;
  height: 35.9375rem;
}

.channel_industry .swiper_industry .swiper-slide .industry_box .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel_industry .swiper_industry .swiper-slide .industry_box .flex_tit {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  padding: 2.75rem 2.5rem 0 2.75rem;
  z-index: 22;
  display: flex;
  justify-content: space-between;
}

.channel_industry .swiper_industry .swiper-slide .industry_box .flex_tit .tit {
  color: #FFF;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 700;
}

.channel_industry .swiper_industry .swiper-slide .industry_box .flex_tit .icon {
  width: 2.75rem;
  height: 2.75rem;
}

@keyframes img_go {
  100% {
    transform: translateX(-50%);
  }
}

.channel_coop {
  overflow: hidden;
  padding-bottom: 4.625rem;
}

.channel_coop .content .matter {
  display: flex;
  width: max-content;
  animation: img_go 20s infinite linear;
}

.channel_coop .content .matter:last-child {
  animation-direction: reverse;
}

.channel_coop .content .matter:not(:last-child) {
  margin: 0 0 24px;
}

.channel_coop .content .matter .img {
  width: 14.9375rem;
  height: 6.25rem;
  background: #FFFFFF;
  border-radius: .625rem;
  border: 1px solid #EDEDED;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2rem 0 0;
}

.channel_coop .content .matter .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel_more {
  padding-top: 7.5rem;
  padding-bottom: 10.625rem;
  background: #F3FCFF;
}

.channel_more .content .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.channel_more .content .grid_box .grid_item {
  border-radius: 1.25rem;
  background: #FFF;
  overflow: hidden;
  transition: all 0.6s;
}

.channel_more .content .grid_box .grid_item .text {
  padding: 2rem 2.875rem 2.5625rem;
}

.channel_more .content .grid_box .grid_item .text .tit {
  color: #424242;
  font-size: 1.5rem;
  font-weight: 700;
}

.channel_more .content .grid_box .grid_item .text .dec {
  margin-top: .9375rem;
  color: rgba(66, 66, 66, 0.7);
  font-size: 1.125rem;
  font-weight: 400;
}

.channel_more .content .grid_box .grid_item .text .more {
  margin-top: 2.8125rem;
  color: #424242;
  font-size: 1rem;
  font-weight: 400;
}

.channel_more .content .grid_box .grid_item .text .more i {
  margin-left: .5625rem;
  font-size: 1.125rem;
}

.channel_more .content .grid_box .grid_item:hover {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.07);
}

.list_industry {
  padding-bottom: 6.25rem;
}

.list_industry .row .left {
  padding-right: 3.125rem;
}

.list_industry .row .left .desc {
  color: #7F7F7F;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.5rem;
}

.list_industry .row .right {
  padding-left: 1.875rem;
}

.list_industry .row .right .over {
  border-radius: 1.25rem;
}

.list_industry .swiper_morecoop {
  margin: 5.625rem -0.9375rem 0;
  padding-bottom: 3.75rem;
  position: relative;
}

.list_industry .swiper_morecoop .swiper-slide {
  padding: 0 .9375rem;
}

.list_industry .swiper_morecoop .swiper-slide .morecoop_box {
  border-radius: .625rem;
  border: 1px solid #D9D9D9;
  background: #FFF;
}

.swiper-pagination1 {
  text-align: center;
  width: 100%;
  position: absolute;
}

.swiper-pagination1 .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
}

.swiper-pagination1 .swiper-pagination-bullet-active {
  background: var(--color-zt);
}

.list_industry_two {
  background: #F3FCFF;
  padding-top: 9.125rem;
  padding-bottom: 5rem;
}

.list_industry_two .swiper_xgpro {
  margin: 0 -1.25rem;
  position: relative;
  padding-bottom: 4.0625rem;
}

.list_industry_two .swiper_xgpro .swiper-slide {
  padding: 0 1.25rem;
}

.list_industry_two .swiper_xgpro .swiper-slide .xgpro_box .over {
  border-radius: 1.875rem;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.03);
}

.list_industry_two .swiper_xgpro .swiper-slide .xgpro_box .text {
  color: #555;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.channel_product {
  padding-top: 3.125rem;
  padding-bottom: 5rem;
}

.channel_product .n_src {
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel_product .n_src li a {
  color: #555;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
  padding: 0 1.5625rem;
}

.channel_product .n_src li.active a {
  color: var(--color-zt);
}

.channel_product .grid_box .grid_item {
  border-radius: 1.875rem;
  background: #F3FCFF;
  padding: 2.9375rem 2.875rem;
}

.channel_product .grid_box .grid_item .over {
  width: 47%;
  border-radius: 1.875rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.03);
  padding: 3.6875rem 4.375rem;
}

.channel_product .grid_box .grid_item .text {
  width: 53%;
  padding-left: 8rem;
}

.channel_product .grid_box .grid_item .text .tit {
  color: #555;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.channel_product .grid_box .grid_item .text .desc {
  margin-top: 1.75rem;
  color: rgba(85, 85, 85, 0.8);
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.list_product {
  padding-top: 3.125rem;
  padding-bottom: 8.125rem;
}

.list_product .n_src {
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_product .n_src li a {
  color: #555;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
  padding: 0 1.5625rem;
}

.list_product .n_src li.active a {
  color: var(--color-zt);
}

.list_product .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.list_product .grid_box .grid_item .over {
  border-radius: 1.875rem;
  background: #F8F8F8;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.03);
}

.list_product .grid_box .grid_item .text {
  color: #555;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
  padding-top: 1.5625rem;
  padding-bottom: .375rem;
}

.show_product {
  background: #F3FCFF;
  padding-top: 6.25rem;
}

.show_product .ajhhsd {
  color: #808080;
}

.show_product .ajhhsd a {
  color: #808080;
}

.show_product > .row {
  align-items: center;
}

.show_product .row .left {
  padding-right: 4.6875rem;
}

.show_product .row .left .over {
  border-radius: 1.875rem;
  border: 1px solid #FFF;
  background: #FFF;
}

.show_product .row .right .title {
  color: #555;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 2.5rem;
  font-weight: 700;
}

.show_product .row .right .desc {
  margin-top: 1.125rem;
  color: rgba(43, 45, 45, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
}

.show_product .row .right .desc h4 {
  color: rgba(43, 45, 45, 0.7);
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
}

.show_product .row .right .desc p {
  color: rgba(43, 45, 45, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
}

.show_product .row .right .desc p strong,
.show_product .row .right .desc p b {
  font-weight: 700;
  font-size: 1.125rem;
}

.show_product .row .right .desc ul li {
  color: rgba(43, 45, 45, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  position: relative;
  padding-left: 1.875rem;
}

.show_product .row .right .desc ul li::before {
  content: '';
  display: block;
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  background-color: rgba(43, 45, 45, 0.7);
  position: absolute;
  left: .625rem;
  top: .875rem;
}

.show_product_canshu .content .table_box {
  width: 100%;
  overflow-x: auto;
}

.show_product_canshu .content .table_box table {
  width: 100%;
}

.show_product_canshu .content .table_box table tr:nth-child(1) {
  border-bottom: 1px solid #1141C9;
  background: #FFF;
}

.show_product_canshu .content .table_box table tr td {
  color: #000;
  text-align: center;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  padding: .75rem 2rem !important;
  min-width: 9.375rem;
}

.show_product_canshu .content .table_box table tr:nth-child(even) {
  background: #F3FCFF;
}

.show_product_canshu .content .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.show_product_canshu .content .grid_box .over {
  border-radius: 1.875rem;
}

.show_product_canshu .content .grid_box .text {
  padding-top: 1.25rem;
}

.show_product_canshu .content .grid_box .text h3 {
  color: #424242;
  font-size: 1.25rem;
  font-weight: 600;
}

.show_product_canshu .content .grid_box .text p {
  color: #424242;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.show_product_canshu .content .p {
  color: rgba(0, 0, 0, 0.4);
  font-family: Inter;
  font-size: 1rem;
  font-weight: 500;
  line-height: 3.125rem;
}

.show_product_canshu .content p {
  color: rgba(43, 45, 45, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
}

.show_product_canshu .content p strong,
.show_product_canshu .content p b {
  font-weight: 700;
  font-size: 1.125rem;
}

.show_product_canshu .content ul li {
  color: rgba(43, 45, 45, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2rem;
  position: relative;
  padding-left: 1.875rem;
}

.show_product_canshu .content ul li::before {
  content: '';
  display: block;
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  background-color: rgba(43, 45, 45, 0.7);
  position: absolute;
  left: .625rem;
  top: .875rem;
}

.show_xg_hangye {
  padding-bottom: 6.625rem;
}

.show_xg_hangye .swiper_industry2 {
  position: relative;
  overflow: unset;
  padding-bottom: 3.75rem;
  margin: 0 -1.5625rem;
}

.show_xg_hangye .swiper_industry2 .swiper-slide {
  padding: 0 1.5625rem;
}

.show_xg_hangye .swiper_industry2 .swiper-slide .industry_box::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(121, 121, 121, 0.34) 0%, rgba(121, 121, 121, 0) 100%);
  position: absolute;
  top: 0;
  z-index: 11;
}

.show_xg_hangye .swiper_industry2 .swiper-slide .industry_box .over {
  border-radius: 1.25rem;
  height: 35.9375rem;
}

.show_xg_hangye .swiper_industry2 .swiper-slide .industry_box .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.show_xg_hangye .swiper_industry2 .swiper-slide .industry_box .flex_tit {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  padding: 2.75rem 2.5rem 0 2.75rem;
  z-index: 22;
  display: flex;
  justify-content: space-between;
}

.show_xg_hangye .swiper_industry2 .swiper-slide .industry_box .flex_tit .tit {
  color: #FFF;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 700;
}

.show_xg_hangye .swiper_industry2 .swiper-slide .industry_box .flex_tit .icon {
  width: 2.75rem;
  height: 2.75rem;
}

.show_investor_message {
  background: #EEF7FF;
  padding-bottom: 7.6875rem;
  padding-top: 7.625rem;
}

.show_investor_message .left {
  padding-right: 1.25rem;
}

.show_investor_message .left .text_con {
  padding: 6.625rem 6.75rem 5.625rem;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid #FFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, #FFF 100%);
  color: #666;
  font-family: Inter;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.75rem;
}

.show_investor_message .right {
  padding-left: 4.6875rem;
}

.show_investor_message .right .msg-a1 .inpt {
  margin-bottom: 1.375rem;
}

.show_investor_message .right .msg-a1 .inpt input {
  width: 100%;
  height: 3.9375rem;
  border-radius: 3.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 0 2.375rem;
}

.show_investor_message .right .msg-a2 .inpt {
  margin-bottom: 1.375rem;
}

.show_investor_message .right .msg-a2 .inpt textarea {
  width: 100%;
  border-radius: 2.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 1.375rem 2.875rem;
}

.show_investor_message .right .div_aghgha button {
  width: 100%;
  height: 3.9375rem;
  line-height: 3.9375rem;
  border-radius: 3.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #1141C9;
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
}

.show_product_message {
  background: #F3FCFF;
}

.show_product_message .left {
  padding-right: 1.25rem;
}

.show_product_message .left .text_con {
  padding: 4.0625rem 5.375rem;
  border-radius: 1.25rem;
  border: 1px solid #FFF;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 152, 0, 0.1) 100%);
}

.show_product_message .left .text_con ul li {
  display: flex;
}

.show_product_message .left .text_con ul li:not(:last-child) {
  margin-bottom: 2.875rem;
}

.show_product_message .left .text_con ul li .tt {
  padding-left: 2.1875rem;
}

.show_product_message .left .text_con ul li .tt h3 {
  color: #000;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.show_product_message .left .text_con ul li .tt p {
  color: #808080;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.show_product_message .right {
  padding-left: 4.6875rem;
}

.show_product_message .right .msg-a1 .inpt {
  margin-bottom: 1.375rem;
}

.show_product_message .right .msg-a1 .inpt input {
  width: 100%;
  height: 3.9375rem;
  border-radius: 3.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 0 2.375rem;
}

.show_product_message .right .msg-a2 .inpt {
  margin-bottom: 1.375rem;
}

.show_product_message .right .msg-a2 .inpt textarea {
  width: 100%;
  border-radius: 2.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 1.375rem 2.875rem;
}

.show_product_message .right .div_aghgha button {
  width: 100%;
  height: 3.9375rem;
  line-height: 3.9375rem;
  border-radius: 3.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #1141C9;
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
}

.list_yfnl_one {
  padding-bottom: 6.25rem;
}

.list_yfnl_one .content {
  margin-top: 8.25rem;
}

.list_yfnl_one .content .text_box {
  padding-right: 2.5rem;
}

.list_yfnl_one .content .text_box ul li {
  padding-top: 2.1875rem;
  border-bottom: 1px solid #D9D9D9;
}

.list_yfnl_one .content .text_box ul li.active, .list_yfnl_one .content .text_box ul li:hover {
  padding-top: .9375rem;
  padding-bottom: 1.25rem;
}

.list_yfnl_one .content .text_box ul li.active .pp, .list_yfnl_one .content .text_box ul li:hover .pp {
  height: 8.75rem;
}

.list_yfnl_one .content .text_box ul li.active .icon img, .list_yfnl_one .content .text_box ul li:hover .icon img {
  filter: invert(59%) sepia(53%) saturate(2021%) hue-rotate(0deg) brightness(103%) contrast(105%);
}

.list_yfnl_one .content .text_box ul li.active .text h3, .list_yfnl_one .content .text_box ul li:hover .text h3 {
  color: var(--color-zt);
}

.list_yfnl_one .content .text_box ul li .icon {
  width: 2.75rem;
  height: 2.75rem;
}

.list_yfnl_one .content .text_box ul li .text {
  flex: 1;
  padding-left: 1.5625rem;
}

.list_yfnl_one .content .text_box ul li .text h3 {
  color: #424242;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
}

.list_yfnl_one .content .text_box ul li .text h3 span {
  color: rgba(66, 66, 66, 0.2);
}

.list_yfnl_one .content .text_box ul li .pp {
  overflow: hidden;
  color: #424242;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  transition: all .6s;
  padding: 0 4.375rem 0;
  height: 0;
  margin-top: 1.5rem;
}

.list_yfnl_one .content .right {
  padding-right: 0;
}

.list_yfnl_one .content .right .swiper_moreimg {
  position: relative;
  border-radius: 1.875rem;
  overflow: hidden;
}

.list_yfnl_two {
  padding-bottom: 9.1875rem;
}

.list_yfnl_three {
  background: #F3FCFF;
  /* 标题样式 */
}

.list_yfnl_three .row {
  align-items: center;
}

.list_yfnl_three .grid_box .grid_item {
  width: 68%;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.03);
  overflow: hidden;
  padding: 2.0625rem 2.625rem 2.375rem;
  margin: 0 auto;
  display: none;
}

.list_yfnl_three .grid_box .grid_item.active {
  display: block;
}

.list_yfnl_three .grid_box .grid_item .over {
  border-radius: 1.875rem;
}

.list_yfnl_three .grid_box .grid_item .text .tt {
  margin-top: .625rem;
  color: var(--color-zt);
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.list_yfnl_three .grid_box .grid_item .text .tit {
  color: #444;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.list_yfnl_three .grid_box .grid_item .text .subtit {
  color: #777;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
}

.list_yfnl_three #earth {
  margin-top: -7.5rem;
}

.list_yfnl_three #tooltip {
  display: block !important;
}

.list_yfnl_three #tooltip li {
  position: absolute;
  z-index: 999;
  background: #FFF;
  color: #7C7C7C;
  padding: 5px 10px;
  border-radius: 1.6642rem;
  font-size: 1rem;
  pointer-events: none;
  -webkit-transform-origin: left bottom;
  -moz-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  -o-transform-origin: left bottom;
  transform-origin: left bottom;
  z-index: 1000;
  display: none;
}

.list_yfnl_three #tooltip li.active {
  display: block;
}

.list_yfnl_three .city-label {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-4.375rem);
  cursor: pointer;
  pointer-events: none;
}

.list_yfnl_three .city-label:nth-child(2) .data-label {
  margin-left: 0;
  margin-right: 6.25rem;
}

.list_yfnl_three .city-label.active .data-label {
  background-color: var(--color-zt);
  color: #fff;
}

.list_yfnl_three .data-label {
  color: #7C7C7C;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: .875rem;
  font-weight: 400;
  width: 5.1476rem;
  height: 1.8767rem;
  background: #fff;
  border-radius: 3.75rem;
  padding: .5rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.3);
  margin-left: 6.25rem;
}

.list_znzz_one {
  padding-top: 8.25rem;
  padding-bottom: 8.125rem;
}

.list_znzz_one .content {
  width: 100%;
  height: 12.5rem;
}

.list_znzz_one .img {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
}

.list_znzz_one .img #myvideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.list_znzz_one .grid_box {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.list_znzz_one .grid_box .grid_item:nth-child(2) {
  padding-top: 4.75rem;
}

.list_znzz_one .grid_box .grid_item:nth-child(2) .box_con {
  background: linear-gradient(180deg, rgba(255, 152, 0, 0) 0%, #1141C9 100%);
}

.list_znzz_one .grid_box .grid_item:nth-child(2) .box_con .text h3,
.list_znzz_one .grid_box .grid_item:nth-child(2) .box_con .text p {
  color: #fff;
}

.list_znzz_one .grid_box .grid_item .box_con {
  height: 26.9375rem;
  border-radius: 1.875rem;
  background: linear-gradient(180deg, rgba(238, 247, 255, 0) -16.24%, #EEF7FF 100%);
  padding-top: 3.4375rem;
  transition: all .6s;
}

.list_znzz_one .grid_box .grid_item .box_con .icon {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.list_znzz_one .grid_box .grid_item .box_con .icon img {
  width: 40%;
}

.list_znzz_one .grid_box .grid_item .box_con .text {
  margin-top: 2.0625rem;
}

.list_znzz_one .grid_box .grid_item .box_con .text h3 {
  color: #424242;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 700;
}

.list_znzz_one .grid_box .grid_item .box_con .text p {
  margin-top: .5rem;
  color: #424242;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875rem;
  /* 187.5% */
}

.list_znzz_one .grid_box .grid_item:hover .box_con {
  transform: translateY(-0.625rem);
}

.list_znzz_two {
  position: relative;
  padding-bottom: 8.25rem;
}

.list_znzz_two .bgimg {
  position: absolute;
  width: 100%;
  z-index: -1;
}

.list_znzz_two .content {
  width: 100%;
  padding-top: 9.375rem;
}

.list_znzz_two .content .text_con {
  border-radius: 1.875rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.03);
  padding: 7.0625rem 9.625rem 7.0625rem;
}

.list_znzz_two .content .text_con .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.125rem;
}

.list_znzz_two .content .text_con .grid_box .grid_item:hover {
  cursor: pointer;
}

.list_znzz_two .content .text_con .grid_box .grid_item:hover .icon {
  background-color: var(--color-zt);
  transform: translateY(-0.625rem);
}

.list_znzz_two .content .text_con .grid_box .grid_item:hover .icon img {
  filter: brightness(0) invert(1);
}

.list_znzz_two .content .text_con .grid_box .grid_item .icon {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #EEF7FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all .6s;
}

.list_znzz_two .content .text_con .grid_box .grid_item .icon img {
  width: 40%;
}

.list_znzz_two .content .text_con .grid_box .grid_item .text {
  margin-top: 1.5625rem;
}

.list_znzz_two .content .text_con .grid_box .grid_item .text h3 {
  color: #424242;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
}

.list_znzz_two .content .text_con .grid_box .grid_item .text .pp {
  margin-top: .875rem;
  color: #424242;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_sys_one {
  padding-top: 7.25rem;
}

.list_sys_one .content ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_sys_one .content ul li {
  padding: 0 5.5625rem;
}

.list_sys_one .content ul li .icon {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: #EEF7FF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .6s;
}

.list_sys_one .content ul li .icon img {
  width: 40%;
}

.list_sys_one .content ul li .text {
  margin-top: 1.125rem;
  color: #000;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
}

.list_sys_one .content ul li:hover .icon {
  background-color: var(--color-zt);
}

.list_sys_one .content ul li:hover .icon img {
  filter: brightness(0) invert(1);
}

.list_sys_one .content .row_one {
  margin-top: 8.75rem;
}

.list_sys_one .content .row_one .left {
  padding-right: 3.5rem;
}

.list_sys_one .content .row_one .left .over {
  border-radius: 1.875rem;
}

.list_sys_one .content .row_one .right {
  padding-left: 2.1875rem;
}

.list_sys_one .content .row_one .right p {
  color: #424242;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.75rem;
}

.list_sys_two {
  padding-top: 8.75rem;
  padding-bottom: 8.125rem;
}

.list_sys_two .content ul {
  border-top: 1px solid rgba(63, 63, 63, 0.1);
  border-bottom: 1px solid rgba(63, 63, 63, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_sys_two .content ul li {
  color: #555;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  padding: 2.4375rem 1.875rem;
}

.list_sys_two .content ul li:hover, .list_sys_two .content ul li.active {
  cursor: pointer;
  color: var(--color-zt);
}

.list_sys_two .content .con_box {
  padding-top: 2.8125rem;
}

.list_sys_two .content .con_box .grid_box {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6875rem 2.4375rem;
}

.list_sys_two .content .con_box .grid_box.active {
  display: grid;
}

.list_sys_two .content .con_box .grid_box .grid_item .over {
  border-radius: 1.875rem;
}

.list_sys_two .content .con_box .grid_box .grid_item .text {
  padding-top: 1.5625rem;
  color: #555;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.list_fwbz_one {
  padding-top: 7.25rem;
  padding-bottom: 6.25rem;
}

.list_fwbz_one .content {
  width: 100%;
  height: 11.25rem;
}

.list_fwbz_one .content .public_text::before {
  content: '';
  display: block;
  width: 2.1875rem;
  height: 1.9375rem;
  background-image: url(../images/douhao1.svg);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  top: -1rem;
  left: 12.5rem;
}

.list_fwbz_one .content .public_text::after {
  content: '';
  display: block;
  width: 2.1875rem;
  height: 1.9375rem;
  background-image: url(../images/douhao2.svg);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  right: 12.5rem;
  top: -1rem;
}

.list_fwbz_one .content2 {
  padding-top: 3.125rem;
}

.list_fwbz_one .content2 .row:not(:last-child) {
  margin-bottom: 3.125rem;
}

.list_fwbz_one .content2 .row:nth-child(even) .left {
  order: 1;
  padding-left: 0;
  padding-right: .625rem;
}

.list_fwbz_one .content2 .row .left {
  padding-right: 0;
  padding-left: .625rem;
}

.list_fwbz_one .content2 .row .right {
  display: table;
  padding-left: 10rem;
  padding-right: 8.75rem;
  background: #F8F8F8;
}

.list_fwbz_one .content2 .row .right .text {
  display: table-cell;
  vertical-align: middle;
}

.list_fwbz_one .content2 .row .right .text h3 {
  color: #424242;
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 700;
}

.list_fwbz_one .content2 .row .right .text p {
  margin-top: 1.25rem;
  color: #424242;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_fwbz_two {
  padding-top: 7.25rem;
  background: #EEF7FF;
}

.list_fwbz_two .content {
  padding-bottom: 7.375rem;
}

.list_fwbz_two .content ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.list_fwbz_two .content ul li {
  background: #FFF;
  padding-top: 3.5625rem;
  padding-bottom: 3.3125rem;
}

.list_fwbz_two .content ul li:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

.list_fwbz_two .content ul li:hover .icon img {
  transform: rotateY(180deg);
}

.list_fwbz_two .content ul li .icon {
  margin: 0 auto;
  width: 5.8524rem;
  height: 5.8524rem;
  border-radius: 50%;
  background-color: #EEF7FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_fwbz_two .content ul li .icon img {
  width: 45%;
  transition: all .6s;
}

.list_fwbz_two .content ul li .text {
  color: #000;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 1.25rem;
  text-align: center;
}

.list_fwbz_two .list_fwbz_bottom {
  background: #1141C9;
}

.list_fwbz_two .list_fwbz_bottom .more-b.bs::after {
  background: #1d2089;
}

.list_fwbz_two .list_fwbz_bottom .con {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 12.9375rem;
}

.list_fwbz_two .list_fwbz_bottom .con .conli {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.75rem;
  margin-right: 1rem;
}

.list_fwbz_two .list_fwbz_bottom .con .conli a {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.75rem;
}

.list_download {
  padding-top: 3.4375rem;
  padding-bottom: 5.625rem;
}

.list_download ul {
  display: flex;
  align-items: center;
  margin: 0 -1.875rem;
}

.list_download ul li a {
  color: rgba(66, 66, 66, 0.4);
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 500;
  padding: 0 1.875rem;
}

.list_download ul li.active a {
  color: var(--color-zt);
}

.list_download .content .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.0625rem 1.625rem;
}

.list_download .content .grid_box .grid_item {
  border-radius: 1.875rem;
  background: #EEF7FF;
  padding: 2.1875rem 1.75rem 1.6875rem 2.5rem;
  transition: all .6s;
  border: 1px solid #EEF7FF;
}

.list_download .content .grid_box .grid_item:hover {
  border: 1px solid #aec6db;
}

.list_download .content .grid_box .grid_item .time {
  color: #969696;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
}

.list_download .content .grid_box .grid_item .tit {
  margin-top: .8125rem;
  color: #626262;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_download .content .grid_box .grid_item .more {
  color: #808080;
  text-align: center;
  font-family: Inter;
  font-size: .75rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.375rem;
  height: 1.875rem;
  border-radius: 1.875rem;
  border: 1px solid #808080;
}

.list_about_one {
  padding-top: 6.5625rem;
  padding-bottom: 7.25rem;
}

.list_about_one .content {
  color: rgba(43, 45, 45, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.75rem;
}

.list_about_one .about_img {
  position: relative;
}

.list_about_one .about_img .swiper_aboutimg {
  position: relative;
  overflow: hidden;
  border-radius: 1.875rem;
}

.list_about_one .about_img .swiper-button-next,
.list_about_one .about_img .swiper-button-prev {
  background: unset;
  margin-top: -3.375rem;
}

.list_about_one .about_img .swiper-button-prev,
.list_about_one .about_img .swiper-container-rtl .swiper-button-next {
  left: -6.25rem;
}

.list_about_one .about_img .swiper-button-next,
.list_about_one .about_img .swiper-container-rtl .swiper-button-prev {
  right: -6.25rem;
}

.list_about_one .about_num {
  margin-top: 4.8125rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11.25rem;
}

.list_about_one .about_num .about_li h3 {
  text-align: center;
}

.list_about_one .about_num .about_li h3 span {
  color: #1D2089;
  font-family: Inter;
  font-size: 4rem;
  font-weight: 700;
}

.list_about_one .about_num .about_li h3 b {
  color: #555;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.25rem;
}

.list_about_one .about_num .about_li p {
  color: #555;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.25rem;
  text-align: center;
}

.list_about_two {
  padding-top: 8.625rem;
  padding-bottom: 12.875rem;
  position: relative;
}

.list_about_two::before {
  content: '';
  display: block;
  width: 100%;
  height: 31.375rem;
  background: #EEF7FF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.list_about_two .content {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 40.9375rem;
  background-image: url("https://cloud-1251007531.bcdn8.com/tianmai0813/uploads/20250815/289a0679993e19fbbbbb5f2687052e4a.jpg");
  background-size: cover;
  display: flex;
  justify-content: end;
}

.list_about_two .content .swiper_wenhua {
  position: relative;
  width: 40%;
}

.list_about_two .content .swiper_wenhua .swiper-pagination1 {
  right: 3.4375rem;
  width: auto;
}

.list_about_two .content .swiper_wenhua .swiper-slide {
  display: table;
}

.list_about_two .content .swiper_wenhua .wenhua_box {
  display: table-cell;
  vertical-align: middle;
}

.list_about_two .content .swiper_wenhua .wenhua_box:hover .icon img {
  transform: rotateY(180deg);
}

.list_about_two .content .swiper_wenhua .wenhua_box .icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: var(--color-zt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_about_two .content .swiper_wenhua .wenhua_box .icon img {
  width: 50%;
  transition: all .6s;
}

.list_about_two .content .swiper_wenhua .wenhua_box .text {
  margin-top: 1.125rem;
}

.list_about_two .content .swiper_wenhua .wenhua_box .text h3 {
  color: rgba(43, 45, 45, 0.7);
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.75rem;
}

.list_about_two .content .swiper_wenhua .wenhua_box .text .pp {
  margin-top: .625rem;
  color: rgba(43, 45, 45, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.75rem;
}

.abt-cont2 {
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 5.5rem 0 6.5625rem;
}

@media (max-width: 768px) {
  .abt-cont2 {
    padding: 2.25rem 0;
  }
}

.abt-cont2 .abt-a2v1-a {
  margin-top: 7rem;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1-a {
    margin-top: 1.25rem;
  }
}

.abt-cont2 .abt-a2v1 .abt-a2b1 {
  width: 24.64286%;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2b1 {
    display: none;
  }
}

.abt-cont2 .abt-a2v1 .abt-a2b1 .abt-a2b1c1 {
  width: 50%;
  color: #3D3D3D;
  font-size: 8.75rem;
  line-height: 1em;
  font-weight: 500;
}

.abt-cont2 .abt-a2v1 .abt-a2b1 .abt-a2b1c2 {
  width: 50%;
}

.abt-cont2 .abt-a2v1 .abt-a2b1 .abt-a2b1c2 .mySwiper11 {
  height: 30.125rem;
}

.abt-cont2 .abt-a2v1 .abt-a2b1 .abt-a2b1c2 .mySwiper11 .swiper-slide p {
  font-size: 8.75rem;
  line-height: 1em;
  color: rgba(183, 183, 183, 0.4);
  font-weight: 500;
}

.abt-cont2 .abt-a2v1 .abt-a2b1 .abt-a2b1c2 .mySwiper11 .swiper-slide.swiper-slide-active p {
  background: var(--color-zt);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.abt-cont2 .abt-a2v1 .abt-a2b2 {
  width: 55.14286%;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2b2 {
    width: 100%;
  }
}

.abt-cont2 .abt-a2v1 .abt-a2b2 .mySwiper10 {
  height: 30.125rem;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2b2 .mySwiper10 {
    height: auto;
  }
}

.abt-cont2 .abt-a2v1 .abt-a2b2 .mySwiper10 .swiper-slide .cont-ax .p1 {
  width: 82.90155%;
  color: rgba(99, 97, 97, 0.54);
  font-size: 1.25rem;
  line-height: 1.5em;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2b2 .mySwiper10 .swiper-slide .cont-ax .p1 {
    width: 100%;
    order: 1;
    font-size: 1.125rem;
  }
}

.abt-cont2 .abt-a2v1 .abt-a2b2 .mySwiper10 .swiper-slide .cont-ax span {
  display: block;
  width: 10.36269%;
  color: rgba(99, 97, 97, 0.54);
  font-size: 1.125rem;
  line-height: 1.5em;
}

@media (max-width: 768px) {
  .abt-cont2 .abt-a2v1 .abt-a2b2 .mySwiper10 .swiper-slide .cont-ax span {
    width: 100%;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--color-zt);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.abt-cont2 .abt-a2v1 .abt-a2b2 .mySwiper10 .swiper-slide.swiper-slide-prev .cont-ax .p1,
.abt-cont2 .abt-a2v1 .abt-a2b2 .mySwiper10 .swiper-slide.swiper-slide-prev .cont-ax span {
  color: #636161;
}

.abt-cont2 .jt-morea {
  position: absolute;
  left: 27.85714%;
  top: 0;
  z-index: 9;
}

@media (max-width: 768px) {
  .abt-cont2 .jt-morea {
    position: static;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }
}

.abt-cont2 .jt-morea > div {
  width: 3rem;
  height: 3rem;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .abt-cont2 .jt-morea > div.swiper-button-next1 {
    transform: rotate(90deg);
  }
}

.abt-cont2 .jt-morea > div.swiper-button-prev1 {
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .abt-cont2 .jt-morea > div.swiper-button-prev1 {
    transform: rotate(90deg);
    margin-top: 0;
  }
}

.abt-cont2 .jt-morea > div i {
  color: var(--color-zt);
  font-size: 1.125rem;
}

.abt-cont2 .jt-morea > div:hover {
  background: var(--color-jb);
}

.abt-cont2 .jt-morea > div:hover i {
  color: #1d2089;
}

.list_about_four {
  padding-top: 9.5625rem;
  padding-bottom: 11.375rem;
}

.list_about_four .content .swiper_honor {
  margin: -2.75rem;
  position: relative;
}

.list_about_four .content .swiper_honor .swiper-slide {
  padding: 1.75rem;
}

.list_about_four .content .swiper_honor .swiper-slide .over {
  height: 7rem;
  margin: 0 auto;
  transition: all .6s;
  text-align: center;
}

.list_about_four .content .swiper_honor .swiper-slide .over img {
  width: auto;
  height: 100%;
}

.list_about_four .content .swiper_honor .swiper-slide i {
  display: block;
  text-align: center;
}

.list_about_four .content .swiper_honor .swiper-slide i img {
  width: 6.75rem;
  margin: 0 auto;
}

.list_about_four .content .swiper_honor .swiper-slide:hover {
  cursor: pointer;
}

.list_about_four .content .swiper_honor .swiper-slide:hover .over {
  transform: translateY(-0.625rem);
}

.list_about_four .content .swiper_honor .swiper-slide .wenata {
  text-align: center;
}

.list_about_four .content .swiper_honor .swiper-slide .wenata h2 {
  margin-top: .4375rem;
  color: rgba(0, 0, 0, 0.7);
  font-family: Inter;
  font-size: 2rem;
  font-weight: 500;
}

.list_about_four .content .swiper_honor .swiper-slide .wenata .p {
  color: rgba(0, 0, 0, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.list_about_five {
  padding-top: 4.6875rem;
  padding-bottom: 6.0625rem;
  background: #F3FCFF;
}

.list_about_six {
  position: relative;
}

.list_about_six .content {
  position: absolute;
  width: 100%;
  top: 13.125rem;
}

.list_about_six .content .sub_title {
  margin-top: 1.25rem;
  color: #2B2D2D;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 2rem;
  font-weight: 700;
}

.list_about_six .content .more-b {
  margin: 1.875rem auto 0;
}

.list_contact_one {
  padding-top: 6.5625rem;
}

.list_contact_one .sub_desc {
  margin-top: 1.4375rem;
  color: rgba(43, 45, 45, 0.7);
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
  padding-bottom: 2.7813rem;
  position: relative;
}

.list_contact_one .sub_desc::before {
  content: '';
  display: block;
  width: 29.875rem;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.list_contact_one .content {
  margin-top: 3.625rem;
}

.list_contact_one .content .tit {
  color: #444;
  font-family: "Noto Sans SC";
  font-size: 2.125rem;
  font-weight: 500;
  margin-bottom: 1.4375rem;
}

.list_contact_one .content .left {
  width: 85%;
}

.list_contact_one .content .left li p {
  color: rgba(43, 45, 45, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
}

.list_contact_one .content .left li h4 {
  color: rgba(43, 45, 45, 0.7);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.75rem;
}

.list_contact_one .content .right {
  width: 12%;
}

.list_contact_one .content .right .tt {
  color: rgba(43, 45, 45, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.75rem;
}

.list_contact_one .content .right .social-share a {
  background: #808080;
  color: #fff;
  border-color: #808080;
  font-size: 1.25rem;
}

.list_contact_two {
  overflow: hidden;
}

.list_contact_two .msg-a1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.list_contact_two .msg-a1 .inpt input {
  width: 100%;
  height: 3.9375rem;
  border-radius: 3.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 0 2.375rem;
}

.list_contact_two .msg-a2 {
  margin-top: 2.5rem;
}

.list_contact_two .msg-a2 .inpt textarea {
  width: 100%;
  border-radius: 1.5625rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 1.375rem 2.375rem;
}

.list_contact_two .div_aghgha label {
  color: #444;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
}

.list_contact_two .div_aghgha button {
  width: 11.125rem;
  background-color: unset;
}

.p_top {
  position: absolute;
  top: -6.25rem;
}

.list_investor_one {
  padding-bottom: 7rem;
}

.list_investor_one .content .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.0625rem 1.625rem;
}

.list_investor_one .content .grid_box .grid_item {
  border-radius: 1.875rem;
  border: 1px solid #E9E9E9;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.03);
  padding: 2.1875rem 1.75rem 1.6875rem 2.5rem;
  transition: all .6s;
}

.list_investor_one .content .grid_box .grid_item:hover {
  border-color: #EEF7FF;
  background: #EEF7FF;
}

.list_investor_one .content .grid_box .grid_item .time {
  color: #969696;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
}

.list_investor_one .content .grid_box .grid_item .tit {
  margin-top: .8125rem;
  color: #626262;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.875rem;
}

.list_investor_one .content .grid_box .grid_item .more {
  color: #808080;
  text-align: center;
  font-family: Inter;
  font-size: .75rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.375rem;
  height: 1.875rem;
  border-radius: 1.875rem;
  border: 1px solid #808080;
}

.list_investor_one .content .more-b {
  margin: 1.5625rem auto 0;
}

.list_investor_two {
  padding-bottom: 8.4375rem;
  background-size: cover;
}

.list_investor_two .content {
  border-radius: 1.875rem;
  overflow: hidden;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.03);
}

.list_investor_two .content ul li {
  padding: 3.6875rem 3.1875rem 4.375rem 4.5625rem;
  transition: all .6s;
  background-color: #FFF;
}

.list_investor_two .content ul li:hover, .list_investor_two .content ul li:nth-child(1) {
  background-color: var(--color-zt);
}

.list_investor_two .content ul li:hover .time,
.list_investor_two .content ul li:hover .tit, .list_investor_two .content ul li:nth-child(1) .time,
.list_investor_two .content ul li:nth-child(1) .tit {
  color: #fff;
}

.list_investor_two .content ul li:hover .more, .list_investor_two .content ul li:nth-child(1) .more {
  color: #fff;
  border-color: #fff;
}

.list_investor_two .content ul li:hover .more svg path, .list_investor_two .content ul li:nth-child(1) .more svg path {
  stroke: #fff;
}

.list_investor_two .content ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.03);
}

.list_investor_two .content ul li .time {
  color: #969696;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
}

.list_investor_two .content ul li .tit {
  color: #626262;
  font-family: "Noto Sans SC";
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.125rem;
}

.list_investor_two .content ul li .more {
  color: #808080;
  text-align: center;
  font-family: Inter;
  font-size: .75rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.375rem;
  height: 1.875rem;
  border-radius: 1.875rem;
  border: 1px solid #808080;
}

.list_investor_two .more-b {
  margin: 2.8125rem auto 0;
}

.list_investor .content {
  border-bottom: 1px solid #E7E7E7;
}

.list_investor .content .top_tt {
  display: flex;
  align-items: center;
}

.list_investor .content .top_tt .le .title {
  color: #333;
  font-family: Montserrat;
  font-size: 3.125rem;
  font-weight: 700;
}

.list_investor .content .top_tt .ri {
  padding-left: 1.875rem;
}

.list_investor .content .top_tt .ri .tit {
  color: #222;
  font-family: Montserrat;
  font-size: 1.125rem;
  font-weight: 400;
}

.list_investor .content .top_tt .ri .num {
  color: #222;
  font-family: Inter;
  font-size: 1.75rem;
  font-weight: 500;
}

.list_investor .content .bott_con .le .tit {
  color: #333;
  font-family: Inter;
  font-size: 3.9367rem;
  font-weight: 500;
}

.list_investor .content .bott_con .le .tit_s {
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
}

.list_investor .content .bott_con .le .tit_s .zzls.red {
  color: #FE5461;
}

.list_investor .content .bott_con .le .tit_s .zzls.green {
  color: #037b66;
}

.list_investor .content .bott_con .ri ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6.25rem;
}

.list_investor .content .bott_con .ri ul li p {
  color: #333;
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
}

.list_investor .content .bott_con .ri ul li h3 {
  color: #333;
  font-family: Inter;
  font-size: 2.25rem;
  font-weight: 600;
}

.list_investor .content .bott_con .ri .bb {
  margin-top: .625rem;
  color: #989898;
  font-family: Inter;
  font-size: 1rem;
  font-weight: 400;
}

.zd_erha {
  position: fixed;
  right: 1.82292%;
  bottom: 12%;
  z-index: 999;
  width: 3.75rem;
  background: #fff;
  border: 0.5px solid #DAD9D9;
  box-shadow: 0.125rem 0.1875rem 0.375rem rgba(150, 148, 148, 0.25);
  border-radius: 1.875rem;
}

@media (max-width: 768px) {
  .zd_erha {
    display: none;
  }
}

.zd_erha .aat_list li {
  position: relative;
  z-index: 2;
  padding: 0.5rem 0;
}

.zd_erha .aat_list li + li:after {
  content: "";
  width: 50%;
  height: 1px;
  background: #DEDDDD;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.hidden {
  display: none;
}

.zd_erha .aat_list li > a {
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  position: relative;
  background: white;
  margin: 0 auto;
  border-radius: 50%;
  -webkit-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.zd_erha .aat_list li > a i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zd_erha .aat_list li > a:hover {
  background: #f0f0f0;
}

.zd_erha .aat_list li > a svg {
  width: 1.75rem;
  height: 1.75rem;
}

.zd_erha .aat_list li .cbl-cont {
  position: absolute;
  z-index: -1;
  padding: 0.5em 1rem;
  width: auto;
  right: -webkit-calc(115%);
  right: -moz-calc(115%);
  right: calc(110% + 5px);
  top: 10%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(110%);
  -moz-transform: translateX(110%);
  -ms-transform: translateX(110%);
  -o-transform: translateX(110%);
  transform: translateX(110%);
  -webkit-transition: all 0.7s;
  -o-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1rem;
  background: #fff;
  border-radius: 0.5rem;
  white-space: nowrap;
}

.zd_erha .aat_list li .cbl-cont.erghgsb {
  width: 9.375rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

.zd_erha .aat_list li .cbl-cont.erghgsb img {
  width: 100%;
}

.zd_erha .aat_list li:hover .cbl-cont {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.lx-cont1 .a7v1 {
  position: relative;
  padding: 0 3%;
  margin-top: 3rem;
  z-index: 0;
}

@media (max-width: 768px) {
  .lx-cont1 .a7v1 {
    margin-top: 1rem;
    padding: 0;
  }
}

@-webkit-keyframes FpulseSlow2 {
  0% {
    -webkit-transform: scale(0.25);
    transform: scale(0.25);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-moz-keyframes FpulseSlow2 {
  0% {
    -moz-transform: scale(0.25);
    transform: scale(0.25);
    opacity: 0.4;
  }
  100% {
    -moz-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-o-keyframes FpulseSlow2 {
  0% {
    -o-transform: scale(0.25);
    transform: scale(0.25);
    opacity: 0.4;
  }
  100% {
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes FpulseSlow2 {
  0% {
    -webkit-transform: scale(0.25);
    -moz-transform: scale(0.25);
    -o-transform: scale(0.25);
    transform: scale(0.25);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

.FpulseSlow2 {
  -webkit-animation: FpulseSlow2 infinite 3s linear;
  -moz-animation: FpulseSlow2 infinite 3s linear;
  -o-animation: FpulseSlow2 infinite 3s linear;
  animation: FpulseSlow2 infinite 3s linear;
  opacity: 0;
}

.lx-cont1 .a7v1 .heng1 {
  display: block;
  font-size: 0;
}

.lx-cont1 .a7v1 .heng1 img {
  width: 100%;
}

.lx-cont1 .a7v1 .a7_list1 li {
  position: absolute;
}

.lx-cont1 .a7v1 .a7_list1 li.ask-a117 {
  left: 77.8%;
  top: 44.5%;
}

@media (max-width: 768px) {
  .lx-cont1 .a7v1 .a7_list1 li.ask-a117 {
    left: 75%;
    top: 42%;
  }
}

.lx-cont1 .a7v1 .a7_list1 li .tit {
  cursor: pointer;
}

.lx-cont1 .a7v1 .a7_list1 li .tit .din {
  width: 0.75rem;
}

.lx-cont1 .a7v1 .a7_list1 li .tit .din i {
  display: block;
  position: relative;
  z-index: 1;
}

.lx-cont1 .a7v1 .a7_list1 li .tit .din i span {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  display: block;
  background: rgba(19, 49, 91, 0.5);
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
}

.lx-cont1 .a7v1 .a7_list1 li .tit .din i span.span2 {
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  z-index: 6;
}

.lx-cont1 .a7v1 .a7_list1 li .tit .din i span.span3 {
  width: 160px;
  height: 160px;
  margin: -80px 0 0 -80px;
  z-index: 5;
}

.lx-cont1 .a7v1 .a7_list1 li .tit .din i span.span4 {
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  z-index: 4;
}

.lx-cont1 .a7v1 .a7_list1 li .tit .din i span.span5 {
  width: 640px;
  height: 640px;
  margin: -320px 0 0 -320px;
  z-index: 3;
}

.lx-cont1 .a7v1 .a7_list1 li .tit .din i span.span6 {
  width: 1280px;
  height: 1280px;
  margin: -640px 0 0 -640px;
  z-index: 2;
}

.lx-cont1 .a7v1 .a7_list1 li .tit .din i span.span7 {
  width: 2560px;
  height: 2560px;
  margin: -1280px 0 0 -1280px;
  z-index: 1;
}

.lx-cont1 .a7v1 .a7_list1 li .tit .din img {
  width: 100%;
}

@media (max-width: 768px) {
  .lx-cont1 .a7v1 .a7_list1 li .tit .din img {
    opacity: 0;
  }
}

.lx-cont1 .a7v1 .a7_list1 li .tit p {
  color: #13315B;
  font-size: 0.875rem;
  line-height: 1em;
  margin-left: 0.25rem;
}

@media (max-width: 768px) {
  .lx-cont1 .a7v1 .a7_list1 li .tit p {
    opacity: 0;
  }
}

.lx-cont1 .a7v1 .a7_list1 li .cont-p {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 150%;
  border-radius: 0.9375rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 0px 1.25rem 0px #C9C9C9;
  padding: 1.325rem 1.5rem;
  width: 22rem;
  z-index: 2;
  border: 1px solid #C9C9C9;
  color: #484848;
}

@media (max-width: 768px) {
  .lx-cont1 .a7v1 .a7_list1 li .cont-p {
    display: none !important;
  }
}

.lx-cont1 .a7v1 .a7_list1 li .cont-p .p1 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5em;
}

.lx-cont1 .a7v1 .a7_list1 li .cont-p .p2 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5em;
  margin-top: 0.25rem;
}

.lx-cont1 .a7v1 .a7_list1 li.active .cont-p {
  display: block;
}

.lx-cont1 .wehassa {
  background: #fff;
  padding: 2.25rem 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0px 0px 1rem 0px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .lx-cont1 .wehassa {
    padding: 1rem;
  }
}

.lx-cont1 .wehassa i {
  font-size: 2rem;
  display: block;
  margin-right: 0.75rem;
}

@media (max-width: 768px) {
  .lx-cont1 .wehassa i {
    font-size: 2.125rem;
    width: 100%;
    margin-right: 0;
    text-align: center;
    line-height: 1;
  }
}

.lx-cont1 .wehassa p {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .lx-cont1 .wehassa p {
    font-size: 1.125rem;
    margin-top: 0.5rem;
  }
}

.lx-cont1 .wehassa p span {
  color: var(--color-zt);
  font-size: 1.85rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .lx-cont1 .wehassa p span {
    font-size: 1.5rem;
  }
}

.lx-cont1 .a7v2 {
  margin-top: 2.25rem;
}

@media (max-width: 768px) {
  .lx-cont1 .a7v2 {
    margin-top: 1.5rem;
  }
}

.lx-cont1 .a7v2 .mySwiper44 .swiper-slide {
  background: #FAFAFA;
  border-radius: 1.25rem;
}

@media (max-width: 768px) {
  .lx-cont1 .a7v2 .mySwiper44 .swiper-slide {
    border-radius: 1rem;
  }
}

.lx-cont1 .a7v2 .mySwiper44 .swiper-slide .cont-p {
  padding: 1.8rem 6%;
}

.lx-cont1 .a7v2 .mySwiper44 .swiper-slide .cont-p .tit {
  color: #13315B;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5em;
}

.lx-cont1 .a7v2 .mySwiper44 .swiper-slide .cont-p .ftit {
  color: #484848;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5em;
}

.lx-cont1 .a7v2 .mySwiper44 .swiper-slide .cont-p .ptxt {
  height: 3.25rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .lx-cont1 .a7v2 .mySwiper44 .swiper-slide .cont-p .ptxt {
    height: auto;
  }
}

.lx-cont1 .a7v2 .mySwiper44 .swiper-slide .cont-p .ptxt .p1 {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0.55em;
}

.lx-cont1 .a7v2 .mySwiper44 .swiper-slide .cont-p .ptxt .p1:not(:first-child) {
  display: none;
}

.lx-cont1 .a7v2 .mySwiper44 .swiper-slide .cont-p .ptxt .p1 i {
  color: #13315B;
  font-size: 1.125rem;
  width: 1.85rem;
  line-height: 1.125em;
}

.lx-cont1 .a7v2 .mySwiper44 .swiper-slide .cont-p .ptxt .p1 p {
  color: #484848;
  font-size: 1rem;
  line-height: 1.35em;
  width: -webkit-calc(100% - 1.85rem);
  width: -moz-calc(100% - 1.85rem);
  width: calc(100% - 1.85rem);
}

.lx-cont1 .a7v2 .mySwiper44 .swiper-pagination1 {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .lx-cont1 .a7v2 .mySwiper44 .swiper-pagination1 {
    margin-top: 1rem;
  }
}

.lx-cont1 .a7v3 {
  background-position: center;
  background-repeat: no-repeat;
  -o-background-size: cover;
  background-size: cover;
  padding: 6.0625rem 4%;
  border-radius: 1.25rem;
  margin-top: 2.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .lx-cont1 .a7v3 {
    margin-top: 1rem;
    padding: 3rem 4%;
    border-radius: 1rem;
  }
}

.lx-cont1 .a7v3 .tit {
  font-size: 2.25rem;
  line-height: 1.5em;
  letter-spacing: 0.5em;
}

@media (max-width: 768px) {
  .lx-cont1 .a7v3 .tit {
    font-size: 1.5rem;
  }
}

.lx-cont1 .a7v3 .p1 {
  color: rgba(0, 0, 0, 0.3);
  font-size: 1.25rem;
  line-height: 1.5em;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .lx-cont1 .a7v3 .p1 {
    font-size: 1rem;
  }
}
