:root {
  --vi: #3377e6;
  --circle-radius: 0.3rem;
  --circle-circumference: calc(2 * 3.14159 * 0.3rem); // 动态计算周长
}

@keyframes round {
  0% {
    stroke-dashoffset: var(--circle-circumference);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.w1720 {
  width: 43rem;
  max-width: 90%;
  margin: 0 auto;
}

.tac {
  text-align: center;
}

.lh1 {
  line-height: 1;
}

.fonb {
  font-family: "HarmonyOS_Sans_SC_Bold";
}

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

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

.main-tit {
  font-size: 1.2rem;
  color: #333333;
  line-height: 1.5;
}

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

.side-sub {
  margin-top: 0.6rem;
  font-size: 0.5rem;
  color: #666666;
  line-height: 1.6;
}

.main-more {
  display: block;
  /*width: 5.1rem;*/
  /*height: 1.7rem;*/
  width: 3.4rem;
  height: 1.1rem;
  border-radius: 0.85rem;
  background-color: var(--vi);
  position: relative;
  color: #fff;
  padding: 0 0.8rem;
  line-height: 1.1rem;
  font-size: .3rem;
}
.main-more span {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  /*width: 1.2rem;*/
  /*height: 1.2rem;*/
  width: .8rem;
  height: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  background-color: #fff;
  transition: all 0.4s;
  padding: .18rem;
}
.main-more:hover span {
  width: calc(100% - 0.5rem);
}

.page-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-box a {
  width: 1.05rem;
  height: 1.05rem;
  line-height: 1.05rem;
  text-align: center;
  border-radius: 50%;
  color: #333333;
  margin-right: 5px;
  transition: all 0.4s;
}
.page-box a:last-child {
  margin-right: 0;
}
.page-box a:hover, .page-box a.active {
  background-color: var(--vi);
  color: #fff;
}
.page-box a.disabled:hover {
  background-color: transparent;
  color: #333333;
}

.scrolldown {
  position: absolute;
  z-index: 11;
  bottom: 2.05rem;
  left: 50%;
  transform: translateX(-50%);
  --sizeX: 0.55rem;
  --sizeY: 0.9rem;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  border: 2px solid #fff;
  border-radius: 0.9rem;
}
.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 0.55rem;
  left: 50%;
  width: 2px;
  height: 5px;
  margin-left: -1px;
  background-color: #e81611;
  border-radius: 5px;
  animation: scrolldown-anim 2s infinite;
}
.scrolldown .chevrons {
  padding-top: 0.25rem;
  margin-left: -3px;
  margin-top: calc(0.9rem - 2px);
  width: 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scrolldown .chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  transform: rotate(45deg);
}
.scrolldown .chevrondown:nth-child(odd) {
  animation: pulse54012 500ms ease infinite alternate;
}
.scrolldown .chevrondown:nth-child(even) {
  animation: pulse54012 500ms ease infinite alternate 250ms;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 5px;
  }
  40% {
    opacity: 1;
    height: 9px;
  }
  80% {
    transform: translate(0, 20px);
    height: 9px;
    opacity: 0;
  }
  100% {
    height: 2px;
    opacity: 0;
  }
}
@keyframes pulse54012 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}
.footer {
  background-color: #f9fafc;
}
.footer .top {
  border-bottom: 1px solid #f1f2f4;
}
.footer .top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  position: relative;
}
.footer .top .wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 1px;
  height: 100%;
  background-color: #f1f2f4;
}
.footer .top .lt {
  width: 20%;
}
.footer .top .lt .logo {
  width: 2.2rem;
}
.footer .top .lt .logo img {
  width: 100%;
}
.footer .top .rt {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}
.footer .top .rt .share {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer .top .rt .share a {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #cfd0d2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
.footer .top .rt .share a img {
  max-width: 60%;
  max-height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .top .rt .share a:hover {
  background-color: var(--vi);
}
.footer .top .rt .link {
  position: relative;
  z-index: 10;
}
.footer .top .rt .link p {
  position: relative;
  width: 5.65rem;
  height: 1.1rem;
  line-height: 1.1rem;
  border-radius: 0.2rem;
  padding: 0 0.5rem;
  box-shadow: 0 0 0 1px #cfd0d2;
  cursor: pointer;
}
.footer .top .rt .link p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  border-top: 6px solid #333;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
}
.footer .top .rt .link .drop-down {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  max-height: 5rem;
  box-shadow: 0 0 0 1px #cfd0d2;
  background-color: #fff;
  border-radius: 0.2rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.4s;
}
.footer .top .rt .link .drop-down a {
  display: block;
  width: 100%;
  height: 1rem;
  line-height: 1rem;
  padding: 0 0.5rem;
  color: #666;
  border-bottom: 1px solid #cfd0d2;
}
.footer .top .rt .link .drop-down a:last-child {
  border-bottom: none;
}
.footer .top .rt .link:hover .drop-down {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.footer .mid .wrap {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 0 1.1rem;
  position: relative;
}
.footer .mid .wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 1px;
  height: 100%;
  background-color: #f1f2f4;
}
.footer .mid .lt {
  width: 20%;
}
.footer .mid .lt .li {
  margin-bottom: 0.9rem;
}
.footer .mid .lt .li:last-child {
  margin-bottom: 0;
}
.footer .mid .lt .icon {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #666;
}
.footer .mid .lt .icon span {
  width: 0.4rem;
}
.footer .mid .lt .icon span img {
  width: 100%;
}
.footer .mid .lt .txt {
  color: #666666;
  padding-left: 0.65rem;
}
.footer .mid .rt {
  width: 80%;
  display: flex;
  justify-content: flex-end;
  gap: 3rem;
}
.footer .mid .rt .li p {
  color: #333333;
  margin-bottom: 0.9rem;
}
.footer .mid .rt .li a {
  display: block;
  margin-bottom: 0.5rem;
  color: #999999;
  transition: all 0.4s;
}
.footer .mid .rt .li a:last-child {
  margin-bottom: 0;
}
.footer .mid .rt .li a:hover {
  color: var(--vi);
}
.footer .btm {
  background-color: var(--vi);
  padding: 0.8rem 0;
}
.footer .btm .wrap {
  display: flex;
  justify-content: space-between;
}
.footer .btm .lt {
  display: flex;
  gap: 0.45rem;
}
.footer .btm .lt a {
  position: relative;
  color: #fff;
}
.footer .btm .lt a::after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.225rem;
  width: 1px;
  height: 60%;
  background-color: #fff;
}
.footer .btm .lt a:last-child::after {
  display: none;
}
.footer .btm .rt {
  color: #fff;
}
.footer .btm .rt a {
    margin-left: 1rem;
    color: #fff;
}

.loading {
  position: fixed;
  z-index: 188;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 1;
  visibility: visible;
}
.loading .first {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 1;
}
.loading .first .logo {
  width: 12.8rem;
  margin: 0 auto 2rem;
}
.loading .first .logo img {
  width: 100%;
}
.loading .first p {
  color: #999999;
}
.loading .second {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  -webkit-mask-image: url(../svg/14.svg);
          mask-image: url(../svg/14.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  background-color: #fff;
  transform-origin: center;
  opacity: 0;
}
.loading .second img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.loading .second.show{
  animation: show2 2s ease-in forwards;
}

@keyframes show {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  50%{
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes show2 {
  0% {
    opacity: 0;
    transform: scale(1)
  }
  15%{
      opacity: 0.5;
      transform: scale(1);
  }
  30%{
      opacity: 1;
  }
  100% {
    transform: scale(20);
  }
}
@keyframes show3 {
  0% {
    background-color: #fff;
  }
  100% {
    background-color: transparent;
  }
}
#newBan {
  width: 100%;
  height: 100vh;
}
#newBan .swiper-pagination {
  bottom: 2.75rem;
  right: 2.5rem;
  left: auto;
  width: -moz-max-content;
  width: max-content;
  height: 1rem;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
  line-height: 1rem;
  background-color: rgba(255, 255, 255, 0.4);
}
#newBan .swiper-pagination .swiper-pagination-bullet {
  width: 0.2rem;
  height: 0.2rem;
  background-color: #fff;
  opacity: 1;
  margin: 0 0.3rem;
  position: relative;
}
#newBan .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--vi);
}
#newBan .swiper-pagination .swiper-pagination-bullet-active svg {
  animation: round 6s linear forwards;
}
#newBan .swiper-pagination svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  stroke-dasharray: var(--circle-circumference);
  stroke-dashoffset: var(--circle-circumference);
}
#newBan .swiper-pagination circle {
  r: var(--circle-radius);
  cx: 50%;
  cy: 50%;
  fill: transparent;
  stroke: var(--vi);
  stroke-width: 2;
}
#newBan .swiper-slide {
  width: 100%;
  height: 100%;
}
#newBan .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.05, 1.05);
  transition: 1s linear 2s;
}
#newBan .swiper-slide .pos-cont {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 2.5rem 2.5rem 2rem;
  color: #fff;
  
  
}
#newBan .swiper-slide .pos-cont .cont_t{
    position: relative;
    z-index: 3;
}
#newBan .swiper-slide .pos-cont .pos-bg{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width:100%;
  /*background: linear-gradient(180deg, transparent 0%, rgba(34, 34, 34, 0) 30%, rgba(34, 34, 34, 60%) 100%);*/
  /*background:url(../img/com_mask.png)no-repeat center;*/
  /*background-size: cover;*/
  /*-webkit-backdrop-filter: blur(40px);*/
          /*backdrop-filter: blur(40px);*/
  z-index: 1;
}

#newBan .swiper-slide .pos-cont .tit {
  line-height: 1.2;
}
#newBan .swiper-slide .pos-cont .sub {
  margin-top: 0.35rem;
  line-height: 1.6;
}
#newBan .swiper-slide-active img {
  transform: scale(1, 1);
  transition: 6s linear;
}

.index {
  position: relative;
  overflow: hidden;
}
.index .index-swiper {
  width: 100%;
  height: 100vh;
}
.index .index-swiper .swiper-pagination {
  bottom: 1.5rem;
  right: 2.5rem;
  left: auto;
  width: -moz-max-content;
  width: max-content;
  height: 1rem;
  border-radius: 0.5rem;
  padding: 0 0.5rem;
  line-height: 1rem;
  background-color: rgba(255, 255, 255, 0.4);
}
.index .index-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.2rem;
  height: 0.2rem;
  background-color: #fff;
  opacity: 1;
  margin: 0 0.3rem;
  position: relative;
}
.index .index-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--vi);
}
.index .index-swiper .swiper-pagination .swiper-pagination-bullet-active svg {
  animation: round 6s linear forwards;
}
.index .index-swiper .swiper-pagination svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
}
.index .index-swiper .swiper-pagination circle {
  r: 0.3rem;
  cx: 50%;
  cy: 50%;
  fill: transparent;
  stroke: var(--vi);
  stroke-width: 2;
  
  
 
}
.index .index-swiper .page {
  position: absolute;
  bottom: 1.5rem;
  left: 2.5rem;
  color: #fff;
  z-index: 10;
}
.index .index-swiper .page .current {
  margin-right: 0.3rem;
  color: var(--vi);
}
.index .index-swiper .swiper-slide {
  width: 100%;
  height: 100vh;
}
.index .index-swiper .swiper-slide .bg {
  transform: scale(1.05, 1.05);
  transition: 1s linear 2s;
}
.index .index-swiper .swiper-slide .pos-cont {
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translateX(-50%);
}
.index .index-swiper .swiper-slide .pos-cont .tit {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.index .index-swiper .swiper-slide-active .bg {
  transform: scale(1, 1);
  transition: 6s linear;
}
.index .box1 {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 2.25rem;
  width: 100%;
  height: 100vh;
  z-index: 11;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}
.index .box1 .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transform: scale(0.5);
}
.index .box1 .lt {
  width: 47%;
  transform: translateX(-50vw);
  opacity: 0;
}
.index .box1 .lt .txt {
  margin-top: 1rem;
  color: #666666;
  line-height: 1.8;
}
.index .box1 .lt .more {
  margin-top: 1.6rem;
}
.index .box1 .rt {
  width: 41%;
  position: absolute;
  right: 29.5%;
  top: 50%;
  transform: translateY(-50%);
}
.index .box1 .rt img {
  width: 100%;
}
.index .box1 .rt .pos-point {
  position: absolute;
  top: 57.5%;
  left: 58.38%;
  transform: translateX(50vw);
  opacity: 0;
}
.index .box1 .rt .pos-point::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11.5rem;
  height: 11.5rem;
  border-radius: 50%;
  border: 1px solid var(--vi);
}
.index .box1 .rt .pos-point .point {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background-color: rgba(51, 119, 230, 0.23);
  display: flex;
  align-items: center;
  justify-content: center;
}
.index .box1 .rt .pos-point .point::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--vi);
}
.index .box1 .rt .pos-point .point::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7.65rem;
  height: 7.65rem;
  border-radius: 50%;
  border: 1px solid var(--vi);
}
.index .box1 .rt .pos-point .point img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.index .box1 .rt .pos-point .intro {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: -1.5rem;
  width: 10.8rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(0.5rem);
          backdrop-filter: blur(0.5rem);
  box-shadow: 0 0 1rem rgba(51, 119, 230, 0.1);
}
.index .box1 .rt .pos-point .intro .h {
  color: var(--vi);
  line-height: 1.3;
}
.index .box1 .rt .pos-point .intro .cont {
  margin-top: 0.5rem;
  padding-top: 0.6rem;
  border-top: 1px solid #fff;
}
.index .box1 .rt .pos-point .intro .cont .li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}
.index .box1 .rt .pos-point .intro .cont .li:last-child {
  margin-bottom: 0;
}
.index .box2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  padding-top: 2.25rem;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
  z-index: 12;
  visibility: hidden;
}
.index .box2 .wrap {
  position: relative;
  height: 100%;
  padding-top: 1rem;
  transform: scale(0.5);
  opacity: 0;
}
.index .box2 .pos-bg {
  position: absolute;
  bottom: 0;
  right: -2rem;
  width: 72%;
}
.index .box2 .pos-bg img {
  width: 100%;
}
.index .box2 .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-20vh);
  opacity: 0;
}
.index .box2 .top .tit {
  color: #333;
  line-height: 1.4;
}
.index .box2 .top .tab {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  max-width: 80%;
  gap: 3rem;
  border-bottom: 2px solid #eeeeee;
}
.index .box2 .top .tab span {
  position: relative;
  color: #999999;
  padding-bottom: 0.55rem;
  cursor: pointer;
  transition: all 0.4s;
}
.index .box2 .top .tab span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vi);
  transition: all 0.4s;
}
.index .box2 .top .tab span:hover {
  color: #333;
}
.index .box2 .top .tab span.active {
  color: #333;
}
.index .box2 .top .tab span.active::after {
  width: 100%;
}
.index .box2 .container {
  margin-top: 1.5rem;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.index .box2 .container .pic-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 19.5rem;
  transform: translateY(-10vh);
}
.index .box2 .container .pic-box .pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s;
}
.index .box2 .container .pic-box .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index .box2 .container .pic-box .pic.show {
  opacity: 1;
  z-index: 1;
}
.index .box2 .container .intro-box {
  width: 38.5%;
  height: 100%;
  position: relative;
  transform: translateX(50vw);
}
.index .box2 .container .intro {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s;
}
.index .box2 .container .intro.show {
  opacity: 1;
  z-index: 1;
}
.index .box2 .container .intro .h {
  color: #333333;
  line-height: 1.4;
}
.index .box2 .container .intro .txt {
  color: #666666;
  line-height: 2;
  margin-top: 0.6rem;
}
.index .box2 .container .intro .li-box {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 12%;
}
.index .box2 .container .intro .li-box .li {
  width: 44%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #333333;
  line-height: 1.4;
}
.index .box2 .container .intro .li-box .li span {
  width: 1.4rem;
}
.index .box2 .container .intro .li-box .li span img {
  width: 100%;
}
.index .box2 .container .intro .li-box .li p {
  width: calc(100% - 1.8rem);
}
.index .box2 .container .intro .more {
  margin-top: 1.6rem;
}

.index .box2 .container .intro a { display: block; }

.index .box3 {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 2.25rem;
  width: 100%;
  height: 100vh;
  z-index: 13;
  opacity: 0;
  transform: translateY(100vh);
}
.index .box3 .sub {
  margin-top: 0.6rem;
  color: #666;
  line-height: 1.6;
}
.index .box3 .container {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.index .box3 .container .li {
  width: 30.5%;
  border-radius: 0.35rem;
  overflow: hidden;
  box-shadow: 0 1.4rem 0.5rem rgba(51, 119, 230, 0.05);
}
.index .box3 .container .li .pic {
  width: 100%;
  aspect-ratio: 525/303;
  position: relative;
  overflow: hidden;
}
.index .box3 .container .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.index .box3 .container .li .pic .tag {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8rem;
  height: 0.9rem;
  text-align: center;
  line-height: 0.9rem;
  background-color: var(--vi);
  border-radius: 0.35rem 0 0.35rem 0;
  color: #fff;
}
.index .box3 .container .li .intro {
  width: 100%;
  background-color: #fff;
  padding: 0.9rem 1rem 1.25rem;
}
.index .box3 .container .li .intro .time {
  color: var(--vi);
}
.index .box3 .container .li .intro .h {
  margin-top: 0.3rem;
  color: #464646;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  transition: all 0.4s;
}
.index .box3 .container .li .intro .txt {
  margin-top: 0.6rem;
  line-height: 1.8em;
  /*height: 3.6em;*/
  color: #666666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;  
    
}
.index .box3 .container .li .intro .more {
  margin-top: 0.9rem;
  color: var(--vi);
}
.index .box3 .container .li:hover .pic img {
  transform: scale(1.04);
}
.index .box3 .container .li:hover .intro .h {
  color: var(--vi);
}
.index .box3 .container .box {
  width: calc(39% - 2rem);
  position: relative;
  height: 15.35rem;
  border-radius: 0.35rem;
  padding: 1.8rem 1.25rem 1rem;
  background-color: #fff;
}
.index .box3 .container .box .tag {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8rem;
  height: 0.9rem;
  text-align: center;
  line-height: 0.9rem;
  background-color: var(--vi);
  border-radius: 0.35rem 0 0.35rem 0;
  color: #fff;
}
.index .box3 .container .box .item-box {
  height: 100%;
  overflow-y: auto;
}
.index .box3 .container .box .item-box .item {
  display: block;
  padding-bottom: 0.55rem;
  margin-bottom: 0.55rem;
  border-bottom: 1px solid #ececec;
}
.index .box3 .container .box .item-box .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.index .box3 .container .box .item-box .item .h {
  color: #464646;
  line-height: 1.5;
  transition: all 0.4s;
}
.index .box3 .container .box .item-box .item .time {
  margin-top: 0.3rem;
  color: #999999;
}
.index .box3 .container .box .item-box .item:hover .h {
  color: var(--vi);
}

.recruit {
  background-color: #f7f8fa;
}
.recruit .box1 {
  padding-top: 3.75rem;
}
.recruit .box1 .container {
  margin-top: 1.6rem;
  display: flex;
  justify-content: space-between;
}
.recruit .box1 .container .lt {
  position: relative;
  width: 49.4%;
  height: 19.9rem;
  border-radius: 0.75rem;
  overflow: hidden;
}
.recruit .box1 .container .lt .pic {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.4s;
}
.recruit .box1 .container .lt .pic.show {
  opacity: 1;
  z-index: 1;
}
.recruit .box1 .container .lt .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit .box1 .container .rt {
  width: 49.4%;
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1.9rem 1.75rem;
}
.recruit .box1 .container .rt .li {
  position: relative;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #e2e2e2;
}
.recruit .box1 .container .rt .li::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 4.1rem;
  height: 2px;
  background-color: var(--vi);
  transform: scaleX(0);
  transition: all 0.4s;
}
.recruit .box1 .container .rt .li:last-child {
  margin-bottom: 0;
}
.recruit .box1 .container .rt .li .top-bots {
  color: #666666;
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.4s;
}
.recruit .box1 .container .rt .li .btn-bots {
  margin-top: 0.4rem;
  color: #666666;
  line-height: 1.8;
  display: none;
}
.recruit .box1 .container .rt .li.active::after {
  transform: scaleX(1);
}
.recruit .box1 .container .rt .li.active .top-bots {
  color: var(--vi);
}
.recruit .box2 {
  margin-top: 3.75rem;
}
.recruit .box2 .li-box {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.recruit .box2 .li-box .li {
  width: calc((100% - 1.5rem) / 3);
  height: 8.75rem;
  padding: 1.95rem 1.5rem 0.5rem;
  border-radius: 0.35rem;
  background-color: #fff;
  position: relative;
  z-index: 1;
  transition: all 0.4s;
}
.recruit .box2 .li-box .li::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/30.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: all 0.4s;
}
.recruit .box2 .li-box .li .icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  filter: brightness(0.1);
}
.recruit .box2 .li-box .li .icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.recruit .box2 .li-box .li .h {
  margin-top: 1.5rem;
  color: #333333;
}
.recruit .box2 .li-box .li .txt {
  margin-top: 0.45rem;
  color: #666666;
  line-height: 1.4;
}
.recruit .box2 .li-box .li:hover {
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
}
.recruit .box2 .li-box .li:hover::after {
  opacity: 1;
}
.recruit .box2 .li-box .li:hover .icon {
  filter: initial;
}
.recruit .box3 {
  padding: 3.75rem 0;
}
.recruit .box3 .li-tit {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  height: 2.5rem;
  border-radius: 0.35rem;
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
  color: #464646;
}
.recruit .box3 .li-tit p {
  width: 16.6666666667%;
  text-align: center;
}
.recruit .box3 .li-box {
  margin-top: 0.45rem;
}
.recruit .box3 .li-box .li {
  background-color: #fff;
  margin-bottom: 0.45rem;
  border-radius: 0.35rem;
  overflow: hidden;
}
.recruit .box3 .li-box .li:last-child {
  margin-bottom: 0;
}
.recruit .box3 .li-box .li .top-bots {
  width: 100%;
  height: 2.5rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-radius: 0.35rem;
  color: #333333;
  cursor: pointer;
  transition: all 0.4s;
}
.recruit .box3 .li-box .li .top-bots p {
  width: 16.6666666667%;
  text-align: center;
}
.recruit .box3 .li-box .li .top-bots a {
  color: var(--vi);
  transition: all 0.4s;
}
.recruit .box3 .li-box .li .top-bots span {
  width: 0.6rem;
  margin-right: 0.35rem;
}
.recruit .box3 .li-box .li .btn-bots {
  padding: 1.85rem 2.15rem 1.8rem;
  background-color: #fff;
  display: none;
}
.recruit .box3 .li-box .li .btn-bots .item-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.recruit .box3 .li-box .li .btn-bots .item {
  width: 44%;
}
.recruit .box3 .li-box .li .btn-bots .item .h {
  color: #000000;
}
.recruit .box3 .li-box .li .btn-bots .item .txt {
  margin-top: 0.6rem;
  color: #666;
  line-height: 2;
}
.recruit .box3 .li-box .li.active .top-bots {
  background-color: var(--vi);
  color: #fff;
}
.recruit .box3 .li-box .li.active .top-bots a {
  color: #fff;
}
.recruit .box3 .li-box .li.active .top-bots span {
  filter: brightness(100);
}

.culture {
  background-color: #f7f8fa;
  padding: 1.7rem 0 3.75rem;
}
.culture .li-box .li {
  display: flex;
  align-items: flex-start;
  gap: 1.7rem;
  position: relative;
  padding: 2.5rem 1.9rem 1.6rem;
  border-radius: 0.35rem;
  transition: all 0.4s;
}
.culture .li-box .li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e2e2e2;
}
.culture .li-box .li .pic {
  width: 9.1rem;
  border-radius: 0.3rem;
  aspect-ratio: 363/232;
  overflow: hidden;
}
.culture .li-box .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.culture .li-box .li .intro {
  width: calc(80% - 9.1rem - 1.7rem);
}
.culture .li-box .li .intro .h {
  color: #333333;
}
.culture .li-box .li .intro .txt {
  margin-top: 0.6rem;
  color: #666666;
  line-height: 1.8;
}
.culture .li-box .li .intro .more {
  margin-top: 1.55rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--vi);
}
.culture .li-box .li .intro .more span {
  width: 0.65rem;
  display: flex;
  align-self: flex-start;
  margin-top: 2px;
}
.culture .li-box .li .intro .more span img {
  width: 100%;
}
.culture .li-box .li .time {
  position: absolute;
  right: 1.95rem;
  top: 2.5rem;
  width: 2.4rem;
  color: #666;
  text-align: center;
}
.culture .li-box .li .time .year {
  margin-top: 0.6rem;
  padding-top: 0.5rem;
  border-top: 1px solid #666666;
}
.culture .li-box .li:hover {
  background-color: #fff;
}
.culture .li-box .li:hover .pic img {
  transform: scale(1.04);
}
.culture .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 3rem;
}
.news-info .lf .tit {
  color: #464646;
  line-height: 1.2;
}
.news-info .lf .intro {
  margin-top: 0.65rem;
  display: flex;
  align-items: center;
  gap: 4.4rem;
}
.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 .lf .cont img {
  max-width: 100%;
  margin: 1rem 0;
}

.news-info .rg {
  width: calc(31% - 1.5rem);
  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: 1rem;
}
.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;
}
.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 a { display: block; }

.news-info .rg .box .next {
  margin-top: 0.55rem;
}
.news-info .rg .box .next .pic {
  width: 100%;
  aspect-ratio: 5/3;
  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;
  color: #7a7f8d;
}
.news-info .rg .box .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.55rem;
  color: #fff;
  background-color: var(--vi);
  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: #fff;
  transition: all 0.4s;
}

.about .box1 {
  padding-top: 4.9rem;
  position: relative;
  overflow: hidden;
}
.about .box1 .pos-bg {
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  z-index: -1;
}
.about .box1 .top-con {
  display: flex;
}
.about .box1 .top-con .tit {
  width: 49%;
  color: var(--vi);
  font-size: 3rem;
  line-height: 1.2;
  font-family: "HarmonyOS_Sans_SC_Bold";
  text-align: center;
}
.about .box1 .top-con .intro {
  width: 51%;
  padding-right: 1.5rem;
}
.about .box1 .top-con .intro .sub {
  color: var(--vi);
}
.about .box1 .top-con .intro .h {
  margin-top: 0.5rem;
  color: #333333;
}
.about .box1 .top-con .intro .txt {
  margin-top: 1.5rem;
  color: #666666;
}
.about .box1 .pic {
  width: 100%;
}
.about .box1 .pic img {
  width: 100%;
}
.about .box2 {
  margin-top: 3.75rem;
}
.about .box2 .swiper-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  position: relative;
  background-color: #f9fafc;
}
.about .box2 .swiper-box .swiper-button-prev,
.about .box2 .swiper-box .swiper-button-next {
  width: 1.2rem;
  height: 1.2rem;
  top: auto;
  margin: auto;
  bottom: 2.4rem;
  border-radius: 50%;
  background-color: #eeeeee;
  transition: all 0.4s;
}
.about .box2 .swiper-box .swiper-button-prev img,
.about .box2 .swiper-box .swiper-button-next img {
  max-width: 70%;
  max-height: 70%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .box2 .swiper-box .swiper-button-prev::after,
.about .box2 .swiper-box .swiper-button-next::after {
  display: none;
}
.about .box2 .swiper-box .swiper-button-prev:hover,
.about .box2 .swiper-box .swiper-button-next:hover {
  background-color: var(--vi);
}
.about .box2 .swiper-box .swiper-button-prev:hover img,
.about .box2 .swiper-box .swiper-button-next:hover img {
  filter: brightness(100);
}
.about .box2 .swiper-box .swiper-button-prev {
  left: 0;
}
.about .box2 .swiper-box .swiper-button-next {
  left: 1.7rem;
  right: auto;
}
.about .box2 .swiper-box .box2-swiper .swiper-slide {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
}
.about .box2 .swiper-box .box2-swiper .swiper-slide .pic {
  width: 51%;
  aspect-ratio: 83/70;
  border-radius: 0.75rem;
  overflow: hidden;
}
.about .box2 .swiper-box .box2-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .box2 .swiper-box .box2-swiper .swiper-slide .intro {
  width: 49%;
  padding: 2.4rem 3rem 1rem 0.5rem;
}
.about .box2 .swiper-box .box2-swiper .swiper-slide .intro .h {
  color: #333333;
  line-height: 1.4;
}
.about .box2 .swiper-box .box2-swiper .swiper-slide .intro .sub {
  margin-top: 0.6rem;
  color: #666666;
  line-height: 1.6;
}
.about .box2 .swiper-box .box2-swiper .swiper-slide .intro .con {
  margin-top: 2rem;
}
.about .box2 .swiper-box .box2-swiper .swiper-slide .intro .con .h1 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.about .box2 .swiper-box .box2-swiper .swiper-slide .intro .con .h1 span {
  width: 0.55rem;
}
.about .box2 .swiper-box .box2-swiper .swiper-slide .intro .con .h1 span img {
  width: 100%;
}
.about .box2 .swiper-box .box2-swiper .swiper-slide .intro .con .tag {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}
.about .box2 .swiper-box .box2-swiper .swiper-slide .intro .con .tag p {
  width: -moz-max-content;
  width: max-content;
  height: 1.1rem;
  border-radius: 0.55rem;
  padding: 0 0.5rem;
  box-shadow: 0 0 0 1px var(--vi);
  line-height: 1.1rem;
  color: var(--vi);
}
.about .box3 {
  margin-top: 3.75rem;
  position: relative;
  padding: 2rem 0 1.6rem;
}
.about .box3 .wrap {
  position: relative;
  z-index: 2;
}
.about .box3 .li-box {
  margin-top: 9.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.about .box3 .li-box .li {
  width: calc((100% - 1.7rem) / 3);
  height: 5rem;
  border-radius: 0.5rem;
  padding: 1rem 0.5rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid #fff;
  box-shadow: 0 0 1rem rgba(51, 119, 230, 0.1);
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
  text-align: center;
  color: #333;
  transition: all 0.4s;
}
.about .box3 .li-box .li .h {
  line-height: 1.2;
}
.about .box3 .li-box .li .txt {
  margin-top: 0.75rem;
  line-height: 1.6;
}
.about .box3 .li-box .li:hover {
  background-color: #fff;
  color: var(--vi);
  transform: translateY(-0.5rem);
}
.about .box4 {
  margin-top: 3.75rem;
}
.about .box4 .box4-top-swiper {
  margin-top: 1.5rem;
}
.about .box4 .box4-top-swiper .swiper-slide {
  width: 33.33%;
  height: 11.9rem;
  border-right: 1px solid #dddddd;
  padding: 0 3.75rem 0 0.75rem;
}
.about .box4 .box4-top-swiper .swiper-slide:first-child {
  border-left: 1px solid #dddddd;
}
.about .box4 .box4-top-swiper .swiper-slide .pic {
  width: 100%;
  aspect-ratio: 2/1;
  border-radius: 0.35rem;
  overflow: hidden;
}
.about .box4 .box4-top-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .box4 .box4-top-swiper .swiper-slide .year {
  margin-top: 0.75rem;
  line-height: 1.2;
  transition: all 0.4s;
}
.about .box4 .box4-top-swiper .swiper-slide .txt {
  margin-top: 0.35rem;
  color: #666666;
  line-height: 1.6;
}
.about .box4 .box4-top-swiper .swiper-slide .pos-year {
  position: absolute;
  bottom: 0;
  right: 1.9rem;
  color: #333;
  font-size: 2.5rem;
  line-height: 1.2;
  opacity: 0.03;
  transition: all 0.4s;
}
.about .box4 .box4-top-swiper .swiper-slide-active .year {
  color: var(--vi);
}
.about .box4 .box4-top-swiper .swiper-slide-active .pos-year {
  color: var(--vi);
}
.about .box4 .box4-btm-swiper {
  margin-top: 0.75rem;
  /*background-image: url(../img/47.png);*/
  background-size: auto;
  background-repeat: no-repeat;
  background-position: 3.2rem top;
}
.about .box4 .box4-btm-swiper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3.2rem;
  height: 100%;
  background: #fff;
  z-index: 11;
}
.about .box4 .box4-btm-swiper .swiper-slide {
  width: 11%;
  text-align: center;
  padding-top: 0.2rem;
  cursor: pointer;
  margin-left: .4rem;
}
.about .box4 .box4-btm-swiper .swiper-slide .block {
  position: relative;
  width: 0.3rem;
  height: 0.3rem;
  margin: auto;
  transform: rotate(45deg);
  box-shadow: 0 0 0 1px var(--vi);
  transition: all 0.4s;
}
.about .box4 .box4-btm-swiper .swiper-slide .block::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background-color: var(--vi);
  opacity: 0;
  transition: all 0.4s;
}
.about .box4 .box4-btm-swiper .swiper-slide .block::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.45rem;
  height: 0.45rem;
  background-color: rgba(51, 119, 230, 0.1);
  opacity: 0;
  transition: all 0.4s;
}
.about .box4 .box4-btm-swiper .swiper-slide .slide_box{
    display: flex;
    flex-direction: row;
    gap: .4rem;
    align-items: flex-start;
    justify-content: center;
}
.about .box4 .box4-btm-swiper .swiper-slide .slide_box .box_left{
    display: flex;
    flex-direction: column;
}
.about .box4 .box4-btm-swiper .swiper-slide .slide_box .lind_d{
    margin-top: -.3rem;
}


.about .box4 .box4-btm-swiper .swiper-slide .txt {
  margin-top: 0.8rem;
  color: #333333;
  transition: all 0.4s;
}
.about .box4 .box4-btm-swiper .swiper-slide-active .block {
  box-shadow: none;
  background-color: rgba(51, 119, 230, 0.3);
}
.about .box4 .box4-btm-swiper .swiper-slide-active .block::before {
  opacity: 1;
}
.about .box4 .box4-btm-swiper .swiper-slide-active .block::after {
  opacity: 1;
}
.about .box4 .box4-btm-swiper .swiper-slide-active .txt {
  color: var(--vi);
}
.about .box5 {
  margin-top: 3.75rem;
  position: relative;
  padding-bottom: 3.35rem;
}
.about .box5 .pos-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.about .box5 .pos-bg img {
  width: 100%;
}
.about .box5 .wrap {
  position: relative;
  z-index: 2;
}
.about .box5 .swiper-box {
  margin-top: 1.5rem;
  position: relative;
}
.about .box5 .swiper-box .swiper-button-prev,
.about .box5 .swiper-box .swiper-button-next {
  width: 1.2rem;
  height: 1.2rem;
  top: auto;
  bottom: -0.6rem;
  margin: auto;
  border-radius: 50%;
  background-color: #eeeeee;
  transition: all 0.4s;
}
.about .box5 .swiper-box .swiper-button-prev::after,
.about .box5 .swiper-box .swiper-button-next::after {
  display: none;
}
.about .box5 .swiper-box .swiper-button-prev:hover,
.about .box5 .swiper-box .swiper-button-next:hover {
  background-color: var(--vi);
}
.about .box5 .swiper-box .swiper-button-prev:hover img,
.about .box5 .swiper-box .swiper-button-next:hover img {
  filter: brightness(100);
}
.about .box5 .swiper-box .swiper-button-prev {
  left: auto;
  right: 1.7rem;
}
.about .box5 .swiper-box .swiper-button-next {
  right: 0;
}
.about .box5 .box5-swiper .swiper-pagination {
  margin-top: 2.6rem;
  position: relative;
  width: 46.5%;
  height: 2px;
  background: #eeeeee;
}
.about .box5 .box5-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--vi);
}
.about .box5 .box5-swiper .swiper-slide {
  width: 32%;
  background-color: #fff;
  border-radius: 0.5rem;
  margin-right: 2%;
}
.about .box5 .box5-swiper .swiper-slide:last-child {
  margin-right: 0;
}
.about .box5 .box5-swiper .swiper-slide .pic {
  width: 100%;
  height: 9.3rem;
  border-radius: 0.5rem;
  background-color: #f9fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .box5 .box5-swiper .swiper-slide .pic img {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
.about .box5 .box5-swiper .swiper-slide .txt {
  width: 100%;
  height: 2.55rem;
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  line-height: 1.5;
}

.news {
  padding: 3.75rem 0 2.75rem;
}
.news .top-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee;
}
.news .top-box .tab {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.news .top-box .tab a {
  position: relative;
  color: #333333;
  padding-bottom: 0.8rem;
  cursor: pointer;
}
.news .top-box .tab a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--vi);
  transition: all 0.4s;
}
.news .top-box .tab a.active {
  color: var(--vi);
}
.news .top-box .tab a.active::after {
  width: 100%;
}
.news .li-box {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 2%;
}
.news .li-box .li {
  width: 32%;
  border-radius: 0.35rem;
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
  overflow: hidden;
}
.news .li-box .li .pic {
  width: 100%;
  height: 7.55rem;
  overflow: hidden;
  position: relative;
}
.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 .pic .tag {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8rem;
  height: 0.9rem;
  text-align: center;
  line-height: 0.9rem;
  background-color: var(--vi);
  border-radius: 0.35rem 0 0.35rem 0;
  color: #fff;
}
.news .li-box .li .intro {
  width: 100%;
  background-color: #fff;
  padding: 0.9rem 1rem 1.25rem;
}
.news .li-box .li .intro .time {
  color: var(--vi);
}
.news .li-box .li .intro .tit {
  margin-top: 0.3rem;
  color: #464646;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  transition: all 0.4s;
}
.news .li-box .li .intro .txt {
  margin-top: 0.6rem;
  line-height: 1.8;
  height: 3.6em;
  color: #666666;
  
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .li-box .li .intro .more {
  margin-top: 0.9rem;
  color: var(--vi);
}
.news .li-box .li:hover .pic img {
  transform: scale(1.04);
}
.news .li-box .li:hover .intro .tit {
  color: var(--vi);
}
.news .page-box {
  margin-top: 2rem;
}
.company{
    /*position: relative;*/
}
.company .box1 {
  padding: 3.1rem 0 3.7rem;
  position: relative;
}
.company .box1 .pos-bg {
  position: absolute;
  top: 3.1rem;
  width: 55.3%;
}
.company .box1 .pos-bg img {
  width: 100%;
}
.company .box1 .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.company .box1 .pic {
  width: 55%;
  aspect-ratio: 95/60;
  border-radius: 0.5rem;
  overflow: hidden;
}
.company .box1 .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company .box1 .intro {
  width: 38%;
  padding-top: 0.7rem;
}
.company .box1 .intro .sub {
  color: var(--vi);
}
.company .box1 .intro .h {
  margin-top: 0.4rem;
  color: #333333;
  line-height: 1.5;
}
.company .box1 .intro .txt {
  margin-top: 0.4rem;
  color: #666666;
  line-height: 1.8;
}
.company .box1 .intro .li-box {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
}
.company .box1 .intro .li-box .li {
  width: calc((100% - 1rem) / 2);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.company .box1 .intro .li-box .li .icon {
  width: 1.15rem;
  height: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company .box1 .intro .li-box .li .icon img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.company .box1 .intro .li-box .li .con {
  width: calc(100% - 1rem);
  color: #333;
  line-height: 2;
}
.company .box1 .intro .li-box .li .con .h2 {
  margin-top: 0.15rem;
  color: #666;
}
.company .box1 .intro .more {
  margin-top: 1.1rem;
}
.company .box2 {
  padding-bottom: 7rem;
}
.company .box2 .sub {
  color: var(--vi);
}
.company .box2 .tit {
  margin-top: 0.4rem;
  line-height: 1.5;
}
.company .box2 .box2-swiper {
  margin-top: 1.3rem;
  overflow: initial;
}
.company .box2 .box2-swiper .swiper-button-prev,
.company .box2 .box2-swiper .swiper-button-next {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: #eeeeee;
  transition: all 0.4s;
}
.company .box2 .box2-swiper .swiper-button-prev::after,
.company .box2 .box2-swiper .swiper-button-next::after {
  display: none;
}
.company .box2 .box2-swiper .swiper-button-prev:hover,
.company .box2 .box2-swiper .swiper-button-next:hover {
  background-color: var(--vi);
}
.company .box2 .box2-swiper .swiper-button-prev:hover img,
.company .box2 .box2-swiper .swiper-button-next:hover img {
  filter: brightness(100);
}
.company .box2 .box2-swiper .swiper-button-prev {
  left: 1.3rem;
}
.company .box2 .box2-swiper .swiper-button-next {
  right: 1.3rem;
}
.company .box2 .box2-swiper .swiper-slide {
  width: 81.4%;
  height: 14.15rem;
  background-color: #f7f8fa;
  position: relative;
  border-radius: 0.35rem;
  margin: 0 2rem;
}
.company .box2 .box2-swiper .swiper-slide .pic {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company .box2 .box2-swiper .swiper-slide .pic img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.company .box2 .box2-swiper .swiper-slide .intro {
  width: 61.4%;
  position: absolute;
  bottom: -3rem;
  right: 2.55rem;
  background-color: #fff;
  border-radius: 0.35rem;
  padding: 1rem 1.5rem 0.75rem;
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: all 0.4s 0.2s;
}
.company .box2 .box2-swiper .swiper-slide .intro .h {
  color: #464646;
}
.company .box2 .box2-swiper .swiper-slide .intro .txt {
  margin-top: 0.6rem;
  color: #464646;
  line-height: 2;
}
.company .box2 .box2-swiper .swiper-slide .intro .more {
  margin-top: 1.2rem;
  display: block;
  color: var(--vi);
}
.company .box2 .box2-swiper .swiper-slide .intro .link {
  position: absolute;
  bottom: 0.75rem;
  right: 1.25rem;
}
.company .box2 .box2-swiper .swiper-slide-active .intro {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.company .box3 {
  padding-bottom: 3.5rem;
}
.company .box3 .sub {
  color: var(--vi);
}
.company .box3 .tit {
  margin-top: 0.4rem;
  line-height: 1.5;
}
.company .box3 .li-box {
  margin-top: 1.3rem;
}
.company .box3 .li-box .li {
  display: flex;
  position: relative;
  margin-bottom: 2.5rem;
}
.company .box3 .li-box .li:last-child {
  margin-bottom: 0;
}
.company .box3 .li-box .li:nth-child(2n) {
  justify-content: flex-end;
}
.company .box3 .li-box .li:nth-child(2n) .intro {
  right: unset;
  left: 0;
}
.company .box3 .li-box .li .pic {
  width: 48.4%;
  aspect-ratio: 208/121;
  border-radius: 0.5rem;
  overflow: hidden;
}
.company .box3 .li-box .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company .box3 .li-box .li .intro {
  position: absolute;
  bottom: 0.75rem;
  right: 0;
  width: 56%;
  height: 9.05rem;
  padding: 0.6rem 1.15rem 1rem;
  border-radius: 0.35rem;
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
  background-image: url(../img/58.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.company .box3 .li-box .li .intro .num {
  color: rgba(51, 119, 230, 0.1);
  font-weight: bold;
  line-height: 1.16;
  font-size: 1.5rem;
  padding-left: 0.85rem;
}
.company .box3 .li-box .li .intro .h {
  color: #333333;
  margin-top: -1em;
}
.company .box3 .li-box .li .intro .txt {
  margin-top: 1.25rem;
  line-height: 2;
  color: #666666;
}
.company .box4 {
  padding-bottom: 3.5rem;
}
.company .box4 .sub {
  color: var(--vi);
}
.company .box4 .tit {
  margin-top: 0.4rem;
  line-height: 1.5;
}
.company .box4 .box4-swiper {
  margin-top: 1.3rem;
}
.company .box4 .box4-swiper .swiper-button-prev,
.company .box4 .box4-swiper .swiper-button-next {
  top: auto;
  bottom: 1.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(51, 51, 51, 0.3);
  color: rgba(51, 51, 51, 0.3);
  transition: all 0.4s;
}
.company .box4 .box4-swiper .swiper-button-prev::after,
.company .box4 .box4-swiper .swiper-button-next::after {
  font-size: 0.3rem;
}
.company .box4 .box4-swiper .swiper-button-prev:hover,
.company .box4 .box4-swiper .swiper-button-next:hover {
  background-color: var(--vi);
  box-shadow: none;
  color: #fff;
}
.company .box4 .box4-swiper .swiper-button-prev {
  left: auto;
  right: 4.2rem;
}
.company .box4 .box4-swiper .swiper-button-next {
  right: 1.5rem;
}
.company .box4 .box4-swiper .swiper-pagination {
  bottom: 1.6rem;
  right: 2.8rem;
  left: auto;
  width: -moz-max-content;
  width: max-content;
}
.company .box4 .box4-swiper .swiper-pagination .swiper-pagination-current {
  color: var(--vi);
}
.company .box4 .box4-swiper .swiper-slide {
  width: 100%;
  display: flex;
  background-color: #f9fafc;
  border-radius: 0.35rem;
  overflow: hidden;
  margin-right: 1rem;
}
.company .box4 .box4-swiper .swiper-slide:last-child {
  margin-right: 0;
}
.company .box4 .box4-swiper .swiper-slide .pic {
  width: calc(50% - 0.25rem);
  aspect-ratio: 85/72;
}
.company .box4 .box4-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company .box4 .box4-swiper .swiper-slide .intro {
  width: calc(50% + 0.25rem);
  padding: 4.2rem 1.5rem 1rem;
}
.company .box4 .box4-swiper .swiper-slide .intro .h {
  color: var(--vi);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.company .box4 .box4-swiper .swiper-slide .intro .txt {
  line-height: 1.6;
}
.company .box4 .box4-swiper .swiper-slide .intro .more {
  margin-top: 1.7rem;
}
.company .box5 {
  padding: 1.6rem 0;
}
.company .box5 .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company .box5 .lt {
  width: 35%;
  padding-top: 0.65rem;
}
.company .box5 .lt .sub {
  color: var(--vi);
}
.company .box5 .lt .tit {
  margin-top: 0.4rem;
  line-height: 1.5;
}
.company .box5 .lt .more {
  margin-top: 4.5rem;
}
.company .box5 .rt {
  width: 47%;
  padding-right: 0.6rem;
}
.company .box5 .rt form {
  width: 100%;
  background-color: #fff;
  border-radius: 0.35rem;
  padding: 1.25rem 1.5rem 1rem 1.75rem;
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
}
.company .box5 .rt form .box {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company .box5 .rt form .box .li {
  width: 46%;
  margin-bottom: 0.25rem;
}
.company .box5 .rt form .box .li .h1 {
  color: #666666;
}
.company .box5 .rt form .box .li .h1 span {
  color: #e63333;
  margin-right: 4px;
}
.company .box5 .rt form .box .li input {
  margin-top: 0.4rem;
  width: 100%;
  height: 1.25rem;
  border-radius: 0.35rem;
  background: #f5f5f5;
  padding: 0 0.3rem;
  color: #999999;
}
.company .box5 .rt form .box .li input::-moz-placeholder {
  color: #999999;
}
.company .box5 .rt form .box .li input::placeholder {
  color: #999999;
}
.company .box5 .rt form .box .li textarea {
  margin-top: 0.4rem;
  width: 100%;
  height: 5rem;
  border-radius: 0.35rem;
  background: #f5f5f5;
  padding: 0.3rem;
  color: #999999;
  resize: none;
}
.company .box5 .rt form .box .li textarea::-moz-placeholder {
  color: #999999;
}
.company .box5 .rt form .box .li textarea::placeholder {
  color: #999999;
}
.company .box5 .rt form .box .li.textarea {
  margin-top: 0.45rem;
}
.company .box5 .rt form .box .li.wid100 {
  width: 100%;
}
.company .box5 .rt form .submit {
  margin-top: 0.45rem;
  width: 100%;
  height: 1.25rem;
  border-radius: 0.7rem;
  color: #fff;
  background-color: var(--vi);
}

.company .box6 {
  
  padding-top: 2.25rem;
  padding-bottom: 3.5rem;
  width: 100%;
}
.company .box6 .sub {
  color: var(--vi);
}
.company .box6 .tit {
  margin-top: 0.4rem;
  line-height: 1.5;
}
.company .box6 .sub {
  margin-top: 0.6rem;
  color: #666;
  line-height: 1.6;
}
.company .box6 .container {
  margin-top: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.company .box6 .container .li {
  width: 30.5%;
  border-radius: 0.35rem;
  overflow: hidden;
  box-shadow: 0 1.4rem 0.5rem rgba(51, 119, 230, 0.05);
}
.company .box6 .container .li .pic {
  width: 100%;
  aspect-ratio: 525/303;
  position: relative;
  overflow: hidden;
}
.company .box6 .container .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.company .box6 .container .li .pic .tag {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8rem;
  height: 0.9rem;
  text-align: center;
  line-height: 0.9rem;
  background-color: var(--vi);
  border-radius: 0.35rem 0 0.35rem 0;
  color: #fff;
}
.company .box6 .container .li .intro {
  width: 100%;
  background-color: #fff;
  padding: 0.9rem 1rem 1.25rem;
}
.company .box6 .container .li .intro .time {
  color: var(--vi);
}
.company .box6 .container .li .intro .h {
  margin-top: 0.3rem;
  color: #464646;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  transition: all 0.4s;
}
.company .box6 .container .li .intro .txt {
  margin-top: 0.6rem;
  line-height: 1.8em;
  /*height: 3.6em;*/
  color: #666666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;  
    
}
.company .box6 .container .li .intro .more {
  margin-top: 0.9rem;
  color: var(--vi);
}
.company .box6 .container .li:hover .pic img {
  transform: scale(1.04);
}
.company .box6 .container .li:hover .intro .h {
  color: var(--vi);
}
.company .box6 .container .box {
  width: calc(39% - 2rem);
  position: relative;
  height: 15.35rem;
  border-radius: 0.35rem;
  padding: 1.8rem 1.25rem 1rem;
  background-color: #fff;
}
.company .box6 .container .box .tag {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.8rem;
  height: 0.9rem;
  text-align: center;
  line-height: 0.9rem;
  background-color: var(--vi);
  border-radius: 0.35rem 0 0.35rem 0;
  color: #fff;
}
.company .box6 .container .box .item-box {
  height: 100%;
  overflow-y: auto;
}
.company .box6 .container .box .item-box .item {
  display: block;
  padding-bottom: 0.55rem;
  margin-bottom: 0.55rem;
  border-bottom: 1px solid #ececec;
}
.company .box6 .container .box .item-box .item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.company .box6 .container .box .item-box .item .h {
  color: #464646;
  line-height: 1.5;
  transition: all 0.4s;
}
.company .box6 .container .box .item-box .item .time {
  margin-top: 0.3rem;
  color: #999999;
}
.company .box6 .container .box .item-box .item:hover .h {
  color: var(--vi);
}





.company-info .box1 {
  padding: 3.5rem 0;
}
.company-info .box1 .top-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.company-info .box1 .top-box .lt {
  width: 36%;
}
.company-info .box1 .top-box .lt .sub {
  color: var(--vi);
}
.company-info .box1 .top-box .lt .tit {
  margin-top: 0.4rem;
  color: #333333;
  line-height: 1.5;
}
.company-info .box1 .top-box .rt {
  width: 50%;
  color: #666666;
  line-height: 1.8;
  padding-bottom: 0.2rem;
}
.company-info .box1 .pic {
  margin-top: 1.5rem;
  width: 100%;
  border-radius: 0.6rem;
  overflow: hidden;
}
.company-info .box1 .pic img {
  width: 100%;
}
.company-info .box1 .li-box {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.company-info .box1 .li-box .li {
  /*width: calc((100% - 1.5rem) / 4);*/
  flex: 1;
  height: 7.2rem;
  background-color: #f7f8fa;
  border-radius: 0.35rem;
  padding: 1.35rem 1.4rem 0.5rem;
}
.company-info .box1 .li-box .li .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.company-info .box1 .li-box .li .icon img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.company-info .box1 .li-box .li .txt {
  margin-top: 1rem;
  color: #333333;
  line-height: 1.6;
}
.company-info .box2 {
  padding: 3.5rem 0 1.9rem;
  background-color: #f7f8fa;
}
.company-info .box2 .top-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee;
}
.company-info .box2 .top-box .lt {
  padding-bottom: 0.6rem;
}
.company-info .box2 .top-box .lt .sub {
  color: var(--vi);
}
.company-info .box2 .top-box .lt .tit {
  margin-top: 0.4rem;
  color: #333;
  line-height: 1.5;
}
.company-info .box2 .top-box .rt {
  display: flex;
  gap: 1.5rem;
}
.company-info .box2 .top-box .rt a {
  color: #333333;
  padding-bottom: 0.8rem;
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
}
.company-info .box2 .top-box .rt a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--vi);
  transition: all 0.4s;
}
.company-info .box2 .top-box .rt a:hover {
  color: var(--vi);
}
.company-info .box2 .top-box .rt a.active {
  color: var(--vi);
}
.company-info .box2 .top-box .rt a.active::after {
  width: 100%;
}
.company-info .box2 .li-box {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.company-info .box2 .li-box .li {
  width: calc((100% - 2.7rem) / 4);
  height: 12.05rem;
  background-color: #fff;
  border-radius: 0.35rem;
  padding: 1rem 1rem 0.5rem;
  transition: all 0.4s;
}
.company-info .box2 .li-box .li .year {
  color: var(--vi);
}
.company-info .box2 .li-box .li .h {
  margin-top: 0.75rem;
  color: #333;
  line-height: 1.2;
  height: 2.4em;
}
.company-info .box2 .li-box .li .pic {
  margin-top: 0.55rem;
  width: 100%;
  height: 7.2rem;
  text-align: center;
}
.company-info .box2 .li-box .li .pic img {
  max-height: 100%;
  transition: all 0.4s;
}
.company-info .box2 .li-box .li:hover {
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
}
.company-info .box2 .li-box .li:hover .pic img {
  transform: scale(1.05);
}
.company-info .box2 .page-box {
  margin-top: 3rem;
}
.company-info .box3 {
  padding: 3.5rem 0 4.1rem;
  overflow: hidden;
}
.company-info .box3 .sub {
  color: var(--vi);
}
.company-info .box3 .tit {
  margin-top: 0.4rem;
  color: #333;
  line-height: 1.5;
}
.company-info .box3 .box3-swiper {
  margin-top: 0.7rem;
  padding-top: 1.75rem;
  border-top: 1px solid #eeeeee;
  overflow: initial;
}
.company-info .box3 .box3-swiper .swiper-button-prev,
.company-info .box3 .box3-swiper .swiper-button-next {
  width: 1.2rem;
  height: 1.2rem;
  top: auto;
  bottom: -0.6rem;
  margin: auto;
  border-radius: 50%;
  background-color: #eeeeee;
  transition: all 0.4s;
}
.company-info .box3 .box3-swiper .swiper-button-prev::after,
.company-info .box3 .box3-swiper .swiper-button-next::after {
  display: none;
}
.company-info .box3 .box3-swiper .swiper-button-prev:hover,
.company-info .box3 .box3-swiper .swiper-button-next:hover {
  background-color: var(--vi);
}
.company-info .box3 .box3-swiper .swiper-button-prev:hover img,
.company-info .box3 .box3-swiper .swiper-button-next:hover img {
  filter: brightness(100);
}
.company-info .box3 .box3-swiper .swiper-button-prev {
  left: auto;
  right: 1.7rem;
}
.company-info .box3 .box3-swiper .swiper-button-next {
  right: 0;
}
.company-info .box3 .box3-swiper .swiper-pagination {
  margin-top: 2.1rem;
  position: relative;
  width: 46.5%;
  height: 2px;
  background: #eeeeee;
}
.company-info .box3 .box3-swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: var(--vi);
}
.company-info .box3 .box3-swiper .swiper-slide {
  width: 32%;
  margin-right: 2%;
  border-radius: 0.35rem;
  background-color: #fff;
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
  overflow: hidden;
}
.company-info .box3 .box3-swiper .swiper-slide:last-child {
  margin-right: 0;
}
.company-info .box3 .box3-swiper .swiper-slide .pic {
  width: 100%;
  aspect-ratio: 550/303;
  overflow: hidden;
}
.company-info .box3 .box3-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.company-info .box3 .box3-swiper .swiper-slide .intro {
  padding: 0.9rem 1rem 1.25rem;
}
.company-info .box3 .box3-swiper .swiper-slide .intro .year {
  color: var(--vi);
}
.company-info .box3 .box3-swiper .swiper-slide .intro .h {
  margin-top: 0.3rem;
  color: #464646;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
  transition: all 0.4s;
}
.company-info .box3 .box3-swiper .swiper-slide .intro .txt {
  margin-top: 0.6rem;
  color: #666;
  line-height: 1.8;
  height: 3.6em;
  overflow: hidden;
}
.company-info .box3 .box3-swiper .swiper-slide .intro .more {
  margin-top: 0.9rem;
  color: var(--vi);
}
.company-info .box3 .box3-swiper .swiper-slide:hover .pic img {
  transform: scale(1.04);
}
.company-info .box3 .box3-swiper .swiper-slide:hover .intro .h {
  color: var(--vi);
}

.product {
  padding: 3.5rem 0;
}
.product .li-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product .li-box .li {
  width: calc((100% - 1rem) / 3);
  height: 11rem;
  background-color: #f7f8fa;
  border-radius: 0.5rem;
  padding: 1.4rem 1.3rem 0;
}
.product .li-box .li .tit {
  color: #424a48;
}
.product .li-box .li .pic {
  margin-top: 1rem;
  width: 100%;
  height: calc(100% - 1rem - 1em);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .li-box .li .pic img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s;
}
.product .li-box .li:hover .pic img {
  transform: scale(1.04);
}
.product .page-box {
  margin-top: 3rem;
}

.cooperate .box1 {
  padding: 3.5rem 0;
  overflow: hidden;
}
.cooperate .box1 .sub {
  color: var(--vi);
}
.cooperate .box1 .tit {
  margin-top: 0.4rem;
  color: #333;
  line-height: 1.5;
}
.cooperate .box1 .box1-swiper {
  margin-top: 1.3rem;
  overflow: initial;
}
.cooperate .box1 .box1-swiper .swiper-button-prev,
.cooperate .box1 .box1-swiper .swiper-button-next {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background-color: #fff;
  color: var(--vi);
  transition: all 0.4s;
}
.cooperate .box1 .box1-swiper .swiper-button-prev::after,
.cooperate .box1 .box1-swiper .swiper-button-next::after {
  font-size: 0.4rem;
}
.cooperate .box1 .box1-swiper .swiper-button-prev:hover,
.cooperate .box1 .box1-swiper .swiper-button-next:hover {
  background-color: var(--vi);
  color: #fff;
}
.cooperate .box1 .box1-swiper .swiper-button-prev {
  left: 6.6%;
}
.cooperate .box1 .box1-swiper .swiper-button-next {
  right: 6.6%;
}
.cooperate .box1 .box1-swiper .swiper-slide {
  width: 64%;
  margin: 0 0.5rem;
}
.cooperate .box1 .box1-swiper .swiper-slide .pic {
  width: 100%;
  aspect-ratio: 1104/599;
  overflow: hidden;
  border-radius: .33rem;
}
.cooperate .box1 .box1-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s;
}
.cooperate .box1 .box1-swiper .swiper-slide .pos-cont {
  position: absolute;
  left: 0;
  bottom: 2.5rem;
  width: 100%;
  padding: 0 3rem;
  color: #fff;
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.4s;
}
.cooperate .box1 .box1-swiper .swiper-slide .pos-cont .txt {
  margin-top: 0.35rem;
  line-height: 1.6;
}
.cooperate .box1 .box1-swiper .swiper-slide-active .pos-cont {
  opacity: 1;
  transform: translateY(0);
}
.cooperate .box2 .sub {
  color: var(--vi);
}
.cooperate .box2 .tit {
  margin-top: 0.4rem;
  color: #333;
  line-height: 1.5;
}
.cooperate .box2 .box2-swiper {
  margin-top: 1.3rem;
}
.cooperate .box2 .box2-swiper .swiper-button-prev,
.cooperate .box2 .box2-swiper .swiper-button-next {
  top: auto;
  bottom: 1.95rem;
  margin: auto;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(51, 51, 51, 0.3);
  color: rgba(51, 51, 51, 0.3);
  transition: all 0.4s;
}
.cooperate .box2 .box2-swiper .swiper-button-prev::after,
.cooperate .box2 .box2-swiper .swiper-button-next::after {
  font-size: 0.3rem;
}
.cooperate .box2 .box2-swiper .swiper-button-prev:hover,
.cooperate .box2 .box2-swiper .swiper-button-next:hover {
  background-color: var(--vi);
  box-shadow: none;
  color: #fff;
}
.cooperate .box2 .box2-swiper .swiper-button-prev {
  left: 2.5rem;
}
.cooperate .box2 .box2-swiper .swiper-button-next {
  left: 5.15rem;
  right: auto;
}
.cooperate .box2 .box2-swiper .swiper-pagination {
  width: -moz-max-content;
  width: max-content;
  bottom: 2rem;
  left: 3.75rem;
}
.cooperate .box2 .box2-swiper .swiper-pagination .swiper-pagination-current {
  color: var(--vi);
}
.cooperate .box2 .box2-swiper .swiper-slide {
  display: flex;
  flex-direction: row-reverse;
  background-color: #fbfbfc;
}
.cooperate .box2 .box2-swiper .swiper-slide .pic {
  width: 48.75%;
  aspect-ratio: 936/642;
  overflow: hidden;
  border-radius: 0.5rem 0 0 0.5rem;
}
.cooperate .box2 .box2-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cooperate .box2 .box2-swiper .swiper-slide .intro {
  width: 51.25%;
  padding: 4rem 0.9rem 3rem 2.5rem;
  color: #464646;
  line-height: 2.5;
}
.cooperate .box3 {
  padding: 3.5rem 0;
}
.cooperate .box3 .sub {
  color: var(--vi);
}
.cooperate .box3 .tit {
  margin-top: 0.4rem;
  color: #333;
  line-height: 1.5;
}
.cooperate .box3 .li-box {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cooperate .box3 .li-box .li {
  width: calc((100% - 2rem) / 3);
  height: 8.75rem;
  border-radius: 0.35rem;
  padding: 1.95rem 1rem 0.5rem 1.5rem;
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
}
.cooperate .box3 .li-box .li .icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.4s;
}
.cooperate .box3 .li-box .li .icon img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cooperate .box3 .li-box .li .h {
  margin-top: 1.55rem;
  color: #333333;
}
.cooperate .box3 .li-box .li .info {
  display: flex;
  justify-content: space-between;
  margin-top: 0.45rem;
  color: #666666;
  line-height: 1.4;
}
.cooperate .box3 .li-box .li .info .info-item {
  display: flex;
}
.cooperate .box3 .li-box .li:hover .icon {
  transform: translateY(1rem);
}

.cooperate .box4 {
  padding-bottom: 3.5rem;
}
.cooperate .box4 .sub {
  color: var(--vi);
}
.cooperate .box4 .tit {
  margin-top: 0.4rem;
  line-height: 1.5;
}
.cooperate .box4 .li-box {
  margin-top: 1.3rem;
}
.cooperate .box4 .li-box .li {
  display: flex;
  position: relative;
  margin-bottom: 2.5rem;
}
.cooperate .box4 .li-box .li:last-child {
  margin-bottom: 0;
}
.cooperate .box4 .li-box .li:nth-child(2n) {
  justify-content: flex-end;
}
.cooperate .box4 .li-box .li:nth-child(2n) .intro {
  right: unset;
  left: 0;
}
.cooperate .box4 .li-box .li .pic {
  width: 48.4%;
  aspect-ratio: 208/121;
  border-radius: 0.5rem;
  overflow: hidden;
}
.cooperate .box4 .li-box .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cooperate .box4 .li-box .li .intro {
  position: absolute;
  bottom: 0.75rem;
  right: 0;
  width: 56%;
  height: 9.05rem;
  padding: 0.6rem 1.15rem 1rem;
  border-radius: 0.35rem;
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
  background-image: url(../img/58.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.cooperate .box4 .li-box .li .intro .num {
  color: rgba(51, 119, 230, 0.1);
  font-weight: bold;
  line-height: 1.16;
  font-size: 1.5rem;
  padding-left: 0.85rem;
}
.cooperate .box4 .li-box .li .intro .h {
  color: #333333;
  margin-top: -1em;
}
.cooperate .box4 .li-box .li .intro .txt {
  margin-top: 1.25rem;
  line-height: 2;
  color: #666666;
}
.cooperate .box5 {
  padding-bottom: 3.5rem;
}
.cooperate .box5 .sub {
  color: var(--vi);
}
.cooperate .box5 .tit {
  margin-top: 0.4rem;
  line-height: 1.5;
}
.cooperate .box5 .cont {
    
}
.cooperate .box5 .cont .cont_img{
    border-radius: .35rem;
    width: 100%;
    overflow: hidden;
    margin: 1.5rem 0;
}
.cooperate .box5 .cont .cont_img img{
    width: 100%;
    transition: all .3s ease;
}
.cooperate .box5 .cont .cont_img img:hover{
    transform: scale(1.1);
}
.cooperate .box5 .cont .cont_list_box{
    display: flex;
    flex-direction: row;
    gap: .82rem;
}
.cooperate .box5 .cont .cont_list_box .item{
    flex: 1;
    border-radius: 0.23333rem;
    background: #F7F8FA;
    padding: .83rem 2.48rem;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    font-size: .6rem;
    min-height:  5.9rem;
    color: #333;
    font-weight: 400;
    transition: all .3s ease;
}
.cooperate .box5 .cont .cont_list_box .item:hover{
    box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
}
.cooperate .box5 .cont .cont_list_box .item .item_icon{
    width: 1.75rem;
    height: 1.75rem;
    margin-bottom: .8rem;
}

.cooperate .box6 {
  padding-bottom: 3.5rem;
}
.cooperate .box6 .sub {
  color: var(--vi);
}
.cooperate .box6 .tit {
  margin-top: 0.4rem;
  line-height: 1.5;
}
.cooperate .box6 .cont_box{
    margin-top: 1.3rem;
    border-radius: 0.35rem;
    overflow: hidden;
    background: #F9FAFC;
    display: flex;
    flex-direction: row;
    min-height: 14rem;
}
.cooperate .box6 .cont_box .box_left{
    flex: 0 0 50%;
    height: auto;
}
.cooperate .box6 .cont_box .box_left img{
    width: 100%;
    transition: all .3s ease;
}
.cooperate .box6 .cont_box .box_left img:hover{
    transform: scale(1.1);
}
.cooperate .box6 .cont_box .box_right{
    padding: 3.45rem 2rem;
}
.cooperate .box6 .cont_box .box_right .right_tit{
    color: var(--vi);
    font-size: .75rem;
    font-weight: 500;
    margin-bottom: 1.27rem;
}
.cooperate .box6 .cont_box .box_right .right_txt{
    color: #464646;
    line-height: 2.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5; /* 显示5行 */
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(2.2rem * 5); /* 5行的高度 */
    text-align: justify;
}

.cooperate .box7 {
  padding: 1.6rem 0;
}
.cooperate .box7 .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cooperate .box7 .lt {
  width: 35%;
  padding-top: 0.65rem;
}
.cooperate .box7 .lt .lt_btom{
    color: #000;
    font-size: 0.5rem;
    font-weight: 400;
    line-height:1; 
    position: absolute;
    bottom: 0;
}
.cooperate .box7 .lt .sub {
  color: var(--vi);
}
.cooperate .box7 .lt .tit {
  margin-top: 0.2rem;
  line-height: 1.5;
}
.cooperate .box7 .lt .more {
  margin-top: 4.5rem;
}
.cooperate .box7 .rt {
  width: 47%;
  padding-right: 0.6rem;
}
.cooperate .box7 .rt form {
  width: 100%;
  background-color: #fff;
  border-radius: 0.35rem;
  padding: 1.25rem 1.5rem 1rem 1.75rem;
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
}
.cooperate .box7 .rt form .box {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cooperate .box7 .rt form .box .li {
  width: 46%;
  margin-bottom: 0.25rem;
}
.cooperate .box7 .rt form .box .li .h1 {
  color: #666666;
}
.cooperate .box7 .rt form .box .li .h1 span {
  color: #e63333;
  margin-right: 4px;
}
.cooperate .box7 .rt form .box .li input {
  margin-top: 0.4rem;
  width: 100%;
  height: 1.25rem;
  border-radius: 0.35rem;
  background: #f5f5f5;
  padding: 0 0.3rem;
  color: #999999;
}
.cooperate .box7 .rt form .box .li input::-moz-placeholder {
  color: #999999;
}
.cooperate .box7 .rt form .box .li input::placeholder {
  color: #999999;
}
.cooperate .box7 .rt form .box .li textarea {
  margin-top: 0.4rem;
  width: 100%;
  height: 5rem;
  border-radius: 0.35rem;
  background: #f5f5f5;
  padding: 0.3rem;
  color: #999999;
  resize: none;
}
.cooperate .box7 .rt form .box .li textarea::-moz-placeholder {
  color: #999999;
}
.cooperate .box7 .rt form .box .li textarea::placeholder {
  color: #999999;
}
.cooperate .box7 .rt form .box .li.textarea {
  margin-top: 0.45rem;
}
.cooperate .box7 .rt form .box .li.wid100 {
  width: 100%;
}
.cooperate .box7 .rt form .submit {
  margin-top: 0.45rem;
  width: 100%;
  height: 1.25rem;
  border-radius: 0.7rem;
  color: #fff;
  background-color: var(--vi);
}






.sales-form {
  position: absolute;
  bottom: 1rem;
  right: 2.5rem;
  width: 40.6%;
  background-color: #fff;
  padding: 1.25rem 1.5rem 1rem 1.75rem;
  box-shadow: 0 1.4rem 1.5rem rgba(51, 119, 230, 0.05);
  border-radius: 0.35rem;
  overflow: hidden;
}
.sales-form form {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sales-form form .li {
  width: 46%;
  margin-bottom: 0.25rem;
}
.sales-form form .li .h1 {
  color: #666666;
}
.sales-form form .li .h1 span {
  color: #e63333;
  margin-right: 4px;
}
.sales-form form .li input {
  margin-top: 0.4rem;
  width: 100%;
  height: 1.25rem;
  border-radius: 0.35rem;
  background: #f5f5f5;
  padding: 0 0.3rem;
  color: #999999;
}
.sales-form form .li input::-moz-placeholder {
  color: #999999;
}
.sales-form form .li input::placeholder {
  color: #999999;
}
.sales-form form .li textarea {
  margin-top: 0.4rem;
  width: 100%;
  height: 5rem;
  border-radius: 0.35rem;
  background: #f5f5f5;
  padding: 0.3rem;
  color: #999999;
  resize: none;
}
.sales-form form .li textarea::-moz-placeholder {
  color: #999999;
}
.sales-form form .li textarea::placeholder {
  color: #999999;
}
.sales-form form .li.textarea {
  margin-top: 0.45rem;
}
.sales-form form .li.wid100 {
  width: 100%;
}
.sales-form form .tel {
  margin-top: 0.45rem;
  width: 100%;
  color: #666666;
}
.sales-form form .submit {
  margin-top: 0.5rem;
  width: 100%;
  height: 1.25rem;
  border-radius: 0.7rem;
  color: #fff;
  background-color: var(--vi);
}/*# sourceMappingURL=style.css.map */