:root {
  --vi: #243cd2;
}

@keyframes scale {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

@keyframes scale2 {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes scale3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2.5);
  }
}
html{scrollbar-gutter: stable;}
.w1660 {
  width: 41.5rem;
  max-width: 90%;
  margin: 0 auto;
}

.w1520 {
  width: 38rem;
  max-width: 90%;
  margin: 0 auto;
}

.w1446 {
  width: 36.15rem;
  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;
}

.main-tit {
  font-size: 1.25rem;
  color: #333333;
  line-height: 1.3;
}
.main-tit.white {
  color: #fff;
}

.main-sub {
  margin-bottom: 0.5rem;
  font-size: 0.6rem;
  color: #666;
  line-height: 1.3;
}

.side-tit {
  color: #333333;
  font-size: 1.25rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 0.7rem;
}
.side-tit::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.05rem;
  height: 3px;
  background-color: var(--vi);
}
.side-tit span {
  color: var(--vi);
}
.side-tit.mid {
  text-align: center;
}
.side-tit.mid::after {
  left: 50%;
  transform: translateX(-50%);
}

.fix-bar-m {
    display: none;
}

.mshowarr {
    position: fixed;
    top: 50%;
    right: 0!important;
    transform: translateY(-50%);
    border-radius: 0.3rem 0 0 0.3rem;
    background: var(--vi);
    padding: 0.5rem 0.3rem;
    z-index: 99;
}
.mshowarr img {
    width: 0.6rem;
}


.main-more {
  --col: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.55rem;
  height: 1.15rem;
  border-radius: 0.7rem;
  position: relative;
  color: var(--col);
  gap: 0.15rem;
  transition: all 0.4s;
}
.main-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 0.7rem;
  border: 3px solid var(--col);
  -webkit-clip-path: polygon(18% 0, 100% 0, 100% 100%, 18% 100%);
          clip-path: polygon(18% 0, 100% 0, 100% 100%, 18% 100%);
  transition: all 0.4s;
}
.main-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 0.7rem;
  border: 3px solid var(--col);
  opacity: 0.2;
  -webkit-clip-path: polygon(0 0, 15% 0, 15% 100%, 0% 100%);
          clip-path: polygon(0 0, 15% 0, 15% 100%, 0% 100%);
  transition: all 0.4s;
}
.main-more.grey {
  --col: #666666;
}
.main-more.white::after {
  opacity: 1;
}
.main-more.vi {
  --col: var(--vi);
}
.main-more.vi:hover::after {
  opacity: 1;
}
.main-more:hover {
  --col: var(--vi);
}

.page-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-box a {
  width: 1.15rem;
  height: 1.15rem;
  line-height: 1.15rem;
  text-align: center;
  border-radius: 50%;
  color: #333;
  margin-right: 0.3rem;
  transition: all 0.4s;
}
.page-box a:last-child {
  margin-right: 0;
}
.page-box a[ref=prev], .page-box a[ref=next] {
  font-size: 0.6rem;
  box-shadow: 0 0 0 2px #dfdfdf;
}
.page-box a:hover, .page-box a.active {
  background-color: var(--vi);
  color: #fff;
  box-shadow: none;
}

.head .pos-cont {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 3rem;
  margin-left: -1.5rem;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(.5rem);
  transition: all .4s;
}
.head .pos-cont a {
  display: block;
  width: 100%;
  height: 1rem;
  text-align: center;
  line-height: 1rem;
  color: #666;
  transition: all .4s;
}
.head .pos-cont a:hover {
  color: var(--vi);
}
.pc-head .head-nav .nav-ls:hover .pos-cont {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.head .drop-down {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #f9fafc;
  padding-bottom: 1rem;
  display: none;
  max-height: calc(100vh - 2.25rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.head .drop-down .wrap {
  display: flex;
  flex-wrap: wrap;
}
.head .drop-down .item {
  width: 20%;
  position: relative;
  line-height: 1.3;
  padding: 1rem 0 0.7rem;
  padding-right: .5rem;
  transition: all 0.4s;
}
.head .drop-down .item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: calc(100% + 1rem);
  background-color: #edf1f8;
}
.head .drop-down .item:last-child::after, .head .drop-down .item:nth-child(5n)::after {
  display: none;
}
/*.head .drop-down .item:not(:nth-child(5n+1)) {*/
/*  padding-left: .5rem;*/
/*}*/
.head .drop-down .item {
  padding-left: .5rem;
}
/*.head .drop-down .item:hover {*/
/*  padding-left: 1rem;*/
/*}*/
.head .drop-down .item:hover {
  background-color: #fff;
}
/*.head .drop-down .item:hover p {*/
/*  font-size: .55rem;*/
/*}*/
.head .drop-down .item p {
  padding-bottom: 0.35rem;
  position: relative;
  margin-bottom: 0.8rem;
  transition: all .4s;
}
.head .drop-down .item .item_detail:not(:first-child){
    margin-top: 1rem;
}
.head .drop-down .item p::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #c5d1e1;
}
.head .drop-down .item p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.15rem;
  height: 3px;
  background-color: var(--vi);
  border-radius: 3px;
}
.head .drop-down .item a {
  display: block;
  margin-bottom: 0.4rem;
  color: #666666;
  transition: all 0.4s;
}
.head .drop-down .item a:last-child {
  margin-bottom: 0;
}
.head .drop-down .item a:hover {
  color: var(--vi);
}

.footer {
  background-color: #000000;
}
.footer .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0 0.8rem;
  position: relative;
}
.footer .top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #093bab, transparent);
}
.footer .top .logo {
  width: 6.05rem;
}
.footer .top .logo img {
  width: 100%;
}
.footer .top .nav {
  display: flex;
  gap: 2rem;
}
.footer .top .nav a {
  color: #fff;
}
.footer .middle {
  margin-top: 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.footer .middle .left {
  display: flex;
  gap: 4rem;
}
.footer .middle .left .li {
  max-width: 7.2rem;
  color: #fff;
  line-height: 1.5;
}
.footer .middle .left .li span {
  display: block;
  opacity: 0.4;
  margin-bottom: 0.2rem;
}
.footer .middle .left .li p {
  opacity: 0.7;
}
.footer .middle .right {
  text-align: center;
  color: #fff;
}
.footer .middle .right .icon {
  width: 2rem;
  margin: auto;
}
.footer .middle .right p {
  margin-top: 0.4rem;
}
.footer .bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 1.2rem;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(190, 190, 190, 0.2);
}
.footer .bottom .copyright {
  color: #fff;
  opacity: 0.4;
}
.footer .bottom .link {
  display: flex;
  gap: 0.8rem;
}
.footer .bottom .link a {
  color: #fff;
  opacity: 0.2;
}

.fix-bar {
  position: fixed;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.fix-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background-color: var(--vi);
  margin-bottom: 0.3rem;
  position: relative;
  cursor: pointer;
  transition: all .4s;
}
.fix-bar a:last-child {
  margin-bottom: 0;
}
.fix-bar a>img {
  max-width: 60%;
  max-height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fix-bar .pos-cont {
  position: absolute;
  right: calc(100% + 5px);
  top: 0;
  width: 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-.5rem);
  transition: all .4s;
}
.fix-bar .pos-cont img {
  width: 100%;
}
.fix-bar .pos-tel {
  position: absolute;
  width: max-content;
  padding: 4px 8px;
  right: calc(100% + 5px);
  top: .2rem;
  background: #fff;
  border-radius: .2rem;
  box-shadow: 0 0 .25rem rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-.5rem);
  transition: all .4s;
}
.fix-bar a:hover {
  transform: scale(1.04);
}
.fix-bar a:hover .pos-cont {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.fix-bar a:hover .pos-tel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.index-ban {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
}
.index-ban img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-ban .mask {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transform-origin: bottom right;
  /*display: none;*/
  transition: all 3s;
}
.index-ban .pos-cont {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1.3;
  z-index: 3;
}
.index-ban .pos-cont .sub {
  color: #666;
}
.index-ban .pos-cont .txt {
  margin-top: 0.5rem;
  color: #333;
  width: 47%;
}
.index-ban .pos-cont .h-contact {
  margin-top: 1.5rem;
  --col: var(--vi);
}
.index-ban .pos-cont .h-contact:hover {
  --col: var(--vi);
}
.index-ban.ani .mask {
  animation: scale3 2s linear forwards;
}
.index-ban.trans .pos-cont .sub,
.index-ban.trans .pos-cont .txt {
  color: #fff;
}
.index-ban.trans .pos-cont .h-contact {
  --col: #fff;
}

.idx-ani-box,
.idx-ani-box2 {
  position: relative;
}

.index-cir {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 116%;
  /*height: calc(100% + 10vh);*/
  height: 100%;
  /*aspect-ratio: 1856/946;*/
  border-radius: 50%;
  overflow: hidden;
  background-color: #f9faff;
}

.index .box1 {
  position: relative;
  top: 140vh;
  min-height: 100vh;
  z-index: 3;
  padding: 2.85rem 0 1.7rem;
  /*background-color: #f9faff;*/
}
.index .box1 .wrap {
  position: relative;
  z-index: 3;
}
.index .box1 .li-box {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.index .box1 .li-box .li {
  position: relative;
  width: calc((100% - 1.2rem) / 3);
  /*height: 6.05rem;*/
  height: 5.4rem;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.4s;
}
.index .box1 .li-box .li .cont {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  width: 100%;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index .box1 .li-box .li .cont .h {
  color: #fff;
}
.index .box1 .li-box .li .cont .more {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 0.15rem;
}
.index .box1 .li-box .li:hover .bg {
  transform: scale(1.04);
}
.index .box2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.1rem 0 1.65rem;
}
.index .box2 .li-box {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.index .box2 .li-box .li {
  width: calc((100% - 2rem) / 2);
  border-radius: 0.5rem;
  background-color: #fff;
  box-shadow: 0 0.1rem 1.5rem rgba(0, 0, 0, 0.1);
}
.index .box2 .li-box .li .pic {
  width: 100%;
  height: 9.4rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.index .box2 .li-box .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all .4s;
}
.index .box2 .li-box .li .intro {
  position: relative;
  width: 100%;
  padding: 0.75rem 1rem 1.75rem;
}
.index .box2 .li-box .li .intro .h {
  color: #333333;
  line-height: 1.8;
  padding-right: 4rem;
}
.index .box2 .li-box .li .intro .txt {
  margin-top: 0.45rem;
  color: #6e6e73;
  line-height: 1.75;
  height: 5.25em;
  overflow: hidden;
}
.index .box2 .li-box .li .intro .more {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
}
.index .box2 .li-box .li:hover .pic img {
  transform: scale(1.04);
}
.index .box3 {
  position: relative;
  top: 140vh;
  padding: 3.25rem 0 1.1rem;
  /*background-color: #f9faff;*/
}
.index .box3 .wrap {
  position: relative;
  z-index: 3;
}
.index .box3 .top-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.index .box3 .top-intro .tit {
  width: 52%;
}
.index .box3 .top-intro .num-box {
  width: 48%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
}
.index .box3 .top-intro .num-box .li .num {
  display: flex;
  align-items: center;
  color: #093BAB;
}
.index .box3 .top-intro .num-box .li .txt {
  margin-top: 0.35rem;
  color: #666666;
}
.index .box3 .pic {
  margin-top: 1.5rem;
  width: 100%;
  border-radius: .5rem;
  overflow: hidden;
}
.index .box3 .pic img {
  width: 100%;
  transition: all .4s;
}
.index .box3 .pic:hover img {
    transform: scale(1.04);
}
.index .box4 {
  padding: 4.25rem 0 1.7rem;
}
.index .box4 .box4-swiper {
  margin-top: 1.5rem;
}
.index .box4 .box4-swiper .swiper-scrollbar {
  margin: 1.25rem auto 0;
  position: relative;
  width: 4.25rem;
  height: 2px;
  background-color: rgba(232, 234, 239, 0.5);
  bottom: 0;
  left: 0;
}
.index .box4 .box4-swiper .swiper-scrollbar-drag {
  background: var(--vi);
}
.index .box4 .box4-swiper .swiper-slide {
  width: 32%;
  margin-right: 2%;
  background-color: #f9faff;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.5s;
}
.index .box4 .box4-swiper .swiper-slide:last-child {
  margin-right: 0;
}
.index .box4 .box4-swiper .swiper-slide .pic {
  width: 100%;
  height: 8.25rem;
  overflow: hidden;
}
.index .box4 .box4-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.index .box4 .box4-swiper .swiper-slide .intro {
  padding: 0.7rem 1rem 1.5rem;
}
.index .box4 .box4-swiper .swiper-slide .intro .tag {
  display: flex;
  gap: 0.25rem;
  color: #333;
  opacity: 0.4;
}
.index .box4 .box4-swiper .swiper-slide .intro .tag span {
  padding-right: 0.25rem;
  border-right: 1px solid #333333;
}
.index .box4 .box4-swiper .swiper-slide .intro .tag span:last-child {
  border: none;
}
.index .box4 .box4-swiper .swiper-slide .intro .tit {
  margin-top: 0.5rem;
  color: #333333;
  line-height: 1.3;
  height: 2.6em;
  overflow: hidden;
}
.index .box4 .box4-swiper .swiper-slide .intro .more {
  margin-top: 1.25rem;
}
.index .box4 .box4-swiper .swiper-slide .pos-icon {
  position: absolute;
  right: -1.05rem;
  bottom: -1.5rem;
  width: 8.1rem;
  opacity: 0.5;
  opacity: 0;
  transition: all 0.5s;
}
.index .box4 .box4-swiper .swiper-slide .pos-icon img {
  width: 100%;
}
.index .box4 .box4-swiper .swiper-slide:hover {
  background-color: #fff;
  box-shadow: 0 0.1rem 1.5rem rgba(0, 0, 0, 0.1);
}
.index .box4 .box4-swiper .swiper-slide:hover .pic img {
  transform: scale(1.05);
}
.index .box4 .box4-swiper .swiper-slide:hover .intro .tit {
  color: var(--vi);
}
.index .box4 .box4-swiper .swiper-slide:hover .pos-icon {
  opacity: 1;
}
.index .box5 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index .box5 .line {
  position: absolute;
  top: -50vh;
  left: 0;
}
.index .box5 img {
  width: 100%;
}
.index .box5 .mountain {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
.index .box5 .cir {
  position: absolute;
  /*bottom: 27%;*/
  bottom: 30%;
  left: 50%;
  margin-left: -4.25rem;
  width: 8.5rem;
  z-index: 2;
}
.index .box5 .pos-cont {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  z-index: 4;
}
.index .box5 .pos-cont .more {
  margin: 0.8rem auto 0;
}

.index .box5 .pos-cont .more:hover {
  --col: #fff;
}

.sidebar {
  position: sticky;
  top: 0;
  width: 10rem;
  min-height: 100vh;
  background-color: #f7f8fa;
  padding: 2.5rem 0;
}
.sidebar .li .clk-tit {
  width: 100%;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  cursor: pointer;
  transition: all 0.4s;
}
.sidebar .li .clk-tit .h {
  color: #333333;
}
.sidebar .li .clk-tit .arr {
  width: 0.3rem;
  height: 0.25rem;
  position: relative;
}
.sidebar .li .clk-tit .arr div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: var(--vi);
  transition: all 0.4s;
}
.sidebar .li .clk-tit .arr .heng {
  height: 2px;
}
.sidebar .li .clk-tit .arr .shu {
  width: 2px;
}
.sidebar .li .sli-cont {
  display: none;
  padding: 0.75rem 0;
  background-color: #ecf0f9;
  overflow-y: auto;
  max-height: 500px;
}
.sidebar .li .sli-cont a {
  display: block;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 0.35rem;
  transition: all 0.4s;
  padding:0.2rem 2.15rem;
}
.sidebar .li .sli-cont a:last-child {
  margin-bottom: 0;
}
.sidebar .li .sli-cont a:hover, .sidebar .li .sli-cont a.active {
  color: var(--vi);
  background: rgba(255,255,255,0.6);
}
.sidebar .li.cur .clk-tit {
  background-color: var(--vi);
}
.sidebar .li.cur .clk-tit .h {
  color: #fff;
}
.sidebar .li.cur .clk-tit .arr div {
  background-color: #fff;
}
.sidebar .li.active:last-child {
  margin-bottom: 0;
}
.sidebar .li.active {
  margin-bottom: 1rem;
}
.sidebar .li.active .clk-tit {
  background-color: var(--vi);
}
.sidebar .li.active .clk-tit .h {
  color: #fff;
}
.sidebar .li.active .clk-tit .arr div {
  background-color: #fff;
}
.sidebar .li.active .clk-tit .arr .shu {
  height: 0;
}

.products {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.products .container {
  width: calc(100% - 12rem);
  padding-right: 3.25rem;
  padding-bottom: 1.5rem;
}
.products .container .top-con {
  padding: 3rem 1.5rem;
}
.products .container .li-box {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.products .container .li-box .li {
  width: calc((100% - 1.6rem) / 3);
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #f7f8fa;
  transition: all 0.4s;
}
.products .container .li-box .li .pic {
  width: 100%;
  height: 8.65rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .container .li-box .li .pic img {
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.products .container .li-box .li .intro {
  padding: 0.75rem 0.4rem;
}
.products .container .li-box .li .intro .h {
  color: #333333;
  line-height: 1.5;
  transition: all 0.4s;
}
.products .container .li-box .li .intro .more {
  margin: 1.2rem auto 0;
}
.products .container .li-box .li:hover {
  background-color: #fff;
  box-shadow: 0 0 0 1px rgba(230, 2, 19, 0.4);
}
.products .container .li-box .li:hover .pic img {
  transform: scale(1.04);
}
.products .container .li-box .li:hover .intro .h {
  color: var(--vi);
}

.pro-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pro-info .container {
  width: calc(100% - 10rem);
  padding: 3rem 2rem;
}
.pro-info .box1 {
  padding-right: 1.25rem;
  display: flex;
}
.pro-info .box1 .box1-swiper {
  width: 13.9rem;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  background-color: #f7f8fa;
}
.pro-info .box1 .box1-swiper .swiper-pagination {
  bottom: 1rem;
  line-height: 1;
}
.pro-info .box1 .box1-swiper .swiper-pagination-bullet {
  width: 1.25rem;
  height: 2px;
  background-color: #e8eaef;
  margin: 0 0.25rem;
}
.pro-info .box1 .box1-swiper .swiper-pagination-bullet-active {
  background-color: var(--vi);
}
.pro-info .box1 .box1-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro-info .box1 .box1-swiper  .swiper-slide img {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pro-info .box1 .cont {
  width: calc(100% - 13.9rem);
  padding-left: 2rem;
}
.pro-info .box1 .cont .txt {
  margin-top: 0.55rem;
  color: #666;
  line-height: 1.8;
}
.pro-info .box1 .cont .li-box {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 0;
}
.pro-info .box1 .cont .li-box .li {
  width: 50%;
}
.pro-info .box1 .cont .li-box .li .icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  margin: auto;
  box-shadow: 0 0 0 1px #c9c9c9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pro-info .box1 .cont .li-box .li .icon img {
  max-width: 50%;
  max-height: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pro-info .box1 .cont .li-box .li .h {
  margin-top: 0.35rem;
  line-height: 1.6;
  color: #333333;
  text-align: center;
}
.pro-info .box2 {
  margin-top: 3.15rem;
}
.pro-info .box2 .table-box {
  padding-right: 0.5rem;
}
.pro-info .box2 table {
  margin-top: 1.3rem;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
.pro-info .box2 table tr {
  width: 100%;
  height: 1.6rem;
  background-color: #fff;
  color: #666666;
}
.pro-info .box2 table tr:first-child {
  background-color: var(--vi);
  color: #fff;
}
.pro-info .box2 table tr:nth-child(even) {
  background-color: #f8f8f8;
}
.pro-info .box2 table tr td {
  width: 33.33%;
  text-align: center;
  padding: 0 2rem;
}
.pro-info .box2 table tr td:first-child {
  text-align: left;
}
.pro-info .box3 {
  margin-top: 2.15rem;
}
.pro-info .box3 .pic {
  margin-top: 0.25rem;
  width: 100%;
}
.pro-info .box4 {
  margin-top: 1rem;
}
.pro-info .box4 .box4-swiper {
  margin-top: 1.5rem;
  padding: 1px;
}
.pro-info .box4 .box4-swiper .swiper-scrollbar {
  position: relative;
  margin-top: 1rem;
  left: 0;
  width: 100%;
  height: 2px;
}
.pro-info .box4 .box4-swiper .swiper-scrollbar .swiper-scrollbar-drag {
    background: var(--vi);
}
.pro-info .box4 .box4-swiper .li {
  width: 32%;
  margin-right: 2%;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #f7f8fa;
  transition: all 0.4s;
}
.pro-info .box4 .box4-swiper .li:last-child {
  margin-right: 0;
}
.pro-info .box4 .box4-swiper .li .pic {
  width: 100%;
  height: 8.65rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pro-info .box4 .box4-swiper .li .pic img {
  /*width: 100%;*/
  /*height: 100%;*/
  /*-o-object-fit: cover;*/
  /*   object-fit: cover;*/
  /*transition: all 0.4s;*/
  max-width: 100%;
  max-height: 100%;
  transition: all 0.4s;
}
.pro-info .box4 .box4-swiper .li .intro {
  padding: 0.75rem 0.4rem;
}
.pro-info .box4 .box4-swiper .li .intro .h {
  color: #333333;
  line-height: 1.5;
  transition: all 0.4s;
}
.pro-info .box4 .box4-swiper .li .intro .more {
  margin: 1.2rem auto 0;
}
.pro-info .box4 .box4-swiper .li:hover {
  background-color: #fff;
  box-shadow: 0 0 0 1px rgba(230, 2, 19, 0.4);
}
.pro-info .box4 .box4-swiper .li:hover .pic img {
  transform: scale(1.04);
}
.pro-info .box4 .box4-swiper .li:hover .intro .h {
  color: var(--vi);
}

.contact {
  padding: 3.25rem 0 4rem;
}
.contact .top-con {
  display: flex;
  align-items: flex-start;
  gap: 2.55rem;
}
.contact .top-con .tit {
  line-height: 1.2;
}
.contact .top-con .tab-box .li {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
.contact .top-con .tab-box .li:last-child {
  margin-bottom: 0;
}
.contact .top-con .tab-box .li p {
  color: var(--vi);
  margin-right: 1rem;
}
.contact .top-con .tab-box .li span {
  width: -moz-max-content;
  width: max-content;
  height: 1.15rem;
  padding: 0 0.75rem;
  text-align: center;
  line-height: 1.15rem;
  position: relative;
  --col: var(--vi);
  cursor: pointer;
  transition: all 0.4s;
}
.contact .top-con .tab-box .li span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 0.7rem;
  border: 3px solid var(--col);
  -webkit-clip-path: polygon(13% 0, 100% 0, 100% 100%, 13% 100%);
          clip-path: polygon(13% 0, 100% 0, 100% 100%, 13% 100%);
  visibility: hidden;
}
.contact .top-con .tab-box .li span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 0.7rem;
  border: 3px solid var(--col);
  opacity: 0.2;
  -webkit-clip-path: polygon(0 0, 10% 0, 10% 100%, 0% 100%);
          clip-path: polygon(0 0, 10% 0, 10% 100%, 0% 100%);
  visibility: hidden;
}
.contact .top-con .tab-box .li span:hover {
  color: var(--vi);
}
.contact .top-con .tab-box .li span.active {
  color: var(--vi);
}
.contact .top-con .tab-box .li span.active::before, .contact .top-con .tab-box .li span.active::after {
  visibility: visible;
}
.contact .map {
  margin-top: 2.2rem;
  width: 100%;
  position: relative;
  z-index: 88;
}
.contact .map img {
  width: 100%;
}
.contact .map .line-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.contact .map .line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.contact .map .pos-cont {
  position: absolute;
  bottom: calc(100% + 0.7rem);
  left: -2.4rem;
  width: 12rem;
  padding: 1rem 0.9rem;
  background-color: #fff;
  box-shadow: 0.25rem 0.25rem 1rem rgba(0, 0, 0, 0.05);
  border-radius: 0.3rem;
  border-top: 3px solid var(--vi);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: all 0.4s ease-in-out;
}
.contact .map .pos-cont.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 12;
}
.contact .map .pos-cont::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 2.55rem;
  border-top: 0.3rem solid #fff;
  border-left: 0.175rem solid transparent;
  border-right: 0.175rem solid transparent;
}
.contact .map .pos-cont .close {
  position: absolute;
  top: 0.45rem;
  right: 0.9rem;
  width: 0.25rem;
  cursor: pointer;
}
.contact .map .pos-cont .close img {
  width: 100%;
}
.contact .map .pos-cont .li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #666666;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}
.contact .map .pos-cont .li:last-child {
  margin-bottom: 0;
}
.contact .map .pos-cont .li span {
  width: 0.5rem;
}
.contact .map .pos-cont .li em {
  width: max-content;
  font-style: normal;
}
.contact .map .pos-cont .li div {
  width: calc(100% - 1.15rem);
  display: flex;
}
.contact .map .point-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.contact .map .point-box .point {
  position: absolute;
  top: var(--top);
  left: var(--left);
}
.contact .map .point-box .point .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: .5rem;
}
/*.contact .map .point-box .point .icon::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  z-index: -1;*/
/*  top: -.1rem;*/
/*  left: -.1rem;*/
/*  width: 0.7rem;*/
/*  height: 0.7rem;*/
/*  border-radius: 50%;*/
/*  background-color: var(--vi);*/
/*  animation: scale2 2s ease-in-out infinite;*/
/*}*/
/*.contact .map .point-box .point .icon::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  z-index: -1;*/
/*  top: -.1rem;*/
/*  left: -.1rem;*/
/*  width: 0.7rem;*/
/*  height: 0.7rem;*/
/*  border-radius: 50%;*/
/*  background-color: var(--vi);*/
/*  animation: scale2 2s 1s ease-in-out infinite;*/
/*}*/
.contact .map .point-box .point .cir {
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%) rotateX(70deg);
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background-color: rgba(36, 60, 210, 0.64);
}
.contact .map .point-box .point .cir::before {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 0%, #243cd2 100%);
  opacity: 0.51;
  animation: scale2 2s 1s ease-in-out infinite;
}
.contact .map .point-box .point .cir::after {
  content: "";
  position: absolute;
  top: -.25rem;
  left: -.25rem;
  /*transform: translate(-50%, -50%);*/
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0) 0%, #243cd2 100%);
  opacity: 0.33;
  animation: scale2 2s ease-in-out infinite;
}
.contact .map .point-box .point .h {
  position: absolute;
  top: 0;
  left: calc(100% + 0.35rem);
  width: -moz-max-content;
  width: max-content;
  color: #333;
  background: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 3;
}
.contact .map .point-box .office .icon {
  width: 0.5rem;
  height: .5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .map .point-box .office .icon::before,
.contact .map .point-box .office .icon::after {
  display: none;
}
.contact .map .point-box .base {
  position: absolute;
  z-index: 5;
  top: 33.85%;
  left: 79.46%;
}
.contact .map .point-box .base .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--vi);
}
/*.contact .map .point-box .point:first-child .h {*/
/*  color: var(--vi);*/
/*}*/
.contact .map .point-box .base .icon img {
  width: auto;
}
.contact .map .point-box .base .icon::before {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--vi);
  transform-origin: center;
  animation: scale 10s linear infinite;
}
.contact .map .point-box .base .icon::after {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--vi);
  transform-origin: center;
  animation: scale 10s 5s linear infinite;
}
.contact .map .point-box .base .h {
  position: absolute;
  top: 0.15rem;
  left: calc(100% + 0.45rem);
  width: -moz-max-content;
  width: max-content;
  color: var(--vi);
}

.contact .item-box {
  margin-top: 1rem;
  display: none;
}

.contact .item-box .item {
  padding: 1rem 0.9rem;
  background-color: #fff;
  box-shadow: 0.25rem 0.25rem 1rem rgba(0, 0, 0, 0.05);
  border-radius: 0.3rem;
  border-top: 3px solid var(--vi);
  display: none;
}

.contact .item-box .item.show {
  display: block;
}

.contact .item-box .item .li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #666666;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

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

.contact .item-box .item .li span {
  width: .7rem;
}

.contact .item-box .item .li span img {
  width: 100%;
}

.contact .item-box .item .li div {
  width: calc(100% - 1.35rem);
  display: flex;
}

.news {
  padding: 3.25rem 0 4rem;
}
.news .hot-swiper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 1.25rem;
  line-height: 1;
}
.news .hot-swiper .swiper-pagination-bullet {
  width: 1.25rem;
  height: 2px;
  background-color: #e8eaef;
  margin: 0 0.25rem;
}
.news .hot-swiper .swiper-pagination-bullet-active {
  background-color: var(--vi);
}
.news .hot-swiper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #f6f7f9;
}
.news .hot-swiper .swiper-slide .pic {
  width: 50%;
  aspect-ratio: 83/55;
  overflow: hidden;
}
.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%;
  padding: 1.5rem 2rem;
}
.news .hot-swiper .swiper-slide .intro .time {
  color: #999;
  line-height: 2;
}
.news .hot-swiper .swiper-slide .intro .h {
  margin-top: 0.9rem;
  line-height: 1.25;
}
.news .hot-swiper .swiper-slide .intro .txt {
  margin-top: 0.9rem;
  line-height: 1.8;
  color: #666;
}
.news .hot-swiper .swiper-slide .intro .more {
  margin-top: 1.25rem;
}
.news .li-box {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1rem;
}
.news .li-box .li {
  position: relative;
  width: calc((100% - 2rem) / 3);
  background-color: #f9faff;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.5s;
}
.news .li-box .li .pic {
  width: 100%;
  height: 8.25rem;
  overflow: hidden;
}
.news .li-box .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.news .li-box .li .intro {
  padding: 0.7rem 1rem 1.5rem;
}
.news .li-box .li .intro .tag {
  display: flex;
  gap: 0.25rem;
  color: #333;
  opacity: 0.4;
}
.news .li-box .li .intro .tag span {
  padding-right: 0.25rem;
  border-right: 1px solid #333333;
}
.news .li-box .li .intro .tag span:last-child {
  border: none;
}
.news .li-box .li .intro .tit {
  margin-top: 0.5rem;
  color: #333333;
  line-height: 1.3;
  height: 2.6em;
  overflow: hidden;
}
.news .li-box .li .intro .more {
  margin-top: 1.25rem;
}
.news .li-box .li .pos-icon {
  position: absolute;
  right: -1.05rem;
  bottom: -1.5rem;
  width: 8.1rem;
  opacity: 0.5;
  opacity: 0;
  transition: all 0.5s;
}
.news .li-box .li .pos-icon img {
  width: 100%;
}
.news .li-box .li:hover {
  background-color: #fff;
  box-shadow: 0 0.1rem 1.5rem rgba(0, 0, 0, 0.1);
}
.news .li-box .li:hover .pic img {
  transform: scale(1.05);
}
.news .li-box .li:hover .intro .tit {
  color: var(--vi);
}
.news .li-box .li:hover .pos-icon {
  opacity: 1;
}
.news .page-box {
  margin-top: 2.5rem;
}

.news-info {
  padding: 4.95rem 0 4rem;
  background-color: #f7f8fa;
}
.news-info .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.news-info .lf {
  width: 69%;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2.5rem 2rem 3.25rem;
}
.news-info .lf .tit {
  color: #333333;
  line-height: 1.6;
}
.news-info .lf .intro {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.news-info .lf .intro .time {
  color: #333;
}
.news-info .lf .intro .share {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #000000;
}
.news-info .lf .intro .share-box {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.news-info .lf .cont {
  margin-top: 0.6rem;
  border-top: 1px solid #d6e4fa;
  padding-top: 2rem;
  color: #666666;
  line-height: 2;
}
.news-info .rg {
  width: calc(31% - 1rem);
  position: sticky;
  top: 2.5rem;
}
.news-info .rg .recommend {
  background-color: #fff;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 1.5rem 1rem;
}
.news-info .rg .recommend .tit {
  color: #0b1126;
}
.news-info .rg .recommend .li-box {
  margin-top: 0.95rem;
}
.news-info .rg .recommend .li {
  display: block;
  margin-bottom: 0.8rem;
}
.news-info .rg .recommend .li:last-child {
  margin-bottom: 0;
}
.news-info .rg .recommend .li .h {
  color: #333333;
  line-height: 1.2;
}
.news-info .rg .recommend .li .time {
  margin-top: 0.2rem;
  color: #7a7f8d;
}
.news-info .rg .box {
  position: relative;
  background-color: #fff;
  padding: 1.5rem 1rem 2.3rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.news-info .rg .box .next {
  margin-top: 0.55rem;
}
.news-info .rg .box .next .pic {
  width: 100%;
  height: 6rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
.news-info .rg .box .next .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-info .rg .box .next .h {
  margin-top: 0.6rem;
  color: #333333;
}
.news-info .rg .box .next .time {
  margin-top: 0.2rem;
}
.news-info .rg .box .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.55rem;
  border-top: 1px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.4s;
}
.news-info .rg .box .back svg {
  width: 0.45rem;
  fill: #333;
  transition: all 0.4s;
}
.news-info .rg .box .back:hover {
  border-color: var(--vi);
  background-color: var(--vi);
  color: #fff;
}
.news-info .rg .box .back:hover svg {
  fill: #fff;
}

.about .box1 {
  padding: 3rem 0 5.25rem;
}
.about .box1 .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.about .box1 .lf {
  width: 42.4%;
  position: relative;
}
.about .box1 .lf .swiper-pagination {
  bottom: -1.25rem;
  left: 0;
}
.about .box1 .lf .swiper-pagination-bullet {
  width: 1.25rem;
  height: 2px;
  background-color: #e8eaef;
  margin: 0 0.25rem;
}
.about .box1 .lf .swiper-pagination-bullet-active {
  background-color: var(--vi);
}
.about .box1 .lf .box1-swiper {
  width: 100%;
  height: 17.75rem;
}
.about .box1 .lf .box1-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
.about .box1 .lf .box1-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all .4s;
}
.about .box1 .lf .box1-swiper .swiper-slide:hover img {
  transform: scale(1.04);
}
.about .box1 .rg {
  width: 51.6%;
  position: relative;
  z-index: 1;
}
.about .box1 .rg .en {
  position: absolute;
  top: -1.8rem;
  font-size: 2.5rem;
  line-height: 1.3;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #e9f0f5;
  z-index: -1;
}
.about .box1 .rg .tit {
  line-height: 1.3;
}
.about .box1 .rg .tit span {
  color: var(--vi);
}
.about .box1 .rg .txt {
  margin-top: 0.8rem;
  color: #666666;
  line-height: 2;
}
.about .box1 .rg .num-box {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 0;
}
.about .box1 .rg .num-box .li {
  width: 50%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.about .box1 .rg .num-box .li .icon {
  width: 1.2rem;
}
.about .box1 .rg .num-box .li .icon img {
  width: 100%;
}
.about .box1 .rg .num-box .li .cont .num {
  display: flex;
  align-items: center;
  color: var(--vi);
  font-weight: bold;
}
.about .box1 .rg .num-box .li .cont .num .unit {
  margin-left: 0.2rem;
  font-weight: 400;
}
.about .box1 .rg .num-box .li .cont .txt {
  margin-top: 0.4rem;
  color: #666666;
  line-height: 1.3;
}
.about .box1 .rg .pos-bg {
  position: absolute;
  bottom: -1rem;
  right: 0;
  width: 79%;
  z-index: -1;
}
.about .box1 .rg .pos-bg img {
  width: 100%;
}
.about .box2 {
  position: relative;
  padding: 4.55rem 0 0;
}
.about .box2 .wrap {
  position: relative;
  z-index: 2;
}
.about .box2 .li-box {
  margin-top: 11.6rem;
  display: flex;
  flex-wrap: wrap;
}
.about .box2 .li-box .li {
  width: 25%;
  height: 4.7rem;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  padding: 1.45rem 0.5rem 0.5rem;
  transition: all 0.4s;
}
.about .box2 .li-box .li .icon {
  width: 1.25rem;
  height: 1.25rem;
  margin: auto;
  filter: brightness(100);
}
.about .box2 .li-box .li .h {
  margin-top: 0.5rem;
  color: #fff;
  text-align: center;
  transition: all 0.4s;
}
.about .box2 .li-box .li:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.about .box2 .li-box .li:hover .icon {
  filter: initial;
}
.about .box2 .li-box .li:hover .h {
  color: var(--vi);
}
.about .box3 {
  padding: 3rem 0 4.3rem;
}
.about .box3 .item-box {
  margin-top: 2rem;
}
.about .box3 .li-box {
  position: relative;
  margin-top: -3px;
  display: flex;
  flex-wrap: wrap;
}
.about .box3 .li-box::after {
  content: "";
  position: absolute;
  right: -3px;
  top: calc(-0.45rem + 1px);
  border-left: 0.45rem solid #a7b1ed;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
  display: none;
}
.about .box3 .li-box .li {
  position: relative;
  width: 33.33%;
  padding: 1.3rem 0;
  border-top: 3px dashed rgba(36, 60, 210, 0.4);
}
.about .box3 .li-box .li .cir {
  position: absolute;
  top: -0.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  /*border: 1px solid var(--vi);*/
  background-color: var(--vi);
}
.about .box3 .li-box .li .cir::before {
  content: "";
  position: absolute;
  top: -.1rem;
  left: -.1rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--vi);
  /*border: 1px solid var(--vi);*/
  animation: scale2 2s ease-in-out infinite;
}
.about .box3 .li-box .li .cir::after {
  content: "";
  position: absolute;
  top: -.1rem;
  left: -.1rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--vi);
  /*border: 1px solid var(--vi);*/
  animation: scale2 2s 1s ease-in-out infinite;
}
.about .box3 .li-box .li .year {
  color: #333333;
  text-align: center;
  font-weight: bold;
}
.about .box3 .li-box .li .txt {
  margin: 1.2rem auto 0;
  line-height: 1.8;
  width: 7.55rem;
}
.about .box3 .li-box .li .txt span {
  color: var(--vi);
}
.about .box3 .li-box:nth-child(2n-1) .li:first-child {
  border-left: 3px dashed rgba(36, 60, 210, 0.4);
  border-bottom: 3px dashed rgba(36, 60, 210, 0.4);
  border-radius: 4rem 0 0 4rem;
}
.about .box3 .li-box:nth-child(2n-1) .li:nth-child(3) {
  border-top: none;
}
.about .box3 .li-box:nth-child(2n) {
  flex-direction: row-reverse;
}
.about .box3 .li-box:nth-child(2n - 1) {
  justify-content: flex-end;
}
.about .box3 .li-box:nth-child(2n) .li:first-child {
  border-right: 3px dashed rgba(36, 60, 210, 0.4);
  border-radius: 0 4rem 4rem 0;
  border-bottom: 3px dashed rgba(36, 60, 210, 0.4);
}
.about .box3 .li-box:nth-child(2n) .li:nth-child(3) {
  border-top: none;
}
.about .box3 .li-box:first-child::after {
  display: block;
}
.about .box3 .li-box:first-child .li:nth-child(3) {
  border-top: 3px dashed rgba(36, 60, 210, 0.4);
}
.about .box3 .li-box:last-child .li:first-child {
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: none;
  border-radius: 0;
}
.about .box3 .li-box:nth-child(2n-1) .li:first-child {
  border-top: 3px dashed rgba(36, 60, 210, 0.4);
}
.about .box3 .li-box:last-child .li:last-child {
  border-top: none;
}
.about .box3 .li-box:last-child .li:nth-child(3) {
  border-right: none;
  border-bottom: none;
  border-radius: 0;
}
.about .box4 {
  padding: 2.25rem 1.5rem 6.25rem;
}
.about .box4 .item-box {
  margin-top: 1.5rem;
}
.about .box4 .item-box .item {
  position: relative;
  /*margin-bottom: 6.25rem;*/
  margin-bottom: 5.75rem;
  padding: 0 2.75rem;
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  /*gap: 1.2rem;*/
}
.about .box4 .item-box .item:last-child {
  margin-bottom: 0;
}
.about .box4 .item-box .item .pos-bg {
  position: absolute;
  top: 100%;
  left: 3%;
  width: 94%;
  aspect-ratio: 1802/200;
}
.about .box4 .item-box .item .pos-bg img {
  width: 100%;
}
.about .box4 .item-box .item .li {
  /*width: calc((100% - 6rem) / 6);*/
  width: 5.6rem;
  margin-right: 1.2rem;
  height: 4.15rem;
  display: inline-block;
}
.about .box4 .item-box .item .li:last-child {
  margin-right: 0;
}
.about .box4 .item-box .item .li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about .box5 {
  position: relative;
  height: 18.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .box5 .cont {
  position: relative;
  z-index: 2;
}
.about .box5 .cont .sub {
  margin-top: 1.2rem;
  line-height: 1.3;
  color: #fff;
}
.about .box5 .cont .more {
  margin: 1.6rem auto 0;
}

.about .box5 .cont .more:hover {
  --col: #fff;
}

.investor .box1 {
  padding: 1.5rem 0 1.75rem;
  background-color: #fff;
}
.investor .box1 .wrap {
  display: flex;
}
.investor .box1 .lf {
  width: 58.6%;
}
.investor .box1 .lf .tit {
  display: flex;
  align-items: baseline;
  gap: 2.65rem;
  color: #333;
}
.investor .box1 .lf .num {
  margin-top: 1rem;
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  color: var(--vi);
}
.investor .box1 .lf .num .ing {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.investor .box1 .lf .num .range {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.investor .box1 .lf .num .range.down {
  color: #d60a22;
}
.investor .box1 .lf .num .range span {
  display: flex;
}
.investor .box1 .lf .li-box {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  width: 57.5%;
  /*gap: 0.9rem 1.6rem;*/
  gap: .9rem 0;
}
.investor .box1 .lf .li-box .li {
  /*width: calc((100% - 3.2rem) / 3);*/
  width: 33.33%;
  display: flex;
  gap: 0.25rem;
  padding-left: 0.35rem;
  position: relative;
}
.investor .box1 .lf .li-box .li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.1rem;
  height: 0.1rem;
  border-radius: 50%;
  background-color: #333;
  transform: translateY(-50%);
}
.investor .box1 .lf .li-box .li span {
  color: var(--vi);
}
.investor .box1 .lf .tips {
  margin-top: 0.6rem;
  color: #333;
  line-height: 1.5;
}
.investor .box1 .rg {
  width: 41.4%;
}
.investor .box1 .rg .tit {
  line-height: 2;
}
.investor .box1 .rg .li-box {
  margin-top: 1rem;
}
.investor .box1 .rg .li-box .li {
  margin-bottom: 0.8rem;
  color: #666666;
}
.investor .box1 .rg .li-box .li:last-child {
  margin-bottom: 0;
}
.investor .box2 {
  background-color: #f7f8fa;
  padding: 3rem 0 4rem;
}
.investor .box2 .top-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.investor .box2 .top-intro .tit {
  line-height: 1.4;
}
.investor .box2 .top-intro .tab {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.investor .box2 .top-intro .tab a {
  width: 3.55rem;
  height: 1.15rem;
  text-align: center;
  line-height: 1.15rem;
  position: relative;
  color: #666;
  --col: #a8a9aa;
  cursor: pointer;
  transition: all 0.4s;
}
.investor .box2 .top-intro .tab a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 0.7rem;
  border: 3px solid var(--col);
  -webkit-clip-path: polygon(18% 0, 100% 0, 100% 100%, 18% 100%);
          clip-path: polygon(18% 0, 100% 0, 100% 100%, 18% 100%);
  transition: all 0.4s;
}
.investor .box2 .top-intro .tab a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 0.7rem;
  border: 3px solid var(--col);
  opacity: 0.2;
  -webkit-clip-path: polygon(0 0, 15% 0, 15% 100%, 0% 100%);
          clip-path: polygon(0 0, 15% 0, 15% 100%, 0% 100%);
  transition: all 0.4s;
}
.investor .box2 .top-intro .tab a:hover {
  color: var(--vi);
}
.investor .box2 .top-intro .tab a.active {
  --col: var(--vi);
  color: var(--vi);
}
.investor .box2 .li-box {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.investor .box2 .li-box .li {
  width: calc((100% - 1rem) / 2);
  height: 5rem;
  border-radius: 0.5rem;
  background-color: #fff;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
}
.investor .box2 .li-box .li .con {
  width: 85%;
  height: 100%;
  border-right: 1px solid #dcdcdc;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.investor .box2 .li-box .li .con .time {
  color: rgba(51, 51, 51, 0.4);
}
.investor .box2 .li-box .li .con .tit {
  margin-top: 0.5rem;
  color: #333333;
  line-height: 1.8;
  width: 72%;
}
.investor .box2 .li-box .li .down {
  width: -moz-max-content;
  width: max-content;
}
.investor .box2 .li-box .li .down span {
  display: flex;
  margin: auto;
  width: 1.2rem;
  filter: grayscale(100);
  opacity: 0.5;
  transition: all 0.4s;
}
.investor .box2 .li-box .li .down p {
  margin-top: 0.6rem;
  text-align: center;
  color: #999;
  transition: all 0.4s;
}
.investor .box2 .li-box .li:hover {
  box-shadow: 0 0.1rem 1.5rem rgba(0, 0, 0, 0.05);
}
.investor .box2 .li-box .li:hover .down span {
  filter: inherit;
  opacity: 1;
}
.investor .box2 .li-box .li:hover .down p {
  color: var(--vi);
}
.investor .box2 .page-box {
  margin-top: 2rem;
}

.solution {
  display: flex;
  align-items: flex-start;
}
.solution .container {
  width: calc(100% - 10rem);
  padding: 3rem 3.25rem 4rem 2rem;
}
.solution .container .li {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1.6rem;
  border-radius: 0.5rem;
  background-color: #f7f8fa;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.solution .container .li:last-child {
  margin-bottom: 0;
}
.solution .container .li .pic {
  width: 7.85rem;
  height: 5.35rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.solution .container .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.solution .container .li .intro {
  width: calc(100% - 9.45rem);
}
.solution .container .li .intro .h {
  color: #333333;
  line-height: 1.3;
  transition: all 0.4s;
}
.solution .container .li .intro .txt {
  margin-top: 0.25rem;
  color: #666666;
  line-height: 2;
}
.solution .container .li .intro .more {
  margin-top: 1rem;
}
.solution .container .li .pos-bg {
  position: absolute;
  top: 0.5rem;
  right: -1.3rem;
  width: 8.7rem;
  opacity: 0;
  transition: all 0.4s;
}
.solution .container .li .pos-bg img {
  width: 100%;
}
.solution .container .li:hover {
  background-color: #fff;
  box-shadow: 0 0.1rem 1.5rem rgba(0, 0, 0, 0.05);
}
.solution .container .li:hover .intro .h {
  color: var(--vi);
}
.solution .container .li:hover .pos-bg {
  opacity: 1;
}
.solution .container .li:hover .pic img {
  transform: scale(1.04);
}
.sol-info .box1 {
  padding: 3rem 0 2.9rem;
}
.sol-info .box1 .pic {
  margin-top: 5px;
  text-align: center;
}
.sol-info .box1 .txt {
  margin: -0.4rem auto 0;
  width: 71.7%;
  line-height: 1.6;
}
.sol-info .box2 {
  padding: 3rem 0 4.3rem;
}
.sol-info .box2 .cont {
  margin-top: 1rem;
  color: #666666;
  line-height: 1.6;
}
.sol-info .box2 .li-box {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.sol-info .box2 .li-box .li {
  width: calc((100% - 4rem) / 3);
  border-radius: 0.5rem;
  background-color: #f7f8fa;
  overflow: hidden;
}
.sol-info .box2 .li-box .li .pic {
  width: 100%;
  height: 8.7rem;
  overflow: hidden;
  /*background-color: #e6e6e6;*/
  display: flex;
  justify-content: center;
  align-items: center;
}
.sol-info .box2 .li-box .li .pic img {
  /*width: 100%;*/
  /*height: 100%;*/
  /*-o-object-fit: cover;*/
  /*   object-fit: cover;*/
  max-width: 100%;
  max-height: 100%;
}
.sol-info .box2 .li-box .li .intro {
  padding: 0.75rem 0.4rem 1rem;
}
.sol-info .box2 .li-box .li .intro .h {
  font-weight: bold;
}
.sol-info .box2 .li-box .li .intro .more {
  margin: 1.2rem auto 0;
}
.sol-info .box3 {
  padding: 3rem 0 3.5rem;
}
.sol-info .box3 .cont {
  margin-top: 1rem;
  color: #666666;
  line-height: 1.6;
}
.sol-info .box3 .li-box {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0;
  background-color: #fff;
  border-radius: 0.5rem;
  padding-bottom: 0.7rem;
}
.sol-info .box3 .li-box .li {
  width: 33.33%;
  height: 7.5rem;
  padding: 0.8rem;
}
.sol-info .box3 .li-box .li .icon {
  margin: auto;
  width: 1.55rem;
  height: 1.55rem;
}
.sol-info .box3 .li-box .li .h {
  margin-top: 1.2rem;
  color: #333333;
  line-height: 1.2;
}
.sol-info .box3 .li-box .li .txt {
  margin-top: 0.5rem;
  color: #666666;
  line-height: 1.5;
  text-align: center;
}
.sol-info .box4 {
  padding: 3.1rem 0 3.45rem;
}
.sol-info .box4 .cont {
  margin: 1rem auto 0;
  color: #999999;
  line-height: 1.8;
  width: 76%;
}
.sol-info .box4 .li-box {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.sol-info .box4 .li-box .li {
  width: calc((100% - 1.6rem) / 3);
  height: 7.5rem;
}
.sol-info .box4 .li-box .li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 299;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}
.index-dialog .close-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.index-dialog .wrap {
  width: 49%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 0.7rem;
  background-color: #f7f8fa;
  padding: 2rem 1.5rem 1.5rem;
}
.index-dialog .wrap .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  /*box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);*/
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s;
}
.index-dialog .wrap .close img {
  /*max-width: 50%;*/
  transition: all 0.4s;
}
/*.index-dialog .wrap .close:hover {*/
/*  background-color: var(--vi);*/
/*  box-shadow: none;*/
/*}*/
.index-dialog .wrap .close:hover img {
  transform: rotate(180deg);
}
.index-dialog .wrap .tit {
  color: #333;
}
.index-dialog .wrap .tit span {
  color: #666666;
}
.index-dialog .wrap .form {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.index-dialog .wrap .form .li {
  width: 48%;
  height: 1.6rem;
  background-color: #fff;
  border-radius: 0.45rem;
  padding: 0 0.5rem;
  margin-bottom: 0.6rem;
}
.index-dialog .wrap .form .li input {
  width: 100%;
  height: 100%;
  background: none;
}
.index-dialog .wrap .form .li.must {
  position: relative;
}
.index-dialog .wrap .form .li.must::before {
  content: "*";
  position: absolute;
  font-size: inherit;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  color: #e60213;
}
.index-dialog .wrap .form .li.must input {
  padding: 0 0.4rem;
}
.index-dialog .wrap .form .agree {
  margin-top: 0.4rem;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: #999999;
  cursor: pointer;
}
.index-dialog .wrap .form .agree span {
  position: relative;
  width: 15px;
  height: 15px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
  border-radius: 2px;
  transition: all 0.4s;
}
.index-dialog .wrap .form .agree span::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 3px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.4s;
}
.index-dialog .wrap .form .agree a {
  color: #999;
  text-decoration: underline;
}
.index-dialog .wrap .form .agree.active span {
  background-color: var(--vi);
  box-shadow: none;
}
.index-dialog .wrap .form .agree.active span::after {
  opacity: 1;
}
.index-dialog .wrap .form .submit {
  margin-top: 1.25rem;
  width: 100%;
}
.index-dialog .wrap .form .submit button {
  margin: auto;
  background: none;
  opacity: .5;
  pointer-events: none;
}
.index-dialog .wrap .form .submit button.clickable {
  opacity: 1;
  pointer-events: auto;
  --col: var(--vi);
}
.article-page01 .title {
    font-size: 24px;
    margin-bottom: 5px;
}
@media screen and (max-width: 1660px) {
    .index .box1 .li-box .li {
        height: 6.05rem;
    }
}
@media screen and (max-width: 997px) {
    .fix-bar-m {
        display: block!important;
        right: -1.3rem;
        left: auto;
    }
}