:root {
  --vi: #08129e;
  --grad: linear-gradient(to right, #1b27c9, #2c67ff);
  --txtColBlur: #7a7f8d;
  --txtColBlack: #0b1126;
}

@keyframes round {
  0% {
    stroke-dashoffset: 240;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

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

  100% {
    transform: scale(6);
    opacity: 0;
  }
}

.w1776 {
  width: 44.4rem;
  max-width: 95%;
  margin: 0 auto;
}

.w1620 {
  width: 40.5rem;
  max-width: 90%;
  margin: 0 auto;
}

.tac {
  text-align: center;
}

.lh1 {
  line-height: 1;
}

.fonb {
  font-weight: bold;
}

.nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}

.hmMd {
  font-family: "HarmonyOS_Sans_SC_Medium";
}

.main-tit {
  color: var(--txtColBlack);
  line-height: 1.2;
  font-size: 1.25rem;
}

.main-tit.white {
  color: #fff;
}

.main-tit span {
  color: var(--vi);
}

.main-sub {
  margin-top: 0.6rem;
  line-height: 1.6;
  font-size: 0.45rem;
  color: var(--txtColBlur);
}

.side-tit {
  font-size: 1rem;
  color: #000;
  line-height: 1.2;
}

.main-more {
  position: relative;
  z-index: 1;
  width: 3.45rem;
  height: 1.2rem;
  border-radius: 0.6rem;
  box-shadow: 0 0 0 1px var(--txtColBlur);
  color: var(--txtColBlur);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.4s;
}

.main-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.6rem;
  background: var(--grad);
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
}

.main-more svg {
  fill: var(--txtColBlur);
  stroke: var(--txtColBlur);
  width: 12px;
  height: 12px;
  transition: all 0.4s;
}

.main-more.white {
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.2);
}

.main-more.white svg {
  fill: #fff;
  stroke: #fff;
}

.main-more:hover {
  color: #fff;
  box-shadow: none;
}

.main-more:hover::after {
  opacity: 1;
}

.main-more:hover svg {
  fill: #fff;
  stroke: #fff;
}

.main-swiper .swiper-button-prev,
.main-swiper .swiper-button-next {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--txtColBlur);
  color: var(--txtColBlur);
}

.main-swiper .swiper-button-prev::after,
.main-swiper .swiper-button-next::after {
  font-size: 0.4rem;
}

.main-swiper .swiper-button-prev:hover,
.main-swiper .swiper-button-next:hover {
  background: var(--grad);
  box-shadow: none;
  color: #fff;
}

.main-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.4rem;
  height: 3px;
  background: rgba(0, 0, 0, 0.5);
}

.main-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--grad);
}

.con-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: none;
}

.con-dialog .container {
  width: 63%;
  border-radius: 0.25rem;
  padding: 1.5rem;
  border-radius: 0.25rem;
}

.con-dialog .container .close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 0.6rem;
  cursor: pointer;
}

.con-dialog .container .tit {
  color: var(--txtColBlack);
  line-height: 1.4;
}

.con-dialog .container .form {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.con-dialog .container .form .lf {
  width: calc(57% - 1rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
}

.con-dialog .container .form .lf .li {
  flex: auto;
}

.con-dialog .container .form .lf .li .h {
  color: var(--txtColBlack);
  line-height: 1.6;
}

.con-dialog .container .form .lf .li .h span {
  color: #fb6767;
}

.con-dialog .container .form .lf .li input {
  margin-top: 0.25rem;
  width: 100%;
  height: 1.25rem;
  background-color: #fff;
  color: var(--txtColBlack);
  padding: 0 0.5rem;
  border-radius: 6px;
}

.con-dialog .container .form .rg {
  width: 43%;
}

.con-dialog .container .form .rg .h {
  color: #0b1126;
  line-height: 1.6;
}

.con-dialog .container .form .rg .h span {
  color: #fb6767;
}

.con-dialog .container .form .rg textarea {
  margin-top: 0.25rem;
  width: 100%;
  height: 6.8rem;
  background-color: #fff;
  color: var(--txtColBlack);
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  resize: none;
}

.con-dialog .container .form .btm {
  margin-top: 1.2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.con-dialog .container .form .btm .agree {
  display: flex;
  align-items: center;
  color: #33456f;
  cursor: pointer;
}

.con-dialog .container .form .btm .agree span {
  position: relative;
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 1px #33456f;
  margin-right: 0.2rem;
  border-radius: 2px;
  transition: all 0.4s;
}

.con-dialog .container .form .btm .agree span::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.4s;
}

.con-dialog .container .form .btm .agree a {
  margin-left: 0.2rem;
  color: var(--vi);
}

.con-dialog .container .form .btm .agree.active span {
  box-shadow: none;
  background-color: var(--vi);
}

.con-dialog .container .form .btm .agree.active span::after {
  opacity: 1;
}

.con-dialog .container .form .btm .submit {
  width: 3.45rem;
  height: 1.2rem;
  border-radius: 0.6rem;
  background: var(--grad);
  color: #fff;
}

.data-download {
  padding-bottom: 4rem;
}

.data-download .li-box {
  margin-top: 2rem;
}

.data-download .li-box .li {
  width: 100%;
  height: 3.2rem;
  display: flex;
  align-items: center;
  padding: 0 2.35rem;
  border-radius: 0.25rem;
  background-color: #f6f7f9;
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.4s;
}

.data-download .li-box .li:last-child {
  margin-bottom: 0;
}

.data-download .li-box .li .icon {
  width: 1.5rem;
}

.data-download .li-box .li .icon img {
  width: 100%;
}

.data-download .li-box .li .h {
  margin-left: 2.75rem;
  color: #333333;
  line-height: 1.2;
  max-width: 70%;
}

.data-download .li-box .li .down {
  position: absolute;
  top: 50%;
  right: 2.6rem;
  transform: translateY(-50%);
  width: 0.9rem;
}

.data-download .li-box .li .down img {
  width: 100%;
}

.data-download .li-box .li:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.1);
}

.main-robot {
  padding-top: 3rem;
}

.main-robot .li-box {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1rem;
}

.main-robot .li-box .li {
  width: calc((100% - 1rem) / 2);
  height: 10rem;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 1.5rem 1.25rem;
  background-color: #f6f7f9;
}

.main-robot .li-box .li .bg {
  opacity: 0;
  transition: all 0.4s;
}

.main-robot .li-box .li .pic {
  position: absolute;
  right: 0;
  bottom: 0;
  /*width: 53%;*/
  z-index: 2;
  filter: grayscale(1);
}

.main-robot .li-box .li .pic img {
  /*width: 100%;*/
  transition: all .5s;
}

.main-robot .li-box .li:hover .pic img {
  transform: scale(1.1);
}

.main-robot .li-box .li .intro {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.main-robot .li-box .li .intro .h {
  color: #7A7F8D;
  line-height: 1.2;
  transition: all 0.4s;

}

.main-robot .li-box .li .intro .txt {
  margin-top: 0.4rem;
  line-height: 1.6;
  /*color: var(--txtColBlur);*/
  /*display: none;*/
}

.main-robot .li-box .li .intro .more {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: var(--txtColBlur);
}

.main-robot .li-box .li:hover .intro .more {
  color: var(--vi);
}

.main-robot .li-box .li:hover .intro .more svg {
  fill: var(--vi);
  stroke: var(--vi);

}

.main-robot .li-box .li.swiper-slide-active .intro .h {
  font-size: .8rem;
  color: var(--txtColBlack);
}

.main-robot .li-box .li .intro .more svg {
  fill: var(--txtColBlur);
  stroke: var(--txtColBlur);
  width: 11px;
  height: 11px;
}

.main-robot .li-box .li .bg {
  opacity: 1;
}

.main-robot .li-box .li .pic {
  filter: grayscale(0);
}

.main-robot .li-box .li:hover .intro .h {
  color: var(--vi);
}

/*.main-robot .li-box .li.swiper-slide-active {*/
/*    transform: scale(1.1);*/
/*}*/

.box1 .btn-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  right: 3.75rem;
}

.box1 .swiper-button-prev,
.box1 .swiper-button-next {
  position: relative;
  display: inline-flex;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 1.5rem;
}

.box1 .swiper-button-next {
  margin-left: .65rem;
}

.main-robot .li-box {
  /*margin-top: 2rem;*/
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1rem;
}

.main-robot .li-box .swiper {
  min-height: 14rem;
  width: 100%;
  margin-left: 3rem;
  width: calc(100% - 3rem);
  position: relative;
  overflow: hidden;
}

.main-robot .li-box .swiper .swiper-wrapper {
  align-items: center;
}

.main-robot .li-box .swiper .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
}

.main-robot .li-box .swiper .swiper-pagination .swiper-pagination-bullet {
  width: .175rem;
  height: .175rem;
  border-radius: .0875rem;
  background: #08129E4D;
  opacity: 1;
  transition: all .4s ease;
}

.main-robot .li-box .swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 1.1rem;
  background: var(--vi);
}

.main-robot .li-box .li {

  width: 13.75rem;
  height: 14.11rem;
  position: relative;

  overflow: hidden;
  padding: 0;
  display: flex;
  /*flex-direction: column;*/
  align-items: center;
  justify-content: flex-start;

  background-color: transparent;
  /*transform: translateX(-11rem);*/
}

.main-robot .li-box .li>div.box {
  width: 10rem;
  height: 8.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  /*padding: 0 .75rem 1rem;*/
  background-color: #f6f7f9;
  border-radius: 0.5rem;
  transition: all .4s ease;
  margin-left: 2.76rem;
  opacity: 0.8;
}

.main-robot .li-box .li.swiper-slide-prev {
  opacity: 0;
}

.main-robot .li-box .li.swiper-slide-active>div.box {
  width: 100%;
  height: 100%;
  margin-left: 0;
  opacity: 1;
}

.main-robot .li-box .li.swiper-slide-active .pic {
  height: 55%;
}

.main-robot .li-box .li .bg {
  opacity: 0;
  transition: all 0.4s;
}

.main-robot .li-box .li.swiper-slide-active .bg {
  opacity: 1;
}

.main-robot .li-box .li .pic {
  /*position: absolute;*/
  /*right: 0;*/
  /*bottom: 0;*/
  /*width: 100%;*/
  height: 56%;
  z-index: 2;
  filter: grayscale(0);
  position: initial;
}

.main-robot .li-box .li .pic img {
  /*width: 100%;*/
  height: 100%;
  object-fit: contain;
  transition: all .5s;
}

.main-robot .li-box .li:hover .pic img {
  transform: scale(1.1);
}

.main-robot .li-box .li .intro {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 .6rem;
}

.main-robot .li-box .li.swiper-slide-active .intro {
  text-align: left;
  padding: 0 .6rem;
}

.main-robot .li-box .li .intro .h {
  line-height: 1.2;
  transition: all 0.4s;
}

.main-robot .li-box .li .intro .txt {
  margin-top: 0.2rem;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-robot .li-box .li .intro .more {
  position: absolute;
  bottom: 0;
  right: .6rem;
  left: initial;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: var(--txtColBlur);
  opacity: 0;
  transition: all .4s ease;
}

.main-robot .li-box .li.swiper-slide-active .intro .more {
  opacity: 1;
}

.main-robot .li-box .li.swiper-slide-active .intro .txt {
  font-size: .4rem;
  max-width: 9rem;

}

.main-robot .li-box .li:hover .intro .more {
  color: var(--vi);
  border-bottom: .025rem solid var(--vi);
}

.main-robot .li-box .li:hover .intro .more svg {
  fill: var(--vi);
  stroke: var(--vi);

}

.main-robot .li-box .li .intro .more svg {
  fill: var(--txtColBlur);
  stroke: var(--txtColBlur);
  width: 11px;
  height: 11px;
}

/*.vision .main-robot .li-box .li .bg {*/
/*  opacity: 1;*/
/*}*/
/*.vision .main-robot .li-box .li .pic {*/
/*  filter: grayscale(0);*/
/*}*/
.main-robot .li-box .li:hover .intro .h {
  color: var(--vi);
}



.main-bar {
  padding: 2.65rem 0;
  position: relative;
}

.main-bar .cont {
  position: relative;
  z-index: 3;
}

.main-bar .cont .tit {
  color: #fff;
  line-height: 1.2;
}

.main-bar .cont .more {
  margin: 0.6rem auto 0;
  height: 1.05rem;
}

.page-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-box svg {
  fill: var(--txtColBlur);
  width: 0.375rem;
}

.page-box a[ref=prev],
.page-box a[ref=next] {
  width: 1.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--txtColBlur);
}

.page-box a[ref=prev]:hover,
.page-box a[ref=next]:hover {
  background: linear-gradient(270deg, #098cff 0%, #08129e 100%);
}

.page-box a[ref=prev]:hover svg,
.page-box a[ref=next]:hover svg {
  fill: #fff;
}

.page-box a {
  color: #666666;
  margin-right: 0.7rem;
  transition: all 0.4s;
}

.page-box a:last-child {
  margin-right: 0;
}

.page-box a:hover,
.page-box a.active {
  color: var(--vi);
}

.fix-bar {
  position: fixed;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}

.fix-bar .li {
  position: relative;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  background-color: #fff;
  cursor: pointer;
}

.fix-bar .li:last-child {
  margin-bottom: 0;
}

.fix-bar .li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0;
  transition: all 0.4s;
}

.fix-bar .li>img {
  position: relative;
  z-index: 3;
  max-width: 60%;
  max-height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.fix-bar .li:hover {
  background-color: transparent;
}

.fix-bar .li:hover>img {
  filter: brightness(100);
}

.fix-bar .li:hover::after {
  opacity: 1;
}

.footer {
  background-color: #f6f6f6;
}

.footer .top {
  padding: 2.85rem 0 3.3rem;
  display: flex;
  justify-content: space-between;

  column-gap: 1.5rem;
}

.footer .top .logo {
  width: 3.85rem;
}

.footer .top .logo img {
  width: 100%;
}

.footer .top .tel {
  margin-top: 1.4rem;
  color: #0b1126;
  line-height: 1.4;
}

.footer .top .time {
  color: var(--txtColBlur);
  line-height: 2.25;
}

.footer .top .address {
  margin-top: 0.25rem;
  color: var(--txtColBlur);
  line-height: 1.6;

  white-space: nowrap;
}

.footer .top .nav {
  display: flex;
  /*gap: 3.15rem;*/
  flex: 1;
  justify-content: space-between;
}

.footer .top .item {
  line-height: 1.2;
}

.footer .top .item p {
  color: #333333;
  margin-bottom: 0.75rem;
}

.footer .top .item a {
  display: block;
  color: var(--txtColBlur);
  margin-bottom: 0.45rem;
  transition: all 0.4s;
}

.footer .top .item a:last-child {
  margin-bottom: 0;
}

.footer .btm {
  border-top: 1px solid rgba(122, 127, 141, 0.4);
  padding: 0.65rem 0 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .btm .copyright {
  display: flex;
  gap: 0.35rem;
}

.footer .btm .copyright a {
  padding-right: 0.35rem;
  color: var(--txtColBlur);
  line-height: 1.2;
  position: relative;
}

.footer .btm .copyright a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 0.3rem;
  background-color: var(--txtColBlur);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.footer .btm .copyright a:last-child {
  padding-right: 0;
}

.footer .btm .copyright a:last-child::after {
  display: none;
}

.footer .btm .share {
  display: flex;
  gap: 0.6rem;
}

.footer .btm .share a {
  width: 0.8rem;
  height: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .btm .share a.share_box {
  position: relative;
}

.footer .btm .share a.share_box .EWM_down {
  position: absolute;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  /*right: calc(100% + 10px);*/
  left: 50%;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  width: 140px;
  height: 140px;
  transition: all .4s ease;
  opacity: 0;
  pointer-events: none;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, .12); */
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
}


.footer .btm .share a.share_box:hover .EWM_down {
  bottom: calc(100% + 20px);
  opacity: 1;

}

.footer .btm .share a.share_box .EWM_down img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer .btm .share a.share_box .EWM_down:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 18px solid #fff;
}



.index .box1 {
  padding: 3rem 0 1.75rem;
}

.index .box1 .box1-swiper {
  margin-top: 2rem;
}

.index .box1 .box1-swiper .swiper-pagination {
  position: relative;
  margin-top: 0.8rem;
  bottom: 0;
  line-height: 1;
}

.index .box1 .box1-swiper .swiper-slide {
  width: 49%;
  margin-right: 2%;
}

.index .box1 .box1-swiper .swiper-slide:last-child {
  margin-right: 0;
}

.index .box1 .box1-swiper .swiper-slide .pic {
  width: 100%;
  height: 11.8rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.index .box1 .box1-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.4s;
}

.index .box1 .box1-swiper .swiper-slide .cont {
  margin-top: 1rem;
  width: 100%;
  position: relative;
}

.index .box1 .box1-swiper .swiper-slide .cont .h {
  color: #0b1126;
}

.index .box1 .box1-swiper .swiper-slide .cont .txt {
  margin-top: 0.3rem;
  color: #7a7f8d;
}

.index .box1 .box1-swiper .swiper-slide .cont .more {
  position: absolute;
  bottom: 1px;
  right: 1px;
}

.index .box1 .box1-swiper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}

.index .box2 {
  padding: 1.9rem 0 6.9rem;
}

.index .box2 .tit {
  text-align: center;
}

.index .box2 .swiper-box {
  margin-top: 1.75rem;
  position: relative;
}

.index .box2 .swiper-box .swiper-button-prev,
.index .box2 .swiper-box .swiper-button-next {
  bottom: calc(100% + 1.85rem);
}

.index .box2 .box2-swiper .swiper-slide {
  width: 31.5%;
  height: 13.05rem;
  margin-right: 2.75%;
  border-radius: 0.75rem;
  overflow: hidden;
}

.index .box2 .box2-swiper .swiper-slide:last-child {
  margin-right: 0;
}

.index .box2 .box2-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.index .box2 .box2-swiper .swiper-slide .h {
  position: absolute;
  bottom: 1.3rem;
  left: 1.25rem;
  color: #fff;
}

.index .box2 .box2-swiper .swiper-slide .arr {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #fff;
  transition: all 0.4s;
}

.index .box2 .box2-swiper .swiper-slide .arr span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.4rem;
  height: 0.4rem;
  background-color: #fff;
  transition: all 0.4s;
}

.index .box2 .box2-swiper .swiper-slide .arr .heng {
  height: 2px;
}

.index .box2 .box2-swiper .swiper-slide .arr .shu {
  width: 2px;
}

.index .box2 .box2-swiper .swiper-slide:hover .arr {
  box-shadow: none;
  background-color: #fff;
}

.index .box2 .box2-swiper .swiper-slide:hover .heng {
  background: linear-gradient(to top, #1b27c9, #2c67ff);
}

.index .box2 .box2-swiper .swiper-slide:hover .shu {
  background: linear-gradient(to left, #1b27c9, #2c67ff);
}

.index .box3 {
  padding: 4.05rem 0 4.15rem;
}

.index .box3 .container {
  margin-top: 2.65rem;
  display: flex;
}

.index .box3 .container .tab-item {
  width: 1.75rem;
  margin-right: 6%;
}

.index .box3 .container .tab-item .item {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 2.2rem;
  cursor: pointer;
  transition: all 0.4s;
}

.index .box3 .container .tab-item .item:last-child {
  margin-bottom: 0;
}

.index .box3 .container .tab-item .item:last-child::before {
  display: none;
}

.index .box3 .container .tab-item .item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 2.6rem;
  border-right: 1px dashed rgba(122, 127, 141, 0.6);
}

.index .box3 .container .tab-item .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
  border: 3px solid #dae3fa;
  opacity: 0;
  transition: all 0.4s;
}

.index .box3 .container .tab-item .item img {
  max-width: 60%;
  max-height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.index .box3 .container .tab-item .item svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  z-index: 3;
}

.index .box3 .container .tab-item .item svg circle {
  r: 0.825rem;
  cx: 50%;
  cy: 50%;
  fill: transparent;
  stroke: var(--vi);
  stroke-width: 3px;
}

.index .box3 .container .tab-item .item.active {
  background-color: #fff;
  box-shadow: 0 0.1rem 1.25rem 0.1rem rgba(153, 200, 246, 0.25);
}

.index .box3 .container .tab-item .item.active::after {
  opacity: 1;
}

.index .box3 .container .tab-item .item.active svg {
  animation: round 10s linear forwards;
}

.index .box3 .container .cont-item {
  position: relative;
  width: 27.5%;
  margin-right: calc(13.5% - 1.75rem);
}

.index .box3 .container .cont-item .item {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.5;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.index .box3 .container .cont-item .item .h {
  color: #333333;
}

.index .box3 .container .cont-item .item .txt {
  margin-top: 0.8rem;
  color: #333333;
}

.index .box3 .container .cont-item .item .intro {
  margin-top: 0.35rem;
  color: var(--txtColBlur);
}

.index .box3 .container .cont-item .item .more {
  margin-top: 1.75rem;
}

.index .box3 .container .cont-item .item.show {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.index .box3 .container .img-item {
  width: 53%;
  height: 13.25rem;
  position: relative;
}

.index .box3 .container .img-item .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.4s;
}

.index .box3 .container .img-item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.index .box3 .container .img-item .img.prev {
  transform-origin: top center;
  opacity: 1;
  visibility: visible;
  top: -0.5rem;
  transform: scale(0.95);
  z-index: 1;
}

.index .box3 .container .img-item .img.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 2;
  box-shadow: 2px 3px 20px 0px rgb(7 11 60 / 12%);
}

.index .box5 {
  padding-bottom: 1.2rem;
}

.index .box5 .cont {
  /* border-radius: 0.4rem; */
  padding: 2.1rem 2.85rem;
  /* background: linear-gradient(180deg, #E6F5FF 0%, #C2EEFF 100%); */
  position: relative;
}

.index .box5 .cont .mask {
  display: none;
  width: 20.1rem;
  height: 100%;
  position: absolute;
  top: 0;
}

.index .box5 .cont .mask.lf {
  background: linear-gradient(270deg, rgba(139, 211, 255, 0.00) 0%, #8BD3FF 100%);
  left: 0;
}

.index .box5 .cont .mask.rg {
  background: linear-gradient(270deg, #8BD3FF 0%, rgba(139, 211, 255, 0.00) 100%);
  right: 0;
}

.index .box5 .tit {
  color: #333;
  position: relative;
  z-index: 2;
}

.index .box5 .sub {
  margin-top: 0.4rem;
  color: #7A7F8D;
  line-height: 2;
  position: relative;
  z-index: 2;
}

.index .box5 .more {
  margin-top: 0.55rem;
  display: block;
  width: 3.2rem;
  height: 0.95rem;
  border-radius: 0.5rem;
  text-align: center;
  line-height: 0.95rem;
  box-shadow: 0 0 0 1px #7A7F8D;
  color: #7A7F8D;
  position: relative;
  z-index: 2;
  transition: all .4s ease;
}

.index .box5 .more:hover {
  color: #fff;
  background: linear-gradient(to right, #1B27C9, #2C67FF);
  box-shadow: none;
}

.index .box5 .rImg {
  width: 13.55rem;
  height: 107%;
  position: absolute;
  right: 5rem;
  top: 0;
  z-index: 2;
  object-fit: contain;
}

.i-news {
  padding: 5rem 0 1.85rem 3.75rem;
}

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

.i-news .box4-title {
  width: 20%;
}

.i-news .box4-title .sub {
  margin-top: 1.8rem;
}

.i-news .box4-title .swiper-button-prev,
.i-news .box4-title .swiper-button-next {
  position: relative;
  display: inline-flex;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 2.65rem;
}

.i-news .box4-title .swiper-button-prev.swiper-button-lock,
.i-news .box4-title .swiper-button-next.swiper-button-lock {
  display: none;
}

.i-news .box4-title .swiper-button-next {
  margin-left: 0.65rem;
}

.i-news .iNews-swiper {
  width: calc(80% - 3.65rem);
  padding-bottom: 1rem;
  margin: 0;
}

.i-news .iNews-swiper .swiper-slide {
  width: 34%;
  height: -moz-max-content;
  height: max-content;
  margin-right: 2%;
  border-radius: 0 0 0.4rem 0.4rem;
  box-shadow: 0 0.1rem 0.45rem rgba(17, 23, 255, 0.08);
  transition: all 0.4s;
}

.i-news .iNews-swiper .swiper-slide:last-child {
  margin-right: 0;
}

.i-news .iNews-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 1px;
  width: calc(100% - 1.4rem);
  height: 77%;
  background: linear-gradient(270deg, rgba(16, 49, 255, 0) 0%, #1031ff 100%);
  border-radius: 0.5rem;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
}

.i-news .iNews-swiper .swiper-slide .pic {
  width: 100%;
  border-radius: 0.4rem 0.4rem 0 0;
  aspect-ratio: 217/129;
  overflow: hidden;
}

.i-news .iNews-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.i-news .iNews-swiper .swiper-slide .intro {
  position: relative;
  width: 100%;
  padding: 0.8rem 0.65rem 0.75rem;
  background-color: #fff;
  border-radius: 0 0 0.4rem 0.4rem;
  transition: all 0.4s;
}

.i-news .iNews-swiper .swiper-slide .intro .h {
  line-height: 1.4;
  color: #333333;
  max-height: 2.8em;
  overflow: hidden;
  transition: all 0.4s;
}

.i-news .iNews-swiper .swiper-slide .intro .txt {
  margin-top: 0.2rem;
  color: var(--txtColBlur);
  line-height: 1.5;
  /*max-height: 3em;*/
  overflow: hidden;
  transition: all 0.4s;
  display: -webkit-box;
  -webkit-line-clamp: 2;

  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.i-news .iNews-swiper .swiper-slide .intro .info {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  color: var(--txtColBlur);
}

.i-news .iNews-swiper .swiper-slide .intro .info .tag {
  width: -moz-max-content;
  width: max-content;
  transition: all 0.4s;
}

.i-news .iNews-swiper .swiper-slide .intro .info .line {
  margin: 0 0.35rem;
  width: 1px;
  height: 0.25rem;
  color: var(--txtColBlur);
  transition: all 0.4s;
}

.i-news .iNews-swiper .swiper-slide .intro .more {
  position: absolute;
  bottom: 1.6rem;
  right: 2rem;
  display: flex;
  align-items: center;
  color: var(--vi);
  opacity: 0;
  transition: all 0.4s;
}

.i-news .iNews-swiper .swiper-slide .intro .more span {
  margin-left: 0.25rem;
}

.i-news .iNews-swiper .swiper-slide .intro .more svg {
  width: 15px;
  fill: var(--vi);
}

.i-news .iNews-swiper .swiper-slide-active {
  width: 45%;
}

.i-news .iNews-swiper .swiper-slide-active::after {
  opacity: 1;
}

.i-news .iNews-swiper .swiper-slide-active .intro {
  padding: 0.9rem 0.9rem 1.6rem;
}

.i-news .iNews-swiper .swiper-slide-active .intro .h {
  font-size: 0.55rem;
}

.i-news .iNews-swiper .swiper-slide-active .intro .txt {
  margin-top: 0.2rem;
}

.i-news .iNews-swiper .swiper-slide-active .intro .info {
  margin-top: 0.65rem;
}

.i-news .iNews-swiper .swiper-slide-active .intro .info .tag {
  padding: 0 0.3rem;
  height: 0.8rem;
  line-height: 0.8rem;
  border-radius: 0.4rem;
  color: var(--vi);
  background-color: rgba(44, 103, 255, 0.2);
}

.i-news .iNews-swiper .swiper-slide-active .intro .info .line {
  margin-left: 0.5rem;
}

.i-news .iNews-swiper .swiper-slide-active .intro .more {
  opacity: 1;
}

.source {
  padding: 2rem 0;
}

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

.source .sidebar {
  width: 23%;
  position: sticky;
  top: 2rem;
  padding: 1.6rem;
  background-color: #f6faff;
  border-radius: 0.5rem;
}

.source .sidebar .li {
  display: flex;
  align-items: center;
  color: var(--txtColBlur);
  margin-bottom: 1rem;
}

.source .sidebar .li:last-child {
  margin-bottom: 0;
}

.source .sidebar .li span {
  margin-right: 0.4rem;
  width: 0.6rem;
  filter: brightness(0.1);
  opacity: 0.5;
}

.source .container {
  width: 72%;
}

.source .container .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.source .container .top .search {
  width: 11.3rem;
  height: 1.2rem;
  background-color: #f6faff;
  border-radius: 0.25rem;
  border: 1px solid rgba(8, 18, 158, 0.1);
  padding: 0 0.4rem;
  display: flex;
  align-items: center;
}

.source .container .top .search input {
  width: calc(100% - 1.2rem);
  height: 100%;
  background: none;
  color: #000;
}

.source .container .top .search input::-moz-placeholder {
  color: var(--txtColBlur);
}

.source .container .top .search input::placeholder {
  color: var(--txtColBlur);
}

.source .container .top .search button {
  width: 1.2rem;
  height: 100%;
  background: none;
}

.source .li-box {
  margin-top: 1rem;
}

.source .li-box .li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.7rem 1rem;
  background-color: #fff;
  box-shadow: 0 0 0.75rem rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.4s;
}

.source .li-box .li:last-child {
  margin-bottom: 0;
}

.source .li-box .li .icon {
  width: 1.85rem;
}

.source .li-box .li .icon img {
  width: 100%;
}

.source .li-box .li .con {
  margin-left: 0.6rem;
  width: 28%;
}

.source .li-box .li .con .h {
  color: #333333;
  line-height: 1;
}

.source .li-box .li .con .txt {
  margin-top: 0.3rem;
  color: #666666;
  line-height: 1.2;
}

.source .li-box .li .down {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 1rem;
  box-shadow: 0 0 0 1px var(--txtColBlur);
  border-radius: 0.5rem;
  text-align: center;
  line-height: 1rem;
  color: var(--txtColBlur);
}

.source .li-box .li:hover {
  background-color: #f6faff;
}

.source .li-box .li:hover .down {
  background: var(--grad);
  color: #fff;
  box-shadow: none;
}

.about .box1 {
  padding: 4rem 0 0;
}

.about .box1 .container {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about .box1 .container .pic {
  width: 55.5%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.about .box1 .container .pic img {
  width: 100%;
}

.about .box1 .container .cont {
  width: calc(44.5% - 2.5rem);
  /*height: 8.1rem;*/
  /*position: relative;*/
  /*overflow: hidden;*/
}

/*.about .box1 .container .cont::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: linear-gradient(to bottom, transparent, #fff);*/
/*}*/
.about .box1 .container .cont .scroll-box {
  position: relative;
  will-change: transform;
  transition-timing-function: linear;
}

.about .box2 {
  margin-top: 4rem;
}

.about .box2 .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about .box2 .top .tit {
  width: 26%;
  color: var(--txtColBlack);
}

.about .box2 .top .tit span {
  color: var(--vi);
}

.about .box2 .top .txt {
  width: 74%;
  color: var(--txtColBlur);
  line-height: 2;
}

.about .box2 .intro {
  margin-top: 0.9rem;
  color: var(--txtColBlur);
  line-height: 2;
}

.about .box3 {
  margin-top: 4rem;
}

.about .box3 .li-box {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.about .box3 .li-box .li {
  width: calc((100% - 3rem) / 3);
  height: 13rem;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
}

.about .box3 .li-box .li .con {
  position: absolute;
  z-index: 3;
  color: #fff;
  bottom: 1rem;
  left: 1rem;
}

.about .box3 .li-box .li .con .txt {
  margin-top: 0.5rem;
}

.about .box3 .li-box .li:hover .bg {
  transform: scale(1.04);
}

.about .box4 {
  margin-top: 4rem;
  padding: 3.5rem 0 2rem;
  /*background: #98D6F6;*/
  position: relative;
}

.about .box4 .rImg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about .box4 .wrap {
  position: relative;
}

.about .box4 .mask {
  position: absolute;
  width: 10.15rem;
  height: 100%;
  top: 148px;
  right: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 10%, rgba(149, 202, 241, .3) 80%, rgb(149, 202, 241, 0) 100%);
  z-index: 3;
}

.about .box4 .tab-box {
  position: relative;
  padding: 0 3.5rem;
}

/*.about .box4 .tab-box::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 0;*/
/*  transform: translateY(-50%);*/
/*  width: 40%;*/
/*  height: 0.125rem;*/
/*  background: linear-gradient(90deg, rgba(164, 215, 245, 0.00) 0%, #479BD5 57.07%, rgba(182, 220, 246, 0.00) 108.54%)*/
/*}*/
/*.about .box4 .tab-box::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  right: 0;*/
/*  transform: translateY(-50%);*/
/*  width: 40%;*/
/*  height: 0.125rem;*/
/*  background: linear-gradient(90deg, rgba(164, 215, 245, 0.00) 0%, #479BD5 57.07%, rgba(182, 220, 246, 0.00) 108.54%)*/
/*}*/
.about .box4 .tab-swiper {
  margin-top: 1.2rem;
}

.about .box4 .tab-swiper .swiper-slide {
  width: -moz-max-content;
  width: max-content;
  height: 2.1rem;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-align: center;
  margin-right: 2.5rem;
  cursor: pointer;
}

.about .box4 .tab-swiper .swiper-slide:last-child {
  margin-right: 0;
}

.about .box4 .tab-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -0.425rem;
  width: 0.85rem;
  height: 0.15rem;
  border-radius: 0.15rem;
  background: var(--grad);
  transform: scaleX(0);
  transition: all 0.4s;
}

.about .box4 .tab-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.225rem;
  margin-left: -0.225rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: #fff;
  transform: scale(0.77);
  transform-origin: center;
  transition: all 0.4s;
}

.about .box4 .tab-swiper .swiper-slide .h {
  font-family: "Poppins-Bold";
  opacity: 0;
  transition: all 0.4s;
}

.about .box4 .tab-swiper .swiper-slide .h2 {
  font-family: "Poppins-Regular";
  transition: all 0.4s;
}

.about .box4 .tab-swiper .swiper-slide .line {
  position: absolute;
  width: 3.9rem;
  height: 0.125rem;
  left: 54%;
  background: rgba(255, 255, 255, .15);
  transform: translateY(-50%);
  top: 50%;
}

.about .box4 .tab-swiper .swiper-slide .dash_line {
  position: absolute;
  width: 3.3rem;
  height: 0.425rem;
  left: 77%;
  max-width: 300%;
  transform: translateY(-50%);
  top: 50%;
  object-fit: contain;
}

.about .box4 .tab-swiper .swiper-slide.active::before {
  transform: scaleX(1);
}

.about .box4 .tab-swiper .swiper-slide.active::after {
  background-color: var(--vi);
  transform: scale(1);
  box-shadow: 0 0 0 2px #fff;
}

.about .box4 .tab-swiper .swiper-slide.active .h {
  opacity: 1;
}

.about .box4 .tab-swiper .swiper-slide.active .h2 {
  opacity: 0;
}

.about .box4 .swiper-box {
  margin-top: 1.35rem;
  position: relative;
  padding: 0 1.5rem;
}

.about .box4 .swiper-box .swiper-button-prev,
.about .box4 .swiper-box .swiper-button-next {
  width: 1.05rem;
  height: 0.75rem;
  border-radius: 0.4rem;
  color: var(--txtColBlur);
  box-shadow: 0 0 0 1px var(--txtColBlur);
  z-index: 4;
}

.about .box4 .swiper-box .swiper-button-prev::after,
.about .box4 .swiper-box .swiper-button-next::after {
  font-size: 0.3rem;
}

.about .box4 .swiper-box .swiper-button-prev {
  left: 0;
}

.about .box4 .swiper-box .swiper-button-next {
  right: 0;
}

.about .box4 .box4-swiper .swiper-slide {
  width: -moz-max-content;
  width: max-content;
  max-width: 44%;
  margin-right: 1.3%;
  border-radius: 0.25rem;
  background: linear-gradient(180deg, #fff 0%, #e8f7ff 100%);
  padding: 0.8rem;
  height: 7.55rem;
}

.about .box4 .box4-swiper .swiper-slide:last-child {
  margin-right: 0;
}

.about .box4 .box4-swiper .swiper-slide .top {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.about .box4 .box4-swiper .swiper-slide .top .year {
  color: var(--vi);
  font-family: "Poppins-Bold";
}

.about .box4 .box4-swiper .swiper-slide .top .h {
  margin-left: 0.4rem;
  color: var(--txtColBlack);
  font-weight: bold;
}

.about .box4 .box4-swiper .swiper-slide .txt {
  margin-top: 0.65rem;
}

.about .box4 .box4-swiper .swiper-slide .txt p {
  position: relative;
  color: var(--txtColBlack);
  padding-left: 0.45rem;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.about .box4 .box4-swiper .swiper-slide .txt p:last-child {
  margin-bottom: 0;
}

.about .box4 .box4-swiper .swiper-slide .txt p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 0.15rem;
  height: 0.15rem;
  border-radius: 50%;
  background-color: var(--txtColBlack);
}

.about .box5 {
  padding: 3rem 0 2.6rem;
}

.about .box5 .swiper-box {
  margin-top: 2rem;
  width: 100%;
  position: relative;
  padding-bottom: 2.75rem;
}

.about .box5 .swiper-box .swiper-button-prev,
.about .box5 .swiper-box .swiper-button-next {
  top: auto;
  bottom: 1px;
}

.about .box5 .swiper-box .swiper-button-prev {
  left: calc(50% - 1.5rem);
}

.about .box5 .swiper-box .swiper-button-next {
  right: calc(50% - 1.5rem);
}

.about .box5 .box5-swiper .swiper-slide .pic {
  height: 5.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .box5 .box5-swiper .swiper-slide .pic img {
  max-height: 100%;
}

.about .box5 .box5-swiper .swiper-slide .h {
  margin-top: 0.6rem;
  color: var(--txtColBlack);
  line-height: 1.45;
}

.join {
  /*padding-bottom: 3.4rem;*/
}

.join .box1 {
  padding: 3.35rem 0 0;
}

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

.join .box1 .cont {
  width: 39%;
  /*height: 10.7rem;*/
  position: relative;
  overflow: hidden;
  color: #333333;
}

/*.join .box1 .cont::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  bottom: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: linear-gradient(to bottom, transparent, #fff);*/
/*}*/
/*.join .box1 .cont .scroll-box {*/
/*  position: relative;*/
/*  will-change: transform;*/
/*  transition-timing-function: linear;*/
/*}*/
.join .box1 .cont .scroll-box .join .box1 .pic {
  width: 53%;
  position: relative;
}

.join .box1 .pic::after {
  content: "";
  position: absolute;
  top: -0.35rem;
  left: 0.6rem;
  width: calc(100% - 1.2rem);
  height: 70%;
  background-color: rgba(130, 130, 130, 0.3);
  z-index: -1;
  border-radius: 0.4rem;
}

.join .box1 .pic img {
  width: 100%;
  border-radius: .4rem;
}

.join .box2 {
  margin-top: 4rem;
  padding-bottom: 3rem;
}

.join .box2 .li-box {
  margin-top: 1rem;
  display: flex;
}

.join .box2 .li-box .li {
  position: relative;
  width: 16.6666666667%;
  height: 7.95rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.join .box2 .li-box .li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, rgba(150, 193, 255, 0) 0%, #96c1ff 49.71%, rgba(150, 193, 255, 0) 100%);
}

.join .box2 .li-box .li:last-child::after {
  display: none;
}

.join .box2 .li-box .li .icon {
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.join .box2 .li-box .li .icon img {
  max-width: 70%;
  max-height: 70%;
  -o-object-fit: contain;
  object-fit: contain;
}

.join .box2 .li-box .li .h {
  margin-top: 0.6rem;
  color: var(--txtColBlack);
  line-height: 1.6;
}

.join .box3 {
  padding: 3rem 0 4rem;
}

.join .box3 .tab {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.join .box3 .tab .li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 6rem;
  height: 1.2rem;
  border-radius: 0.6rem;
  box-shadow: 0 0 0 1px var(--txtColBlur);
  color: var(--txtColBlur);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.join .box3 .tab .li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.6rem;
  background: var(--grad);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: center right;
  transition: transform 0.4s ease-in-out;
}

.join .box3 .tab .li span {
  width: 0.5rem;
}

.join .box3 .tab .li span img {
  width: 100%;
}

.join .box3 .tab .li:hover,
.join .box3 .tab .li.active {
  color: #fff;
  box-shadow: none;
}

.join .box3 .tab .li:hover::after,
.join .box3 .tab .li.active::after {
  transform: scaleX(1);
  transform-origin: center left;
}

.join .box3 .tab .li:hover span,
.join .box3 .tab .li.active span {
  filter: brightness(100);
}

.join .box3 .item-cont {
  margin-top: 2rem;
}

.join .box3 .item {
  display: none;
  flex-wrap: wrap;
  gap: 1.5rem 1.5rem;
  border-radius: 0.5rem;
}

.join .box3 .item.show {
  display: flex;
}

.join .box3 .item .li {
  position: relative;
  width: calc((100% - 1.5rem) / 2);
  min-height: 12.4rem;
  border-radius: 0.5rem;
  padding: 1rem;
  padding-bottom: 3rem;
  line-height: 1.2;
}

.join .box3 .item .li .h {
  color: var(--vi);
  line-height: 1.2;
}

.join .box3 .item .li .info {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  color: var(--txtColBlack);
  gap: 0.5rem;
}

.join .box3 .item .li .list-box {
  margin-top: 0.6rem;
  height: 6rem;
  overflow-y: auto;
  transition: all .4s ease;
  padding-right: .6rem;
}

.join .box3 .item .li .list-box .list {
  line-height: 1.2;
}

.join .box3 .item .li .list-box .list .h1 {
  color: var(--txtColBlack);
}

.join .box3 .item .li .list-box .list .txt {
  margin-top: 0.45rem;
  color: var(--txtColBlack);
}

.join .box3 .item .li .list-box::-webkit-scrollbar {
  width: 1px;
  height: 1px;
  background: rgba(186, 189, 229, 0.13);
}

.join .box3 .item .li .list-box::-webkit-scrollbar-thumb {
  background: rgba(186, 189, 229, 0.34);
  /*border-radius: .04rem;*/
  width: 2px;
}

.join .box3 .item .li .list-box::-webkit-scrollbar-track {
  background: transparent;
}

.join .box3 .item .li .list-box:hover::-webkit-scrollbar-thumb {
  background: rgba(186, 189, 229, 0.84);
}

.join .box3 .item .li .list-box .list .txt p {
  margin-bottom: 0.3rem;
  line-height: 2;
}

.join .box3 .item .li .list-box .list .txt p:last-child {
  margin-bottom: 0;
}

.join .box3 .item .li .more {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}

.news-info {
  padding: 2rem 0 3rem;
}

.news-info .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.news-info .lf {
  width: 70%;
  background-color: #f6faff;
  padding: 2.5rem;
  border-radius: 0.5rem;
}

.news-info .lf .tit {
  color: var(--txtColBlack);
  line-height: 1.5;
}

.news-info .lf .info {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  color: #333333;
}

.news-info .lf .info .time {
  margin-right: 1rem;
}

.news-info .lf .info .share {
  display: flex;
  align-items: center;
}

.news-info .lf .info .share p {
  margin-right: 0.25rem;
}

.news-info .lf .info .share a {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d3d3d3;
  margin-right: 0.35rem;
}

.news-info .lf .info .share a:last-child {
  margin-right: 0;
}

.news-info .lf .cont {
  margin-top: 0.6rem;
  border-top: 1px solid #d6e4fa;
  padding-top: 2rem;
  color: #666666;
  line-height: 2;
}

.news-info .rg {
  position: sticky;
  top: 2rem;
  width: 28%;
}

.news-info .rg .handle {
  display: flex;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.news-info .rg .handle .search {
  width: calc(100% - 2.8rem);
  height: 1.2rem;
  background-color: #f6faff;
  border: 1px solid var(--vi);
  border-radius: 0.25rem 0 0 0.25rem;
  overflow: hidden;
}

.news-info .rg .handle .search input {
  width: 100%;
  height: 100%;
  padding: 0 0.4rem;
  color: var(--txtColBlack);
}

.news-info .rg .handle .search input::-moz-placeholder {
  color: var(--txtColBlur);
}

.news-info .rg .handle .search input::placeholder {
  color: var(--txtColBlur);
}

.news-info .rg .handle .select {
  width: 2.8rem;
  height: 1.2rem;
  background: var(--grad);
  position: relative;
  color: #fff;
  text-align: center;
  padding-right: 0.4rem;
  line-height: 1.2rem;
  border-radius: 0 0.25rem 0.25rem 0;
  cursor: pointer;
  z-index: 10;
}

.news-info .rg .handle .select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  border-top: 0.175rem solid #fff;
  border-left: 0.15rem solid transparent;
  border-right: 0.15rem solid transparent;
}

.news-info .rg .handle .select .drop-down {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  max-height: 4rem;
  overflow-y: auto;
  background-color: #fff;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.4s;
}

.news-info .rg .handle .select .drop-down a {
  display: block;
  width: 100%;
  height: 1rem;
  text-align: center;
  line-height: 1rem;
  color: var(--txtColBlur);
  transition: all 0.4s;
}

.news-info .rg .handle .select .drop-down a:hover {
  color: var(--vi);
}

.news-info .rg .handle .select:hover .drop-down {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.news-info .rg .card {
  position: relative;
  background-color: #f6faff;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 1.5rem 1rem;
  margin-bottom: 0.5rem;
}

.news-info .rg .card:last-child {
  margin-bottom: 0;
}

.news-info .rg .card .h {
  color: var(--txtColBlack);
  margin-bottom: 1rem;
}

.news-info .rg .card .list .item {
  display: block;
  margin-bottom: 0.8rem;
}

.news-info .rg .card .list .item:last-child {
  margin-bottom: 0;
}

.news-info .rg .card .list .item .pic {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 0.6rem;
}

.news-info .rg .card .list .item .pic img {
  width: 100%;
}

.news-info .rg .card .list .item .tit_h {
  color: var(--txtColBlack);
  line-height: 1.2;
  margin-bottom: 0.2rem;
  transition: all 0.4s;
}

.news-info .rg .card .list .item .time {
  color: var(--txtColBlur);
}

.news-info .rg .card .list .item:hover .tit_h {
  color: var(--vi);
}

.news-info .rg .card .btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.55rem;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-info .rg .card .btn svg {
  width: 0.4rem;
  margin-left: 0.5rem;
}

.news-info .rg .card.dow {
  padding-bottom: 2.3rem;
}

.brand .box1 {
  padding: 3rem 0 0;
}

.brand .box1 .container {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.brand .box1 .cont {
  width: 37%;
}

.brand .box1 .cont .txt {
  margin-top: 1.6rem;
  line-height: 2;
  color: var(--txtColBlur);
}

.brand .box1 .pic {
  width: 55.5%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.brand .box1 .pic img {
  width: 100%;
}

.brand .box2 {
  margin-top: 4rem;
}

.brand .box2 .li-box {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.brand .box2 .li-box .li {
  width: calc((100% - 3rem) / 3);
  height: 7.5rem;
  position: relative;
  border-radius: 0.5rem;
  padding: 2.55rem 2rem 0.5rem;
  overflow: hidden;
}

.brand .box2 .li-box .li .cont {
  position: relative;
  z-index: 5;
  color: #fff;
  line-height: 1.6;
}

.brand .box2 .li-box .li .cont .txt {
  margin-top: 0.4rem;
}

.brand .box2 .li-box .li .cont .num {
  font-family: "Poppins-Bold";
  margin-top: 0.15rem;
  line-height: 1.5;
  font-style: italic;
}

.brand .box3 {
  margin-top: 4rem;
  padding: 3rem 0 1.15rem;
  background-color: #f2f6fa;
}

.brand .box3 .li-box {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1.5rem;
}

.brand .box3 .li-box .li {
  width: calc((100% - 1.5rem) / 2);
  height: 7.2rem;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 2rem 1.5rem 1rem;
}

.brand .box3 .li-box .li .cont {
  position: relative;
  z-index: 5;
  line-height: 1.2;
}

.brand .box3 .li-box .li .cont .h {
  color: var(--txtColBlack);
}

.brand .box3 .li-box .li .cont .txt {
  margin-top: 0.55rem;
  color: var(--txtColBlur);
}

.brand .box3 .li-box .li:hover .bg {
  transform: scale(1.04);
}

.brand .box3 .down {
  margin: 1.4rem auto 0;
}

.brand .box3 .tips {
  margin: 0.25rem auto 0;
  width: -moz-max-content;
  width: max-content;
  color: var(--txtColBlur);
  line-height: 1.7;
}

.brand .box3 .tips span {
  color: var(--vi);
  margin-right: 0.1rem;
}

.brand .box4 {
  padding: 3rem 0 0;
}

.brand .box4 .top {
  display: flex;
  justify-content: space-between;
}

.brand .box4 .top .tit {
  line-height: 1.2;
  color: var(--txtColBlur);
  margin-bottom: 0.6rem;
}

.brand .box4 .top .txt {
  width: 43.4%;
  color: var(--txtColBlur);
  line-height: 1.6;
}

.brand .box4 .pic {
  margin: 3.15rem auto 0;
  width: 81.7%;
  position: relative;
}

.brand .box4 .pic img {
  width: 100%;
}

.brand .box4 .pic .base {
  position: absolute;
  width: 0.35rem;
  /*top: 36.28%;*/
  /*left: 80.88%;*/
  top: 44.28%;
  left: 76%;
}

.brand .box4 .pic .base .icon {
  width: 100%;
}

.brand .box4 .pic .base .icon1 {
  position: absolute;
  top: 3%;
  left: 70%;
  transform: translateY(-50%);
  width: 1rem;
}

.brand .box4 .pic .base .cir {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: #2590ff;
  opacity: 0.23;
  z-index: -1;
}

.brand .box4 .pic .base .cir::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #2590ff;
  animation: scale 5s infinite linear;
}

.brand .box4 .pic .base .cir::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #2590ff;
  animation: scale 5s 2.5s infinite linear;
}

.brand .box4 .pic .point {
  position: absolute;
  width: 0.35rem;
  top: var(--top);
  left: var(--left);
}

.brand .box4 .pic .point .cir {
  position: absolute;
  top: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%) rotateX(70deg);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #2590ff;
}

.brand .box4 .pic .point .cir::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #2590ff;
  animation: scale 5s infinite linear;
}

.brand .box4 .pic .point .cir::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #2590ff;
  animation: scale 5s 2.5s infinite linear;
}

.brand .box5 {
  padding-top: 4rem;
  padding-bottom: 1rem;
}

.brand .box6 {
  padding: 3rem 0;
}

.brand .box6 .tit {
  margin-bottom: 2rem;
}

.brand .box6 .box6-swiper {
  margin-bottom: 1rem;
}

.brand .box6 .box6-swiper:last-child {
  margin-bottom: 0;
}

.brand .box6 .box6-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.brand .box6 .box6-swiper .swiper-slide {
  width: 6.5rem;
  height: 3.2rem;
  margin-right: 1.5rem;
  background-color: #fff;
  background-image: url(../img/51.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand .box6 .box6-swiper .swiper-slide img {
  max-width: 70%;
  max-height: 70%;
  -o-object-fit: contain;
  object-fit: contain;
}

.robot .box1 .load {
  margin: 1rem auto 0;
  width: 3.85rem;
  cursor: pointer;
}

.robot .box2 {
  margin-top: 4rem;
  padding-top: 0;
  padding-bottom: 3rem;
}

.pro-info .box1 {
  padding: 3rem 0;
}

.pro-info .box1 .intro {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pro-info .box1 .intro .pic {
  width: 52.6%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.pro-info .box1 .intro .pic img {
  width: 100%;
}

.pro-info .box1 .intro .info {
  width: 44%;
}

.pro-info .box1 .intro .info .txt {
  margin-top: 1.2rem;
  color: #666666;
  line-height: 1.8;
}

.pro-info .box2 {
  padding: 2.5rem 0 4rem;
}

.pro-info .box2 .li-box {
  margin-top: 1.5rem;
}

.pro-info .box2 .li-box .li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.pro-info .box2 .li-box .li:last-child {
  margin-bottom: 0;
}

.pro-info .box2 .li-box .li:nth-child(odd) {
  flex-direction: row-reverse;
}

.pro-info .box2 .li-box .li .pic {
  width: 51%;
}

.pro-info .box2 .li-box .li .pic img {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.pro-info .box2 .li-box .li .pic img img {
  width: 100%;
}

.pro-info .box2 .li-box .li .cont {
  width: 42%;
  padding-top: 2.35rem;
}

.pro-info .box2 .li-box .li .cont .icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro-info .box2 .li-box .li .cont .icon img {
  max-width: 60%;
  max-height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.pro-info .box2 .li-box .li .cont .title {
  margin-top: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pro-info .box2 .li-box .li .cont .title .h {
  color: #000000;
}

.pro-info .box2 .li-box .li .cont .title .num {
  color: var(--vi);
  position: relative;
}

.pro-info .box2 .li-box .li .cont .title .num::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 1.3rem);
  width: 4.2rem;
  height: 2px;
  background-color: var(--vi);
}

.pro-info .box2 .li-box .li .cont .txt {
  margin-top: 0.75rem;
  color: #666;
  line-height: 2;
}

.pro-info .box3 {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.vision .box2 {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.solution .box1 {
  padding: 3rem 0;
}

.solution .box1 .container {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.solution .box1 .cont-box {
  width: 44%;
}

.solution .box1 .cont-box .item {
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #e8e8e8;
}

.solution .box1 .cont-box .item:last-child {
  margin-bottom: none;
}

.solution .box1 .cont-box .item .top-bots {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.solution .box1 .cont-box .item .top-bots .h {
  color: #000000;
  transition: all 0.4s;
}

.solution .box1 .cont-box .item .top-bots .arr {
  width: 0.5rem;
  height: 0.5rem;
  transition: all 0.4s;
}

.solution .box1 .cont-box .item .top-bots svg {
  fill: var(--txtColBlur);
  width: 100%;
  transition: all 0.4s;
}

.solution .box1 .cont-box .item .btn-bots {
  display: none;
  margin-top: 0.6rem;
  color: #666666;
  line-height: 1.8;
}

.solution .box1 .cont-box .item.active .top-bots .h {
  color: var(--vi);
}

.solution .box1 .cont-box .item.active .top-bots .arr {
  transform: rotate(180deg);
}

.solution .box1 .cont-box .item.active .top-bots svg {
  fill: var(--vi);
}

.solution .box1 .pic-box {
  position: relative;
  width: 49%;
  height: 14rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.solution .box1 .pic-box .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
}

.solution .box1 .pic-box .item.show {
  opacity: 1;
  z-index: 1;
}

.solution .box1 .pic-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.solution .box2 {
  padding: 2rem 0 4rem;
}

.solution .box2 .li-box {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.solution .box2 .li-box .li {
  width: calc((100% - 3rem) / 3);
  height: 7.7rem;
  background-color: #f6f7f9;
  border-radius: 0.3rem;
  padding: 1.6rem 1.25rem 0.5rem;
  transition: all 0.4s;
}

.solution .box2 .li-box .li .icon {
  margin: auto;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution .box2 .li-box .li .icon img {
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.solution .box2 .li-box .li .h {
  margin-top: 0.6rem;
  color: #333333;
  line-height: 1.3;
  transition: all 0.4s;
}

.solution .box2 .li-box .li .h span {
  color: var(--vi);
  transition: all 0.4s;
}

.solution .box2 .li-box .li .txt {
  margin-top: 0.25rem;
  color: #999999;
  line-height: 1.7;
  transition: all 0.4s;
}

.solution .box2 .li-box .li:hover {
  background-color: var(--vi);
}

.solution .box2 .li-box .li:hover .icon {
  filter: brightness(100);
}

.solution .box2 .li-box .li:hover .h {
  color: #fff;
}

.solution .box2 .li-box .li:hover .h span {
  color: #fff;
}

.solution .box2 .li-box .li:hover .txt {
  color: rgba(255, 255, 255, 0.6);
}

.solution .box3 {
  padding: 2rem 0 3rem;
}

.solution .box3 .pic {
  margin-top: 1.95rem;
  width: 100%;
}

.solution .box3 .pic img {
  width: 100%;
}

.solution .box4 {
  padding: 3rem 0 4rem;
}

.solution .box4 .li-box {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.solution .box4 .li-box .li {
  width: calc((100% - 2rem) / 3);
  height: 10rem;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 1.5rem 1.25rem;
  background-color: #f6f7f9;
}

.solution .box4 .li-box .li .bg {
  opacity: 0;
  transition: all 0.4s;
}

.solution .box4 .li-box .li .pic {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 62.5%;
  z-index: 2;
  /*filter: grayscale(1);*/
}

.solution .box4 .li-box .li .pic img {
  width: 100%;
}

.solution .box4 .li-box .li .intro {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}

.solution .box4 .li-box .li .intro .h {
  color: var(--txtColBlack);
  line-height: 1.2;
  transition: all 0.4s;
}

.solution .box4 .li-box .li .intro .txt {
  margin-top: 0.4rem;
  line-height: 1.6;
  color: var(--txtColBlur);
}

.solution .box4 .li-box .li .intro .more {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: var(--txtColBlur);
}

.solution .box4 .li-box .li:hover .intro .more {
  color: var(--vi);
}

.solution .box4 .li-box .li:hover .intro .more svg {
  stroke: var(--vi);
  fill: var(--vi);
}

.solution .box4 .li-box .li .intro .more svg {
  fill: var(--txtColBlur);
  stroke: var(--txtColBlur);
  width: 11px;
  height: 11px;
}

.solution .box4 .li-box .li:hover .bg {
  opacity: 1;
}

.solution .box4 .li-box .li:hover .pic {
  filter: grayscale(0);
}

.solution .box4 .li-box .li:hover .intro .h {
  color: var(--vi);
}

.solution .box6 {
  padding: 4rem 0 2rem;
}

.solution .box6 .li-box {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1rem;
}

.solution .box6 .li-box .li {
  width: calc((100% - 8rem) / 5);
  height: 3.2rem;
  background-color: #fff;
  background-image: url(../img/51.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0.75rem 5px rgba(47, 53, 255, 0.05);
}

.solution .box6 .li-box .li img {
  max-width: 70%;
  max-height: 70%;
  -o-object-fit: contain;
  object-fit: contain;
}

.solution .box7 {
  padding: 2rem 0 4rem;
}

.solution .box7 .container {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.solution .box7 .container .pic {
  width: 53%;
}

.solution .box7 .container .cont {
  width: 56%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  background-color: #fff;
  padding: 1.35rem 2.1rem;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.05);
}

.solution .box7 .container .cont .icon {
  position: relative;
  width: 3.75rem;
  height: 1.6rem;
  border-radius: 0.25rem;
  background-color: #fff;
  box-shadow: 0 0 0.25rem rgba(47, 53, 255, 0.05);
  background-image: url(../img/51.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution .box7 .container .cont .icon::before {
  content: "";
  position: absolute;
  top: calc(100% + 0.15rem);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--vi);
}

.solution .box7 .container .cont .icon img {
  max-width: 50%;
  max-height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.solution .box7 .container .cont .icon.noShow img {
  filter: blur(10px) contrast(0.5);
}

.solution .box7 .container .cont .h {
  margin-top: 1.45rem;
  color: var(--txtColBlack);
}

.solution .box7 .container .cont .txt {
  margin-top: 0.5rem;
  line-height: 1.5;
  color: #999999;
}

.solution .box7 .container .cont .num-box {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
}

.solution .box7 .container .cont .num-box .num .num-tit {
  color: var(--txtColBlack);
}

.solution .box7 .container .cont .num-box .num .num-cont {
  margin-top: 0.3rem;
  display: flex;
  align-items: baseline;
  line-height: 1.3;
  color: var(--txtColBlack);
  font-family: "Poppins-Bold";
  font-style: italic;
}

.solution .box7 .container .cont .num-box .num .num-cont span {
  margin-left: 0.25rem;
  color: var(--vi);
}

.solution .box7 .container .cont .num-box .num.noShow .num-cont p {
  filter: blur(10px) contrast(0.5);
}

.solution .box7 .container .cont .more {
  margin-top: 1.2rem;
}

.solution .box7 .container .cont .tips {
  margin-top: 0.5rem;
  color: var(--txtColBlur);
}

.solution .box7 .container .cont .tips span {
  color: var(--vi);
}

.index-banner {
  width: 100%;
  height: 100vh;
  position: relative;
}

.index-banner .banner_bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.index-banner .banner_bgimg .bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-banner .dian-box .item {
  position: absolute;
  display: flex;
  align-items: center;
}

.index-banner .dian-box .item .cir {
  width: .45rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-banner .dian-box .item .cir img {
  z-index: 3;
  position: relative;
  opacity: .8;
  flex-shrink: 0;
  transition: all .4s ease;
}

.index-banner .dian-box .item .cir::after {
  content: "";
  display: block;
  width: .65rem;
  height: .65rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: borderM 3s infinite;
  background: linear-gradient(180deg, rgba(17, 23, 255, 0.08) 0%, rgba(9, 140, 255, 0.08) 100%);
  z-index: 2;
}

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

  20% {
    opacity: 1;
  }

  75% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.index-banner .dian-box .item .p {
  border-radius: 2.5rem;
  background: linear-gradient(90deg, rgba(17, 23, 255, 0.44) 0%, rgba(9, 140, 255, 0.44) 100%);
  position: absolute;
  left: 24px;
  padding: 0;
  max-width: 0;
  transition: all .4s ease;
  z-index: 8;
}

.index-banner .dian-box .item .p span {
  opacity: 0;
  transition: all .4s ease;
  text-wrap: nowrap;
  line-height: .6rem;
}

.index-banner .dian-box .item:hover .p {
  max-width: 3rem;
  padding: 0 .5rem;
}

.index-banner .dian-box .item:hover .p span {
  opacity: 1;
}

.index-banner .dian-box .item:hover .cir img {
  opacity: 1;
}

.index-banner .slide {
  width: 100%;
  height: 100%;
}

.index-banner .cont {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index-banner .cont .text {
  width: 40.5rem;
  max-width: 90%;
}

.index-banner .cont .text .h1 {
  color: #0b1126;
  line-height: 1.35;
  margin-bottom: .56rem;
  /*font-weight: 600;*/
  color: #333;
  font-family: "HarmonyOS_Sans_SC_Medium";
}

.index-banner div.cont div.text div.h1 span {
  /*color: var(--vi);*/
  background-image: linear-gradient(180deg, #1117FF 10%, #098CFF 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.index-banner .cont .text .h2 {
  color: #383e4f;

}


.news {
  padding: 3rem 0 4rem;
}

.news .hot-swiper {
  margin-top: 1.25rem;
}

.news .hot-swiper .swiper-pagination {
  bottom: 1.7rem;
  width: 50%;
  left: 50%;
  text-align: left;
  padding: 0 1.5rem;
}

.news .hot-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 1.25rem;
  height: 2px;
  border-radius: 0;
  background: #dadfe9;
  margin: 0 0.25rem;
  opacity: 1;
}

.news .hot-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--vi);
}

.news .hot-swiper .swiper-slide {
  display: flex;
  height: 13.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.news .hot-swiper .swiper-slide .pic {
  width: 50%;
  height: 100%;
}

.news .hot-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news .hot-swiper .swiper-slide .intro {
  width: 50%;
  height: 100%;
  background-color: #f6f7f9;
  padding: 1.7rem 1.5rem 1rem;
}

.news .hot-swiper .swiper-slide .intro .date {
  display: flex;
  align-items: center;
  color: #999999;
  line-height: 2;
  gap: 0.3rem;
}

.news .hot-swiper .swiper-slide .intro .date span {
  width: 0.5rem;
}

.news .hot-swiper .swiper-slide .intro .h {
  margin-top: 0.9rem;
  color: #333;
  line-height: 1.2;
}

.news .hot-swiper .swiper-slide .intro .txt {
  margin-top: 0.5rem;
  color: #666;
  line-height: 1.8;
}

.news .hot-swiper .swiper-slide .intro .more {
  margin-top: 1.25rem;
}

.news .tab {
  margin-top: 3.5rem;
  display: flex;
  gap: 1.6rem;
  border-bottom: 1px solid #d4d4d4;
}

.news .tab a {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  padding-bottom: 0.9rem;
  color: #333333;
  line-height: 1.1;
  transition: all 0.4s;
}

.news .tab a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--vi);
  transition: all 0.4s;
}

.news .tab a:hover {
  color: var(--vi);
}

.news .tab a.active {
  color: var(--vi);
}

.news .tab a.active::after {
  width: 100%;
}

.news .li-box {
  margin-top: 2.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1rem;
}

.news .li-box .li {
  width: calc((100% - 2rem) / 3);
  border-radius: 0.3rem;
  box-shadow: 0 0.1rem 0.45rem rgba(17, 23, 255, 0.08);
  position: relative;
}

.news .li-box .li::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 77%;
  background: linear-gradient(270deg, rgba(16, 49, 255, 0) 0%, #1031ff 100%);
  border-radius: 0.4rem;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
}

.news .li-box .li .pic {
  width: 100%;
  height: 8.25rem;
  border-radius: 0.3rem 0.3rem 0 0;
  overflow: hidden;
}

.news .li-box .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news .li-box .li .intro {
  padding: 1rem 0.75rem 1.1rem;
  background-color: #fff;
  position: relative;
  border-radius: 0 0 0.3rem 0.3rem;
}

.news .li-box .li .intro .h1 {
  color: #333333;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
}

.news .li-box .li .intro .txt {
  margin-top: 0.3rem;
  color: var(--txtColBlur);
  line-height: 1.7;
  height: 3.4em;
  overflow: hidden;
}

.news .li-box .li .intro .info {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #9c9c9c;
}

.news .li-box .li .intro .info .tag {
  height: 0.8rem;
  line-height: 0.8rem;
  border-radius: 0.4rem;
  transition: all 0.4s;
}

.news .li-box .li .intro .info .line {
  width: 1px;
  height: 0.25rem;
  background-color: #9c9c9c;
}

.news .li-box .li .intro .more {
  position: absolute;
  right: 0.75rem;
  bottom: 1.25rem;
  display: flex;
  gap: 0.25rem;
  color: var(--vi);
  opacity: 0;
  transition: all 0.4s;
}

.news .li-box .li .intro .more svg {
  width: 0.35rem;
  fill: var(--vi);
}

.news .li-box .li:hover::after {
  opacity: 1;
}

.news .li-box .li:hover .intro .info .tag {
  color: var(--vi);
  padding: 0 0.3rem;
  background-color: rgba(44, 103, 255, 0.2);
}

.news .li-box .li:hover .more {
  opacity: 1;
}

.news .page-box {
  margin-top: 1.45rem;
}

.dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.51);
  z-index: 3;
  display: none;
  justify-content: center;
  align-items: center;
}

.dialog.on {
  display: flex;
}

.dialog .main {
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0px 18px 60px rgba(0, 0, 0, 0.06);
  width: 40.225rem;
  padding: .5rem 1.75rem 1.25rem;
}

.dialog .main .d_head {
  display: flex;
  justify-content: flex-end;
  align-content: center;
}

.dialog .main .d_head .pic {
  width: 1.575rem;
  height: 1.575rem;
  cursor: pointer;
  position: absolute;
}

.dialog .main .d_body {
  margin-top: .175rem;
}

.dialog .main .d_body .title {
  text-align: center;
  font-weight: 500;
  display: block;
}

.dialog .main .d_body .form-box {
  margin-top: 1.5rem;
}

.dialog .main .d_body .form-box form {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .5rem;
}

.dialog .main .d_body .form-box form .form-item {
  width: calc((100% - 1rem) / 3);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.dialog .main .d_body .form-box form .form-item.long {
  width: calc((100% - .5rem) / 2);
}

.dialog .main .d_body .form-box form .form-item label.required::before {
  content: "*";
  color: #AD1734;
  font-size: .5rem;
  font-weight: 500;
  margin-right: .125rem;
}

.dialog .main .d_body .form-box form .form-item input {
  width: 100%;
  height: 1.55rem;
  border: .025rem solid #DBDBDB;
  padding-left: .35rem;
}

.dialog .main .d_body .form-box form .form-item .select-box {
  width: 100%;
  height: 1.55rem;
  border: .025rem solid #DBDBDB;
  position: relative;
}

.dialog .main .d_body .form-box form .form-item .select-box::after {
  content: "";
  display: block;
  width: .6rem;
  height: .6rem;
  background: url(../img/down.png) no-repeat center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: .55rem;
}

.dialog .main .d_body .form-box form .form-item .select-box select {
  width: 100%;
  height: 100%;
  padding-left: .55rem;
  appearance: none;
}

.dialog .main .d_body .form-box form .form-item .upload_box {
  width: 3rem;
  height: 3rem;
  border: .025rem solid #DBDBDB;
  cursor: pointer;
}

.dialog .main .d_body .form-box form .form-item .upload_box label {
  display: flex;
  flex-direction: column;
  gap: .425rem;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.dialog .main .d_body .form-box .main-more {
  margin: 0 auto;
}


.boxNes2 {
  padding-bottom: 4rem;
}

.boxNes2 .tit {
  margin-bottom: 2rem;
}

.boxNes2 .cont {
  display: flex;
  border-radius: .5rem;
  height: 18.1rem;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0px 0px 30px 0px rgba(17, 23, 255, 0.08);
}

.boxNes2 .cont .cont_left {
  width: 13.3rem;
  height: 100%;
}

.boxNes2 .cont .cont_left .item {
  display: none;
  width: 100%;
  height: 100%;
}

.boxNes2 .cont .cont_left .item .item_cont {
  padding: 1.4rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.boxNes2 .cont .cont_left .item .item_cont .ico {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.25rem;
}

.boxNes2 .cont .cont_left .item .item_cont .ico img {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
}

.boxNes2 .cont .cont_left .item .item_cont .h1 {
  color: #000000;
  line-height: calc(47 / 40);
  margin-bottom: 1.11rem;
  text-align: center;
}

.boxNes2 .cont .cont_left .item .item_cont .p1 {
  color: #666666;
  line-height: calc(40 / 24);
  text-align: center;
}


.boxNes2 .cont .cont_left .item.on {
  display: block;
}

.boxNes2 .cont .cont_right {
  width: calc(100% - 13.3rem);
  position: relative;
}

.boxNes2 .cont .cont_right .list {
  display: flex;
  width: 100%;
  height: 100%;
}

.boxNes2 .cont .cont_right .bgimgCont {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.boxNes2 .cont .cont_right .bgimgCont .bgimg {
  /*display: none;*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: all .4s ease;
}

.boxNes2 .cont .cont_right .bgimgCont .bgimg.on {
  /*display: block;*/
  opacity: 1;
}



.boxNes2 .cont .cont_right::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .2);
  z-index: 2;
}

.boxNes2 .cont .cont_right .item {
  position: relative;
  z-index: 3;
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-right: 1px solid rgba(217, 217, 217, 1);
}

.boxNes2 .cont .cont_right .item .imgCont {
  width: 2.25rem;
  height: 2.25rem;
  position: relative;
  margin-bottom: 1rem;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: all .4s ease;
}

.boxNes2 .cont .cont_right .item .imgCont img {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .4s ease;
  opacity: 0;
}

.boxNes2 .cont .cont_right .item .imgCont img.img1 {
  opacity: 1;
}

.boxNes2 .cont .cont_right .item.on .imgCont {
  background: #fff;
}

.boxNes2 .cont .cont_right .item.on .imgCont img.img1 {
  opacity: 0;
}

.boxNes2 .cont .cont_right .item.on .imgCont img.img2 {
  opacity: 1;
}

.boxNes2 .cont .cont_right .item .item_h1 {
  color: #fff;
}



/*# sourceMappingURL=style.css.map */