@charset "UTF-8";
@use 'sass:math';
body,
html {
  font-size: calc(100vw / 120);
}

@media (min-width: 1024px) and (max-width: 1366px) {
  body,
  html {
    font-size: calc(100vw / 110);
  }
}

@media (min-width: 767px) and (max-width: 1024px) {
  body,
  html {
    font-size: calc(100vw / 90);
  }
}

@media (max-width: 767px) {
  body,
  html {
    font-size: 14px;
  }
}

@font-face {
  /* 给自定义字体取个名字，后面可以用这个名字引用字体 */
  font-family: 'Alimama FangYuanTi VF';
  /* 字体文件的路径，这里假设字体文件在当前目录下 */
  src: url("../font/AlimamaFangYuanTiVF-Thin.woff") format("woff");
  /* 可选的字体样式，如 normal 或 italic */
  font-style: normal;
  /* 可选的字体粗细，如 normal 或 bold */
}

body {
  font-family: 'Inter', 'Noto Sans SC', sans-serif, 'Montserrat' !important;
}

body * {
  outline: none;
}

p {
  padding: 0;
  margin: 0;
}

:root {
  --color-bs: #fff;
  --color-ys: #808080;
  --color-zt: #1B2756;
  --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: flex;
  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: .625rem;
  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: 10.0625rem;
  height: 3.25rem;
  border-radius: .625rem;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 1.5em;
  font-size: 1.125rem;
  border: 1px solid transparent;
  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;
  border-radius: .625rem;
  opacity: 0.7;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
  transform: scaleX(1);
  transform-origin: center right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}

.more-a:hover {
  color: #489bf7;
  border-color: #489bf7;
}

.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: .85rem 1.65rem;
  border-radius: .625rem;
  color: rgba(27, 39, 86, 0.7);
  overflow: hidden;
  position: relative;
  z-index: 1;
  line-height: 1.5em;
  font-size: 1.125rem;
  border: 1px solid rgba(27, 39, 86, 0.7);
  font-size: 1rem;
}

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

@media (max-width: 768px) {
  .more-b {
    padding: .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: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
  border-radius: .625rem;
}

.more-b:hover {
  cursor: pointer;
  color: #fff;
  border: transparent;
}

.more-b:hover p {
  color: #fff;
}

.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: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
}

.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: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 999;
}

.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: 600;
}

.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: .5rem;
  padding: .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.125rem;
  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(--color-zt);
  font-family: "Noto Sans SC";
}

#menu .nav_a1 > li > a {
  font-size: 1.125rem;
  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::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  height: .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: 160%;
  max-width: inherit;
  left: 50%;
  background: white;
  z-index: 9;
  border-radius: 0 0 1rem 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(20px);
  padding: 1.5rem 1em;
  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: .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: #575757;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5em;
  padding: .45rem 0;
}

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

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

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

#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, #menu .nav_a1 > li.active > a span {
  color: #006EFF;
}

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

.search-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99999999;
  top: 0;
  left: 0;
  display: none;
}

.search-box {
  display: none;
  width: 40%;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: .625rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}

.search-box input[type="text"] {
  padding: 1.5625rem;
  border: unset;
  border-radius: 1.25rem;
  width: 100%;
  outline: none;
}

.search-box button {
  background: unset;
  color: #999;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 1.875rem;
  top: 1.4375rem;
}

.search-box button i {
  font-size: 20px;
  color: #000;
  font-weight: 700;
}

.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 p {
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: .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: .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.5008px;
  width: 100%;
  background: #fff;
  transition: all .5s;
}

.m-bm-head .m-bm-head-box .m-bm-navbtn span {
  margin: 4.5008px 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 {
  position: relative;
}

.m-bm-nav > li:not(:nth-last-child(1)) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.m-bm-nav > li > a {
  display: block;
  line-height: 50px;
  font-size: 14px;
  color: #1B2756;
  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(27, 39, 86, 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;
  color: #1B2756;
}

.m-bm-nav > li .sec a {
  display: block;
  font-size: 12px;
  color: #1B2756;
  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: #1B2756;
}

.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 .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 */
@keyframes slideVertical {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(150%);
  }
}

.pc-banner {
  width: 100%;
  position: fixed;
  top: 0;
  overflow: hidden;
}

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

.pc-banner .mySwipera .swiper-pagination {
  position: absolute;
  bottom: 5rem;
  z-index: 9999;
  left: 5%;
  text-align: left;
}

.pc-banner .mySwipera .swiper-pagination .swiper-pagination-bullet {
  width: 3rem;
  height: .25rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: unset;
}

.pc-banner .mySwipera .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #006EFF 1.55%, #00B4E0 51.55%, #00BBD2 59.55%, #00D4A3 87.55%, #00DE92 101.55%);
}

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

.pc-banner .mySwipera .swiper-slide .pc_show {
  display: block;
}

.pc-banner .mySwipera .swiper-slide .m_show {
  display: none;
}

.pc-banner .mySwipera .swiper-slide.swiper-slide-active .img::before {
  width: 100%;
}

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

.pc-banner .mySwipera .swiper-slide .img::before {
  content: '';
  display: block;
  width: 0;
  height: 4rem;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%), #1B2756;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 2s;
}

.pc-banner .mySwipera .swiper-slide .img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pc-banner .mySwipera .swiper-slide .img ul {
  position: absolute;
  left: 0%;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.pc-banner .mySwipera .swiper-slide .img ul li {
  width: 1.2px;
  height: 100%;
  background-color: #fff;
  margin: 0 .5625rem;
  position: relative;
}

.pc-banner .mySwipera .swiper-slide .img ul li:nth-child(1)::before, .pc-banner .mySwipera .swiper-slide .img ul li:nth-child(2)::before, .pc-banner .mySwipera .swiper-slide .img ul li:nth-child(3)::before, .pc-banner .mySwipera .swiper-slide .img ul li:nth-child(4)::before, .pc-banner .mySwipera .swiper-slide .img ul li:nth-child(5)::before, .pc-banner .mySwipera .swiper-slide .img ul li:nth-child(6)::before, .pc-banner .mySwipera .swiper-slide .img ul li:nth-child(7)::before, .pc-banner .mySwipera .swiper-slide .img ul li:nth-child(8)::before {
  animation: slideVertical 3s ease-in-out infinite alternate;
}

.pc-banner .mySwipera .swiper-slide .img ul li:nth-child(3), .pc-banner .mySwipera .swiper-slide .img ul li:nth-child(5), .pc-banner .mySwipera .swiper-slide .img ul li:nth-child(6), .pc-banner .mySwipera .swiper-slide .img ul li:nth-child(7) {
  width: .1875rem;
}

.pc-banner .mySwipera .swiper-slide .img ul li:nth-child(4) {
  width: .2625rem;
}

.pc-banner .mySwipera .swiper-slide .img ul li:nth-child(1)::before {
  content: '';
  display: block;
  width: .4375rem;
  height: 18.375rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.pc-banner .mySwipera .swiper-slide .img ul li:nth-child(2)::before {
  content: '';
  display: block;
  width: .4375rem;
  height: 24.0625rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.2s;
}

.pc-banner .mySwipera .swiper-slide .img ul li:nth-child(3)::before {
  content: '';
  display: block;
  width: 7px;
  height: 29.625rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.4s;
}

.pc-banner .mySwipera .swiper-slide .img ul li:nth-child(4)::before {
  content: '';
  display: block;
  width: .4375rem;
  height: 35.1875rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.6s;
}

.pc-banner .mySwipera .swiper-slide .img ul li:nth-child(5)::before {
  content: '';
  display: block;
  width: .375rem;
  height: 34.9375rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.8s;
}

.pc-banner .mySwipera .swiper-slide .img ul li:nth-child(6)::before {
  content: '';
  display: block;
  width: .375rem;
  height: 29.375rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.6s;
}

.pc-banner .mySwipera .swiper-slide .img ul li:nth-child(7)::before {
  content: '';
  display: block;
  width: .375rem;
  height: 23.8125rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.4s;
}

.pc-banner .mySwipera .swiper-slide .img ul li:nth-child(8)::before {
  content: '';
  display: block;
  width: .375rem;
  height: 18.1875rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

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

.pc-banner .mySwipera .swiper-slide .img > img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.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 .ban_ul {
  position: relative;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li {
  display: flex;
  align-items: center;
  position: absolute;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li .yuan {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  border: 4px solid rgba(255, 255, 255, 0.7);
  margin-right: .5rem;
  position: relative;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li .yuan::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: inherit;
  transform: translate(-50%, -50%);
  animation: ripple 2s infinite;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:hover .text_box, .pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li.active .text_box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 9;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li .text_box {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateY(10px);
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li .text_box::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: calc(100% + .1875rem);
  height: calc(100% + .1875rem);
  border-radius: .625rem;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li .text_box::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  transform: translate3d(0, 0, 0) scale(0.85);
  filter: blur(0.3125rem);
  z-index: 1;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li .text_box .text {
  color: #333;
  font-size: 1.125rem;
  font-weight: 400;
  padding: .625rem 1.125rem;
  position: relative;
  border-radius: .625rem;
  background-color: #fff;
  z-index: 2;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li .text_box .text a {
  color: #333;
  font-size: 1.125rem;
  font-weight: 400;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li .text_box .text a:hover {
  color: #006EFF;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(1) {
  top: 52%;
  left: 15%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(2) {
  bottom: 5%;
  left: 15%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(3) {
  top: 71%;
  left: 18%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(4) {
  top: 85%;
  left: 19%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(5) {
  top: 89%;
  left: 23%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(6) {
  top: 74%;
  left: 24%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(7) {
  top: 34%;
  left: 21%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(8) {
  top: 62%;
  left: 32%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(9) {
  top: 61%;
  left: 37%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(10) {
  top: 83%;
  left: 37%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(11) {
  top: 25%;
  left: 31%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(12) {
  top: 32%;
  left: 51%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(13) {
  top: 53%;
  left: 68%;
}

.pc-banner .mySwipera .swiper-slide .ban_ul .dian_ul li:nth-child(14) {
  top: 40%;
  left: 88%;
}

.pc-banner .mySwipera .swiper-slide .text_con {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.pc-banner .mySwipera .swiper-slide .text_con h3 {
  font-family: "Alimama FangYuanTi VF";
  font-size: 3.375rem;
  font-weight: 600;
  font-variation-settings: 'BEVL' 1;
  color: #fff;
}

.pc-banner .mySwipera .swiper-slide .text_con > p {
  margin-top: .625rem;
  color: #FFF;
  font-family: 'Montserrat';
  font-size: 30px;
  font-weight: 400;
}

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

.pc-banner .mySwipera .banwez1 {
  width: 40%;
  height: 100%;
  z-index: 99;
  color: #5D5D5D;
  padding-left: 5%;
  opacity: 1;
  transition: all .4s;
  display: table;
}

.pc-banner .mySwipera .banwez1 .cont-pa {
  display: table-cell;
  vertical-align: middle;
}

.pc-banner .mySwipera .banwez1 .cont-pa .tit {
  margin-top: 10%;
  font-family: "Alimama FangYuanTi VF";
  font-size: 3.375rem;
  font-weight: 500;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variation-settings: 'BEVL' 1;
}

@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 {
  margin-top: 40%;
  color: #1B2756;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2;
}

.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: .4rem;
  border-radius: 50%;
  background: white;
  transform: translateX(-50%);
  animation: scroll2 1s linear infinite;
}

@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 {
  /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
  0% {
    transform: scale(1);
    /*开始为原始大小*/
  }
  25% {
    transform: scale(1.1);
    /*放大1.1倍*/
  }
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.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: 40px;
  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: 3.375rem;
  line-height: 1.25em;
}

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

.title1.bs {
  color: #fff;
}

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

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

.public_text {
  width: fit-content;
  margin: 0 auto;
}

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

.public_text .p:not(:first-child) {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #182653;
  z-index: 5;
}

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

.social-share .social-share-icon {
  background: #f5f5f5;
  border: none;
  color: rgba(27, 39, 86, 0.7);
  width: 2.8125rem;
  height: 2.8125rem;
  line-height: 2.8125rem;
}

.foot-fot {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
}

.foot-fot .top_flex {
  padding-top: 4.375rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.foot-fot .top_flex .logo {
  width: 18.75rem;
}

.foot-fot .top_flex .le span {
  color: #1B2756;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
}

.foot-fot .top_center {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.foot-fot .top_center .foot_nav {
  display: flex;
  justify-content: space-between;
}

.foot-fot .top_center .foot_nav > li.last > ul > li {
  display: flex;
  align-items: center;
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6875rem;
}

.foot-fot .top_center .foot_nav > li.last > ul > li .icon {
  width: .875rem;
  margin-right: .375rem;
}

.foot-fot .top_center .foot_nav > li .tt {
  color: #1B2756;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
}

.foot-fot .top_center .foot_nav > li .tt a {
  color: #1B2756;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 500;
}

.foot-fot .top_center .foot_nav > li > ul {
  margin-top: .875rem;
}

.foot-fot .top_center .foot_nav > li > ul li a {
  color: rgba(27, 39, 86, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.foot-fot .top_center .foot_nav > li > ul li:hover a {
  color: #007bff;
}

.foot-fot .foota1 .foot_flex {
  display: flex;
  justify-content: space-between;
}

.foot-fot .foota1 .foot_flex .left {
  width: 34%;
}

.foot-fot .foota1 .foot_flex .left .tit {
  color: #333;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.foot-fot .foota1 .foot_flex .left .subtit {
  color: rgba(51, 51, 51, 0.4);
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.foot-fot .foota1 .foot_flex .left .inpt {
  border-bottom: 1px solid #333333;
  padding-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot-fot .foota1 .foot_flex .left .inpt input {
  width: 100%;
  color: rgba(51, 51, 51, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.125rem;
  border: none;
}

.foot-fot .foota1 .foot_flex .left .inpt i {
  font-size: 1.25rem;
  color: #333;
  opacity: .7;
}

.foot-fot .foota1 .foot_flex .right {
  flex: 1;
}

.foot-fot .foota1 .foot_flex .right .flex_menu {
  display: flex;
  justify-content: center;
}

.foot-fot .foota1 .foot_flex .right .flex_menu .le_menu {
  padding-right: 3.75rem;
  border-right: 1px solid rgba(51, 51, 51, 0.2);
}

.foot-fot .foota1 .foot_flex .right .flex_menu .le_menu .tt {
  color: rgba(51, 51, 51, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.foot-fot .foota1 .foot_flex .right .flex_menu .le_menu ul li a {
  color: #333;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.foot-fot .foota1 .foot_flex .right .flex_menu .le_menu ul li.active a, .foot-fot .foota1 .foot_flex .right .flex_menu .le_menu ul li:hover a {
  font-size: 1.25rem;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.foot-fot .foota1 .foot_flex .right .flex_menu .ri_menu {
  padding-left: 3.4375rem;
}

.foot-fot .foota1 .foot_flex .right .flex_menu .ri_menu ul {
  display: none;
}

.foot-fot .foota1 .foot_flex .right .flex_menu .ri_menu ul.active {
  display: block;
}

.foot-fot .foota1 .foot_flex .right .flex_menu .ri_menu ul li a {
  color: rgba(51, 51, 51, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.foot-fot .foota1 .foot_flex .right .flex_menu .ri_menu ul li:hover a {
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.foot-fot .foota1 .foot2_flex {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.foot-fot .foota1 .foot2_flex .title {
  color: #333;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.foot-fot .foota1 .foot2_flex .contact_ul {
  margin-top: 1rem;
}

.foot-fot .foota1 .foot2_flex .contact_ul li {
  color: rgba(51, 51, 51, 0.7);
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875rem;
}

.foot-fot .foota1 .foot2_flex .social-share .social-share-icon {
  background: #f5f5f5;
  border: none;
  color: #a7a7a7;
}

.foot-fot .foota1 .logo {
  width: 18.75rem;
}

.foot-fot .foota2 {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: rgba(27, 39, 86, 0.7);
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875rem;
  padding: 1.4375rem 0;
  position: relative;
}

.foot-fot .foota2 img {
  margin-left: var(--cbasta);
  padding-bottom: 1.8125rem;
}

.foot-fot .foota2 a {
  color: rgba(27, 39, 86, 0.7);
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875rem;
  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: var(--color-zt);
}

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

.foot-fot .foota2 a:hover {
  color: var(--color-zt);
}

.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;
}

.zd_erha {
  position: fixed;
  right: 1.5%;
  bottom: 10%;
  z-index: 999;
}

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

.zd_erha .aat_list li {
  position: relative;
}

.zd_erha .aat_list li.sunny {
  margin-bottom: .875rem;
}

.zd_erha .aat_list li.sunny > a {
  width: 3.5625rem;
  height: 11.1875rem;
  border-radius: 60px;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%), #FFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.zd_erha .aat_list li.sunny > a .icon {
  margin: 0 auto;
}

.zd_erha .aat_list li.sunny > a .text {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
}

.zd_erha .aat_list li > a {
  display: block;
  width: 100%;
  position: relative;
  border: 1px solid #00aae4;
  background: #fff;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  box-shadow: 0 0.125rem 1rem 0.125rem rgba(0, 20, 60, 0.2);
}

.zd_erha .aat_list li > a i {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  color: #00aae4;
  font-size: 1.125rem;
}

.zd_erha .aat_list li > a i img {
  height: 1.875rem;
}

.zd_erha .aat_list li .erghgsa {
  position: absolute;
  z-index: -1;
  padding: 0.5em 1.5rem;
  width: auto;
  text-align: center;
  right: calc(110% + 5px);
  top: 10%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(110%);
  transition: all .7s;
  box-shadow: 0 4px 20px 4px rgba(0, 20, 60, 0.2);
  color: #333;
  font-size: 1.125rem;
  background: #fff;
  border-radius: .4rem;
  white-space: nowrap;
}

.zd_erha .aat_list li .erghgsb {
  width: 7rem;
  padding: .3rem;
}

.zd_erha .aat_list li .erghgsb img {
  width: 100%;
}

.zd_erha .aat_list li:hover .erghgsa {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*内页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: 2.4375rem;
  height: 2.4375rem;
  border-radius: 50%;
  border: 1px solid #DBDBDB;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 400;
}

.pagination > li:hover {
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
  color: #fff;
  text-align: center;
}

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

.pagination > li.active {
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
  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;
  line-height: 2.375rem;
}

.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: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
}

.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;
}

.xw_ny_banner {
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%), rgba(27, 39, 86, 0.7);
  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 2.5rem/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.125rem/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.125rem/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: .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 {
  border-radius: .625rem;
  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 .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*/
.nbanner {
  position: relative;
}

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

.nbanner .img img {
  width: 100%;
}

.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 {
  font-size: 3rem;
  line-height: 1.5em;
}

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

.nbanner .nbanner-wen1 .banner-cont .p2 {
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.5em;
}

@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;
}

.n_mbx {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
}

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

.n_mbx .tit {
  color: #575757;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1em;
  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;
  display: flex;
}

.n_mbx .n_src li {
  flex: 1;
  display: inline-block;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
}

.n_mbx .n_src li:not(:nth-last-child(1)) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

.n_mbx .n_src li a {
  display: block;
  color: #1b2756;
  font-size: 1rem;
  line-height: 4.375rem;
  font-weight: 500;
  position: relative;
  transition: all .6s;
}

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

.n_mbx .n_src li:hover a, .n_mbx .n_src li.active a {
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%), rgba(27, 39, 86, 0.7);
  color: #fff;
}

.flzs-ban.Header-show {
  position: fixed;
  bottom: auto;
  top: var(--head-height);
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(0.625rem);
  padding: .625rem 0;
  -webkit-animation: sticky 1s;
  -moz-animation: sticky 1s;
  -o-animation: sticky 1s;
  animation: sticky 1s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.flzs-ban.Header-show .n_src {
  justify-content: center;
}

.flzs-ban.Header-show .n_src li {
  background-color: unset;
  flex: unset;
  padding: 0 1.875rem;
}

.flzs-ban.Header-show .n_src li.active, .flzs-ban.Header-show .n_src li:hover {
  background: unset !important;
}

.flzs-ban.Header-show .n_src li.active a, .flzs-ban.Header-show .n_src li:hover a {
  color: #006EFF;
  background: unset !important;
}

.flzs-ban.Header-show .n_src li a {
  line-height: 2rem;
}

.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);
  }
}

.all_title {
  position: relative;
  padding-bottom: .9375rem;
}

.all_title.white h3,
.all_title.white p {
  color: #fff;
}

.all_title.left h3,
.all_title.left p {
  text-align: left;
}

.all_title.left::before {
  left: 0;
  transform: unset;
}

.all_title::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: .1875rem;
  background: linear-gradient(90deg, #00DA99 0%, #0170FF 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.all_title h3 {
  color: #1B2756;
  text-align: center;
  font-family: "Alimama FangYuanTi VF";
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 4.375rem;
  font-variation-settings: 'BEVL' 1;
}

.all_title p {
  color: #1B2756;
  font-family: Montserrat;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}

#mainVisionIntro {
  position: relative;
  width: 100%;
}

#mainVisionIntro .vision-contents {
  margin-top: 100vh;
  margin-top: 100svh;
  border-top-left-radius: 2.4rem;
  border-top-right-radius: 2.4rem;
  overflow: hidden;
  background-color: #ffffff;
}

@media screen and (max-width: 1024px) {
  #mainVisionIntro .vision-contents {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
}

#mainVisionIntro .vision-contents .head_box {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  justify-content: center;
  padding-top: 7.375rem;
}

@media screen and (min-width: 1921px) {
  #mainVisionIntro .vision-contents .head_box {
    padding-top: 5rem;
  }
}

@media screen and (max-width: 1024px) {
  #mainVisionIntro .vision-contents .head_box {
    padding-top: 30px;
    height: auto;
  }
}

#mainVisionIntro .vision-contents h3 b {
  color: #0045C9;
}

#mainVisionIntro .vision-contents .vision-text-motion {
  position: relative;
}

@media screen and (max-width: 1024px) {
  #mainVisionIntro .vision-contents .vision-text-motion {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 7.2rem;
    padding-bottom: 7.2rem;
  }
}

#mainVisionIntro .vision-contents .vision-text-motion .btn {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 5.2rem;
}

@media screen and (max-width: 1024px) {
  #mainVisionIntro .vision-contents .vision-text-motion .btn {
    position: relative;
    top: unset;
    left: unset;
    transform: translateX(0);
    margin-top: 2rem;
  }
}

#mainVisionIntro .vision-contents .vision-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#mainVisionIntro .vision-contents .text-motion {
  position: relative;
}

@media screen and (max-width: 1024px) {
  #mainVisionIntro .vision-contents .text-motion {
    padding-left: 0;
  }
}

#mainVisionIntro .vision-contents .text-motion .img-wrap {
  position: absolute;
  top: 1.875rem;
  width: 17.1rem;
  height: 9rem;
  border-radius: .6rem;
  overflow: hidden;
  transform-origin: center center;
  z-index: 222;
}

#mainVisionIntro .vision-contents .text-motion .img-wrap1 {
  width: 17.1rem;
  height: 9rem;
  border-radius: .6rem;
  overflow: hidden;
  transform-origin: center center;
  z-index: 1;
  text-align: center;
  margin: 1.875rem auto;
  opacity: 0;
}

#mainVisionIntro .vision-contents .text-motion .img-wrap1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  #mainVisionIntro .vision-contents .text-motion .img-wrap {
    display: none;
  }
}

#mainVisionIntro .vision-contents .title-ax {
  text-align: center;
  color: rgba(27, 39, 86, 0.7);
  font-family: Inter;
  font-size: 1.6875rem;
  font-weight: 400;
  line-height: 2.8125rem;
}

#mainVisionIntro .vision-contents .text-motion .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#mainVisionIntro .vision-contents .text-motion .img-wrap .lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

#mainVisionIntro .vision-contents .text-motion .img-wrap .lines .line-area {
  position: relative;
  width: 33.333%;
  height: 100%;
}

#mainVisionIntro .vision-contents .text-motion .img-wrap .lines .line-area .line {
  position: absolute;
  right: 0;
  display: inline-block;
  width: 1px;
  height: 0;
  background-color: rgba(255, 255, 255, 0.3);
}

#mainVisionIntro .vision-contents .text-motion .img-wrap .lines .line-area .line.top {
  top: 0;
}

#mainVisionIntro .vision-contents .text-motion .img-wrap .lines .line-area .line.bot {
  bottom: 0;
}

#mainVisionIntro .vision-contents .text-motion h3 {
  padding-left: 3rem;
}

@media screen and (max-width: 1024px) {
  #mainVisionIntro .vision-contents .text-motion h3 {
    padding-left: 0;
  }
}

#mainVisionIntro .tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

@media screen and (min-width: 1025px) {
  #mainVisionIntro .tl .tl-img {
    height: 100vh;
  }
  #mainVisionIntro .tl .tl-list {
    height: 50vh;
  }
}

@media screen and (max-width: 1024px) {
  #mainVisionIntro .tl {
    top: -6rem;
    padding-top: 6rem;
  }
}

#mainTeam {
  position: absolute;
  top: 7.375rem;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  z-index: 999999;
}

@media screen and (min-width: 1921px) {
  #mainTeam {
    top: 8.7rem;
  }
}

#mainTeam .wh {
  padding: 0 5%;
}

@media screen and (max-width: 1024px) {
  #mainTeam {
    position: relative;
    top: unset;
    left: unset;
    height: auto;
    opacity: 1;
    pointer-events: auto;
  }
}

#mainTeam .team-content {
  position: relative;
  width: 100%;
  height: 48rem;
}

@media screen and (max-width: 1440px) {
  #mainTeam .team-content {
    height: 44rem;
  }
}

#mainTeam .team-list {
  position: relative;
  display: flex;
  height: 100%;
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  #mainTeam .team-list {
    flex-direction: column;
    gap: 1.6rem;
  }
}

#mainTeam .team-list .team-list-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 33.333%;
  height: 100%;
  padding: 0 3.625rem;
  padding-bottom: 4.75rem;
  overflow: hidden;
}

#mainTeam .team-list .team-list-item.active .info .btn {
  background-color: #fff;
  opacity: 1;
}

#mainTeam .team-list .team-list-item.active .info .btn i {
  color: #00b4e0;
}

@media screen and (max-width: 1440px) {
  #mainTeam .team-list .team-list-item {
    padding: 0 2.6rem;
    padding-bottom: 4rem;
  }
}

#mainTeam .team-list .team-list-item::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: ease 0.3s;
}

@media screen and (max-width: 1024px) {
  #mainTeam .team-list .team-list-item::after {
    opacity: 1;
  }
}

#mainTeam .team-list .team-list-item.show::after {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  #mainTeam .team-list .team-list-item {
    width: 100%;
    height: 40rem;
    border-radius: 1rem;
    overflow: hidden;
    padding: 3.2rem;
  }
}

@media screen and (max-width: 600px) {
  #mainTeam .team-list .team-list-item {
    padding: 2.4rem;
  }
}

#mainTeam .team-list .team-list-item:nth-child(1),
#mainTeam .team-list .team-list-item:nth-child(2) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

#mainTeam .team-list .team-list-item:nth-child(1) {
  border-top-left-radius: clamp(1rem, 0.625vw, 1.2rem);
  border-bottom-left-radius: clamp(1rem, 0.625vw, 1.2rem);
}

#mainTeam .team-list .team-list-item:nth-child(1) .logo {
  width: 15.9rem;
  height: auto;
}

@media screen and (max-width: 1024px) {
  #mainTeam .team-list .team-list-item:nth-child(1) .logo {
    width: 11.5rem;
  }
}

#mainTeam .team-list .team-list-item:nth-child(2) .logo {
  width: 12.5rem;
  height: auto;
}

@media screen and (max-width: 1024px) {
  #mainTeam .team-list .team-list-item:nth-child(2) .logo {
    width: 9.4rem;
  }
}

#mainTeam .team-list .team-list-item:nth-child(3) {
  border-top-right-radius: clamp(1rem, 0.625vw, 1.2rem);
  border-bottom-right-radius: clamp(1rem, 0.625vw, 1.2rem);
}

#mainTeam .team-list .team-list-item:nth-child(3) .logo {
  width: 16.3rem;
  height: auto;
}

@media screen and (max-width: 1024px) {
  #mainTeam .team-list .team-list-item:nth-child(3) .logo {
    width: 11.9rem;
  }
}

#mainTeam .team-list .team-list-item .bg {
  display: none;
}

@media screen and (max-width: 1024px) {
  #mainTeam .team-list .team-list-item .bg {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
  }
  #mainTeam .team-list .team-list-item .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

#mainTeam .team-list .info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  color: #ffffff;
  z-index: 2;
}

#mainTeam .team-list .info .info-text {
  flex: 1;
  padding-right: 2.25rem;
}

#mainTeam .team-list .info .btn {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: .625rem;
  border: 1px solid #FFF;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mainTeam .team-list .info .btn i {
  color: #fff;
  font-size: 1.375rem;
}

@media screen and (max-width: 1025px) {
  #mainTeam .team-list .info {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 1024px) {
  #mainTeam .team-list .info {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
  }
}

#mainTeam .team-list .info .icon {
  width: 4.625rem;
  height: 4.625rem;
}

#mainTeam .team-list .info h4 {
  margin-top: .625rem;
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 700;
}

#mainTeam .team-list .info p {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  margin-top: .5rem;
}

@media screen and (max-width: 1440px) {
  #mainTeam .team-list .info h4 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  #mainTeam .team-list .info h4 {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 600px) {
  #mainTeam .team-list .info h4 {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 1024px) {
  #mainTeam .team-list .info h4 {
    font-size: 2.8rem;
    margin-top: 1.6rem;
    padding-bottom: 1.2rem;
  }
}

#mainTeam .team-list .info h5 {
  height: 0;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  font-size: 1.5rem;
}

#mainTeam .team-list .info h5 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.25rem;
}

#mainTeam .team-list .info h5 ul li {
  position: relative;
  transition: all .6s;
}

#mainTeam .team-list .info h5 ul li a {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.5rem;
}

#mainTeam .team-list .info h5 ul li:hover::before, #mainTeam .team-list .info h5 ul li:nth-child(1)::before {
  background: linear-gradient(90deg, #00DA99 0%, #0170FF 100%);
}

#mainTeam .team-list .info h5 ul li::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .6s;
}

@media screen and (max-width: 1024px) {
  #mainTeam .team-list .info h5 {
    height: auto;
  }
}

@media screen and (max-width: 1363px) and (min-width: 1025px) {
  #mainTeam .team-list .info h5 br {
    display: none;
  }
}

#mainTeam .team-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}

@media screen and (max-width: 1024px) {
  #mainTeam .team-bg {
    display: none;
  }
}

#mainTeam .team-bg .bg-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

#mainTeam .team-bg .bg-inner .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: ease 0.5s;
}

#mainTeam .team-bg .bg-inner .bg.active {
  opacity: 1;
  z-index: 1;
}

#mainTeam .team-bg .bg-inner .bg img,
#mainTeam .team-bg .bg-inner .bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-about {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.index-about .indexabout1 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #fff;
}

.index-about .indexabout1 .cn0 {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 156.25rem;
  height: 156.25rem;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.index-about .indexabout1 .cn0.on {
  width: 56.25rem;
  height: 56.25rem;
}

.index-about .indexabout1 .cn0.on2 {
  width: 28.75rem;
  height: 28.75rem;
  opacity: 0;
}

.index-about .indexabout1 .cn0 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}

.index-about .indexabout1 .cn1 {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 70%;
  opacity: 0;
  transform: translate(-50%, -50%);
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.index-about .indexabout1 .cn1.on {
  top: 50%;
  opacity: 1;
}

.index-about .indexabout1 .cn1 span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 var(--cbasta);
}

.index-about .indexabout1 .cn1 span:nth-child(1) {
  font-size: 2rem;
  text-shadow: 0px 29px rgba(212, 223, 241, 0.04);
  opacity: 0.5;
  color: #fff;
}

.index-about .indexabout1 .cn1 span:nth-child(2) {
  font-size: 2rem;
  text-shadow: 0px 0px #000;
  opacity: 0;
  color: #fff;
}

.index-about .indexabout1 .cn1 img {
  opacity: .1;
}

.index-about .indexabout1 .cn2 {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%) scale(1.5);
  transition: all 0.7s ease-in-out;
  width: 38vw;
  height: 38vw;
  position: relative;
  z-index: 999;
}

.index-about .indexabout1 .cn2 .logo {
  width: 77%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  transition: all 0.7s ease-in-out;
  z-index: 999;
}

.index-about .indexabout1 .cn2 .logo.on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.index-about .indexabout1 .cn2 .color1 {
  width: 38vw;
  height: 38vw;
  opacity: 0.15;
  background: #1A4795;
  position: absolute;
  top: 0;
  right: 39px;
  z-index: 3;
  pointer-events: none;
  border-radius: 50%;
  -webkit-filter: blur(60px);
  filter: blur(60px);
}

.index-about .indexabout1 .cn2 .color2 {
  width: 40vw;
  height: 40vw;
  opacity: 0.05;
  /* background: #43028C; */
  position: absolute;
  top: 85px;
  left: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  -webkit-filter: blur(60px);
  filter: blur(60px);
}

.index-about .indexabout1 .cn2 .canvas {
  width: 40vw;
  height: 40vw;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.index-about .indexabout1 .cn2 .canvas canvas {
  width: 100%;
  height: 100%;
}

.index-about .indexabout1 .cn2 .quan {
  position: absolute;
  width: 81%;
  height: 81%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  z-index: -1;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%), #FFF;
}

.index-about .indexabout1 .cn2 .quan2 {
  position: absolute;
  width: 90%;
  height: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
  z-index: -1;
  border: 1px solid #FFF;
  background: radial-gradient(102.44% 102.44% at 21.14% -3.52%, rgba(255, 255, 255, 0.2) 0%, rgba(0, 148, 239, 0.2) 100%);
}

.index-about .indexabout1 .cn2.on {
  transform: translate(-50%, -50%) scale(0.9);
  top: 50%;
  opacity: 1;
}

.index-about .indexabout1 .subtit {
  margin-top: 1.0625rem;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.index-about .indexabout1 .more-b {
  margin: 1.75rem auto 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.7);
}

.index-about .indexabout2 {
  position: absolute;
  bottom: 0;
  width: fit-content;
  z-index: 5;
  padding-top: 1rem;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-about .indexabout2 .subtit {
  margin-top: 1.0625rem;
  text-align: center;
  font-family: "Noto Sans SC";
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.5rem;
  color: #1b2756;
}

.index-about .indexabout2 .more-b {
  margin: 1.75rem auto 0;
}

.font36 {
  font-size: 2.25rem;
}

.font-b {
  font-weight: 600;
}

.index-about .indexabout2 .cn3 .cn3a {
  text-align: center;
  color: #000000;
  line-height: 1em;
  z-index: 99;
  position: relative;
  opacity: 1;
  top: 0%;
  transition: all 0.4s ease-in-out;
}

.index-about .indexabout2 .cn3 .cn3a.on {
  top: 0%;
  opacity: 0;
}

@media (max-width: 991px) {
  .index-about .indexabout2 .cn3 .cn3a {
    font-size: .5rem;
  }
}

.index-about .indexabout1 .cn3 .cn3b {
  z-index: 2;
  opacity: 1;
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: .4rem;
  opacity: 0;
  top: .3rem;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .index-about .indexabout1 .cn3 .cn3b {
    margin-top: .7rem;
  }
}

.index-about .indexabout1 .cn3 .cn3b.on {
  top: 0;
  opacity: 1;
}

.index-about .indexabout2 .cn4 {
  margin: 2rem auto 0;
  width: 100vw;
  position: absolute;
  top: 40%;
  z-index: 9;
  opacity: 1;
}

.index-about .indexabout2 .cn4 .wh_flex,
.index-about .indexabout3 .cn4 .wh_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3.125rem var(--cbasta);
}

.index-about .indexabout2 .cn4 .wh_flex .cn4d:nth-child(1),
.index-about .indexabout3 .cn4 .wh_flex .cn4d:nth-child(1) {
  opacity: 0;
  position: relative;
  left: -50%;
  transition: all 0.4s ease-in-out;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4d:nth-child(1).on,
.index-about .indexabout3 .cn4 .wh_flex .cn4d:nth-child(1).on {
  left: 0;
  opacity: 1;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4d:nth-child(2),
.index-about .indexabout3 .cn4 .wh_flex .cn4d:nth-child(2) {
  opacity: 0;
  position: relative;
  right: -50%;
  transition: all 0.4s ease-in-out;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4d:nth-child(2).on,
.index-about .indexabout3 .cn4 .wh_flex .cn4d:nth-child(2).on {
  right: 0;
  opacity: 1;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4d .cn4e,
.index-about .indexabout3 .cn4 .wh_flex .cn4d .cn4e {
  position: relative;
  margin-bottom: .4rem;
  padding: 3rem 0;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4d .cn4e.on {
  top: 0;
  opacity: 1;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4d .cn4e:nth-child(1) {
  transition: all 0.4s 0.2s ease-in-out;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4d .cn4e:nth-child(2) {
  transition: all 0.4s 0.4s ease-in-out;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4d .cn4e:nth-child(3) {
  transition: all 0.4s 0.6s ease-in-out;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4d .cn4e:nth-child(4) {
  transition: all 0.4s 0.8s ease-in-out;
}

@media (max-width: 767px) {
  .index-about .indexabout2 .cn4 .wh_flex .cn4d .cn4e {
    width: 100%;
  }
}

.index-about .indexabout2 .cn4 .wh_flex .cn4d .cn4e .cn9::before {
  background-color: #d5d5d5;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4d .cn4e .cn9::after {
  background-color: #d5d5d5;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4f {
  width: 100%;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4f img {
  width: 100%;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4a,
.index-about .indexabout3 .cn4 .wh_flex .cn4a {
  align-items: center;
  width: 100%;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4a .cn4b,
.index-about .indexabout3 .cn4 .wh_flex .cn4a .cn4b {
  font-family: Montserrat;
  font-size: 4rem;
  font-weight: 600;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4a .cn4b div,
.index-about .indexabout3 .cn4 .wh_flex .cn4a .cn4b div {
  display: inline;
}

.index-about .indexabout2 .cn4 .wh_flex .cn4a .cn4c,
.index-about .indexabout3 .cn4 .wh_flex .cn4a .cn4c {
  color: rgba(27, 39, 86, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 700;
}

.index_three {
  background: #f4f7f9;
  position: relative;
  overflow: visible;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(40%);
  }
  100% {
    opacity: 0.7;
    transform: translateY(130%);
  }
}

.main-content__viusal {
  display: flex;
  width: 50%;
}

.main-content__viusal .big-image {
  width: 50vw;
  height: 100vh;
  left: 0;
  top: 0;
  position: absolute;
  overflow: hidden;
  transition: all .6s;
  z-index: 1;
}

.main-content__section02 .main-content__viusal.active .big-image {
  width: 21.1875rem;
  height: 19.75rem;
  left: var(--cbasta);
  top: 3.125rem;
}

.main-content__viusal .small-image {
  display: none;
  position: relative;
  z-index: 2;
  transition: all .6s;
}

.main-content__viusal .small-image .small-image__object {
  position: relative;
}

.main-content__viusal .small-image .small-image__object:hover .img::before {
  width: 100%;
}

.main-content__viusal .small-image .small-image__object:hover .img .icon img {
  opacity: 1;
}

.main-content__viusal .small-image .small-image__object:hover .img .i {
  opacity: 1;
}

.main-content__viusal .small-image .img .le {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.6875rem;
  font-weight: 500;
}

.main-content__viusal .small-image .img::before {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all .6s;
  opacity: 0.7;
}

.main-content__viusal .small-image .img .flex {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  justify-content: space-between;
  z-index: 99;
}

.main-content__viusal .small-image .img .icon {
  width: 3.125rem;
  height: 3.125rem;
}

.main-content__viusal .small-image .img .icon img {
  width: 100%;
  height: 100%;
  object-fit: unset;
  position: relative;
  padding: 0;
  opacity: 0;
}

.main-content__viusal .small-image .img .i {
  opacity: 0;
}

.main-content__viusal .small-image .img .i i {
  color: #fff;
  font-size: 1.5rem;
  opacity: .7;
}

.main-content__viusal .small-image.show {
  width: 100%;
  display: block;
  gap: 1.25rem;
  column-count: 2;
  /* 根据需要调整列数 使用这个属性就能实现----------------------------*/
  column-gap: 1.25rem;
  /* 列与列之间的间距 */
}

.main-content__viusal .small-image.show .small-image__object {
  position: relative;
  margin: 1.25rem 0;
}

.main-content__viusal .small-image.show .small-image__object .img {
  width: 100%;
  height: 100%;
}

.main-content__viusal .small-image.show .small-image__object .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-content__section02 {
  display: flex;
  justify-content: space-between;
  background: #f4f7f9;
  width: 100%;
  min-height: 100vh;
}

.main-content__viusal .big-image figcaption {
  position: absolute;
  left: 2.1875rem;
  bottom: 2.1875rem;
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.6875rem;
  font-weight: 500;
  opacity: 0;
  z-index: 99;
}

.main-content__viusal.active .big-image figcaption {
  opacity: 1;
  width: 70%;
}

.main-content__section02 .main-content__viusal .big-image.active {
  left: 0;
  right: inherit;
}

.main-content__text {
  width: 50%;
  padding-left: 14.375rem;
  position: sticky;
  top: 6.25rem;
  height: fit-content;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.main-content__text .text-inner .all_title h3,
.main-content__text .text-inner .all_title p {
  text-align: left;
}

.main-content__text .text-inner .all_title::before {
  left: 0;
  transform: unset;
}

.main-content__text .text-inner .desc {
  margin-top: 1.875rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.p_top {
  position: absolute;
  top: -6.25rem;
}

.index_four {
  position: relative;
  background-color: #fff;
  padding-top: 7.8125rem;
  padding-bottom: 9.125rem;
}

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

.index_four .grid_box .grid_item {
  border: 1px solid #EFEFEF;
  background: #FFF;
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
  border-radius: 1.875rem;
  overflow: hidden;
}

.index_four .grid_box .grid_item:hover {
  cursor: pointer;
}

.index_four .grid_box .grid_item:hover .over::before {
  width: 100%;
  z-index: 99;
}

.index_four .grid_box .grid_item:hover .text .time {
  color: #1B2756;
}

.index_four .grid_box .grid_item .over {
  position: relative;
}

.index_four .grid_box .grid_item .over::before {
  content: '';
  display: block;
  width: 0%;
  height: .625rem;
  background-image: url("https://cloud-1251007531.bcdn8.com/xiangjiang0905/uploads/20250927/694ce32de247db4f9803d097ab12e821.svg");
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .36s;
}

.index_four .grid_box .grid_item .text {
  padding: 2.3125rem 1.875rem 3.5625rem 1.8125rem;
}

.index_four .grid_box .grid_item .text h3 {
  color: #1B2756;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
  /* 160% */
}

.index_four .grid_box .grid_item .text .time {
  margin-top: .8125rem;
  color: #656876;
  text-align: justify;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6875rem;
  /* 168.75% */
}

.index_four .grid_box .grid_item .text .time i {
  font-size: 1.125rem;
  vertical-align: middle;
  margin-right: .5625rem;
}

.index_four .grid_box .grid_item .text .desc {
  margin-top: .5625rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.index_four .grid_box .grid_item.grid_last {
  padding: 2.0625rem .8125rem 2.5rem 2.375rem;
  background: #F8FAFB;
}

.index_four .grid_box .grid_item.grid_last ul {
  height: 26.875rem;
  overflow-y: auto;
  padding-right: 1.875rem;
}

.index_four .grid_box .grid_item.grid_last ul::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  background-color: #c9c9c9;
  width: 1px;
  position: absolute;
}

.index_four .grid_box .grid_item.grid_last ul::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 1px;
  /*高宽分别对应横竖滚动条的尺寸*/
}

.index_four .grid_box .grid_item.grid_last ul::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  display: block;
  width: 1px;
  height: 35px;
  background: linear-gradient(90deg, #00DA99 0%, #0170FF 100%);
}

.index_four .grid_box .grid_item.grid_last ul li {
  padding: 1.25rem 0;
}

.index_four .grid_box .grid_item.grid_last ul li h3 {
  color: #1B2756;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
}

.index_four .grid_box .grid_item.grid_last ul li .time {
  margin-top: .6875rem;
  color: #656876;
  text-align: justify;
  font-family: Montserrat;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6875rem;
}

.index_four .grid_box .grid_item.grid_last ul li .time i {
  margin-right: .5625rem;
  font-size: 1.125rem;
  vertical-align: middle;
}

@keyframes moveAnimation {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(-10%, -20%);
  }
  50% {
    transform: translate(-10%);
  }
  75% {
    transform: translate(-10%, 10%);
  }
  to {
    transform: translate(0);
  }
}

.index_six {
  position: relative;
  background: #f1f4f7;
}

.index_six .waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20%;
  z-index: 1;
  top: 0;
  height: 43.75rem !important;
  overflow: hidden;
}

.index_six .content {
  padding-top: 12.5rem;
  padding-bottom: 14.375rem;
  position: relative;
  z-index: 2;
}

.index_six .content .left {
  margin-right: 4.375rem;
}

.index_six .content .left .desc {
  margin-top: 7.5rem;
  color: rgba(27, 39, 86, 0.7);
  font-family: "Noto Sans SC";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.index_six .content .right {
  flex: 1;
  height: 55vh;
  position: relative;
}

.index_six .content .right ul > li {
  display: inline-block;
  position: absolute;
  z-index: 9;
}

.index_six .content .right ul > li:hover .logo {
  width: 7.5rem;
  height: 7.5rem;
}

.index_six .content .right ul > li:hover .logo::before {
  background: linear-gradient(90deg, #00DA99 0%, #0170FF 100%);
}

.index_six .content .right ul > li:hover .logo img {
  filter: brightness(0) invert(1);
}

.index_six .content .right ul > li .logo {
  border-radius: 50%;
  overflow: hidden;
  animation-name: moveAnimation;
  animation-duration: 10s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 5.5vw;
  height: 5.5vw;
  transition: all .6s;
}

.index_six .content .right ul > li .logo::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  transition: all .6s;
}

.index_six .content .right ul > li .logo img {
  width: 100%;
  position: relative;
  z-index: 3;
}

.index_six .content .right ul > li:nth-child(1) {
  left: 10%;
  top: 0%;
}

.index_six .content .right ul > li:nth-child(2) {
  left: 0;
  top: 30%;
}

.index_six .content .right ul > li:nth-child(2) .logo {
  animation-delay: 4s;
}

.index_six .content .right ul > li:nth-child(3) {
  left: 5%;
  top: 55%;
}

.index_six .content .right ul > li:nth-child(3) .logo {
  animation-delay: 2s;
}

.index_six .content .right ul > li:nth-child(4) {
  left: 20%;
  top: 35%;
}

.index_six .content .right ul > li:nth-child(4) .logo {
  animation-delay: 5s;
}

.index_six .content .right ul > li:nth-child(5) {
  left: 30%;
  top: 15%;
}

.index_six .content .right ul > li:nth-child(5) .logo {
  animation-delay: 6s;
}

.index_six .content .right ul > li:nth-child(6) {
  left: 26%;
  top: 60%;
}

.index_six .content .right ul > li:nth-child(6) .logo {
  animation-delay: 1s;
}

.index_six .content .right ul > li:nth-child(7) {
  left: 55%;
  top: 0%;
}

.index_six .content .right ul > li:nth-child(7) .logo {
  animation-delay: 8s;
}

.index_six .content .right ul > li:nth-child(8) {
  left: 45%;
  top: 30%;
}

.index_six .content .right ul > li:nth-child(8) .logo {
  animation-delay: 6s;
}

.index_six .content .right ul > li:nth-child(9) {
  left: 62%;
  top: 60%;
}

.index_six .content .right ul > li:nth-child(9) .logo {
  animation-delay: 9s;
}

.index_six .content .right ul > li:nth-child(10) {
  left: 75%;
  top: 10%;
}

.index_six .content .right ul > li:nth-child(10) .logo {
  animation-delay: 6s;
}

.index_six .content .right ul > li:nth-child(11) {
  left: 75%;
  top: 45%;
}

.index_six .content .right ul > li:nth-child(11) .logo {
  animation-delay: 7s;
}

.index_six .content .right ul > li:nth-child(12) {
  right: 0;
  top: 0%;
}

.index_six .content .right ul > li:nth-child(12) .logo {
  animation-delay: 3s;
}

.index_six .content .right ul > li:nth-child(13) {
  right: 0;
  top: 40%;
}

.index_six .content .right ul > li:nth-child(13) .logo {
  animation-delay: 2s;
}

.index_six .content .right ul > li:nth-child(14) {
  right: 10%;
  bottom: 5%;
}

.index_six .content .right ul > li:nth-child(14) .logo {
  animation-delay: 4s;
}

.index_six .content .right ul > li:nth-child(15) {
  left: 12%;
  bottom: 0;
}

.index_six .content .right ul > li:nth-child(15) .logo {
  animation-delay: 4s;
}

.index_six .content .right ul > li:nth-child(16) {
  left: 25%;
  top: -10%;
}

.index_six .content .right ul > li:nth-child(16) .logo {
  animation-delay: 4s;
}

.index_six .content .right ul > li:nth-child(17) {
  left: 40%;
  top: -10%;
}

.index_six .content .right ul > li:nth-child(17) .logo {
  animation-delay: 4s;
}

.index_six .content .right ul > li:nth-child(18) {
  left: 60%;
  top: 30%;
}

.index_six .content .right ul > li:nth-child(18) .logo {
  animation-delay: 7s;
}

.index_six .content .right ul > li:nth-child(19) {
  left: 45%;
  bottom: 25%;
}

.index_six .content .right ul > li:nth-child(19) .logo {
  animation-delay: 3s;
}

.index_six .content .right ul > li:nth-child(20) {
  left: 40%;
  bottom: 0%;
}

.index_six .content .right ul > li:nth-child(20) .logo {
  animation-delay: 5s;
}

.index_six .content .right ul > li:nth-child(21) {
  left: 60%;
  bottom: -5%;
}

.index_six .content .right ul > li:nth-child(21) .logo {
  animation-delay: 5s;
}

@media (min-width: 1921px) {
  .index-about .indexabout2 .cn4 .wh {
    padding-bottom: 5rem;
  }
}

.neibanner {
  position: relative;
}

.neibanner .neibanner_txt {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.neibanner .neibanner_txt h3 {
  color: #FFF;
  font-family: "Alimama FangYuanTi VF";
  font-variation-settings: 'BEVL' 1;
  font-size: 4rem;
}

.neibanner .neibanner_txt p {
  color: #FFF;
  font-size: 1.875rem;
  text-transform: capitalize;
}

.neibanner .neibanner_txt .desc {
  margin-top: 1.25rem;
  color: #FFF;
  font-size: 1.125rem;
}

.neibanner .neibanner_txt .desc p {
  color: #FFF;
  font-size: 1.125rem;
}

.neibanner .mbxdh {
  width: 100%;
  position: absolute;
  top: 6.25rem;
}

.mbxdh {
  color: #1b2756;
  font-size: .875rem;
  font-weight: 400;
  padding: 1.25rem 0;
  opacity: .8;
}

.mbxdh a {
  color: #1b2756;
  font-size: .875rem;
  font-weight: 400;
  opacity: .8;
}

.mbxdh span:nth-last-child(1) {
  display: none;
}

.mbxdh.black {
  color: #1B2756;
  opacity: .8;
}

.mbxdh.black a {
  color: #1B2756;
  opacity: .8;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}

@keyframes xiangxia {
  0% {
    transform: translateY(-0.625rem);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.625rem);
  }
}

.list_banner {
  position: relative;
}

.list_banner .mbxdh {
  width: 100%;
  position: absolute;
  top: 6.25rem;
}

.list_banner .scroll {
  position: absolute;
  width: 3.125rem;
  height: 3.125rem;
  bottom: 1.875rem;
  left: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: xiangxia 2s infinite;
}

.list_banner .scroll img {
  width: 1.875rem;
  filter: brightness(0) invert(1);
}

.list_banner .dian_ul li {
  display: flex;
  align-items: center;
  position: absolute;
}

.list_banner .dian_ul li .yuan {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  border: 4px solid rgba(255, 255, 255, 0.7);
  margin-right: .5rem;
  position: relative;
}

.list_banner .dian_ul li .yuan::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: inherit;
  transform: translate(-50%, -50%);
  animation: ripple 2s infinite;
}

.list_banner .dian_ul li:hover .text_box, .list_banner .dian_ul li.active .text_box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 9;
}

.list_banner .dian_ul li .text_box {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateY(10px);
}

.list_banner .dian_ul li .text_box::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: calc(100% + .1875rem);
  height: calc(100% + .1875rem);
  border-radius: .625rem;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
}

.list_banner .dian_ul li .text_box::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  transform: translate3d(0, 0, 0) scale(0.85);
  filter: blur(0.3125rem);
  z-index: 1;
}

.list_banner .dian_ul li .text_box .text {
  color: #333;
  font-size: 1.125rem;
  font-weight: 400;
  padding: .625rem 1.125rem;
  position: relative;
  border-radius: .625rem;
  background-color: #fff;
  z-index: 2;
}

.list_banner .dian_ul li .text_box .text a {
  color: #333;
  font-size: 1.125rem;
  font-weight: 400;
}

.list_banner .dian_ul li .text_box .text a:hover {
  color: #006EFF;
}

.list_banner .dian_ul li:nth-child(1) {
  top: 52%;
  left: 15%;
}

.list_banner .dian_ul li:nth-child(2) {
  bottom: 5%;
  left: 15%;
}

.list_banner .dian_ul li:nth-child(3) {
  top: 71%;
  left: 18%;
}

.list_banner .dian_ul li:nth-child(4) {
  top: 85%;
  left: 19%;
}

.list_banner .dian_ul li:nth-child(5) {
  top: 89%;
  left: 23%;
}

.list_banner .dian_ul li:nth-child(6) {
  top: 74%;
  left: 24%;
}

.list_banner .dian_ul li:nth-child(7) {
  top: 34%;
  left: 21%;
}

.list_banner .dian_ul li:nth-child(8) {
  top: 62%;
  left: 32%;
}

.list_banner .dian_ul li:nth-child(9) {
  top: 61%;
  left: 37%;
}

.list_banner .dian_ul li:nth-child(10) {
  top: 83%;
  left: 37%;
}

.list_banner .dian_ul li:nth-child(11) {
  top: 25%;
  left: 31%;
}

.list_banner .dian_ul li:nth-child(12) {
  top: 32%;
  left: 51%;
}

.list_banner .dian_ul li:nth-child(13) {
  top: 53%;
  left: 68%;
}

.list_banner .dian_ul li:nth-child(14) {
  top: 40%;
  left: 88%;
}

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

.list_product_one .content .grid_box .grid_item .title {
  color: #1B2756;
  text-align: justify;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 2.125rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.list_product_one .content .grid_box .grid_item .title::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: .1875rem;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%), #D9D9D9;
  position: absolute;
  bottom: 0;
  left: 0;
}

.list_product_one .content .grid_box .grid_item .desc {
  margin-top: .75rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_product_one .content .grid_box .grid_item .product-1-list .list-item-box.active, .list_product_one .content .grid_box .grid_item .product-1-list .list-item-box:hover {
  cursor: pointer;
}

.list_product_one .content .grid_box .grid_item .product-1-list .list-item-box.active .list-item, .list_product_one .content .grid_box .grid_item .product-1-list .list-item-box:hover .list-item {
  border-bottom: 1px solid rgba(27, 39, 86, 0.1);
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%), #D9D9D9;
  color: #fff;
}

.list_product_one .content .grid_box .grid_item .product-1-list .list-item-box .list-item {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 4rem;
  border-bottom: 1px solid rgba(27, 39, 86, 0.1);
  padding-left: 1.875rem;
  position: relative;
}

.list_product_one .content .grid_box .grid_item .product-1-list .list-item-box .list-item i {
  font-size: .75rem;
  color: #fff;
  position: absolute;
  right: 1.25rem;
  font-weight: 600;
}

.list_product_one .content .grid_box .grid_item .product-1-list .list-item-box .list-item::before {
  content: '';
  display: block;
  width: .8125rem;
  height: .06rem;
  border-radius: 1px;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
  position: absolute;
  left: 0;
  top: 1.875rem;
}

.list_product_one .content .grid_box .grid_item .product-1-list .list-item-box .product-1-sublist {
  border-bottom: 1px solid rgba(27, 39, 86, 0.1);
  background: #FFF;
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
}

.list_product_one .content .grid_box .grid_item .product-1-list .list-item-box .product-1-sublist a {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1rem;
  font-weight: 500;
  line-height: 4rem;
  border-bottom: 1px solid rgba(27, 39, 86, 0.1);
  padding-left: 4.375rem;
  position: relative;
}

.list_product_one .content .grid_box .grid_item .product-1-list .list-item-box .product-1-sublist a:hover {
  color: #006EFF;
}

.list_product_one .content .grid_box .grid_item .product-1-list .list-item-box .product-1-sublist a::before {
  content: '';
  display: block;
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  background-color: rgba(27, 39, 86, 0.7);
  position: absolute;
  top: 1.8125rem;
  left: 3.4375rem;
}

.list_product_two .bgimg {
  border-radius: 1.25rem;
  overflow: hidden;
}

.list_product_two .bgimg::before {
  content: '';
  display: block;
  width: 12%;
  height: 100%;
  background-image: url(https://cloud-1251007531.bcdn8.com/xiangjiang0905/uploads/20250927/b7206ac6a867f0a9ca1b40df3840d2d0.png);
  background-size: 100% 100%;
  position: absolute;
  right: 1rem;
  top: 0;
}

.list_product_two .bgimg .text_con {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  padding: 0 8.125rem;
}

.list_product_two .bgimg .text_con .all_title::before {
  display: none;
}

.list_product_two .bgimg .text_con .desc {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_product_two .bgimg .text_con .more-b.bs::after {
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
}

.show_product_one {
  padding-top: 6.25rem;
  padding-bottom: 12.1875rem;
  background-size: cover;
}

.show_product_one .content .title {
  color: #1B2756;
  font-family: "Alimama FangYuanTi VF";
  font-size: 3rem;
  font-weight: 600;
  font-variation-settings: 'BEVL' 1;
}

.show_product_one .content .titleen {
  color: #1B2756;
  font-family: 'Montserrat';
  font-size: 1.875rem;
  font-weight: 600;
  text-transform: capitalize;
}

.show_product_one .content .left .tit {
  color: #1B2756;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.125rem;
}

.show_product_one .content .left .desc {
  margin-top: .5625rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.show_product_one .content .left ul li .top_t {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(27, 39, 86, 0.1);
  padding: .8125rem 0;
}

.show_product_one .content .left ul li .top_t .le {
  display: flex;
}

.show_product_one .content .left ul li .top_t .le .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.show_product_one .content .left ul li .top_t .le .tt {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 700;
  padding-left: .8125rem;
}

.show_product_one .content .left ul li .top_t .ri i {
  font-size: .875rem;
  color: #1B2756;
  font-weight: 600;
}

.show_product_one .content .left ul li .con {
  padding-top: .625rem;
  padding-bottom: .625rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
  padding-left: 1.875rem;
}

.show_product_one .content .left ul li .con p {
  position: relative;
  padding-left: 1.875rem;
}

.show_product_one .content .left ul li .con p::before {
  content: '';
  display: block;
  width: .25rem;
  height: .25rem;
  border-radius: 50%;
  background-color: rgba(27, 39, 86, 0.7);
  position: absolute;
  left: .8125rem;
  top: .875rem;
}

.show_product_one .content .left .yy_desc {
  margin-top: 1.0625rem;
}

.show_product_one .content .left .yy_desc p {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
  position: relative;
  padding-left: 2.5rem;
}

.show_product_one .content .left .yy_desc p::before {
  content: '';
  display: block;
  width: 1.6875rem;
  height: 1.625rem;
  border-radius: 50%;
  background-image: url(../images/dui.svg);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: .3125rem;
}

.show_product_one .content .left .more-a i {
  font-size: 1.25rem;
}

.show_product_one .content .right .over {
  position: sticky;
  top: 6.25rem;
}

.show_product_two {
  padding-bottom: 7.5rem;
}

.show_product_two .swiper-button-prev,
.show_product_two .swiper-button-next {
  position: relative;
  margin-top: 0;
  left: unset;
  right: unset;
  top: unset;
  width: 3.5625rem;
  height: 3.5625rem;
  border-radius: .3125rem;
  background: #F4F7F9;
  margin: 0 .6875rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.show_product_two .swiper-button-prev i,
.show_product_two .swiper-button-next i {
  font-size: .875rem;
  font-weight: 600;
}

.show_product_two .content {
  mask: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.show_product_two .content .swiper_xgal {
  position: relative;
}

.show_product_two .content .swiper_xgal .swiper-slide {
  padding: 0 1.25rem;
}

.show_product_two .content .swiper_xgal .swiper-slide .xg_case {
  border-radius: 1.25rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
  border-radius: 1.25rem;
  overflow: hidden;
}

.show_product_two .content .swiper_xgal .swiper-slide .xg_case:hover .text h3 {
  color: #006EFF;
}

.show_product_two .content .swiper_xgal .swiper-slide .xg_case:hover .over::before {
  width: 100%;
}

.show_product_two .content .swiper_xgal .swiper-slide .xg_case .over {
  position: relative;
}

.show_product_two .content .swiper_xgal .swiper-slide .xg_case .over::before {
  content: '';
  display: block;
  width: 0%;
  height: .625rem;
  background-image: url("https://imgs-data-brwq.bcdn8.com/xiangjiang0816/uploads/rd/20250820141940.svg");
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .36s;
  z-index: 99;
}

.show_product_two .content .swiper_xgal .swiper-slide .xg_case .text {
  padding: 1.8125rem 2.625rem 1.8125rem 1.8125rem;
}

.show_product_two .content .swiper_xgal .swiper-slide .xg_case .text h3 {
  color: #1B2756;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
}

.show_product_two .content .swiper_xgal .swiper-slide .xg_case .text > p {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_case {
  background: #F4F7F9;
  padding-top: 6.625rem;
}

.list_case.pt50 {
  padding-top: 3.125rem;
}

.list_case .case_tab {
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_case .case_tab li {
  padding: 0 2.1875rem;
}

.list_case .case_tab li a {
  color: #1B2756;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  padding-bottom: .625rem;
  position: relative;
}

.list_case .case_tab li a::before {
  content: '';
  display: block;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%), rgba(27, 39, 86, 0.7);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all .4s;
}

.list_case .case_tab li:hover a::before, .list_case .case_tab li.active a::before {
  width: 100%;
}

.list_case .search_box {
  width: 50%;
  margin: 2.5rem auto 0;
}

.list_case .search_box .input_flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_case .search_box .input_flex .input_box {
  overflow: hidden;
  border-radius: .625rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  height: 3.25rem;
  flex: 1;
  position: relative;
}

.list_case .search_box .input_flex .input_box i {
  position: absolute;
  font-size: 1.25rem;
  color: #1B2756;
  font-weight: 600;
  left: .6875rem;
  top: 50%;
  transform: translateY(-50%);
}

.list_case .search_box .input_flex .input_box input {
  width: 100%;
  height: 100%;
  padding-left: 2.5rem;
}

.list_case .search_box .input_flex .input_box input::placeholder {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 400;
}

.list_case .search_box .input_flex button {
  margin-left: .5625rem;
  width: 7.25rem;
  height: 3.25rem;
  border-radius: .625rem;
  border: 1px solid #EFEFEF;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
}

.list_case .content .grid_box {
  margin-top: 4.6875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
}

.list_case .content .grid_box .grid_item {
  border-radius: 1.25rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
  border-radius: 1.25rem;
  overflow: hidden;
}

.list_case .content .grid_box .grid_item:hover .text h3 {
  color: #006EFF;
}

.list_case .content .grid_box .grid_item:hover .over::before {
  width: 100%;
}

.list_case .content .grid_box .grid_item .over {
  position: relative;
}

.list_case .content .grid_box .grid_item .over::before {
  content: '';
  display: block;
  width: 0%;
  height: .625rem;
  background-image: url("https://imgs-data-brwq.bcdn8.com/xiangjiang0816/uploads/rd/20250820141940.svg");
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .36s;
  z-index: 99;
}

.list_case .content .grid_box .grid_item .text {
  padding: 1.8125rem 2.625rem 1.8125rem 1.8125rem;
}

.list_case .content .grid_box .grid_item .text h3 {
  color: #1B2756;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
}

.list_case .content .grid_box .grid_item .text > p {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

/* 在你的CSS文件中添加 */
.caseshow[data-lenis-prevent] {
  overscroll-behavior: auto;
}

/* 或者添加通用的类 */
.lenis-stopped {
  overscroll-behavior: auto;
}

.caseshow {
  display: none;
  border-radius: 1.25rem;
  overflow: hidden;
  min-width: 87.5rem;
  padding: 3.75rem 3.25rem 3.125rem;
}

.caseshow .left {
  padding-right: 1.875rem;
}

.caseshow .left .over {
  height: 100%;
}

.caseshow .left .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caseshow .right {
  padding-left: 1.875rem;
  max-height: 32.5rem;
  overflow-y: auto;
}

.caseshow .right .ri_box {
  padding-right: 2.8125rem;
}

.caseshow .right::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  background-color: #c9c9c9;
  width: 4px;
  height: 164px;
  position: absolute;
}

.caseshow .right::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
}

.caseshow .right::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  display: block;
  width: 10px;
  height: 35px;
  background: #006EFF;
}

.caseshow .over {
  border-radius: 1.25rem;
}

.caseshow .title {
  color: #1B2756;
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 1.25rem;
  position: relative;
}

.caseshow .title::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.caseshow .text {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.caseshow .tit {
  color: #1B2756;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.125rem;
}

.caseshow .xg_pro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4375rem 1.375rem;
}

.caseshow .xg_pro .xg_item {
  border-radius: 1.25rem;
  border: 1px solid #D9D9D9;
  background: #FFF;
  padding: 1rem 1.375rem;
}

.caseshow .xg_pro .xg_item .img {
  min-width: 5.625rem;
  height: 4.75rem;
}

.caseshow .xg_pro .xg_item .img img {
  width: auto;
  height: 100%;
}

.caseshow .xg_pro .xg_item .text {
  color: #1B2756;
  font-size: .9375rem;
  font-weight: 700;
  flex: 1;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: unset;
}

#menu .nav_a1 > li:hover .sec_box,
#menu .nav_a1 > li:hover .sec_box1 {
  visibility: visible;
  opacity: 1;
  max-height: 50rem;
  /* 根据实际内容高度调整 */
}

#menu .nav_a1 > li:hover .sec_box,
#menu .nav_a1 > li:hover .sec_box1 {
  transition-delay: 0.1s, 0.1s, 0s;
}

.sec_box {
  width: 100vw;
  position: absolute;
  left: 0;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 1s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s linear 0.3s;
  z-index: 1000;
}

.sec_box .sec_con {
  width: 80vw;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
}

.sec_box .sec_con .left {
  width: 25%;
  padding: 2.125rem 2.6875rem 2.125rem 3.75rem;
  background: #F4F7F9;
}

.sec_box .sec_con .left ul li {
  border-bottom: 1px solid rgba(27, 39, 86, 0.1);
  position: relative;
}

.sec_box .sec_con .left ul li::before {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%), #D9D9D9;
  position: absolute;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}

.sec_box .sec_con .left ul li a {
  color: #1B2756;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 4rem;
  display: flex !important;
  justify-content: space-between;
}

.sec_box .sec_con .left ul li.on::before, .sec_box .sec_con .left ul li:hover::before {
  width: 100%;
}

.sec_box .sec_con .left ul li.on a, .sec_box .sec_con .left ul li:hover a {
  color: #006EFF !important;
}

.sec_box .sec_con .mid {
  border-right: 1px solid #F4F7F9;
  width: 25%;
  padding: 2.125rem 2.8125rem 2.125rem 3.5rem;
}

.sec_box .sec_con .mid ul li {
  border-bottom: 1px solid rgba(27, 39, 86, 0.1);
  position: relative;
}

.sec_box .sec_con .mid ul li::before {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%), #D9D9D9;
  position: absolute;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}

.sec_box .sec_con .mid ul li a {
  color: #1B2756;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 4rem;
  display: flex !important;
  justify-content: space-between;
}

.sec_box .sec_con .mid ul li.active::before, .sec_box .sec_con .mid ul li:hover::before {
  width: 100%;
}

.sec_box .sec_con .mid ul li.active a, .sec_box .sec_con .mid ul li:hover a {
  color: #006EFF !important;
}

.sec_box .sec_con .right {
  width: 50%;
  padding: 4.25rem;
}

.sec_box .sec_con .right .bb_box {
  display: none;
}

.sec_box .sec_con .right .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.sec_box .sec_con .right .grid_box .grid_item .over {
  height: 7.5rem;
  text-align: center;
}

.sec_box .sec_con .right .grid_box .grid_item .over img {
  width: auto;
  height: 100%;
}

.sec_box .sec_con .right .grid_box .grid_item .text {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

.sec_box1 {
  width: 60vw;
  position: absolute;
  right: 16.5rem;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 1s cubic-bezier(0.23, 1, 0.32, 1), visibility 0s linear 0.3s;
  z-index: 1000;
  background-color: #fff;
  padding: 3.125rem 4.0625rem 3.9375rem 4.3125rem;
}

.sec_box1.sec_box2 {
  width: 40vw;
}

.sec_box1.sec_box2 .le {
  width: 43%;
}

.sec_box1.sec_box2 .le .two_nav {
  display: block;
}

.sec_box1.sec_box2 .ri {
  width: 57%;
  padding-left: 2.25rem;
}

.sec_box1 .flex {
  align-items: flex-start;
}

.sec_box1 .le {
  width: 60%;
}

.sec_box1 .le .two_nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-auto-flow: column;
  gap: 0 2.4375rem;
}

.sec_box1 .le .two_nav .two_nav_li {
  position: relative;
  border-bottom: 1px solid rgba(27, 39, 86, 0.1);
}

.sec_box1 .le .two_nav .two_nav_li::before {
  content: '';
  display: block;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%), #D9D9D9;
  position: absolute;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}

.sec_box1 .le .two_nav .two_nav_li a {
  color: #1B2756;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 4rem;
}

.sec_box1 .le .two_nav .two_nav_li:hover::before, .sec_box1 .le .two_nav .two_nav_li.active::before {
  width: 100%;
}

.sec_box1 .le .two_nav .two_nav_li:hover a, .sec_box1 .le .two_nav .two_nav_li.active a {
  color: #006EFF !important;
}

.sec_box1 .ri {
  padding-left: 3.125rem;
  width: 40%;
  height: 100%;
}

.sec_box1 .ri .img_box {
  height: 100%;
}

.sec_box1 .ri .img_box .over {
  display: none;
  border-radius: 1.25rem;
  height: 15rem;
}

.sec_box1 .ri .img_box .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sec_box1 .ri .img_box .over.active {
  display: block;
}

@keyframes bigamin2 {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bigamin {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes bigaminxs {
  0% {
    display: none;
  }
  to {
    display: block;
  }
}

.list_systems_one {
  padding-top: 8.3125rem;
}

.list_systems_one.active .right .yuan {
  opacity: 1;
}

.list_systems_one.active .right .yuan .i i::before, .list_systems_one.active .right .yuan .i i::after {
  animation: bigaminxs 2.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: .6s;
}

.list_systems_one.active .right .yuan .yuan1 {
  animation: bigamin2 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.list_systems_one.active .right .yuan .yuan4,
.list_systems_one.active .right .yuan .yuan3 {
  animation: bigamin 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.list_systems_one.active .right .yuan .yuan2 {
  animation: bigamin 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-delay: .4s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.list_systems_one.active .right .yuan .yuan3 {
  animation-delay: .2s;
}

.list_systems_one.active .right .yuan .yuan5,
.list_systems_one.active .right .yuan .yuan6,
.list_systems_one.active .right .yuan .yuan7 {
  animation: bigamin 1.5s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.list_systems_one.active .right .yuan .yuan5 {
  animation-delay: .4s;
}

.list_systems_one.active .right .yuan .yuan6 {
  animation-delay: .6s;
}

.list_systems_one.active .right .yuan .yuan7 {
  animation-delay: .8s;
}

.list_systems_one .left .desc {
  width: 60%;
  margin: 0 auto;
}

.list_systems_one .left .desc h3 {
  color: #1B2756;
  text-align: justify;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 3.125rem;
}

.list_systems_one .left .desc p {
  margin-top: 1.25rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_systems_one .right {
  height: 80vh;
  overflow: hidden;
}

.list_systems_one .right .yuan {
  margin: -7.5rem auto 0;
  width: 60rem;
  height: 60rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  opacity: 0;
}

.list_systems_one .right .yuan .i {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_systems_one .right .yuan .i i::before, .list_systems_one .right .yuan .i i::after {
  opacity: 0;
}

.list_systems_one .right .yuan .i i:nth-child(1)::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #006eff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: .2;
}

.list_systems_one .right .yuan .i i:nth-child(1)::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #006eff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  opacity: .2;
}

.list_systems_one .right .yuan .i i:nth-child(2)::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #006eff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  opacity: .1;
}

.list_systems_one .right .yuan .i i:nth-child(2)::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #006eff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.3);
  opacity: .1;
}

.list_systems_one .right .yuan .i i:nth-child(3)::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #006eff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.4);
  opacity: .05;
}

.list_systems_one .right .yuan .i i:nth-child(3)::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #006eff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  opacity: .04;
}

.list_systems_one .right .yuan .i i:nth-child(4)::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #006eff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.6);
  opacity: .03;
}

.list_systems_one .right .yuan .i i:nth-child(4)::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #006eff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.7);
  opacity: .02;
}

.list_systems_one .right .yuan .i i:nth-child(5)::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #006eff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: .2;
}

.list_systems_one .right .yuan .i i:nth-child(5)::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #006eff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: .2;
}

.list_systems_one .right .yuan .yuan1 {
  width: 100%;
  margin: 0 auto;
  opacity: 0;
}

.list_systems_one .right .yuan .yuan4 {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.list_systems_one .right .yuan .yuan2 {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.list_systems_one .right .yuan .yuan3 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.list_systems_one .right .yuan .yuan5,
.list_systems_one .right .yuan .yuan6,
.list_systems_one .right .yuan .yuan7 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.list_systems_two {
  padding-top: 8.125rem;
  padding-bottom: 8.125rem;
  background-size: cover;
}

.list_systems_two .left {
  width: 20%;
  border-right: 1px solid rgba(27, 39, 86, 0.2);
}

.list_systems_two .left ul li {
  display: flex;
  align-items: center;
  padding-left: 1.25rem;
}

.list_systems_two .left ul li .icon {
  width: 1.875rem;
  margin-right: 1.875rem;
}

.list_systems_two .left ul li .text {
  color: #1B2756;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 4.375rem;
  text-transform: capitalize;
}

.list_systems_two .left ul li.on, .list_systems_two .left ul li:hover {
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
}

.list_systems_two .left ul li.on .icon img, .list_systems_two .left ul li:hover .icon img {
  filter: brightness(0) invert(1);
}

.list_systems_two .left ul li.on .text, .list_systems_two .left ul li:hover .text {
  color: #fff;
}

.list_systems_two .right {
  width: 80%;
  padding-left: 5.625rem;
}

.list_systems_two .right .ri_con {
  display: none;
}

.list_systems_two .right .ri_con.active {
  display: block;
}

.list_systems_two .right .ri_con .title {
  color: #1B2756;
  text-align: justify;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3.125rem;
}

.list_systems_two .right .ri_con p {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_systems_three {
  background-size: cover;
}

.list_systems_three .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 6.25rem;
}

.list_systems_three .sub_title {
  font-size: 2.75rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00DE92 20%, #00B4E0 50%, #006EFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list_systems_three .zimu {
  text-align: center;
  font-family: Montserrat;
  font-size: 13.5rem;
  font-weight: 700;
  line-height: 16.8894rem;
  background: linear-gradient(185deg, #00DE92 4.27%, #00B4E0 36.17%, rgba(0, 110, 255, 0) 60%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list_systems_three .zimu span {
  text-align: center;
  font-size: 13.5rem;
  font-weight: 700;
  line-height: 16.8894rem;
  background: linear-gradient(180deg, #00DE92 0%, #00B4E0 36.07%, rgba(0, 110, 255, 0) 72.14%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list_systems_four {
  padding-top: 11.25rem;
}

.list_systems_four .honor_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.list_systems_four .honor_box .honor_item .tit {
  color: #1B2756;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: capitalize;
  padding-bottom: 1.1875rem;
  position: relative;
  display: flex;
  align-items: center;
}

.list_systems_four .honor_box .honor_item .tit .icon {
  width: 3rem;
  height: 3rem;
  margin-right: .9375rem;
}

.list_systems_four .honor_box .honor_item .tit::before {
  content: '';
  display: block;
  width: 100%;
  height: .375rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(https://cloud-1251007531.bcdn8.com//xiangjiang0905/uploads/20250927/f9a863fa6a54fe4161dfa8d65bb5f5ff.svg);
  position: absolute;
  bottom: 0;
  left: 0;
}

.list_systems_four .honor_box .honor_item ul {
  padding-top: 1.4375rem;
}

.list_systems_four .honor_box .honor_item ul li {
  display: flex;
  align-items: center;
  padding: .5rem 0;
}

.list_systems_four .honor_box .honor_item ul li .icon {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: .375rem;
}

.list_systems_four .honor_box .honor_item ul li .text {
  flex: 1;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.list_systems_four .swiper_honor {
  position: relative;
  overflow: hidden;
  padding-bottom: 12.5rem;
}

.list_systems_four .swiper_honor .swiper-pagination {
  bottom: 9.375rem;
  z-index: 9;
}

.list_systems_four .swiper_honor .swiper-slide .swiper_honor_box {
  background-image: url("../images/kuang.png");
  padding: 1.3125rem 1.5rem 1.5rem 1.625rem;
  background-size: 100% 100%;
}

.list_systems_four .swiper_honor .swiper-slide i {
  position: absolute;
  z-index: 8;
  display: inline-block;
  height: 12.5rem;
  width: 100%;
  background: linear-gradient(180deg, rgba(239, 239, 239, 0.7) 0%, rgba(231, 238, 239, 0) 40.29%);
}

.swiper-pagination-bullet {
  width: 2.5rem;
  height: .375rem;
  border-radius: unset;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(90deg, #006EFF 1.55%, #00B4E0 51.55%, #00BBD2 59.55%, #00D4A3 87.55%, #00DE92 101.55%);
}

.list_systems_six {
  background: #F4F7F9;
}

.list_systems_six .tab_ul {
  display: flex;
  justify-content: center;
}

.list_systems_six .tab_ul .tab_li {
  color: #1B2756;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  padding: 0 2rem;
}

.list_systems_six .tab_ul .tab_li .flex {
  position: relative;
  padding: .8125rem 0;
}

.list_systems_six .tab_ul .tab_li .flex::before {
  content: '';
  display: block;
  width: 0%;
  height: .375rem;
  background-image: url(https://cloud-1251007531.bcdn8.com//xiangjiang0905/uploads/20250927/f9a863fa6a54fe4161dfa8d65bb5f5ff.svg);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all .4s;
}

.list_systems_six .tab_ul .tab_li .icon {
  width: 3rem;
  height: 3rem;
  margin-right: 1.5625rem;
}

.list_systems_six .tab_ul .tab_li.on .flex::before, .list_systems_six .tab_ul .tab_li:hover .flex::before {
  width: 100%;
}

.list_systems_six .swiper_box.active {
  display: block;
}

.list_systems_six .swiper_box .swiper {
  position: relative;
  overflow: hidden;
  padding-bottom: 3.4375rem;
}

.list_systems_six .swiper_box .swiper-slide {
  padding: 0 1.0625rem;
}

.list_systems_six .swiper_box .swiper-slide .text {
  color: #1B2756;
  font-size: 1.25rem;
  line-height: 2rem;
  text-align: center;
  padding: 1.5rem 0;
}

.list_opservice_one {
  padding-bottom: 9.375rem;
}

.list_opservice_one .content .grid_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4.5rem;
}

.list_opservice_one .content .grid_box .grid_item .icon {
  width: 3.8125rem;
  height: 3.8125rem;
}

.list_opservice_one .content .grid_box .grid_item .text h3 {
  color: #1B2756;
  font-size: 1.5rem;
  font-weight: 700;
}

.list_opservice_one .content .grid_box .grid_item .text p {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.list_opservice_two {
  background: #F4F7F9;
  padding-top: 7.75rem;
  padding-bottom: 8.4375rem;
}

.list_opservice_two .left_box ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(27, 39, 86, 0.2);
  padding: 1.8125rem 1.875rem;
  transition: all .6s;
  cursor: pointer;
}

.list_opservice_two .left_box ul li .icon {
  width: 3.8125rem;
  height: 3.8125rem;
}

.list_opservice_two .left_box ul li .ri {
  flex: 1;
  padding-left: 2.375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list_opservice_two .left_box ul li .ri .text {
  padding-right: 2.5rem;
}

.list_opservice_two .left_box ul li .ri .text h3 {
  color: #1B2756;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 700;
}

.list_opservice_two .left_box ul li .ri .text p {
  margin-top: .625rem;
  color: #FFF;
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
  display: none;
  transition: all .6s;
}

.list_opservice_two .left_box ul li .ri i {
  font-size: .875rem;
  color: #1B2756;
  font-weight: 600;
}

.list_opservice_two .left_box ul li.on {
  padding: 2.9375rem 1.875rem 3.375rem;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%), #D9D9D9;
}

.list_opservice_two .left_box ul li.on .icon img {
  filter: brightness(0) invert(1);
}

.list_opservice_two .left_box ul li.on .ri {
  align-items: flex-start;
}

.list_opservice_two .left_box ul li.on .ri .text h3 {
  color: #fff;
}

.list_opservice_two .left_box ul li.on .ri .text p {
  display: block;
}

.list_opservice_two .left_box ul li.on .ri i {
  color: #fff;
}

.list_opservice_two .right .img_box .over {
  border-radius: 1.25rem;
  display: none;
}

.list_opservice_three {
  padding-bottom: 9.1875rem;
  overflow: hidden;
}

.list_opservice_three .content .grid_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.list_opservice_three .content .grid_box .grid_item {
  padding: 6.25rem 2.8125rem 8.125rem;
  background: #F4F7F9;
  position: relative;
}

.list_opservice_three .content .grid_box .grid_item:hover .img {
  height: 120%;
  opacity: 1;
}

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

.list_opservice_three .content .grid_box .grid_item:hover .text h3,
.list_opservice_three .content .grid_box .grid_item:hover .text p {
  color: #fff;
}

.list_opservice_three .content .grid_box .grid_item .img {
  position: absolute;
  width: 100%;
  height: 0%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  transition: all .6s;
  opacity: 0;
}

.list_opservice_three .content .grid_box .grid_item .con {
  position: relative;
  z-index: 2;
}

.list_opservice_three .content .grid_box .grid_item .icon {
  width: 3.8125rem;
  height: 3.8125rem;
  margin: 0 auto;
}

.list_opservice_three .content .grid_box .grid_item .text {
  margin-top: 1.875rem;
}

.list_opservice_three .content .grid_box .grid_item .text h3 {
  color: #1B2756;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.list_opservice_three .content .grid_box .grid_item .text p {
  margin-top: .625rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_opservice_four {
  position: relative;
}

.list_opservice_four .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.list_opservice_four .content .desc {
  width: 32%;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.fancybox__content > .carousel__button.is-close {
  top: 1.5rem !important;
  right: 1.5rem !important;
  color: #5d6687;
}

.fancybox__content > .carousel__button.is-close svg {
  width: 3rem !important;
  height: 3rem !important;
}

.fancybox__thumb {
  background-size: contain;
  text-align: center;
}

.ryzz {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 10%;
  padding-bottom: 8.5rem;
  display: none;
}

.ryzz .wh {
  padding: 0 9.375rem;
}

.ryzz .desc {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.ryzz .content {
  position: relative;
}

.ryzz .content::before {
  content: '';
  display: block;
  width: 95vw;
  height: 1px;
  background-color: rgba(27, 39, 86, 0.2);
  position: absolute;
  top: .625rem;
  left: -10vw;
}

.ryzz .content .swiper-button-prev,
.ryzz .content .swiper-container-rtl .swiper-button-next,
.ryzz .content .swiper-button-next,
.ryzz .content .swiper-container-rtl .swiper-button-prev {
  background-image: unset;
}

.ryzz .content .swiper_yyzz {
  position: relative;
  overflow: hidden;
  margin: 0 -3.75rem;
}

.ryzz .content .swiper_yyzz .swiper-slide {
  padding: 0 3.75rem;
}

.ryzz .content .swiper_yyzz .swiper-slide .ryzz_box.honor_box .img {
  width: 77%;
  padding: .75rem;
  background-image: url(../images/hkuang.png);
  background-size: 100% 100%;
}

.ryzz .content .swiper_yyzz .swiper-slide .ryzz_box .yuan {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-image: url(../images/ryzz.svg);
  background-size: 100% 100%;
}

.ryzz .content .swiper_yyzz .swiper-slide .ryzz_box .titleen {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 10%, #006EFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ryzz .content .swiper_yyzz .swiper-slide .ryzz_box .title {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.25rem;
  font-weight: 700;
}

.ryzz .content .swiper_yyzz .swiper-slide .ryzz_box .img {
  width: 65%;
  padding: .75rem;
  background-image: url(../images/kuang.png);
  background-size: 100% 100%;
}

.list_culture_one {
  padding-top: 9.375rem;
  padding-bottom: 9.6875rem;
}

.list_culture_one.active .left .grid .over_box:nth-child(2) .over {
  transition-delay: 0.2s;
}

.list_culture_one.active .left .grid .over_box .over {
  transform: translateY(0);
  opacity: 1;
}

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

.list_culture_one .left .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.375rem;
}

.list_culture_one .left .grid .over_box:nth-child(2) {
  padding-top: 5.625rem;
}

.list_culture_one .left .grid .over_box .over {
  border-radius: 1.25rem;
  transition: all .6s;
  transform: translateY(2.5rem);
  opacity: 0;
}

.list_culture_one .right {
  padding-left: 7.5rem;
}

.list_culture_one .right .desc {
  color: #1B2756;
  text-align: justify;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_culture_two {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 13.0625rem;
  padding-bottom: 15.5625rem;
  background-attachment: fixed;
}

.list_culture_two .text-move-up {
  transform: translateY(-3.125rem);
  transition: transform 0.5s ease;
}

.list_culture_two .text-move-downp {
  transform: translateY(3.125rem);
  transition: transform 0.5s ease;
}

.list_culture_two .content {
  width: 100%;
  transition: all .6s;
}

.list_culture_two .content .desc {
  color: #FFF;
  text-align: justify;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_culture_three {
  padding-top: 9.6875rem;
  padding-bottom: 11.25rem;
  position: relative;
}

.list_culture_three .bgimg {
  border-radius: 1.25rem 1.25rem 0 0;
  overflow: hidden;
}

.list_culture_three .content {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0%;
}

.list_culture_three .content .flex_box {
  width: 50%;
  margin: 0 auto;
}

.list_culture_three .content .desc {
  color: #FFF;
  text-align: justify;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 3.125rem;
}

.list_culture_four {
  position: relative;
}

.list_culture_four .content {
  width: 100%;
  position: absolute;
  top: 0;
  padding-top: 3.3125rem;
}

.list_culture_four .content .desc {
  color: #1B2756;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_yanfa_one {
  padding-top: 9.0625rem;
  padding-bottom: 9.0625rem;
}

.list_yanfa_one .content .left {
  padding-right: 3.75rem;
}

.list_yanfa_one .content .left .over {
  border-radius: 1.25rem;
}

.list_yanfa_one .content .right .grid_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3.75rem;
}

.list_yanfa_one .content .right .grid_box .grid_item {
  border-bottom: 1px solid rgba(27, 39, 86, 0.2);
  padding-top: 3.3125rem;
  padding-bottom: 1.5rem;
}

.list_yanfa_one .content .right .grid_box .grid_item .icon {
  width: 4rem;
  height: 4rem;
}

.list_yanfa_one .content .right .grid_box .grid_item .text h3 {
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.375rem;
  font-weight: 600;
}

.list_yanfa_one .content .right .grid_box .grid_item .text p {
  margin-top: .4375rem;
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.25rem;
  font-weight: 700;
}

.list_yanfa_two {
  background-size: cover;
  padding-top: 9.6875rem;
  padding-bottom: 8rem;
}

.list_yanfa_two .left {
  padding-top: 3.125rem;
}

.list_yanfa_two .left .desc {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_yanfa_two .right {
  padding-left: 3.75rem;
}

.list_yanfa_two .right .swiper_sys2 {
  display: none;
}

.list_yanfa_two .right .swiper_sys,
.list_yanfa_two .right .swiper_sys2 {
  position: relative;
  overflow: hidden;
  padding-bottom: 1.25rem;
}

.list_yanfa_two .right .swiper_sys .swiper-slide,
.list_yanfa_two .right .swiper_sys2 .swiper-slide {
  width: 80%;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
}

.list_yanfa_two .right .swiper_sys .swiper-slide.swiper-slide-active .sys_box .over::before,
.list_yanfa_two .right .swiper_sys2 .swiper-slide.swiper-slide-active .sys_box .over::before {
  width: 100%;
}

.list_yanfa_two .right .swiper_sys .swiper-slide .sys_box .over,
.list_yanfa_two .right .swiper_sys2 .swiper-slide .sys_box .over {
  position: relative;
}

.list_yanfa_two .right .swiper_sys .swiper-slide .sys_box .over::before,
.list_yanfa_two .right .swiper_sys2 .swiper-slide .sys_box .over::before {
  content: '';
  display: block;
  width: 0%;
  height: .625rem;
  background-image: url(https://imgs-data-brwq.bcdn8.com/xiangjiang0816/uploads/rd/20250820141940.svg);
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .36s;
  z-index: 99;
}

.list_yanfa_two .right .swiper_sys .swiper-slide .sys_box .text,
.list_yanfa_two .right .swiper_sys2 .swiper-slide .sys_box .text {
  color: #1B2756;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.125rem;
  background: #FFF;
  padding: 2rem 0;
}

@keyframes txtshowt {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes txtshow {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes txtshowr {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.list_shengchan_one {
  padding-bottom: 9.375rem;
}

.list_shengchan_one.active .content .circe1 {
  animation: bigamin2 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  opacity: 0;
}

.list_shengchan_one.active .content .circe2 {
  animation: bigamin 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-delay: .4s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  opacity: 0;
}

.list_shengchan_one.active .content .circe3 {
  animation: bigamin 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-delay: .2s;
  opacity: 0;
}

.list_shengchan_one.active .content .circe4 {
  animation: bigamin 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  opacity: 0;
}

.list_shengchan_one.active .content .t1 {
  animation: txtshowt 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.list_shengchan_one.active .content .t2 {
  animation: txtshow 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-delay: 1.1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.list_shengchan_one.active .content .t3 {
  animation: txtshow 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.list_shengchan_one.active .content .t4 {
  animation: txtshowr 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.list_shengchan_one.active .content .t5 {
  animation: txtshowr 1s cubic-bezier(0.6, 0.2, 0.1, 1) infinite;
  animation-delay: 1.1s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.list_shengchan_one .desc {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_shengchan_one .content {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.list_shengchan_one .content .circe1 {
  opacity: 0;
}

.list_shengchan_one .content .circe2 {
  left: 50%;
  position: absolute;
  top: 56%;
  transform: translate(-50%, -50%);
  width: 46.625rem;
  opacity: 0;
}

.list_shengchan_one .content .circe3 {
  width: 42rem;
  left: 50%;
  position: absolute;
  top: 56.6%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.list_shengchan_one .content .circe4 {
  width: 15.625rem;
  left: 50%;
  position: absolute;
  top: 55%;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.list_shengchan_one .content .txt {
  position: absolute;
  opacity: 0;
}

.list_shengchan_one .content .txt h3 {
  color: #1B2756;
  font-size: 1.6875rem;
  font-weight: 700;
}

.list_shengchan_one .content .txt p {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.25rem;
  font-weight: 400;
}

.list_shengchan_one .content .t1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.list_shengchan_one .content .t2 {
  left: 0;
  top: 40%;
  text-align: right;
}

.list_shengchan_one .content .t3 {
  left: 5%;
  top: 75%;
  text-align: right;
}

.list_shengchan_one .content .t4 {
  right: 0;
  top: 40%;
  text-align: left;
}

.list_shengchan_one .content .t5 {
  right: 5%;
  top: 75%;
  text-align: left;
}

.list_shengchan_two {
  padding-top: 7.5rem;
  padding-bottom: 6.875rem;
  background-size: cover;
  mask: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.list_shengchan_two .content .swiper_zzsb {
  position: relative;
  margin: 0 -0.9375rem;
  padding-bottom: 3.75rem;
}

.list_shengchan_two .content .swiper_zzsb .swiper-slide {
  padding: 0 .9375rem;
}

.list_shengchan_two .content .swiper_zzsb .swiper-slide.swiper-slide-active .zzsb_box .text {
  opacity: 1;
}

.list_shengchan_two .content .swiper_zzsb .swiper-slide .zzsb_box {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

.list_shengchan_two .content .swiper_zzsb .swiper-slide .zzsb_box .text {
  width: 100%;
  height: 3.75rem;
  background: linear-gradient(90deg, rgba(0, 110, 255, 0.5) 0%, rgba(0, 187, 210, 0.5) 50%, rgba(0, 222, 146, 0.3) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 1.875rem;
  display: flex;
  align-items: center;
}

.list_shengchan_three {
  padding-bottom: 9.375rem;
}

.list_shengchan_three .desc {
  width: 52%;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_shengchan_three .content {
  margin-top: 7.5rem;
}

.list_shengchan_three .content .grid_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4.6875rem 6.875rem;
}

.list_shengchan_three .content .grid_box .grid_item:hover {
  cursor: pointer;
}

.list_shengchan_three .content .grid_box .grid_item:hover .text h3,
.list_shengchan_three .content .grid_box .grid_item:hover .text .p {
  color: #006EFF;
}

.list_shengchan_three .content .grid_box .grid_item .icon {
  width: 6.75rem;
  margin: 0 auto;
}

.list_shengchan_three .content .grid_box .grid_item i {
  width: 6.75rem;
  display: block;
  text-align: center;
  margin: 0 auto;
}

.list_shengchan_three .content .grid_box .grid_item .text {
  margin-top: .75rem;
}

.list_shengchan_three .content .grid_box .grid_item .text h3 {
  color: rgba(27, 39, 86, 0.7);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
}

.list_shengchan_three .content .grid_box .grid_item .text .p {
  margin-top: .25rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: center;
  font-size: .875rem;
  font-weight: 400;
}

.fancybox__backdrop {
  background-color: rgba(255, 255, 255, 0.8);
}

.fancybox__toolbar {
  background: unset;
}

.list_zhanlue_one {
  margin-top: 6.25rem;
  position: relative;
  background-size: cover;
}

.list_zhanlue_one .desc h3 {
  color: #FFF;
  font-family: "Alimama FangYuanTi VF";
  font-size: 2rem;
  font-weight: 500;
  line-height: 4.375rem;
  text-align: center;
  font-variation-settings: 'BEVL' 1;
}

.list_zhanlue_one .desc p {
  color: #FFF;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_zhanlue_one .content {
  position: relative;
  height: 50rem;
  overflow: hidden;
}

.list_zhanlue_one .content .earth-container {
  width: 100%;
  height: 62.5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #001122, #000000);
}

.list_zhanlue_one .content .three-container1 {
  width: 100%;
  height: 62.5rem;
}

.list_zhanlue_one .content .city-label {
  cursor: pointer;
  pointer-events: auto;
  position: absolute;
  z-index: 9;
}

.list_zhanlue_one .content .city-label:nth-child(1) {
  top: 36%;
  right: 20%;
}

.list_zhanlue_one .content .city-label:nth-child(2) {
  top: 20%;
  right: 18%;
}

.list_zhanlue_one .content .city-label:nth-child(3) {
  top: 23%;
  right: 23%;
}

.list_zhanlue_one .content .city-label:nth-child(4) {
  top: 29%;
  right: 26%;
}

.list_zhanlue_one .content .city-label:nth-child(5) {
  top: 35%;
  right: 28%;
}

.list_zhanlue_one .content .city-label:nth-child(6) {
  top: 38%;
  right: 25%;
}

.list_zhanlue_one .content .city-label:nth-child(7) {
  top: 43%;
  right: 25%;
}

.list_zhanlue_one .content .city-label:nth-child(8) {
  top: 42%;
  right: 20%;
}

.list_zhanlue_one .content .city-label.active .data-yuan, .list_zhanlue_one .content .city-label.on .data-yuan {
  background-color: #00DE92;
}

.list_zhanlue_one .content .city-label.active .data-yuan::before, .list_zhanlue_one .content .city-label.active .data-yuan::after, .list_zhanlue_one .content .city-label.on .data-yuan::before, .list_zhanlue_one .content .city-label.on .data-yuan::after {
  background-color: #00DE92;
}

.list_zhanlue_one .content .city-label .data-yuan {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #006EFF;
  position: relative;
}

.list_zhanlue_one .content .city-label .data-yuan::before, .list_zhanlue_one .content .city-label .data-yuan::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #006EFF;
  transform: translate(-50%, -50%);
  animation: pulse-animation 2s infinite;
}

.list_zhanlue_one .content .city-label .data-yuan::after {
  animation-delay: 1s;
}

.list_zhanlue_one .content .text_box {
  position: absolute;
  bottom: 3.125rem;
}

.list_zhanlue_one .content .text_box .text_item {
  opacity: 0;
  border-radius: 1.25rem;
  width: 32rem;
  position: absolute;
  bottom: 3.125rem;
  z-index: 2;
  border: 2px solid #00DE92;
  background: rgba(27, 39, 86, 0.7);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(0.125rem);
  padding: 3.125rem 3.75rem;
  transform: translateY(6.25rem);
  transition: all .6s;
  z-index: -1;
}

.list_zhanlue_one .content .text_box .text_item.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}

.list_zhanlue_one .content .text_box .text_item h3 {
  color: #FFF;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.875rem;
  margin-bottom: 1.625rem;
}

.list_zhanlue_one .content .text_box .text_item h4 {
  color: #FFF;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.list_zhanlue_one .content .text_box .text_item ul {
  margin-top: .9375rem;
}

.list_zhanlue_one .content .text_box .text_item ul li {
  position: relative;
  padding-left: 1.875rem;
}

.list_zhanlue_one .content .text_box .text_item ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.5rem;
}

.list_zhanlue_one .content .text_box .text_item ul li::before {
  content: '';
  display: block;
  width: .3125rem;
  height: .3125rem;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  position: absolute;
  left: .625rem;
  top: 1rem;
}

.list_touzi {
  background: #F4F7F9;
  padding-bottom: 8.5rem;
}

.list_touzi .touzi_box {
  border-radius: 1.25rem;
  background: #FFF;
  overflow: hidden;
}

.list_touzi .touzi_box .left {
  width: 48%;
  padding-left: 6.0625rem;
  padding-right: 6.25rem;
}

.list_touzi .touzi_box .left .title {
  color: #1B2756;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.list_touzi .touzi_box .left .gpdm {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.125rem;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list_touzi .touzi_box .left .content2,
.list_touzi .touzi_box .left .content3 {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6875rem;
}

.list_touzi .touzi_box .left .content1 .pri_box .nowPrice {
  color: #F33;
  font-size: 3.7059rem;
  font-weight: 600;
  line-height: 5.25rem;
}

.list_touzi .touzi_box .left .content1 .pri_box sub {
  color: #F33;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 5.25rem;
  bottom: 0;
}

.list_touzi .touzi_box .left .content1 .zzl,
.list_touzi .touzi_box .left .content1 .zzls {
  color: #1B2756;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 5.25rem;
}

.list_touzi .touzi_box .right {
  width: 52%;
  position: relative;
  overflow: hidden;
}

.list_touzi .touzi_box .right::before {
  content: '';
  display: block;
  width: 100%;
  height: 3.5rem;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%), #1B2756;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .6s;
}

.list_touzi .touzi_box .right ul {
  width: 7.5rem;
  position: absolute;
  left: .625rem;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.list_touzi .touzi_box .right ul img {
  width: 100%;
  height: 100%;
  transition: all .6s;
}

.list_touzi .touzi_box .right .content {
  width: 50%;
  position: absolute;
  top: 50%;
  left: 32%;
  transform: translateY(-50%);
}

.list_touzi .touzi_box .right .content .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 4.375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.list_touzi .touzi_box .right .content .item > div:nth-child(2) {
  width: 35%;
}

.list_news_box {
  padding-top: 6.75rem;
  padding-bottom: 6.75rem;
}

.list_news_box .swipernews {
  overflow: hidden;
  margin: 0 -1.25rem;
}

.list_news_box .swipernews .swiper-slide {
  padding: 1.25rem;
}

.list_news_box .swipernews .swiper-pagination {
  bottom: 3.75rem;
  width: auto;
  left: 55%;
}

.list_news_box .swipernews .news_new_box {
  background-color: #fff;
  overflow: hidden;
  display: flex;
  border-radius: 1.25rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.list_news_box .swipernews .news_new_box:hover .right .newstxt h3 {
  color: #006EFF;
}

.list_news_box .swipernews .news_new_box .left {
  width: 50%;
}

.list_news_box .swipernews .news_new_box .left .img {
  height: 100%;
}

.list_news_box .swipernews .news_new_box .left .img .over {
  height: 100%;
}

.list_news_box .swipernews .news_new_box .left .img .over img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list_news_box .swipernews .news_new_box .right {
  width: 50%;
}

.list_news_box .swipernews .news_new_box .right .newstxt {
  padding: 5.625rem 2.5rem 0 3.75rem;
}

.list_news_box .swipernews .news_new_box .right .newstxt h3 {
  color: #1B2756;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.list_news_box .swipernews .news_new_box .right .newstxt .p {
  margin-top: .5625rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_news_box .swipernews .news_new_box .right .newstxt .p1 {
  margin-top: .5625rem;
  color: #1B2756;
  text-align: justify;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6875rem;
  opacity: .5;
}

.list_news_box .swipernews .news_new_box .right .newstxt .p1 i {
  font-size: 1.25rem;
  vertical-align: middle;
  margin-right: .5625rem;
}

.yyhy_content {
  background: #F4F7F9;
}

.yyhy_content .select_box {
  width: 20.75rem;
  height: 3.25rem;
  border-radius: .625rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  overflow: hidden;
 
}

.yyhy_content .select_box select {
  width: 100%;
  height: 100%;
  border: none;
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 400;
 -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
     padding: 0 1.25rem 0 1.875rem;
}

.yyhy_content .yyhy_con {
  margin-bottom: 1.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
}

.yyhy_content .yyhy_con .yyhy_item {
  border-radius: 1.25rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.yyhy_content .yyhy_con .yyhy_item:hover .over::before {
  width: 100%;
}

.yyhy_content .yyhy_con .yyhy_item:hover .text h3 {
  color: #006EFF;
}

.yyhy_content .yyhy_con .yyhy_item .over {
  position: relative;
}

.yyhy_content .yyhy_con .yyhy_item .over::before {
  content: '';
  display: block;
  width: 0%;
  height: .625rem;
  background-image: url(https://imgs-data-brwq.bcdn8.com/xiangjiang0816/uploads/rd/20250820141940.svg);
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .36s;
  z-index: 99;
}

.yyhy_content .yyhy_con .yyhy_item .text {
  padding: 2.3125rem 2.25rem 2.5rem 1.875rem;
}

.yyhy_content .yyhy_con .yyhy_item .text h3 {
  color: #1B2756;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
}

.yyhy_content .yyhy_con .yyhy_item .text p {
  margin-top: .5625rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.yyhy_content .yyhy_con .yyhy_item .text .time {
  margin-top: .4375rem;
  color: #1B2756;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6875rem;
  opacity: .5;
}

.yyhy_content .yyhy_con .yyhy_item .text .time i {
  font-size: 1.25rem;
  vertical-align: middle;
  margin-right: .5625rem;
}

.yyhy_content .yyhy_con .yyhy_item:hover .text h3 {
  color: var(--color-zt);
}

.yyhy_content .yyhy_con .yyhy_item:hover .text p {
  color: var(--color-zt);
}

.news_show_box {
  margin-top: 6.25rem;
}

.news_show_box .left {
  padding-right: 7.8125rem;
}

.news_show_box .left .title {
  margin-bottom: 1.6875rem;
}

.news_show_box .left .title h3 {
  color: #1B2756;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3.125rem;
}

.news_show_box .left .title .sub_box {
  display: flex;
  align-items: center;
}

.news_show_box .left .title .sub_box .time {
  color: #1B2756;
  text-align: justify;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6875rem;
  opacity: .5;
  margin-right: 1.375rem;
}

.news_show_box .left .title .sub_box .time i {
  font-size: 1.25rem;
  vertical-align: middle;
  margin-right: .5625rem;
}

.news_show_box .left .title .sub_box .fenxiang .tit {
  color: #1B2756;
  text-align: justify;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6875rem;
  opacity: .5;
  margin-right: .5625rem;
}

.news_show_box .left .title .social-share {
  display: flex;
}

.news_show_box .left .title .social-share li {
  width: 2.8125rem;
  height: 2.8125rem;
  text-align: center;
  line-height: 2.8125rem;
  margin-right: .625rem;
}

.news_show_box .left .title .social-share li a {
  width: 2.8125rem;
  height: 2.8125rem;
  display: block;
  border-radius: 50%;
  border: unset;
  color: #5d6586;
  font-size: 1.375rem;
  border-radius: 50%;
  margin: unset;
  line-height: 2.8125rem;
  background: #F5F5F5;
}

.news_show_box .left .title .social-share li a i {
  font-size: 1.375rem;
  color: #5d6586;
  line-height: 2.375rem;
}

.news_show_box .left .content {
  border-top: 1px solid rgba(27, 39, 86, 0.1);
  border-bottom: 1px solid rgba(27, 39, 86, 0.1);
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.news_show_box .left .content table tr td {
  padding: .5rem;
}

.news_show_box .left .content img {
  width: 100%;
}

.news_show_box .left .content p {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}
.news_show_box .left .content span{
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
  background: linear-gradient(90deg,#006EFF 0%, #00B4E0 50%,  #00DE92 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
 
}

.news_show_box .left .shangxia_p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news_show_box .left .shangxia_p .shangxia {
  width: 38%;
}

.news_show_box .left .shangxia_p .shangxia:hover a {
  color: #006EFF;
}

.news_show_box .left .shangxia_p .shangxia p {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.news_show_box .left .shangxia_p .shangxia a {
  color: #1B2756;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.news_show_box .left .shangxia_p .goback {
  width: 6.25rem;
  height: 3.25rem;
  border-radius: .625rem;
  border: 1px solid rgba(27, 39, 86, 0.7);
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 400;
  line-height: 3.25rem;
  text-align: center;
  transition: all .36s;
}

.news_show_box .left .shangxia_p .goback:hover {
  cursor: pointer;
  background-color: var(--color-zt);
  color: #fff;
}

.news_show_box .right {
  position: sticky;
  top: 6.25rem;
  height: 100%;
}

.news_show_box .right .title h3 {
  color: #1B2756;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 3.125rem;
}

.news_show_box .right ul li {
  border-bottom: 1px solid rgba(27, 39, 86, 0.1);
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.news_show_box .right ul li:hover a .text h3 {
  color: #006EFF;
}

.news_show_box .right ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news_show_box .right ul li a .over {
  width: 45%;
  border-radius: .625rem;
}

.news_show_box .right ul li a .text {
  width: 55%;
  padding-left: .8125rem;
}

.news_show_box .right ul li a .text h3 {
  color: #1B2756;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6875rem;
}

.news_show_box .right ul li a .text p.p1 {
  color: #1B2756;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6875rem;
  opacity: 0.5;
}

.news_show_box .right ul li a .text p.p1 i {
  font-size: 1.25rem;
  vertical-align: middle;
  margin-right: .5625rem;
}

.list_media {
  padding-top: 6.625rem;
  padding-bottom: 8rem;
  background: #F4F7F9;
}

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

.list_media ul.menu_ul .menu_li {
  padding: 0 2.125rem;
  position: relative;
}

.list_media ul.menu_ul .menu_li a {
  color: #1B2756;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
  position: relative;
  padding-bottom: .8125rem;
}

.list_media ul.menu_ul .menu_li a::before {
  content: '';
  display: block;
  width: 0%;
  height: .25rem;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%), rgba(27, 39, 86, 0.7);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all .36s;
}

.list_media ul.menu_ul .menu_li:hover a::before, .list_media ul.menu_ul .menu_li.active a::before {
  width: 100%;
}

.list_media .search_box {
  width: 50%;
  margin: 2.5rem auto 0;
}

.list_media .search_box .input_flex {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_media .search_box .input_flex .input_box {
  overflow: hidden;
  border-radius: .625rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  height: 3.25rem;
  flex: 1;
  position: relative;
}

.list_media .search_box .input_flex .input_box i {
  position: absolute;
  font-size: 1.25rem;
  color: #1B2756;
  font-weight: 600;
  left: .6875rem;
  top: 50%;
  transform: translateY(-50%);
}

.list_media .search_box .input_flex .input_box input {
  width: 100%;
  height: 100%;
  padding-left: 2.5rem;
}

.list_media .search_box .input_flex .input_box input::placeholder {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 400;
}

.list_media .search_box .input_flex button {
  margin-left: .5625rem;
  width: 7.25rem;
  height: 3.25rem;
  border-radius: .625rem;
  border: 1px solid #EFEFEF;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
}

.list_media .download_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.125rem 1.5625rem;
}

.list_media .download_box .download_item {
  border-radius: 1.25rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
  padding: 3.5625rem 3.25rem 2.0625rem 2.4375rem;
  position: relative;
  overflow: hidden;
}

.list_media .download_box .download_item::before {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%), #FFF;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .36s;
  z-index: 1;
}

.list_media .download_box .download_item:hover::before {
  width: 100%;
}

.list_media .download_box .download_item:hover .title,
.list_media .download_box .download_item:hover .subtit,
.list_media .download_box .download_item:hover .boright .time,
.list_media .download_box .download_item:hover .boright .down .txt {
  color: #fff;
  opacity: 1;
}

.list_media .download_box .download_item:hover .boright .down .icon svg g {
  opacity: 1;
}

.list_media .download_box .download_item:hover .boright .down .icon svg path {
  stroke: #fff;
}

.list_media .download_box .download_item a {
  position: relative;
  z-index: 2;
}

.list_media .download_box .download_item .title {
  color: #1B2756;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem;
}

.list_media .download_box .download_item .subtit {
  margin-top: .8125rem;
  color: #1B2756;
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875rem;
}

.list_media .download_box .download_item .boright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.list_media .download_box .download_item .boright .time {
  color: #1B2756;
  text-align: justify;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6875rem;
  opacity: .5;
  /* 168.75% */
}

.list_media .download_box .download_item .boright .time i {
  font-size: 1.125rem;
  vertical-align: middle;
  margin-right: .5625rem;
}

.list_media .download_box .download_item .boright .down {
  margin-left: .9375rem;
}

.list_media .download_box .download_item .boright .down .icon {
  margin-right: .5625rem;
}

.list_media .download_box .download_item .boright .down .icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.list_media .download_box .download_item .boright .down .txt {
  color: #1B2756;
  text-align: justify;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6875rem;
  opacity: .5;
}

.list_media .video_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
}

.list_media .video_box .video_item {
  border-radius: 1.25rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.list_media .video_box .video_item:hover .over::before {
  width: 100%;
}

.list_media .video_box .video_item:hover .text {
  color: #006EFF;
}

.list_media .video_box .video_item .over {
  position: relative;
}

.list_media .video_box .video_item .over i {
  font-size: 3.125rem;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_media .video_box .video_item .over::before {
  content: '';
  display: block;
  width: 0%;
  height: .625rem;
  background-image: url(https://imgs-data-brwq.bcdn8.com/xiangjiang0816/uploads/rd/20250820141940.svg);
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .36s;
  z-index: 99;
}

.list_media .video_box .video_item .text {
  color: #1B2756;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2rem;
  padding: 2.3125rem 1.25rem 2.4375rem;
}

@keyframes pulse-animation {
  0% {
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0.7;
  }
  100% {
    width: 3.5rem;
    height: 3.5rem;
    opacity: 0;
  }
}

.list_contact_one {
  padding-bottom: 6.625rem;
}

.list_contact_one .content {
  position: relative;
  height: 41.25rem;
  overflow: hidden;
}

.list_contact_one .content .earth-container {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #001122, #000000);
}

.list_contact_one .content .three-container1 {
  width: 100%;
  height: 100vh;
}

.list_contact_one .content .city-label {
  cursor: pointer;
  pointer-events: auto;
}

.list_contact_one .content .city-label.active .data-yuan {
  background-color: #00DE92;
}

.list_contact_one .content .city-label.active .data-yuan::before, .list_contact_one .content .city-label.active .data-yuan::after {
  background-color: #00DE92;
}

.list_contact_one .content .city-label .data-yuan {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #006EFF;
  position: relative;
}

.list_contact_one .content .city-label .data-yuan::before, .list_contact_one .content .city-label .data-yuan::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #006EFF;
  transform: translate(-50%, -50%);
  animation: pulse-animation 2s infinite;
}

.list_contact_one .content .city-label .data-yuan::after {
  animation-delay: 1s;
}

.list_contact_one .content2 .top_box {
  border: 1px solid #EFEFEF;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(0.9375rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4.3125rem 3.125rem 4.5625rem;
}

.list_contact_one .content2 .top_box .left .tit {
  color: #1B2756;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.list_contact_one .content2 .top_box .left .tit::before {
  content: '';
  display: block;
  width: 2rem;
  height: .1875rem;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.list_contact_one .content2 .top_box .left ul li {
  display: flex;
  align-items: center;
}

.list_contact_one .content2 .top_box .left ul li .i {
  margin-right: .4375rem;
}

.list_contact_one .content2 .top_box .left ul li .i i {
  font-size: 1.375rem;
  color: #1B2756;
  opacity: .7;
}

.list_contact_one .content2 .top_box .left ul li .p {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.375rem;
  font-weight: 600;
}

.list_contact_one .content2 .top_box .right {
  padding-right: 6.375rem;
}

.list_contact_one .content2 .top_box .right .ewm_box {
  display: flex;
}

.list_contact_one .content2 .top_box .right .ewm_box .ewm {
  margin-left: 3.125rem;
}

.list_contact_one .content2 .top_box .right .ewm_box .ewm .img {
  width: 10.625rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
}

.list_contact_one .content2 .top_box .right .ewm_box .ewm .text {
  padding-top: 1.125rem;
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
}

.list_contact_one .content2 .grid_box {
  margin-top: 1.6875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.5rem;
}

.list_contact_one .content2 .grid_box .grid_item {
  border: 1px solid #EFEFEF;
  background: #FFF;
  box-shadow: 0 0 1.875rem 0 rgba(0, 0, 0, 0.05);
  padding: 2.3125rem 1.25rem 2.9375rem 1.875rem;
}

.list_contact_one .content2 .grid_box .grid_item .tit {
  color: #1B2756;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 1rem;
  position: relative;
  padding-bottom: 1.25rem;
}

.list_contact_one .content2 .grid_box .grid_item .tit::before {
  content: '';
  display: block;
  width: 2rem;
  height: .1875rem;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.list_contact_one .content2 .grid_box .grid_item ul li {
  display: flex;
  align-items: center;
}

.list_contact_one .content2 .grid_box .grid_item ul li .i {
  margin-right: .4375rem;
}

.list_contact_one .content2 .grid_box .grid_item ul li .i i {
  font-size: 1rem;
  color: #1B2756;
  opacity: .7;
}

.list_contact_one .content2 .grid_box .grid_item ul li .p {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 400;
}

.list_contact_two {
  background-size: cover;
}

.list_contact_two .desc {
  color: #1B2756;
  font-size: 1.6875rem;
  font-weight: 400;
  line-height: 2rem;
}

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

.list_contact_two .content .msg-a1 .inpt p {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 500;
}

.list_contact_two .content .msg-a1 .inpt input,
.list_contact_two .content .msg-a1 .inpt .se_box {
  margin-top: 1.0625rem;
  width: 100%;
  height: 3.25rem;
  border-radius: .625rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
 
}

.list_contact_two .content .msg-a1 .inpt select {
  width: 100%;
  height: 100%;
  border: none;
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 400;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
     padding: 0 1.25rem;
}

.list_contact_two .content .msg-a2 .inpt p {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 500;
}

.list_contact_two .content .msg-a2 .inpt textarea {
  margin-top: 1.0625rem;
  width: 100%;
  border-radius: .625rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  padding: 1.25rem;
}

.list_contact_two .content .msg-a3 .inpt p {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 500;
}

.list_contact_two .content .msg-a3 .inpt .yz_flex {
  margin-top: 1.0625rem;
  display: flex;
  align-items: center;
  border-radius: .625rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  width: 20.75rem;
  height: 3.25rem;
  padding: .625rem 1.25rem;
  box-sizing: border-box;
}

.list_contact_two .content .msg-a3 .inpt .yz_flex input {
  display: block;
}

.list_contact_two .content .msg-a3 .inpt .yz_flex .img {
  height: 100%;
}

.list_contact_two .content .msg-a3 .inpt .yz_flex .img img {
  display: block;
  height: 100%;
}

.list_contact_two .content .div_aghgha label {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 400;
}

.list_contact_two .content .div_aghgha label a {
  color: #006EFF;
  font-size: 1rem;
  font-weight: 400;
}

.list_contact_two .content .div_aghgha .more_btn {
  border: none;
  width: 10.0625rem;
  height: 3.25rem;
  border-radius: .625rem;
  opacity: 0.7;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
  color: #FFF;
  text-align: justify;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6875rem;
  transition: all .3s;
  border: 2px solid #f5f7f9;
}

.list_contact_two .content .div_aghgha .more_btn i {
  font-size: 1.375rem;
  color: #fff;
  opacity: .7;
  font-weight: 400;
  margin-left: 1rem;
}

.list_contact_two .content .div_aghgha .more_btn:hover {
  background: unset;
  border-color: #489bf9;
  color: #489bf9;
}

.list_contact_two .content .div_aghgha .more_btn:hover i {
  color: #489bf9;
  opacity: 1;
}

.list_hr_one .content {
  margin-top: 7.9375rem;
}

.job-cont2 {
  background: #F4F7F9;
}

.job-cont2 .job-a2b1 {
  width: 54.27083%;
  padding: 3.125rem 5% 3.125rem var(--cbasta);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  color: #fff;
}

@media (max-width: 768px) {
  .job-cont2 .job-a2b1 {
    width: 100%;
    padding: 2rem var(--cbasta);
    order: 1;
  }
}

.job-cont2 .job-a2b1 .tit {
  font-size: 2.125rem;
  line-height: 1.25em;
  font-weight: 500;
  color: #1B2756;
}

@media (max-width: 768px) {
  .job-cont2 .job-a2b1 .tit {
    font-size: 1.5rem;
  }
}

.job-cont2 .job-a2b1 .p1 {
  font-size: 1.25rem;
  line-height: 1.5em;
  margin-top: 0.85rem;
  width: 100%;
  color: #1B2756;
}

@media (max-width: 768px) {
  .job-cont2 .job-a2b1 .p1 {
    font-size: 1rem;
  }
}

.job-cont2 .job-a2b1 .cz-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  margin-top: 2.25rem;
}

@media (max-width: 768px) {
  .job-cont2 .job-a2b1 .cz-list {
    margin-top: 1.5rem;
  }
}

.job-cont2 .job-a2b1 .cz-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0.5rem 1.5rem;
  width: 100%;
  position: relative;
  color: #1B2756;
}

@media (max-width: 768px) {
  .job-cont2 .job-a2b1 .cz-list li {
    padding: 1.25rem 0.5rem 1.25rem 1.5rem;
  }
}

.job-cont2 .job-a2b1 .cz-list li:not(:nth-last-child(1)) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.job-cont2 .job-a2b1 .cz-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: .25rem;
  height: 100%;
  background: #006EFF;
  opacity: 0;
}

.job-cont2 .job-a2b1 .cz-list li .dt {
  cursor: pointer;
}

.job-cont2 .job-a2b1 .cz-list li .dt p {
  font-size: 1.6875rem;
  line-height: 1.25em;
  width: 70%;
}

@media (max-width: 768px) {
  .job-cont2 .job-a2b1 .cz-list li .dt p {
    font-size: 1.35rem;
  }
}

.job-cont2 .job-a2b1 .cz-list li .dt i {
  font-size: 0.825rem;
  line-height: 1.25em;
  font-weight: 700;
}

.job-cont2 .job-a2b1 .cz-list li .wehha-job {
  font-size: 1rem;
  line-height: 1.5em;
  display: none;
  margin-top: 0.65rem;
}

@media (max-width: 768px) {
  .job-cont2 .job-a2b1 .cz-list li .wehha-job {
    font-size: .875rem;
    margin-top: 0.5rem;
  }
}

.job-cont2 .job-a2b1 .cz-list li.active .dt p {
  color: unset;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.job-cont2 .job-a2b2 {
  position: relative;
  width: 45.72917%;
  overflow: hidden;
}

.job-cont2 .job-a2b2 ul {
  position: absolute;
  left: 0%;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.job-cont2 .job-a2b2 ul li {
  width: 1.2px;
  height: 100%;
  background-color: #fff;
  margin: 0 .5625rem;
  position: relative;
}

.job-cont2 .job-a2b2 ul li:nth-child(3), .job-cont2 .job-a2b2 ul li:nth-child(5), .job-cont2 .job-a2b2 ul li:nth-child(6), .job-cont2 .job-a2b2 ul li:nth-child(7) {
  width: .1875rem;
}

.job-cont2 .job-a2b2 ul li:nth-child(4) {
  width: .2625rem;
}

.job-cont2 .job-a2b2 ul li:nth-child(1)::before {
  content: '';
  display: block;
  width: .4375rem;
  height: 10rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.job-cont2 .job-a2b2 ul li:nth-child(2)::before {
  content: '';
  display: block;
  width: .4375rem;
  height: 13.375rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.2s;
}

.job-cont2 .job-a2b2 ul li:nth-child(3)::before {
  content: '';
  display: block;
  width: 7px;
  height: 16.5rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.4s;
}

.job-cont2 .job-a2b2 ul li:nth-child(4)::before {
  content: '';
  display: block;
  width: .4375rem;
  height: 16.5rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.6s;
}

.job-cont2 .job-a2b2 ul li:nth-child(5)::before {
  content: '';
  display: block;
  width: .375rem;
  height: 13.5rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.8s;
}

.job-cont2 .job-a2b2 ul li:nth-child(6)::before {
  content: '';
  display: block;
  width: .375rem;
  height: 10.375rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.6s;
}

.job-cont2 .job-a2b2 ul li:nth-child(7)::before {
  content: '';
  display: block;
  width: .375rem;
  height: 11.3125rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.4s;
}

.job-cont2 .job-a2b2 ul li:nth-child(8)::before {
  content: '';
  display: block;
  width: .375rem;
  height: 11.9375rem;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

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

.job-cont2 .job-a2b2 img {
  width: 100%;
}

.job-cont3 {
  padding: 8.0625rem 0;
}

@media (max-width: 768px) {
  .job-cont3 {
    padding: 2.5rem 0;
  }
}

.job-cont3 .job-a3_list1 li:nth-child(2n) .img {
  order: 1;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li:nth-child(2n) .img {
    order: 0;
  }
}

.job-cont3 .job-a3_list1 li + li {
  margin-top: 7rem;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li + li {
    margin-top: 1.25rem;
  }
}

.job-cont3 .job-a3_list1 li .img {
  width: 62.71429%;
  border-radius: 1.25rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li .img {
    width: 100%;
    border-radius: 1rem;
  }
}

.job-cont3 .job-a3_list1 li .img img {
  width: 100%;
}

.job-cont3 .job-a3_list1 li .cont-p {
  width: 32.28571%;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li .cont-p {
    width: 100%;
    margin-top: 1rem;
  }
}

.job-cont3 .job-a3_list1 li .cont-p .tit {
  color: rgba(27, 39, 86, 0.7);
  font-size: 2.125rem;
  line-height: 1.5em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li .cont-p .tit {
    font-size: 1.5rem;
  }
}

.job-cont3 .job-a3_list1 li .cont-p .p3 {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  line-height: 1.65em;
}

.job-cont3 .job-a3_list1 li .cont-p .p3 .p1 {
  margin-top: 0.65rem;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li .cont-p .p3 .p1 {
    margin-top: 0.35rem;
  }
}

.job-cont3 .job-a3_list1 li .cont-p .p3 dl {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li .cont-p .p3 dl {
    margin-top: 0.65rem;
  }
}

.job-cont3 .job-a3_list1 li .cont-p .p3 dl dt {
  font-size: 1.6875rem;
  line-height: 2em;
  font-weight: 500;
  color: rgba(27, 39, 86, 0.4);
}

@media (max-width: 768px) {
  .job-cont3 .job-a3_list1 li .cont-p .p3 dl dt {
    font-size: 1.25rem;
  }
}

.job-cont3 .job-a3_list1 li .cont-p .p3 dl dd {
  display: none;
}

.job-cont3 .job-a3_list1 li .cont-p .p3 dl.on dt {
  color: rgba(27, 39, 86, 0.7);
}

.job-cont3 .job-a3_list1 li .cont-p .p3 dl.on dd {
  display: block;
}

.list_hr_three {
  padding-top: 6.25rem;
  padding-bottom: 8.6875rem;
}

.list_hr_three .gird_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.0625rem;
}

.list_hr_three .gird_box .grid_item {
  overflow: hidden;
  border-radius: 1.25rem;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.04);
}

.list_hr_three .gird_box .grid_item:hover .over::before {
  width: 100%;
}

.list_hr_three .gird_box .grid_item .over {
  position: relative;
}

.list_hr_three .gird_box .grid_item .over::before {
  content: '';
  display: block;
  width: 0%;
  height: .625rem;
  background-image: url("../images/colorline.svg");
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all .36s;
  z-index: 99;
}

.list_hr_three .gird_box .grid_item .text {
  padding: 2.5rem 3.25rem 4.1875rem 4.375rem;
}

.list_hr_three .gird_box .grid_item .text .tit {
  color: #1B2756;
  font-size: 2rem;
  font-weight: 700;
  line-height: 3.125rem;
}

.list_hr_three .gird_box .grid_item .text .p {
  color: #1B2756;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}

.list_join_one {
  padding-bottom: 7.5rem;
}

.list_join_one .select_box {
  display: flex;
  align-items: center;
}

.list_join_one .select_box .tit {
  color: #1B2756;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_join_one .select_box ul {
  display: flex;
  align-items: center;
}

.list_join_one .select_box ul li {
  padding: 0 .4375rem;
}

.list_join_one .select_box ul li a {
  width: 7.875rem;
  height: 3.25rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 3.25rem;
  border-radius: .625rem;
  border: 1px solid #1B2756;
  opacity: 0.7;
}

.list_join_one .select_box ul li.active a, .list_join_one .select_box ul li:hover a {
  color: #007DF7;
  background-image: url(../images/bk.svg);
  background-size: 100% 100%;
  border: none;
}

.list_join_one .join_type {
  position: relative;
}

.list_join_one .join_type .swiper-button-prev,
.list_join_one .join_type .swiper-container-rtl .swiper-button-next {
  background-image: unset;
  left: 7%;
  margin-top: 0;
  width: 7rem;
  height: 7rem;
  text-align: center;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_join_one .join_type .swiper-button-next,
.list_join_one .join_type .swiper-container-rtl .swiper-button-prev {
  background-image: unset;
  right: 7%;
  margin-top: 0;
  width: 7rem;
  height: 7rem;
  text-align: center;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_join_one .join_type .swiper_jointype {
  position: relative;
  overflow: hidden;
  margin: -0.75rem;
}

.list_join_one .join_type .swiper_jointype .swiper-slide {
  padding: .75rem;
}

.list_join_one .join_type .swiper_jointype .swiper-slide:hover .jointype_box::before, .list_join_one .join_type .swiper_jointype .swiper-slide.active .jointype_box::before {
  width: 100%;
}

.list_join_one .join_type .swiper_jointype .swiper-slide:hover .jointype_box .icon img, .list_join_one .join_type .swiper_jointype .swiper-slide.active .jointype_box .icon img {
  filter: brightness(0) invert(1);
}

.list_join_one .join_type .swiper_jointype .swiper-slide:hover .jointype_box .text, .list_join_one .join_type .swiper_jointype .swiper-slide.active .jointype_box .text {
  color: #fff;
}

.list_join_one .join_type .swiper_jointype .swiper-slide .jointype_box {
  border-radius: 1.25rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.04);
  padding: 2.0625rem 1.25rem 2.3125rem;
  position: relative;
  overflow: hidden;
}

.list_join_one .join_type .swiper_jointype .swiper-slide .jointype_box::before {
  content: '';
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%), #FFF;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .36s;
}

.list_join_one .join_type .swiper_jointype .swiper-slide .jointype_box .icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto .8125rem;
  position: relative;
  z-index: 2;
}

.list_join_one .join_type .swiper_jointype .swiper-slide .jointype_box .text {
  color: #1B2756;
  font-size: 1.6875rem;
  font-weight: 500;
  line-height: 3.375rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.list_join_one .join_content {
  border-top: 1px solid rgba(27, 39, 86, 0.2);
}

.list_join_one .join_content .join_item {
  padding-top: 3.125rem;
}

.list_join_one .join_content .join_item:not(:nth-last-child(1)) {
  padding-bottom: 3.125rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.list_join_one .join_content .join_item .title {
  text-align: justify;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 2.125rem;
  background: linear-gradient(to right, #00DE92 0%, #006EFF 20%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list_join_one .join_content .join_item .con h3 {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 2.125rem;
  margin-bottom: .5625rem;
}

.list_join_one .join_content .join_item .con p {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_join_one .join_content .join_item .con p i {
  font-size: 1.25rem;
  vertical-align: middle;
  margin-right: 1rem;
}

.list_sunshine_one .content .zhaobiao_item .title {
  color: #1B2756;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
}

.list_sunshine_one .content .zhaobiao_item .desc p {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 3.125rem;
}

.list_sunshine_one .content .zhaobiao_item .desc p.em2 {
  text-indent: 2em;
}

.list_sunshine_one .content .zhaobiao_item .down_box .tit {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
  padding-bottom: .8125rem;
  border-bottom: 1px solid rgba(27, 39, 86, 0.2);
}

.list_sunshine_one .content .zhaobiao_item .down_box .link a {
  color: #006EFF;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.list_sunshine_two {
  background-size: cover;
  padding-top: 6.5625rem;
  padding-bottom: 7.25rem;
}

.list_sunshine_two .content {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_sunshine_three {
  padding-top: 6.25rem;
  padding-bottom: 8.3125rem;
  position: relative;
}

.list_sunshine_three .bgimg {
  border-radius: 1.25rem;
  overflow: hidden;
}

.list_sunshine_three .content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.list_sunshine_three .content .desc {
  margin-top: 1.75rem;
  color: #FFF;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
}

.list_sunshine_three .content .desc a {
  color: #FFF;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.125rem;
}

.gysbm {
  border-radius: 1.25rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.04);
  padding-top: 3.4375rem;
  padding-bottom: 4.25rem;
  padding-left: 4.0625rem;
  padding-right: 3.875rem;
  display: none;
}

.gysbm .content .msg-a1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.625rem;
}

.gysbm .content .msg-a1 .inpt p {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 500;
}

.gysbm .content .msg-a1 .inpt input {
  margin-top: 1.0625rem;
  width: 100%;
  height: 3.25rem;
  border-radius: .625rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  padding: 0 1.25rem;
}

.gysbm .content .msg-a1 .inpt .yz_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.0625rem;
  width: 100%;
  height: 3.25rem;
  border-radius: .625rem;
  border: 1px solid #EFEFEF;
  background: #FFF;
  padding: 0 1.25rem;
}

.gysbm .content .msg-a1 .inpt .yz_flex input {
  border: none;
  flex: 1;
  height: 100%;
  padding: 0;
  margin-top: 0;
}

.gysbm .content label {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 400;
}

.gysbm .content label a {
  color: #006EFF;
}

@keyframes crossScreenRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.list_about_logo {
  position: relative;
  padding-top: 6.25rem;
  padding-bottom: 8.125rem;
}

.list_about_logo .bglogo {
  width: 55%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.list_about_logo .bglogo::before {
  content: '';
  display: block;
  width: 200%;
  height: 99%;
  background-image: url(../images/logobg.png);
  background-repeat: repeat-x;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  animation: crossScreenRight 5s linear infinite;
}

.list_about_logo .bglogo img {
  position: relative;
  z-index: 2;
}

@keyframes pulseSpread {
  0% {
    transform: translateX(-50%) scale(0.5);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(0, 110, 255, 0.7);
  }
  70% {
    transform: translateX(-50%) scale(1.5);
    opacity: 0.5;
    box-shadow: 0 0 0 10px rgba(0, 110, 255, 0);
  }
  100% {
    transform: translateX(-50%) scale(2);
    opacity: 0;
    box-shadow: 0 0 0 20px rgba(0, 110, 255, 0);
  }
}

.list_about_two {
  padding-top: 6.8125rem;
  padding-bottom: 7rem;
  background: #F4F7F9;
}

.list_about_two .top_swiper::before {
  content: '';
  width: 120%;
  height: 1px;
  background-color: rgba(27, 39, 86, 0.1);
  position: absolute;
  bottom: 1rem;
}

.list_about_two .top_swiper .swiper_histab {
  position: relative;
  overflow: hidden;
  padding-bottom: 1rem;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide.swiper-slide-thumb-active .histab_box::before {
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
}

.list_about_two .top_swiper .swiper_histab .swiper-slide.swiper-slide-thumb-active .histab_box i::before {
  animation: pulseSpread 2s infinite ease-out;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide:nth-child(1) .histab_box {
  padding-top: 4.125rem;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide:nth-child(2) .histab_box {
  padding-top: 2.9rem;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide:nth-child(2) .histab_box::before {
  bottom: 1.35rem;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide:nth-child(3) .histab_box {
  padding-top: .625rem;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide:nth-child(3) .histab_box::before {
  bottom: 2.625rem;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide:nth-child(4) .histab_box {
  padding-top: -1.25rem;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide:nth-child(4) .histab_box::before {
  bottom: 3.9rem;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide .histab_box {
  position: relative;
  height: 11rem;
  padding-bottom: 2.5rem;
  cursor: pointer;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide .histab_box h3 {
  font-size: 2.75rem;
  font-weight: 600;
  background: linear-gradient(90deg, #00DE92 45%, #00B4E0 55%, #006EFF 65%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide .histab_box p {
  margin-top: .375rem;
  color: rgba(27, 39, 86, 0.7);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide .histab_box::before {
  content: '';
  display: block;
  width: 110%;
  height: 1.3125rem;
  background: linear-gradient(90deg, rgba(0, 222, 146, 0.27) 1.55%, rgba(0, 212, 163, 0.27) 15.55%, rgba(0, 187, 210, 0.27) 43.55%, rgba(0, 180, 224, 0.27) 51.55%, rgba(0, 110, 255, 0.27) 101.55%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.list_about_two .top_swiper .swiper_histab .swiper-slide .histab_box i {
  display: inline-block;
  width: .375rem;
  height: .375rem;
  border-radius: 50%;
  background: #006EFF;
  position: absolute;
  bottom: -0.1875rem;
  left: 50%;
  transform: translateX(-50%);
}

.list_about_two .top_swiper .swiper_histab .swiper-slide .histab_box i::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #006EFF;
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.list_about_two .top_swiper .swiper-button-prev,
.list_about_two .top_swiper .swiper-button-next {
  background: unset;
  width: 3.5625rem;
  height: 3.5625rem;
  border-radius: .3125rem;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_about_two .top_swiper .swiper-button-prev i,
.list_about_two .top_swiper .swiper-button-next i {
  color: #606889;
  font-size: 1rem;
}

.list_about_two .top_swiper .swiper-button-prev,
.list_about_two .top_swiper .swiper-container-rtl .swiper-button-next {
  left: 8%;
  top: unset;
  margin-top: unset;
  bottom: -0.8125rem;
}

.list_about_two .top_swiper .swiper-button-next,
.list_about_two .top_swiper .swiper-container-rtl .swiper-button-prev {
  right: 8%;
  top: unset;
  margin-top: unset;
  bottom: -0.8125rem;
}

.list_about_two .bottom_swiper .swiper_hiscon {
  position: relative;
  overflow: hidden;
}

.list_about_two .bottom_swiper .swiper_hiscon .hiscon_box {
  display: flex;
}

.list_about_two .bottom_swiper .swiper_hiscon .hiscon_box .left {
  width: 47%;
}

.list_about_two .bottom_swiper .swiper_hiscon .hiscon_box .left .over {
  border-radius: 1.25rem;
}

.list_about_two .bottom_swiper .swiper_hiscon .hiscon_box .right {
  width: 63%;
  padding-left: 5.375rem;
  height: 20rem;
  overflow-y: auto;
}

.list_about_two .bottom_swiper .swiper_hiscon .hiscon_box .right::-webkit-scrollbar-track {
  background-color: #c9c9c9;
  width: 3px;
  height: 2.875rem;
  position: absolute;
}

.list_about_two .bottom_swiper .swiper_hiscon .hiscon_box .right::-webkit-scrollbar {
  width: 3px;
}

.list_about_two .bottom_swiper .swiper_hiscon .hiscon_box .right::-webkit-scrollbar-thumb {
  display: block;
  width: .625rem;
  height: 2.1875rem;
  background: #006EFF;
}

.list_about_two .bottom_swiper .swiper_hiscon .hiscon_box .right .text {
  padding-right: 1.25rem;
}

.list_about_two .bottom_swiper .swiper_hiscon .hiscon_box .right .text ul li {
  margin-bottom: 1.875rem;
}

.list_about_two .bottom_swiper .swiper_hiscon .hiscon_box .right .text ul li h3 {
  color: #1B2756;
  font-size: 2rem;
  font-weight: 700;
}

.list_about_two .bottom_swiper .swiper_hiscon .hiscon_box .right .text ul li p {
  margin-top: .375rem;
  padding-left: 1.5625rem;
  position: relative;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
}

.list_about_two .bottom_swiper .swiper_hiscon .hiscon_box .right .text ul li p::before {
  content: '';
  display: block;
  width: .875rem;
  height: .875rem;
  background-image: url(../images/dian.svg);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: .5625rem;
}

.list_about_two .bottom_box {
  position: relative;
  text-align: center;
}

.list_about_two .bottom_box h3 {
  font-size: 2.75rem;
  font-weight: 600;
  background: linear-gradient(90deg, #00DE92 45%, #00B4E0 55%, #006EFF 65%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.list_about_two .bottom_box p {
  margin-top: .375rem;
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.125rem;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  position: relative;
  padding-bottom: 1.875rem;
}

.list_about_two .bottom_box p::before {
  content: '';
  display: block;
  width: 100%;
  height: 1.3125rem;
  background: linear-gradient(90deg, rgba(0, 222, 146, 0.27) 1.55%, rgba(0, 212, 163, 0.27) 15.55%, rgba(0, 187, 210, 0.27) 43.55%, rgba(0, 180, 224, 0.27) 51.55%, rgba(0, 110, 255, 0.27) 101.55%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.list_about_three {
  position: relative;
}

.list_about_three .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.list_about_three .content .desc {
  width: 30%;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875rem;
}

.list_about_four {
  padding-top: 7.0625rem;
  padding-bottom: 7.6875rem;
}

.list_about_four .box_con .picMarquee-left3 .picList li,
.list_about_four .box_con1 .picMarquee-left3 .picList li {
  padding-bottom: 1.875rem;
}

.list_about_four .box_con .picMarquee-left2 .picList li,
.list_about_four .box_con1 .picMarquee-left2 .picList li {
  padding-top: 1.875rem;
  padding-bottom: 1rem;
}

.list_about_four .box_con .picMarquee-left2,
.list_about_four .box_con .picMarquee-left3,
.list_about_four .box_con1 .picMarquee-left2,
.list_about_four .box_con1 .picMarquee-left3 {
  -webkit-mask: -webkit-linear-gradient(left, transparent, #000 25%, #000 85%, transparent);
  mask: linear-gradient(90deg, transparent, #000 25%, #000 85%, transparent);
}

.list_about_four .box_con .picMarquee-left2 .bd .tempWrap,
.list_about_four .box_con .picMarquee-left3 .bd .tempWrap,
.list_about_four .box_con1 .picMarquee-left2 .bd .tempWrap,
.list_about_four .box_con1 .picMarquee-left3 .bd .tempWrap {
  margin: 0 auto;
}

.list_about_four .box_con .picList li,
.list_about_four .box_con1 .picList li {
  width: 16.25rem;
  margin: .375rem;
}

.list_about_four .box_con .picList li .pic,
.list_about_four .box_con1 .picList li .pic {
  background: #FFF;
  box-shadow: 0.5rem 0.5rem 1.25rem 0 rgba(55, 99, 170, 0.1);
  height: 7.375rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_about_four .box_con .picList li .pic:hover,
.list_about_four .box_con1 .picList li .pic:hover {
  border-color: rgba(0, 56, 184, 0.5);
}

.list_about_one {
  padding-bottom: 6.9375rem;
  position: relative;
}

.list_about_one .content {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_about_one .content p {
  margin-bottom: .625rem;
}

.list_about_one .grid_box {
  display: grid;
  grid-template-columns: 1fr 37.5rem 1fr;
}

.list_about_one .grid_box .grid_item.one {
  padding-right: 2.5rem;
}

.list_about_one .grid_box .grid_item.three {
  padding-left: 2.5rem;
}

.list_about_one .grid_box .grid_item .over {
  border-radius: 1.25rem;
  width: 37.5rem;
  position: absolute;
}

.list_about_one .grid_box .grid_item ul li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(27, 39, 86, 0.2);
  padding: 2.5rem 0 3rem;
}

.list_about_one .grid_box .grid_item ul li:nth-child(1) {
  padding-top: 0;
}

.list_about_one .grid_box .grid_item ul li .icon {
  width: 4.6875rem;
}

.list_about_one .grid_box .grid_item ul li .text {
  padding-left: 1.875rem;
  flex: 1;
}

.list_about_one .grid_box .grid_item ul li .text .top {
  font-size: 3.125rem;
  font-weight: 600;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
}

.list_about_one .grid_box .grid_item ul li .text p {
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.25rem;
  font-weight: 700;
}

.list_about_one #aboutswiper {
  position: absolute;
  top: 6.25rem;
  left: 0;
  width: 100%;
  height: 90vh;
  background-color: #fff;
  pointer-events: none;
  transition: all .3s;
  overflow: auto;
  overflow: hidden;
}

.list_about_one .swiper_box {
  padding-top: 5rem;
}

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

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

.list_about_one .swiper_box .swiper-button-prev,
.list_about_one .swiper_box .swiper-button-next {
  background: none;
  width: 1.75rem;
  height: 6.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  transform: translateY(-50%);
}

.list_about_one .swiper_box .swiper_aboutimg {
  padding-bottom: 3.125rem;
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  z-index: 9999999999999;
}

.list_about_one .swiper_box .swiper_aboutimg .aboutimg_box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list_about_one .swiper_box .swiper_aboutimg .aboutimg_box .bofang {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list_about_one .swiper_box .swiper_aboutimg .aboutimg_box i {
  font-size: 4.375rem;
  color: #fff;
}

.list_about_one .swiper_box .swiper_aboutimg .aboutimg_box .over {
  border-radius: 1.25rem;
}

.list_website {
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-family: Montserrat;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6875rem;
  /* 150% */
}

.no-lenis-scroll {
  data-lenis-prevent: "";
}

.carousel__button svg {
  filter: unset;
}

.carousel__button.fancybox__button--zoom,
.carousel__button.fancybox__button--fullscreen {
  display: none;
}

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

.list_yanfa_new {
  position: relative;
}

.list_yanfa_new .content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 15%;
  left: 0;
}

.list_yanfa_new .content .desc {
  color: #FFF;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 3.125rem;
  color: var(--color-zt);
}

.list_yanfa_new .content ul li {
  position: absolute;
}

.list_yanfa_new .content ul li h3 {
  color: #FFF;
  font-family: Montserrat;
  font-size: 3rem;
  background: linear-gradient(90deg, #00DE92 0%, #00B4E0 50%, #006EFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list_yanfa_new .content ul li p {
  color: #FFF;
  font-family: "Noto Sans SC";
  font-size: 1.25rem;
  color: var(--color-zt);
}

.list_yanfa_new .content ul li:nth-child(1) {
  width: 13.125rem;
  top: 0%;
  right: 14%;
}

.list_yanfa_new .content ul li:nth-child(2) {
  top: 21%;
  right: 12%;
}

.list_yanfa_new .content ul li:nth-child(3) {
  top: 20%;
  right: 47%;
  text-align: right;
}

.list_yanfa_new .content ul li:nth-child(4) {
  top: 46%;
  right: 52%;
  text-align: right;
}

.pc_show {
  display: block;
}

.m_show {
  display: none;
}

.index_three_news {
  background: #fff;
  position: relative;
}

.index_three_news .bgimg {
  background-color: #fff;
  width: 100%;
  margin: 0 auto 0;
  height: 100vh;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  position: relative;
}

.index_three_news .bgimg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.index_three_news .content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 7.375rem;
  z-index: 9;
}

.index_three_news .content .all_title {
  margin-top: 6.25rem;
  position: relative;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.index_three_news .content .all_title.on {
  top: 50%;
  opacity: 1;
}

.index_three_news .content .desc {
  width: 100%;
  margin: 1.875rem auto 0;
  font-size: 1.125rem;
  color: #fff;
  position: relative;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.index_three_news .content .more-b {
  position: relative;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.index_three_news .content .more-b.on {
  top: 50%;
  opacity: 1;
}

.index_three_news .content .desc.on {
  top: 50%;
  opacity: 1;
}

.list_hr_two .csr_box .flex {
  justify-content: center;
}

.list_hr_two .csr_box .le {
  margin-right: 1.25rem;
}

.list_hr_two .csr_box .le,
.list_hr_two .csr_box .ri {
  font-size: 6rem;
  color: var(--color-zt);
  opacity: .2;
}

.list_hr_two .csr_box .content {
  font-size: 1.5rem;
  color: var(--color-zt);
}

.h100 {
  height: 100%;
}

.list_wenhua_one {
  background-size: cover;
  margin-bottom: 4.0625rem;
}

.list_wenhua_one .row {
  padding-top: 7.5rem;
}

.list_wenhua_one .right {
  padding-top: 6.25rem;
}

.list_wenhua_one .right .desc {
  color: #1B2756;
  text-align: justify;
  font-family: "Noto Sans SC";
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_wenhua_one .left .img_box {
  margin-bottom: -4.0625rem;
  position: relative;
}

.list_wenhua_one .left .img_box::before {
  content: '';
  display: block;
  width: 95%;
  height: 95%;
  background: linear-gradient(90deg, rgba(0, 222, 146, 0.2) 0%, rgba(0, 180, 224, 0.2) 50%, rgba(0, 110, 255, 0.2) 100%);
  position: absolute;
  top: -1.0625rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.list_wenhua_one .left .img_box::after {
  content: '';
  display: block;
  width: 90%;
  height: 95%;
  background: linear-gradient(90deg, rgba(0, 222, 146, 0.2) 0%, rgba(0, 180, 224, 0.2) 50%, rgba(0, 110, 255, 0.2) 100%);
  position: absolute;
  top: -2.125rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.list_wenhua_one .left .img_box .over {
  position: relative;
  z-index: 2;
}

.list_wenhua_two {
  background-size: cover;
}

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

.list_wenhua_two .right {
  padding-left: 3.75rem;
}

.list_wenhua_two .right .desc {
  color: #1B2756;
  text-align: justify;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_wenhua_three {
  background: #F4F7F9;
}

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

.list_wenhua_three .row .left_box {
  padding-left: var(--cbasta);
  padding-right: 3.125rem;
}

.list_wenhua_three .row .left_box .desc {
  color: #1B2756;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_wenhua_three .row .right {
  padding: 0;
}

.carousel__button svg {
  stroke: #000;
}

.list_social_one {
  padding-top: 8.75rem;
  padding-bottom: 7.5rem;
}

.list_social_one .desc {
  color: rgba(27, 39, 86, 0.7);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_social_one .swiper_scocialimg {
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
}

.list_social_one .swiper_scocialimg .over {
  border-radius: 1.25rem;
}

.list_social_two {
  padding-bottom: 7.1875rem;
}

.list_social_two .swiper_shzr {
  position: relative;
  overflow: hidden;
}

.list_social_two .swiper_shzr .left .over {
  border-radius: 1.25rem;
}

.list_social_two .swiper_shzr .right {
  padding-left: 5rem;
  padding-top: 4.375rem;
}

.list_social_two .swiper_shzr .right .num {
  display: inline-block;
  text-align: justify;
  font-size: 3rem;
  font-weight: 400;
  background: linear-gradient(90deg, #00DE92 1.55%, #00D4A3 15.55%, #00BBD2 43.55%, #00B4E0 51.55%, #006EFF 101.55%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.list_social_two .swiper_shzr .right h2 {
  margin-top: 1.375rem;
  color: #1B2756;
  text-align: justify;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_social_two .swiper_shzr .right .p {
  margin-top: .8125rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: justify;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
  /* 170% */
}

.list_social_two .swiper_shzr .swiper-pagination {
  text-align: right;
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_social_two .swiper_shzr .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: unset;
  opacity: 1;
}

.list_social_two .swiper_shzr .swiper-pagination-current {
  color: #006EFF;
  margin-right: .5rem;
}

.list_social_two .swiper_shzr .swiper-pagination-total {
  margin-left: .5rem;
}

.list_social_three {
  padding-top: 6.6875rem;
  background-size: cover;
}

.list_social_three .desc {
  margin-top: 2.0625rem;
  color: rgba(27, 39, 86, 0.7);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}

.list_social_three .content {
  background-color: #fff;
}

.list_social_three .content .row {
  margin-right: 0;
  align-items: center;
}

.list_social_three .content .left {
  padding-left: var(--cbasta);
  padding-right: 4.375rem;
}

.list_social_three .content .left h3 {
  color: #1B2756;
  font-size: 2.5rem;
  font-weight: 500;
}

.list_social_three .content .left p {
  margin-top: 1.8125rem;
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
  /* 170% */
}

.list_social_three .content .right {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.list_social_three .content .right .swiper-button-next,
.list_social_three .content .right .swiper-container-rtl .swiper-button-prev {
  right: calc(var(--cbasta) - 2.25rem);
}

.list_social_three .content .right .swiper-button-prev,
.list_social_three .content .right .swiper-container-rtl .swiper-button-next {
  left: -2.875rem;
}

.list_social_three .content .right .swiper-button-prev,
.list_social_three .content .right .swiper-container-rtl .swiper-button-next,
.list_social_three .content .right .swiper-button-next,
.list_social_three .content .right .swiper-container-rtl .swiper-button-prev {
  border-radius: .3125rem;
  background: #FFF;
  width: 3.5625rem;
  height: 3.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list_social_three .content .right .swiper-button-prev i,
.list_social_three .content .right .swiper-container-rtl .swiper-button-next i,
.list_social_three .content .right .swiper-button-next i,
.list_social_three .content .right .swiper-container-rtl .swiper-button-prev i {
  font-size: .875rem;
  color: rgba(27, 39, 86, 0.7);
  font-weight: 600;
}

.list_social_three .content .right::before {
  content: '';
  display: block;
  width: var(--cbasta);
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 0;
  z-index: 2;
}

.list_social_three .content .right .swiper_moreimg {
  position: relative;
  padding-right: var(--cbasta);
  overflow: hidden;
}

.list_social_three .content .right .swiper_moreimg .swiper-slide {
  position: relative;
}

.list_social_three .content .right .swiper_moreimg .swiper-slide-active .text {
  opacity: 1;
}

.list_social_three .content .right .swiper_moreimg .text {
  color: #FFF;
  text-align: justify;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.125rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2.375rem 3.375rem;
  background: linear-gradient(90deg, rgba(0, 222, 146, 0.8) 0%, rgba(0, 180, 224, 0.8) 50%, rgba(0, 110, 255, 0.8) 100%);
  opacity: 0;
  transition: all .4s;
}

.list_social_three .content .right .swiper-pagination {
  display: none;
}

.list_social_four .content {
  width: 21%;
  top: 50%;
  right: var(--cbasta);
  transform: translateY(-50%);
}

.list_social_four .content h3 {
  color: #1B2756;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 2.125rem;
}

.list_social_four .content p {
  margin-top: .9375rem;
  color: rgba(27, 39, 86, 0.7);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
}
