:root {
  --logoColor: #00913A;
}

@font-face {
  font-family: "HarmonyOS_Sans_SC_Bold";
  src: url("../fonts/HarmonyOS_Sans_SC_Bold.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

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

@font-face {
  font-family: "HarmonyOS_Sans_SC_Medium";
  src: url("../fonts/HarmonyOS_Sans_SC_Medium.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

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

@font-face {
  font-family: "HarmonyOS_Sans_SC_Regular";
  src: url("../fonts/HarmonyOS_Sans_SC_Regular.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

.HMrg {
  font-family: "HarmonyOS_Sans_SC_Regular";
}

@font-face {
  font-family: "GOTHIC";
  src: url("../fonts/GOTHIC.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

.got {
  font-family: "GOTHIC";
}

@font-face {
  font-family: "GILROY-SEMIBOLD";
  src: url("../fonts/GILROY-SEMIBOLD.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

.gil-sb {
  font-family: "GILROY-SEMIBOLD";
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(1.5rem);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(1.5rem);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

  20% {
    opacity: 1;
  }

  75% {
    transform: scale(2);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.w1680 {
  width: 42rem;
  max-width: 90%;
  margin: 0 auto;
}

.w1420 {
  width: 35.5rem;
  max-width: 90%;
  margin: 0 auto;
}

.w1360 {
  width: 34rem;
  max-width: 90%;
  margin: 0 auto;
}

.font70 {
  font-size: 1.75rem;
}

.font54 {
  font-size: 1.35rem;
}

.font50 {
  font-size: 1.25rem;
}

.font42 {
  font-size: 1.05rem;
}

.font40 {
  font-size: 1rem;
}

.font36 {
  font-size: 0.9rem;
}

.font32 {
  font-size: 0.8rem;
}

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

.main-tit {
  color: #262626;
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: bold;
}

.side-tit {
  color: var(--logoColor);
  font-size: 0.85rem;
  font-weight: bold;
  line-height: 1;
}

.main-cont {
  color: #262626;
  line-height: 2.1;
}

.main-bar {
  position: fixed;
  top: 50%;
  left: 6.25%;
  transform: translateY(-50%);
  width: 4rem;
  z-index: 10;
}

.main-bar a {
  display: block;
  color: #262626;
  line-height: 1;
  position: relative;
  padding-left: 10px;
  margin-bottom: 0.85rem;
  transition: all 0.4s;
}

.main-bar a:last-child {
  margin-bottom: 0;
}

.main-bar a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #262626;
  transition: all 0.4s;
}

.main-bar a:hover {
  color: var(--logoColor);
}

.main-bar a:hover::after {
  background-color: var(--logoColor);
}

.main-bar a.active {
  font-weight: bold;
  color: var(--logoColor);
  font-size: 0.45rem;
}

.main-bar a.active::after {
  background-color: var(--logoColor);
}

.side-more {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 5.65rem;
  height: 1.15rem;
  border-radius: 0.6rem;
  color: #fff;
}

.side-more .line {
  position: absolute;
  left: 0.5rem;
  width: calc(100% - 1rem);
  height: 3px;
  background-color: rgba(255, 255, 255, 0.12);
}

.side-more .line::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  background-color: var(--logoColor);
  transition: all 0.4s;
}

.side-more .top-line {
  top: 0;
}

.side-more .top-line::after {
  left: 0;
}

.side-more .btm-line {
  bottom: 0;
}

.side-more .btm-line::after {
  right: 0;
}

.side-more .round {
  position: absolute;
  top: 0;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 3px solid #fff;
  transition: all 0.4s;
}

.side-more .lf-round {
  left: 0;
  -webkit-clip-path: polygon(0 0, 45% 0, 45% 100%, 0% 100%);
  clip-path: polygon(0 0, 45% 0, 45% 100%, 0% 100%);
}

.side-more .rg-round {
  right: 0;
  -webkit-clip-path: polygon(57% 0, 100% 0, 100% 100%, 57% 100%);
  clip-path: polygon(57% 0, 100% 0, 100% 100%, 57% 100%);
}

.side-more.pro-more {
  width: 5rem;
  height: 1.05rem;
  color: #262626;
}

.side-more.pro-more .line {
  background-color: rgba(38, 38, 38, 0.12);
}

.side-more.pro-more .round {
  border-color: #262626;
  width: 1.05rem;
  height: 1.05rem;
}

.side-more:hover {
  color: #fff;
  background-color: var(--logoColor);
  transition: all 0.4s 0.3s;
}

.side-more:hover .line::after {
  width: 100%;
  transition: all 0.3s;
}

.side-more:hover .round {
  border-color: var(--logoColor);
}

.main-more {
  display: block;
  width: 5.25rem;
  height: 1rem;
  line-height: calc(1rem - 6px);
  text-align: center;
  border-radius: 0.5rem;
  border: 3px solid var(--logoColor);
  color: var(--logoColor);
  transition: all 0.4s;
}

.main-more:hover {
  background-color: var(--logoColor);
  color: #fff;
}

.products .products-swiper {
  width: 100%;
  height: 100vh;
}

.products .products-swiper .control-box {
  position: absolute;
  right: 6.25%;
  top: 50%;
  transform: translateY(-50%);
  width: -moz-max-content;
  width: max-content;
  padding: 0.65rem 0;
  z-index: 10;
}

.products .products-swiper .control-box .swiper-pagination {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  top: 0;
  right: 0;
  bottom: 0;
  line-height: 1;
  color: #fff;
  font-weight: bold;
}

.products .products-swiper .control-box .swiper-pagination::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.products .products-swiper .control-box .swiper-pagination span {
  display: block;
}

.products .products-swiper .control-box .swiper-pagination .swiper-pagination-current {
  margin-bottom: 0.9rem;
}

.products .products-swiper .control-box .swiper-button-prev,
.products .products-swiper .control-box .swiper-button-next {
  margin: 0;
  width: 12px;
  height: 5px;
  color: #fff;
}

.products .products-swiper .control-box .swiper-button-prev::after,
.products .products-swiper .control-box .swiper-button-next::after {
  font-size: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}

.products .products-swiper .control-box .swiper-button-prev {
  top: 0;
  left: 2px;
}

.products .products-swiper .control-box .swiper-button-prev::after {
  border-bottom: 5px solid #fff;
}

.products .products-swiper .control-box .swiper-button-next {
  top: auto;
  bottom: 0;
  right: 2px;
}

.products .products-swiper .control-box .swiper-button-next::after {
  border-top: 5px solid #fff;
}

.products .products-swiper .control-box .tit-box {
  position: absolute;
  right: calc(100% + 0.35rem);
  top: 50%;
  transform: translateY(-50%);
  width: -moz-max-content;
  width: max-content;
}

.products .products-swiper .control-box .tit-box span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  opacity: 0;
  transition: all 0.4s;
}

.products .products-swiper .control-box .tit-box span.show {
  opacity: 1;
}

.products .products-swiper .swiper-slide {
  width: 100%;
  height: 100vh;
}

.products .products-swiper .swiper-slide .pic {
  width: 100%;
  height: 76.5%;
}

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

.products .products-swiper .swiper-slide .intro {
  width: 100%;
  height: 23.5%;
  padding: 0 13%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #F9F9FA;
}

.products .products-swiper .swiper-slide .intro .top {
  display: flex;
  justify-content: space-between;
}

.products .products-swiper .swiper-slide .intro .top .tit {
  max-width: 45%;
}

.products .products-swiper .swiper-slide .intro .top .cont {
  width: 60.4%;
  /* line-height: 1.5;
  max-height: 100px;
  overflow: auto; */
  line-height: 24px;
  height: 72px;
  text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;
}

.products .products-swiper .swiper-slide .intro .more {
  margin-top: 0.3rem;
}

.products .products-swiper .swiper-slide.foot-slide {
  height: -moz-max-content;
  height: max-content;
}

.footer {
  position: relative;
  z-index: 25;
  background-color: #fff;
}

.footer .top {
  padding: 1.65rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(103, 120, 134, 0.2);
}

.footer .top .foot-logo {
  width: 3rem;
}

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

.footer .top .link {
  display: flex;
  align-items: center;
}

.footer .top .link .li {
  width: max-content;
  height: 1.1rem;
  border-radius: 0.55rem;
  position: relative;
  border: 1px solid #3B3B3B;
  margin-right: 0.65rem;
  transition: all 0.4s;
}

.footer .top .link .li:last-child {
  margin-right: 0;
}

.footer .top .link .li::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 0.4rem;
  border-top: 5px solid #262626;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  pointer-events: none;
  transition: all 0.4s;
}

.footer .top .link .li p {
  width: max-content;
  height: 100%;
  line-height: 1.1rem;
  padding: 0 1rem 0 .4rem;
  color: #262626;
  cursor: pointer;
  transition: all 0.4s;
}

.footer .top .link .li .change {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 4rem;
  overflow-y: auto;
  color: #3B3B3B;
  background-color: #fff;
  display: none;
}

.footer .top .link .li .change::-webkit-scrollbar {
  width: 3px;
}

.footer .top .link .li .change a {
  display: block;
  width: 100%;
  /* height: 1rem; */
  line-height: 1.5;
  margin-bottom: 0.3rem;
  padding: 0 1rem;
  transition: all 0.4s;
}

.footer .top .link .li .change a:hover {
  color: var(--logoColor);
}

.footer .top .link .li:hover {
  background-color: var(--logoColor);
  border-color: var(--logoColor);
}

.footer .top .link .li:hover::after {
  border-top-color: #fff;
}

.footer .top .link .li:hover p {
  color: #fff;
}

.footer .top .link .li.cur {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: var(--logoColor);
  border-color: var(--logoColor);
}

.footer .top .link .li.cur::after {
  border-top-color: #fff;
  transform: rotate(180deg);
}

.footer .top .link .li.cur p {
  color: #fff;
}

.footer .mid {
  padding: 1.35rem 0 2.2rem;
  border-bottom: 1px solid rgba(103, 120, 134, 0.2);
  display: flex;
  justify-content: space-between;
}

.footer .mid .info .tel {
  display: flex;
  align-items: center;
}

.footer .mid .info .tel .icon {
  width: 20px;
}

.footer .mid .info .tel p {
  color: #262626;
  line-height: 1.2;
  margin-left: 0.3rem;
  letter-spacing: -1px;
  font-family: "GILROY-SEMIBOLD";
}

.footer .mid .info .mail {
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
}

.footer .mid .info .mail .icon {
  width: 20px;
}

.footer .mid .info .mail p {
  color: #262626;
  line-height: 1.2;
  margin-left: 0.3rem;
}

.footer .mid .info .share {
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
}

.footer .mid .info .share a {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  border: 1px solid #707070;
  margin-right: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
}

.footer .mid .info .share a:last-child {
  margin-right: 0;
}

.footer .mid .info .share a>img {
  max-width: 60%;
  max-height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer .mid .info .share a .pos-img {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  transform: translateX(-50%);
  width: 2.35rem;
  padding: 0.25rem 0.125rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.footer .mid .info .share a .pos-img img {
  width: 100%;
}

.footer .mid .info .share a:hover {
  background-color: var(--logoColor);
  border-color: var(--logoColor);
}

.footer .mid .info .share a:hover>img {
  filter: brightness(100);
}

.footer .mid .info .share a:hover .pos-img {
  opacity: 1;
  top: calc(100% + 0.35rem);
  visibility: visible;
}

.footer .mid .nav-item {
  display: flex;
  justify-content: flex-end;
  margin-left: 1rem;
}

.footer .mid .nav-item .item {
  margin-right: 1.1rem;
}

.footer .mid .nav-item .item:last-child {
  margin-right: 0;
}

.footer .mid .nav-item .item a {
  display: block;
  color: #262626;
  font-family: "HarmonyOS_Sans_SC_Regular";
  line-height: 1;
  margin-bottom: 0.6rem;
  transition: all 0.3s;
}

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

.footer .mid .nav-item .item a:hover {
  color: var(--logoColor);
  transform: translateX(5px);
}

.footer .mid .nav-item .item .tit {
  font-family: "HarmonyOS_Sans_SC_Medium";
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.footer .btm {
  display: flex;
  justify-content: space-between;
  color: #262626;
  line-height: 1.35;
  padding: 0.5rem 0 0.7rem;
}

.footer .btm a {
  display: inline-block;
  opacity: 0.5;
}

.footer .btm .copyright a {
  margin-right: 0.9rem;
}

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

.footer .btm .link a {
  padding-right: 0.35rem;
  margin-right: 0.35rem;
  position: relative;
}

.footer .btm .link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 8px;
  background-color: rgba(38, 38, 38, 0.8);
}

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

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

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

.about-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-banner .mc {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, transparent, #fff 50%);
}

.about {
  position: relative;
}

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

.about .top .wrap {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.about .top .lf {
  width: 48%;
}

.about .top .lf .sub {
  margin-top: 0.3rem;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}

.about .top .lf .sub .cont2 {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
}

.about .top .lf .line {
  margin-top: 2.95rem;
  width: 3.7rem;
  height: 4px;
  background-color: rgba(0, 145, 58, 0.11);
  position: relative;
}

.about .top .lf .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40.5%;
  height: 100%;
  background-color: var(--logoColor);
}

.about .top .rg {
  width: 48%;
  min-height: 60vh;
  padding-top: 0.75rem;
  position: relative;
  overflow: hidden;
}

.about .top .rg .scroll-box {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.about .top .rg .text {
  color: #595959;
  line-height: 1.5;
}

.about .top .rg .num-box {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
}

.about .top .rg .num-box .li {
  width: 33.33%;
}

.about .top .rg .num-box .li .box {
  /* width: -moz-max-content;
  width: max-content; */
}

.about .top .rg .num-box .li:not(:nth-child(-n+3)) {
  margin-top: 2.5rem;
}

.about .top .rg .num-box .li:nth-child(3n-1) {
  display: flex;
  justify-content: center;
}

.about .top .rg .num-box .li:nth-child(3n) {
  display: flex;
  justify-content: flex-end;
}

.about .top .rg .num-box .li .icon {
  width: 2.25rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .top .rg .num-box .li .icon img {
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.about .top .rg .num-box .li .intro {
  margin-top: 0.55rem;
  display: flex;
  align-items: baseline;
  color: #262626;
}

.about .top .rg .num-box .li .intro .span {
  margin-right: 0.3rem;
}

.about .top .rg .num-box .li .intro p {
  line-height: 1.2;
  font-weight: bold;
  margin-right: 0.3rem;
}

.about .top .rg .num-box .li .intro span {
  line-height: 1.3;
}

.about .top .rg .num-box .li .tips {
  margin-top: 0.1rem;
  line-height: 1.3;
}

.about .top .rg .text2 {
  margin-top: 4.75rem;
  color: #595959;
  line-height: 1.5;
  opacity: 0;
  visibility: hidden;
}

.about .top .mb-change .tab {
  width: 75%;
  border-top: 1px solid rgba(112, 112, 112, 0.2);
  display: flex;
}

.about .top .mb-change .tab span {
  position: relative;
  color: #262626;
  line-height: 1;
  width: 50%;
  padding-top: 0.4rem;
  cursor: pointer;
  transition: all 0.4s;
}

.about .top .mb-change .tab span::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 66%;
  height: 2px;
  background-color: var(--logoColor);
  opacity: 0;
  transition: all 0.4s;
}

.about .top .mb-change .tab span.active {
  color: var(--logoColor);
}

.about .top .mb-change .tab span.active::after {
  opacity: 1;
}

.about .top .mb-change .cont-box {
  margin-top: 1.3rem;
}

.about .top .mb-change .cont-box .cont {
  display: none;
}

.about .top .mb-change .cont-box .cont.show {
  display: block;
}

.about .top .mb-change .cont-box .cont .sub {
  color: #262626;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.2;
}

.about .top .mb-change .cont-box .cont .info {
  margin-top: 0.75rem;
  color: #595959;
  line-height: 1.8;
}

.about .mid-box {
  margin-top: -6rem;
  padding-top: 6rem;
}

.about .mid {
  position: relative;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 0 0 2.4rem;
  z-index: 10;
}

.about .mid .wrap {
  margin: 0 auto;
}

.about .mid .tit {
  color: #262626;
  line-height: 1;
  font-size: 1.65rem;
  position: absolute;
  font-weight: bold;
  top: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  opacity: 0;
}

.about .mid .mid-swiper .swiper-pagination {
  position: relative;
  line-height: 1;
  bottom: 0;
  margin-top: 1rem;
  display: none;
}

.about .mid .mid-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--logoColor);
}

.about .mid .mid-swiper .swiper-wrapper {
  align-items: flex-end;
  justify-content: center;
}

.about .mid .mid-swiper .swiper-slide {
  width: 18.5%;
  height: 58vh;
  margin-right: 3rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.about .mid .mid-swiper .swiper-slide:last-child {
  margin-right: 0 !important;
}

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

.about .mid .mid-swiper .swiper-slide .pos-cont {
  position: absolute;
  width: 100%;
  min-height: 60%;
  bottom: 0;
  left: 0;
  padding: 1.5rem 0.85rem 0.5rem;
  color: #fff;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.86));
  opacity: 0;
}

.about .mid .mid-swiper .swiper-slide .pos-cont .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.about .mid .mid-swiper .swiper-slide .pos-cont .icon img {
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about .mid .mid-swiper .swiper-slide .pos-cont .h1 {
  margin-top: 0.75rem;
  font-weight: bold;
  line-height: 1.3;
}

.about .mid .mid-swiper .swiper-slide .pos-cont .cont {
  margin-top: 0.6rem;
  line-height: 1.9;
  max-height: 9.5em;
  overflow-y: auto;
}

.about .mid .mid-swiper .swiper-slide .pos-cont .cont::-webkit-scrollbar {
  width: 3px;
}

.about .mid .mid-swiper .swiper-slide .pos-cont .cont::-webkit-scrollbar-thumb {
  background: #fff;
}

.about .mid .mid-swiper .swiper-slide.sli-box {
  width: 100%;
  height: 20.675rem;
}

.about .layout-box {
  margin-top: -7rem;
}

.about .layout {
  position: relative;
  height: 100vh;
  margin: 0 auto;
  z-index: 2;
}

.about .layout .tit {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  text-align: center;
  transform: translateY(-50%);
  font-size: 3.75rem;
  line-height: 1;
  font-weight: bold;
  color: #262626;
}

.about .layout .box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 100%;
  left: 0;
}

.about .layout .box .mc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, transparent, #fff);
  z-index: 3;
}

.about .layout .box .pic-box {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about .layout .box .pic-box img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.about .layout .box .pic-box img.active {
  opacity: 1;
  visibility: visible;
}

.about .layout .box .pos-cont {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  width: 58.7vh;
  height: 58.7vh;
  z-index: 2;
}

.about .layout .box .pos-cont .pic {
  width: 100%;
}

.about .layout .box .pos-cont .pic img {
  width: 100%;
}

.about .layout .box .pos-cont .line-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.about .layout .box .pos-cont .line-svg svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.about .layout .box .pos-cont .line-svg svg .cls-1 {
  fill: none;
  stroke: #fff;
  stroke-width: 3px;
  fill-rule: evenodd;
}

.about .layout .box .pos-cont .point {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 4;
}

.about .layout .box .pos-cont .point .item {
  width: 60%;
  z-index: -1;
  visibility: hidden;
  transition: all 0.4s;
}

.about .layout .box .pos-cont .point .item .icon {
  width: 2rem;
  margin: 0 auto;
  text-align: center;
  transform: translateY(1rem);
  opacity: 0;
}

.about .layout .box .pos-cont .point .item .h1 {
  margin-top: 0.8rem;
  color: #fff;
  font-size: .8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  transform: translateY(1rem);
  opacity: 0;
}

.about .layout .box .pos-cont .point .item .cont {
  margin: 0.725rem auto 0;
  width: 80%;
  line-height: 1.2;
  padding-left: 0.75rem;
  transform: translateY(1rem);
  opacity: 0;
}

.about .layout .box .pos-cont .point .item .cont p {
  color: #fff;
  position: relative;
  padding-left: 16px;
  margin-bottom: 0.4rem;
}

.about .layout .box .pos-cont .point .item .cont p:last-child {
  margin-bottom: 0;
}

.about .layout .box .pos-cont .point .item .cont p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
}

.about .layout .box .pos-cont .point .item.active {
  z-index: 10;
  visibility: visible;
}

.about .layout .box .pos-cont .point .item.active .icon {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.4s;
}

.about .layout .box .pos-cont .point .item.active .h1 {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.4s 0.2s;
}

.about .layout .box .pos-cont .point .item.active .cont {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.4s 0.4s;
}

.about .layout .box .pos-cont .li-box {
  position: absolute;
  width: 0;
  bottom: 50%;
  left: 50%;
  height: 50%;
  transform-origin: 50% 50%;
  z-index: 5;
}

.about .layout .box .pos-cont .li-box .li {
  position: absolute;
  height: calc(100% + 0.45rem);
  top: -0.45rem;
  left: 0;
  transform-origin: 50% 100%;
}

.about .layout .box .pos-cont .li-box .li .wc {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.1rem;
  height: 1.1rem;
  line-height: 1.1rem;
  text-align: center;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.8;
  border-color: transparent;
  cursor: pointer;
  transform: translateX(-50%);
  transition: all 0.3s ease-out;
}

.about .layout .box .pos-cont .li-box .li .wc .oc {
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background-color: #fff;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.3s ease-out;
}

.about .layout .box .pos-cont .li-box .li .wc .font-box {
  position: absolute;
  transition: all 1s ease-out;
}

.about .layout .box .pos-cont .li-box .li .wc .font-box .icon {
  width: 1.35rem;
  height: 1.175rem;
}

.about .layout .box .pos-cont .li-box .li .wc .font-box .icon img {
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.about .layout .box .pos-cont .li-box .li .wc .font-box p {
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  line-height: 1.3;
}

.about .layout .box .pos-cont .li-box .li.active .wc {
  opacity: 1;
  border-color: #fff;
}

.about .layout .box .pos-cont .li-box .li1 {
  transform: rotate(45deg);
}

.about .layout .box .pos-cont .li-box .li1 .wc {
  transform: translateX(-50%) rotate(-45deg);
}

.about .layout .box .pos-cont .li-box .li1 .wc .font-box {
  left: calc(100% + 1rem);
  bottom: 0.4rem;
}

.about .layout .box .pos-cont .li-box .li1 .wc .font-box p {
  left: 100%;
  font-size: .5rem;
}

.about .layout .box .pos-cont .li-box .li2 {
  transform: rotate(135deg);
}

.about .layout .box .pos-cont .li-box .li2 .wc {
  transform: translateX(-50%) rotate(-135deg);
}

.about .layout .box .pos-cont .li-box .li2 .wc .font-box {
  left: calc(100% + 1rem);
  top: 0.4rem;
}

.about .layout .box .pos-cont .li-box .li3 {
  transform: rotate(225deg);
}

.about .layout .box .pos-cont .li-box .li3 .wc {
  transform: translateX(-50%) rotate(-225deg);
}

.about .layout .box .pos-cont .li-box .li3 .wc .font-box {
  right: calc(100% + 1rem);
  top: 0.5rem;
}

.about .layout .box .pos-cont .li-box .li4 {
  transform: rotate(315deg);
}

.about .layout .box .pos-cont .li-box .li4 .wc {
  transform: translateX(-50%) rotate(-315deg);
}

.about .layout .box .pos-cont .li-box .li4 .wc .font-box {
  right: calc(100% + 1rem);
  bottom: 0.4rem;
}

.about .layout .data-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: transparent;
}

.about .btm-box {
  margin-top: -13rem;
  padding-top: 9rem;
}

.about .btm {
  width: 100%;
  background-color: #fff;
  position: relative;
  padding: 4.25rem 0 5.6rem;
  z-index: 3;
}

.about .btm .tit {
  color: #fff;
}

.about .btm .cont {
  margin-top: 0.9rem;
  color: #fff;
  line-height: 1.5;
  width: 50%;
}

.about .btm .cont span {
  color: var(--logoColor);
}

.about .btm .swiper-box {
  padding-top: 3rem;
}

.about .btm .item-swiper .swiper-slide {
  width: 11.11%;
  color: #FFFFFF;
  line-height: 1;
}

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

.about .btm .line {
  margin-top: 0.6rem;
  width: 100%;
  height: 1px;
  background-color: #E3E3E3;
}

.about .btm .line .bar {
  width: 0;
  height: 100%;
  background-color: var(--logoColor);
  transition: all 0.4s;
}

.about .btm .item2-swiper {
  margin-top: 2.25rem;
}

.about .btm .item2-swiper .swiper-slide {
  width: 22.4%;
  margin-right: 1.05rem;
}

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

.about .btm .item2-swiper .swiper-slide .pic {
  width: 100%;
  height: 6.65rem;
  border-radius: .25rem;
  overflow: hidden;
}

.about .btm .item2-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all .4s;
}

.about .btm .item2-swiper .swiper-slide .pic:hover img {
  transform: scale(1.04);
}

.about .btm .item2-swiper .swiper-slide .h1 {
  margin-top: 0.75rem;
  text-align: center;
  line-height: 1;
  color: #fff;
}

.cases {
  padding: 2.5rem 0 0;
}

.cases .wrap {
  padding: 2.9rem 0 0;
}

.cases .li-box {
  margin-top: 3.45rem;
  margin-bottom: 4.8rem;
  padding-left: 4rem;
}

.cases .li-box .li {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 3.4rem;
}

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

.cases .li-box .li .pic {
  width: 62%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.cases .li-box .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.4s;
}

.cases .li-box .li .intro {
  width: 31%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cases .li-box .li .intro::-webkit-scrollbar {
  width: 3px;
}

.cases .li-box .li .intro .h1 {
  color: #262626;
  line-height: 1.35;
}

.cases .li-box .li .intro .list-box {
  margin-top: 2rem;
}

.cases .li-box .li .intro .list {
  margin-bottom: 1.5rem;
}

.cases .li-box .li .intro .list:last-child {
  margin-bottom: 0;
}

.cases .li-box .li .intro .list .key {
  color: #262626;
  line-height: 1.3;
}

.cases .li-box .li .intro .list .val {
  margin-top: 0.25rem;
  color: #262626;
  font-weight: bold;
  line-height: 2;
}

.cases .li-box .li:nth-child(2n) {
  flex-direction: row-reverse;
}

.cases .li-box .li:hover .pic img {
  transform: scale(1.04);
}

.cases .time-line {
  margin-top: -13rem;
  padding-top: 13rem;
}

.cases .pic-box {
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.cases .pic-box .bg {
  width: 70.8%;
  height: 64vh;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0.5rem;
}

.cases .pic-box .mc {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, transparent, #fff);
}

.cases .pic-box .pos-cont {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  opacity: 0;
  transition: all 0.4s;
}

.cases .pic-box .pos-cont .h1 {
  color: var(--logoColor);
  line-height: 1.3;
}

.cases .pic-box .pos-cont .info {
  margin: 0.25rem auto 0;
  color: #fff;
  max-width: 90%;
  line-height: 1.3;
}

.cases .pic-box .pos-cont .more {
  margin: 1.4rem auto 0;
}

@keyframes enterTopMove {
  0% {
    top: -100vh;
    transform: scale(0.7);
  }

  50% {
    top: 0;
    transform: scale(0.7);
  }

  100% {
    top: 0;
    transform: scale(1);
  }
}

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

  50% {
    top: 0;
    transform: scale(0.7);
  }

  100% {
    top: -100vh;
    transform: scale(0.7);
  }
}

@keyframes enterBtmMove {
  0% {
    top: 100vh;
    transform: scale(0.7);
  }

  50% {
    top: 0;
    transform: scale(0.7);
  }

  100% {
    top: 0;
    transform: scale(1);
  }
}

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

  50% {
    top: 0;
    transform: scale(0.7);
  }

  100% {
    top: 100vh;
    transform: scale(0.7);
  }
}

@keyframes enterLeftMove {
  0% {
    left: 100%;
    transform: scale(0.7);
  }

  50% {
    left: 0;
    transform: scale(0.7);
  }

  100% {
    left: 0;
    transform: scale(1);
  }
}

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

  50% {
    left: 0;
    transform: scale(0.7);
  }

  100% {
    left: 100%;
    transform: scale(0.7);
  }
}

.index {
  position: relative;
  overflow: hidden;
  /*height: 100vh;*/
  /*height: 550vh;*/
}

.index .first-page {
  position: relative;
  /*position: absolute;*/
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 5;
  width: 100%;
  height: 100vh;
  /*opacity: 0;*/
  /*visibility: hidden;*/
  /*transition: opacity 2s;*/
}

.index .first-page.hide {
  animation: leaveTopMove 2s ease-in-out forwards;
}

.index .first-page.active {
  opacity: 1;
  z-index: 15;
  /*visibility: visible;*/
}

.index .first-page img,
.index .first-page video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.index .first-page .play {
  width: 1.5rem;
}

.index .first-page .point {
  position: absolute;
}

.index .first-page .point .cir {
  display: block;
  width: .3rem;
  height: .3rem;
  border-radius: 50%;
  background-color: var(--logoColor);
}

.index .first-page .point .cir::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--logoColor);
  transform-origin: center;
  animation: scale2 3s .75s infinite;
}

.index .first-page .point .cir::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--logoColor);
  transform-origin: center;
  animation: scale2 3s infinite;
}

.index .first-page .point .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + .5rem);
  width: max-content;
  padding: 6px 12px;
  border-radius: .5rem;
  color: #fff;
  background-color: var(--logoColor);
  text-align: center;
  min-width: 1.5rem;
  /* opacity: 0;
  visibility: hidden; */
  transition: all .4s;
}

.index .first-page .point:hover .text {
  /* opacity: 1;
  visibility: visible; */
  background-color: #fff;
  color: var(--logoColor);
}

.index .first-page .point1 {
  top: 74%;
  left: 57%;
}

.index .first-page .point2 {
  top: 27%;
  left: 49%;
}

.index .first-page .point3 {
  top: 48%;
  left: 9%;
}

.index .first-page .point4 {
  top: 35%;
  left: 63%;
}

.index .first-page .point5 {
  top: 44%;
  left: 43%;
}

.index .second-page {
  position: absolute;
  top: 100vh;
  left: 0;
  background-color: #fff;
  /*z-index: -1;*/
  z-index: 10;
  width: 100%;
  height: 100vh;
  /*opacity: 0;*/
  /*visibility: hidden;*/
  /*transition: all 2s;*/
}

.index .second-page.hide {
  animation: leaveBtmMove 2s ease-in-out forwards;
}

.index .second-page.active {
  top: 0;
  visibility: visible;
  /*opacity: 1;*/
  z-index: 15;
}

.index .second-page .pic-box {
  position: relative;
  width: 100%;
  height: 72%;
}

.index .second-page .pic-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transition: all 0.4s;
}

.index .second-page .pic-box img.show {
  opacity: 1;
  z-index: 5;
}

.index .second-page .intro-box {
  width: 100%;
  height: 28%;
  padding-top: 1.7rem;
}

.index .second-page .intro-box .second-swiper {
  width: 78.33%;
  border-bottom: 1px solid rgba(38, 38, 38, 0.14);
}

.index .second-page .intro-box .second-swiper .swiper-wrapper {
  justify-content: center;
}

.index .second-page .intro-box .second-swiper .swiper-slide {
  width: -moz-max-content;
  width: max-content;
  padding: 0 0.85rem 0.5rem;
  transform: scale(0.83);
  line-height: 1;
  cursor: pointer;
  transition: all 0.4s;
}

.index .second-page .intro-box .second-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--logoColor);
  transition: all 0.4s;
}

.index .second-page .intro-box .second-swiper .swiper-slide:hover {
  color: var(--logoColor);
}

.index .second-page .intro-box .second-swiper .swiper-slide.active {
  transform: scale(1);
  color: var(--logoColor);
  font-weight: bold;
}

.index .second-page .intro-box .second-swiper .swiper-slide.active::after {
  width: 100%;
}

.index .second-page .intro-box .cont-box {
  margin: 0.65rem auto 0;
  width: 78.33%;
  position: relative;
}

.index .second-page .intro-box .cont-box .cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 3rem;
  color: #262626;
  line-height: 2;
  text-align: center;
  opacity: 0;
}

.index .second-page .intro-box .cont-box .cont.show {
  opacity: 1;
  z-index: 5;
}

.index .third-page {
  position: relative;
  /*top: 0;*/
  /*left: 100%;*/
  background-color: #fff;
  /*z-index: -1;*/
  z-index: 15;
  width: 100%;
  height: 100vh;
  /*opacity: 0;*/
  /*visibility: hidden;*/
  /*transition: opacity 1s;*/
}

.index .third-page.hide {
  animation: leaveLeftMove 2s ease-in-out forwards;
}

.index .third-page.active {
  visibility: visible;
  opacity: 1;
  z-index: 15;
}

.index .third-page.active .pic-box {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: all 2s;
}

.index .third-page .box {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #E5E7EB;
}

.index .third-page .pic-box {
  position: relative;
  width: 100%;
  height: 100vh;
  /*-webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);*/
  /*clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);*/
}

.index .third-page .pic-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.index .third-page .pic-box img.show {
  display: block;
}

.index .third-page .text-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.index .third-page .text-box .cont {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transform: translateY(1rem);
  transition: all 0.4s;
}

.index .third-page .text-box .cont.show {
  opacity: 1;
  visibility: visible;
  z-index: 15;
  transform: translateY(0);
}

.index .third-page .text-box .cont1 {
  left: 3.1rem;
  bottom: 33.6%;
  color: #fff;
  width: 50%;
}

.index .third-page .text-box .cont1 .num {
  font-size: 4.4rem;
  line-height: 1;
  position: relative;
}

.index .third-page .text-box .cont1 .num::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0.8rem;
  width: 2.15rem;
  height: 2.15rem;
  background: url(../img/34.svg) center no-repeat;
}

.index .third-page .text-box .cont1 .info {
  margin-top: 0.9rem;
  line-height: 1.6;
  width: 80%;
}

.index .third-page .text-box .cont2 {
  left: 3rem;
  bottom: 36.76%;
  color: #fff;
}

.index .third-page .text-box .cont2 .h1 {
  line-height: 1.34;
}

.index .third-page .text-box .cont2 .sub {
  margin-top: 0.25rem;
  line-height: 1.3;
}

.index .third-page .text-box .cont2 .line {
  margin-top: 1.4rem;
  width: 3.7rem;
  height: 0.1rem;
  background-color: rgba(255, 255, 255, 0.11);
  position: relative;
}

.index .third-page .text-box .cont2 .line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 100%;
  background-color: var(--logoColor);
}

.index .third-page .text-box .cont2 .intro {
  margin-top: 2.25rem;
  line-height: 1.5;
  width: 14.6rem;
}

.index .third-page .text-box .cont3 {
  position: absolute;
  width: 70%;
  height: 100%;
  top: 0;
  left: 15%;
  color: #fff;
  text-align: center;
  padding-top: 6%;
}

.index .third-page .text-box .cont3 .h1 {
  line-height: 1.34;
}

.index .third-page .text-box .cont3 .sub {
  margin-top: 0.25rem;
  line-height: 1.3;
}

.index .third-page .text-box .cont3 .line2 {
  margin: 1.4rem auto 0;
  width: 3.7rem;
  height: 0.1rem;
  background-color: rgba(255, 255, 255, 0.11);
  position: relative;
}

.index .third-page .text-box .cont3 .line2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 100%;
  background-color: var(--logoColor);
}

.index .third-page .text-box .cont3 .more {
  position: absolute;
  bottom: 1.95rem;
  left: 50%;
  transform: translateX(-50%);
}

.index .first-mc,
.index .second-mc {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 100;
  transition: all 2s;
}

.index .first-mc {
  top: 100%;
  left: 0;
  background-color: #fff;
  transition: all 2s;
}

.index .first-mc.show {
  top: -100%;
}

.index .second-mc {
  left: 100%;
  top: 0;
  background-color: #E5E7EB;
  transition: all 2s;
}

.index .second-mc.show {
  left: -100%;
}

.index .back-top {
  position: fixed;
  left: 6.25%;
  bottom: 1.95rem;
  text-align: center;
  z-index: 100;
  display: none;
  cursor: pointer;
}

.index .back-top div {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  line-height: 1.1rem;
  color: var(--logoColor);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.23);
}

.index .back-top p {
  margin-top: 0.4rem;
  color: #fff;
  line-height: 1;
}

.index .scroll-bar {
  position: fixed;
  right: 6.25%;
  bottom: 1.95rem;
  display: flex;
  align-items: flex-end;
  z-index: 100;
  opacity: 0;
}

.index .scroll-bar .text {
  color: #FFFFFF;
  line-height: 1.16;
  margin-right: 0.65rem;
}

.index .scroll-bar .box {
  position: relative;
  width: 2px;
  height: 1.7rem;
  background-color: rgba(255, 255, 255, 0.17);
}

.index .scroll-bar .box span {
  position: absolute;
  width: 100%;
  height: 25%;
  top: 0;
  left: 0;
  background-color: var(--logoColor);
}

.ani-box {
  position: relative;
}

.ani-box .footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.index-bar {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  width: 100px;
}

.index-bar span {
  width: 0;
}

.pro-info {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.pro-info .side-bar {
  position: fixed;
  left: 1.35rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.pro-info .side-bar a {
  display: block;
  color: #262626;
  line-height: 1;
  margin-bottom: 0.4rem;
  padding-left: 10px;
  position: relative;
}

.pro-info .side-bar a span {
  transition: all 0.4s;
}

.pro-info .side-bar a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background-color: #262626;
  border-radius: 50%;
}

.pro-info .side-bar a span {
  opacity: 0;
}

.pro-info .side-bar a:last-child {
  margin-bottom: 0;
}

.pro-info .side-bar a:hover span,
.pro-info .side-bar a.active span {
  opacity: 1;
}

.pro-info .side-bar.other a {
  color: #fff;
}

.pro-info .side-bar.other a::after {
  background-color: #fff;
}

.pro-info .back-top {
  position: fixed;
  right: 1.35rem;
  bottom: 2.15rem;
  text-align: center;
  z-index: 100;
  cursor: pointer;
}

.pro-info .back-top div {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background-color: var(--logoColor);
  line-height: 1.1rem;
  color: #fff;
  margin: 0 auto;
}

.pro-info .back-top p {
  margin-top: 0.4rem;
  color: #262626;
  line-height: 1;
}

.pro-info .top-ban {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 101;
}

.pro-info .top-ban img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.pro-info .top-ban .pos-cont {
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 0.15rem solid var(--logoColor);
  width: 100%;
  height: 5rem;
  padding-top: 1.5rem;
  background-color: #fff;
}

.pro-info .top-ban .pos-cont .wrap {
  display: flex;
  justify-content: space-between;
  color: #333;
}

.pro-info .top-ban .pos-cont .wrap .intro {
  width: 70%;
  line-height: 2.1;
  height: 3rem;
  overflow: auto;
}

.pro-info .trait {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.pro-info .trait .img-box {
  position: absolute;
  top: 10vh;
  left: 0;
  width: 100%;
  height: 80vh;
  text-align: center;
}

.pro-info .trait .img-box img {
  height: 100%;
  object-fit: contain;
}

.pro-info .trait .cont-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.pro-info .trait .cont-box .wrap {
  position: relative;
  height: 100%;
}

.pro-info .trait .cont-box .li-box {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
}

.pro-info .trait .cont-box .li-box.top {
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
}

.pro-info .trait .cont-box .li-box.btm {
  width: 100%;
  height: 50%;
  bottom: 0;
  left: auto;
  top: auto;
  right: auto;
}

.pro-info .trait .cont-box .li-box .li {
  position: absolute;
  width: 34.4%;
}

.pro-info .trait .cont-box .li-box.top .li {
  width: max-content;
  height: 50%;
  top: 0;
  display: flex;
  align-items: flex-end;
  text-align: left;
}

.pro-info .trait .cont-box .li-box.btm .li {
  width: max-content;
  height: 36%;
  top: auto;
  bottom: 0;
  text-align: left;
}

.pro-info .trait .cont-box .li-box .li::after {
  content: "";
  position: absolute;
  top: 0.85rem;
  width: 0;
  height: 1px;
  background-color: #9F9F9F;
}

.pro-info .trait .cont-box .li-box.top .li::after {
  width: 1px;
  height: 0;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
}

.pro-info .trait .cont-box .li-box.btm .li::after {
  width: 1px;
  height: 0;
  top: auto;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
}

.pro-info .trait .cont-box .li-box.noCont .li::after {
  top: .15rem;
}

.pro-info .trait .cont-box .li-box .li .h1 {
  color: var(--logoColor);
  font-weight: bold;
  line-height: 1.2;
}

.pro-info .trait .cont-box .li-box .li .cont {
  margin-top: 0.25rem;
  line-height: 1.35;
  color: #000000;
  width: 150%;
}

.pro-info .trait .cont-box .lf .li .cont {
  transform: translateX(-34%);
}

.pro-info .trait .cont-box .li-box .li .arr {
  position: absolute;
  top: 0.7rem;
  color: #fff;
  font-size: 0.4rem;
  z-index: 5;
}

.pro-info .trait .cont-box .li-box.top .li .arr {
  left: 50%;
  transform: translateX(-50%);
}

.pro-info .trait .cont-box .li-box.top .li .h1 {
  width: 80%;
  margin: 0 auto;
}

.pro-info .trait .cont-box .li-box.btm .li .arr {
  left: 50%;
  transform: translateX(-50%);
}

.pro-info .trait .cont-box .li-box.btm .li .h1 {
  width: 70%;
  margin: 0 auto;
}

.pro-info .trait .cont-box .li-box.noCont .li .arr {
  top: 0;
}

.pro-info .trait .cont-box .li-box .li .arr span {
  display: block;
  position: relative;
  z-index: 5;
  width: 0.3rem;
  height: 0.3rem;
  line-height: 0.45rem;
  text-align: center;
  background-color: var(--logoColor);
  border-radius: 50%;
}

.pro-info .trait .cont-box .li-box .li .arr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-origin: center;
  background-color: var(--logoColor);
  animation: scale2 3s linear infinite;
}

.pro-info .trait .cont-box .li-box .li .arr::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-origin: center;
  background-color: var(--logoColor);
  animation: scale2 3s .75s linear infinite;
}

.pro-info .trait .cont-box .li-box .li1 {
  top: 20%;
}

.pro-info .trait .cont-box .li-box .li1::after {
  width: 135%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li1 .arr {
  left: 248%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li2 {
  top: 35%;
}

.pro-info .trait .cont-box .li-box .li2::after {
  width: 120%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li2 .arr {
  left: 233%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li3 {
  top: 55%;
}

.pro-info .trait .cont-box .li-box .li3::after {
  width: 110%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li3 .arr {
  left: 222%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li4 {
  top: 77.5%;
}

.pro-info .trait .cont-box .li-box .li4::after {
  width: 172%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li4 .arr {
  left: 286%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li5 {
  top: 15%;
}

.pro-info .trait .cont-box .li-box .li5::after {
  width: 137%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li5 .arr {
  right: 250%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li6 {
  top: 35%;
}

.pro-info .trait .cont-box .li-box .li6::after {
  width: 191%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li6 .arr {
  right: 304%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li7 {
  top: 49%;
}

.pro-info .trait .cont-box .li-box .li7::after {
  width: 135%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li7 .arr {
  right: 248%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li8 {
  top: 70%;
}

.pro-info .trait .cont-box .li-box .li8::after {
  width: 135%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li8 .arr {
  right: 248%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li9 {
  top: 84%;
}

.pro-info .trait .cont-box .li-box .li9::after {
  width: 142%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li9 .arr {
  right: 254%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li10 {
  top: 37%;
}

.pro-info .trait .cont-box .li-box .li10::after {
  width: 84%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li10 .arr {
  left: 197%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li11 {
  top: 44%;
}

.pro-info .trait .cont-box .li-box .li11::after {
  width: 102%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li11 .arr {
  left: 215%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li12 {
  top: 52%;
}

.pro-info .trait .cont-box .li-box .li12::after {
  width: 62%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li12 .arr {
  left: 176%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li13 {
  top: 37%;
}

.pro-info .trait .cont-box .li-box .li13::after {
  width: 167%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li13 .arr {
  right: 280%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li14 {
  top: 44%;
}

.pro-info .trait .cont-box .li-box .li14::after {
  width: 190%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li14 .arr {
  right: 300%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li15 {
  top: 52%;
}

.pro-info .trait .cont-box .li-box .li15::after {
  width: 154%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li15 .arr {
  right: 265%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li16 {
  top: 25%;
}

.pro-info .trait .cont-box .li-box .li16::after {
  width: 148%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li16 .arr {
  left: 258%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li17 {
  top: 34%;
}

.pro-info .trait .cont-box .li-box .li17::after {
  width: 148%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li17 .arr {
  left: 258%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li18 {
  top: 52%;
}

.pro-info .trait .cont-box .li-box .li18::after {
  width: 148%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li18 .arr {
  left: 258%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li19 {
  top: 65%;
}

.pro-info .trait .cont-box .li-box .li19::after {
  width: 148%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li19 .arr {
  left: 258%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li20 {
  top: 17%;
}

.pro-info .trait .cont-box .li-box .li20::after {
  width: 142%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li20 .arr {
  right: 252%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li21 {
  top: 45%;
}

.pro-info .trait .cont-box .li-box .li21::after {
  width: 142%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li21 .arr {
  right: 252%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li22 {
  top: 61%;
}

.pro-info .trait .cont-box .li-box .li22::after {
  width: 142%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li22 .arr {
  right: 252%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li23 {
  top: 31%;
}

.pro-info .trait .cont-box .li-box .li23::after {
  width: 142%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li23 .arr {
  right: 252%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li24 {
  top: 27%;
}

.pro-info .trait .cont-box .li-box .li24::after {
  width: 122%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li24 .arr {
  left: 232%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li25 {
  top: 39%;
}

.pro-info .trait .cont-box .li-box .li25::after {
  width: 112%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li25 .arr {
  left: 222%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li26 {
  top: 48%;
}

.pro-info .trait .cont-box .li-box .li26::after {
  width: 113%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li26 .arr {
  left: 224%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li27 {
  top: 25%;
}

.pro-info .trait .cont-box .li-box .li27::after {
  width: 143%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li27 .arr {
  right: 254%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li28 {
  top: 41%;
}

.pro-info .trait .cont-box .li-box .li28::after {
  width: 154%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li28 .arr {
  right: 265%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li29 {
  top: 52%;
}

.pro-info .trait .cont-box .li-box .li29::after {
  width: 137%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li29 .arr {
  right: 248%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li30 {
  top: 33%;
}

.pro-info .trait .cont-box .li-box .li30::after {
  width: 140%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li30 .arr {
  left: 248%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li31 {
  top: 43%;
}

.pro-info .trait .cont-box .li-box .li31::after {
  width: 140%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li31 .arr {
  left: 252%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li32 {
  top: 53%;
}

.pro-info .trait .cont-box .li-box .li32::after {
  width: 126%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li32 .arr {
  left: 236%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li33 {
  top: 32%;
}

.pro-info .trait .cont-box .li-box .li33::after {
  width: 96%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li33 .arr {
  right: 206%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li34 {
  top: 42%;
}

.pro-info .trait .cont-box .li-box .li34::after {
  width: 108%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li34 .arr {
  right: 219%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li35 {
  top: 50%;
}

.pro-info .trait .cont-box .li-box .li35::after {
  width: 88%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li35 .arr {
  right: 199%;
  display: none;
}

.pro-info .trait .cont-box .li-box.top .li36 {
  left: 13.5%;
}

.pro-info .trait .cont-box .li-box.top .li36::after {
  height: 110%;
  display: none;
}

.pro-info .trait .cont-box .li-box.top .li36 .arr {
  top: 214%;
  display: none;
}

.pro-info .trait .cont-box .li-box.top .li37 {
  left: 40%;
}

.pro-info .trait .cont-box .li-box.top .li37::after {
  height: 120%;
  display: none;
}

.pro-info .trait .cont-box .li-box.top .li37 .arr {
  top: 226%;
  display: none;
}

.pro-info .trait .cont-box .li-box.top .li38 {
  left: 70%;
}

.pro-info .trait .cont-box .li-box.top .li38::after {
  height: 98%;
  display: none;
}

.pro-info .trait .cont-box .li-box.top .li38 .arr {
  top: 207%;
  display: none;
}

.pro-info .trait .cont-box .li-box.top .li39 {
  left: 67%;
}

.pro-info .trait .cont-box .li-box.top .li39::after {
  height: 114%;
  display: none;
}

.pro-info .trait .cont-box .li-box.top .li39 .arr {
  top: 222%;
  display: none;
}

.pro-info .trait .cont-box .li-box.btm .li40 {
  left: 17%;
}

.pro-info .trait .cont-box .li-box.btm .li40::after {
  height: 99%;
  display: none;
}

.pro-info .trait .cont-box .li-box.btm .li40 .arr {
  top: auto;
  bottom: 210%;
  display: none;
}

.pro-info .trait .cont-box .li-box.btm .li41 {
  left: 42%;
}

.pro-info .trait .cont-box .li-box.btm .li41::after {
  height: 99%;
  display: none;
}

.pro-info .trait .cont-box .li-box.btm .li41 .arr {
  top: auto;
  bottom: 210%;
  display: none;
}

.pro-info .trait .cont-box .li-box.btm .li42 {
  left: 59%;
}

.pro-info .trait .cont-box .li-box.btm .li42::after {
  height: 99%;
  display: none;
}

.pro-info .trait .cont-box .li-box.btm .li42 .arr {
  top: auto;
  bottom: 210%;
  display: none;
}

.pro-info .trait .cont-box .li-box.btm .li43 {
  left: 73%;
}

.pro-info .trait .cont-box .li-box.btm .li43::after {
  height: 99%;
  display: none;
}

.pro-info .trait .cont-box .li-box.btm .li43 .arr {
  top: auto;
  bottom: 210%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li44 {
  top: 39%;
}

.pro-info .trait .cont-box .li-box .li44::after {
  width: 145%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li44 .arr {
  left: 255%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li45 {
  top: 52%;
}

.pro-info .trait .cont-box .li-box .li45::after {
  width: 102%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li45 .arr {
  left: 214%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li46 {
  top: 67%;
}

.pro-info .trait .cont-box .li-box .li46::after {
  width: 113%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li46 .arr {
  left: 222%;
  display: none;
}


.pro-info .trait .cont-box .li-box .li47 {
  top: 23%;
}

.pro-info .trait .cont-box .li-box .li47::after {
  width: 145%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li47 .arr {
  left: 255%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li48 {
  top: 30%;
}

.pro-info .trait .cont-box .li-box .li48::after {
  width: 152%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li48 .arr {
  right: 264%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li49 {
  top: 39%;
}

.pro-info .trait .cont-box .li-box .li49::after {
  width: 108%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li49 .arr {
  right: 218%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li50 {
  top: 56%;
}

.pro-info .trait .cont-box .li-box .li50::after {
  width: 138%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li50 .arr {
  right: 250%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li51 {
  top: 69%;
}

.pro-info .trait .cont-box .li-box .li51::after {
  width: 139%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li51 .arr {
  right: 251%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li52 {
  top: 60%;
}

.pro-info .trait .cont-box .li-box .li52::after {
  width: 139%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li52 .arr {
  left: 251%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li53 {
  top: 65%;
}

.pro-info .trait .cont-box .li-box .li53::after {
  width: 139%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li53 .arr {
  right: 251%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li54 {
  top: 76%;
}

.pro-info .trait .cont-box .li-box .li54::after {
  width: 139%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li54 .arr {
  left: 251%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li55 {
  top: 60%;
}

.pro-info .trait .cont-box .li-box .li55::after {
  width: 139%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li55 .arr {
  left: 251%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li56 {
  top: 62%;
}

.pro-info .trait .cont-box .li-box .li56::after {
  width: 139%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li56 .arr {
  right: 251%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li57 {
  top: 60%;
}

.pro-info .trait .cont-box .li-box .li57::after {
  width: 139%;
  display: none;
  display: none;
}

.pro-info .trait .cont-box .li-box .li57 .arr {
  left: 251%;
  display: none;
  display: none;
}

.pro-info .trait .cont-box .li-box .li58 {
  top: 62%;
}

.pro-info .trait .cont-box .li-box .li58::after {
  width: 139%;
  display: none;
}

.pro-info .trait .cont-box .li-box .li58 .arr {
  right: 251%;
  display: none;
}

/* .pro-info .trait .cont-box .li-box .li1:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li2:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li3:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li4:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li5:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li6:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li7:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li8:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li9:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li10:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li11:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li12:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li13:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li14:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li15:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li16:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li17:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li18:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li19:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li20:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li21:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li22:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li23:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li24:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li25:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li26:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li27:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li28:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li29:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li30:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li31:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li32:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li33:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li34:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li35:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li36:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li37:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li38:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li39:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li40:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li41:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li42:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li43:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li44:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li45:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li46:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li47:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li48:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li49:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li50:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li51:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li52:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li53:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li54:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li55:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li56:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li57:hover .arr {display: block;}
.pro-info .trait .cont-box .li-box .li58:hover .arr {display: block;} */

.pro-info .trait .cont-box .lf {
  left: 1rem;
}

.pro-info .trait .cont-box.other .lf {
  left: -2rem;
}

.pro-info .trait .cont-box .lf .li {
  left: 0;
  text-align: right;
}

.pro-info .trait .cont-box .lf .li::after {
  left: 113%;
}

.pro-info .trait .cont-box .rg {
  right: 1rem;
}

.pro-info .trait .cont-box.other .rg {
  right: -3rem;
}

.pro-info .trait .cont-box .rg .li {
  right: 0;
  text-align: left;
}

.pro-info .trait .cont-box .rg.txLf .li {
  text-align: left;
}

.pro-info .trait .cont-box .rg .li::after {
  right: 113%;
}

.pro-info .trait .cont-box.show {
  opacity: 1;
  visibility: visible;
}

.pro-info .collocation {
  position: relative;
  z-index: 15;
  background-color: #fff;
  width: 100%;
  padding: 3.55rem 0 1.75rem;
  margin-bottom: 4.25rem;
}

.pro-info .collocation .sub {
  margin-top: 0.75rem;
  color: #595959;
  line-height: 1.5;
}

.pro-info .collocation .box {
  margin-top: 4.925rem;
  position: relative;
  width: 100%;
}

.pro-info .collocation .box .h1 {
  position: absolute;
  top: -2.35rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4.7rem;
  color: var(--logoColor);
  font-weight: bold;
  line-height: 1;
  width: -moz-max-content;
  width: max-content;
}

.pro-info .collocation .box .h1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 10%, #fff);
}

.pro-info .collocation .box .li-box {
  position: relative;
  display: flex;
  justify-content: center;
}

.pro-info .collocation .box .li-box .li {
  width: 21.25%;
  height: 12.5rem;
  border: 1px solid #EBEBEB;
  border-radius: 0.5rem;
  padding: 0.9rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-color: #fff;
}

.pro-info .collocation .box .li-box .li:last-child {
  margin-right: 0;
}

.pro-info .collocation .box .li-box .li .pic {
  width: 90%;
  margin: 0 auto;
  max-height: calc(100% - 1rem);
  text-align: center;
}

.pro-info .collocation .box .li-box .li .pic img {
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.pro-info .collocation .box .li-box .li .title {
  margin: 0.5rem auto 0;
  color: #262626;
}

.pro-info .collocation .box .li-box .li2 {
  position: relative;
  z-index: 5;
}

.pro-info .collocation .box .li-box .li1,
.pro-info .collocation .box .li-box .li3 {
  position: absolute;
  z-index: 1;
  left: 39.375%;
  opacity: 0;
}

.pro-info .principle {
  margin-top: -13rem;
  padding-top: 13rem;
}

.pro-info .principle .pic-box {
  width: 100%;
  height: 100vh;
  position: relative;
}

.pro-info .principle .pic-box .bg {
  width: 74%;
  height: 64vh;
  object-fit: cover;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0.5rem;
}

.pro-info .principle .pic-box .mc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, transparent, #fff 50%);
}

.pro-info .principle .pic-box .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  opacity: 0;
}

.pro-info .parameter {
  padding-top: 3.5rem;
  padding-bottom: 1.2rem;
  height: 100vh;
  position: relative;
  background-color: #fff;
  z-index: 10;
  overflow: hidden;
}

.pro-info .parameter .wrap {
  position: relative;
  height: 100%;
  z-index: 5;
}

.pro-info .parameter .top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.pro-info .parameter .tit span {
  color: var(--logoColor);
}

.pro-info .parameter .sub {
  margin: 0.9rem auto 0;
  line-height: 1.5;
  width: 70%;
}

.pro-info .parameter .sub span {
  color: var(--logoColor);
}

.pro-info .parameter .box {
  height: 56vh;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.pro-info .parameter .line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  opacity: 0;
}

.pro-info .parameter .box .pic {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pro-info .parameter .box .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.pro-info .parameter .box .pic .scroll-box {
  width: 40%;
  height: 100%;
}

.pro-info .parameter .box .pic .nor-pic {
  width: 100%;
  max-width: 13.8rem;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.pro-info .parameter .box .pic .line {
  width: 2rem;
  height: 77vh;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 52vh;
  z-index: 2;
  opacity: 0;
}

.pro-info .parameter .box .pic .scr-pic {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 120vh;
  opacity: 0;
  z-index: 5;
}

.pro-info .parameter .box .pic .scr-pic img {
  width: 9.9rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pro-info .parameter .box .cont-box {
  width: 84.5%;
  position: absolute;
  z-index: 3;
  left: 7.75%;
  bottom: 2rem;
  transform: translateY(15vh);
  opacity: 0;
  visibility: hidden;
  z-index: 15;
}

.pro-info .parameter .box .cont-box .h1 {
  color: #262626;
}

.pro-info .parameter .box .cont-box .h1 span {
  color: var(--logoColor);
}

.pro-info .parameter .box .cont-box .intro {
  margin-top: 0.9rem;
  color: #595959;
  line-height: 1.5;
  width: 55%;
}

.pro-info .parameter .box .cont-box .intro span {
  color: var(--logoColor);
}

.pro-info .parameter .box .cont-box .item-box {
  margin-top: 1.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
}

.pro-info .parameter .box .cont-box .item-box .item {
  width: 18%;
}

.pro-info .parameter .box .cont-box .item-box .item .name {
  color: var(--logoColor);
}

.pro-info .parameter .box .cont-box .item-box .item .info {
  margin-top: 0.4rem;
  color: #595959;
  line-height: 1.7;
}

.pro-info .parameter .box .mc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, transparent, #fff 50%);
  z-index: 10;
}

.pro-info .parameter .box .cont {
  position: absolute;
  top: 0;
  right: 1.2rem;
  width: 60%;
  height: 100%;
  overflow-y: auto;
  padding-right: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  z-index: 5;
}

.pro-info .parameter .box .cont::-webkit-scrollbar {
  width: 2px;
}

.pro-info .parameter .box .cont::-webkit-scrollbar-thumb {
  background: var(--logoColor);
}

.pro-info .parameter .box .cont .li {
  width: 33.33%;
  padding-right: 2rem;
  margin-bottom: 1.65rem;
}

.pro-info .parameter .box .cont .li .key {
  color: #595959;
  line-height: 1.28;
}

.pro-info .parameter .box .cont .li .val {
  margin-top: 0.1rem;
  color: #262626;
  line-height: 1.5;
  word-break: break-all;
}

.pro-info .config {
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.pro-info .config .mc {
  position: absolute;
  bottom: -1.95rem;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, transparent, #202325 50%);
}

.pro-info .config .box {
  position: absolute;
  top: 4.1rem;
  left: 0;
  width: 100%;
}

.pro-info .config .box .tit {
  color: #fff;
}

.pro-info .config .box .sub {
  width: 49%;
  margin: 0.6rem auto 0;
  color: #A6A6A6;
  line-height: 1.5;
}

.pro-info .config .box .sub span {
  color: #fff;
}

.pro-info .config .pic {
  width: 100%;
}

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

.pro-info .single {
  padding-top: 2.9rem;
  /*padding-bottom: 6.25rem;*/
  margin-bottom: 6.25rem;
  background-color: #202325;
  z-index: 10;
}

.pro-info .single .tit {
  color: #fff;
}

.pro-info .single .single-swiper {
  margin-top: 2.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.pro-info .single .single-swiper .swiper-wrapper {
  justify-content: center;
}

.pro-info .single .single-swiper .swiper-slide {
  width: -moz-max-content;
  width: max-content;
  padding: 0 1.1rem 0.5rem;
  color: #fff;
  margin-right: 0.1rem;
  cursor: pointer;
  transition: all 0.4s;
}

.pro-info .single .single-swiper .swiper-slide:last-child {
  margin-right: 0;
}

.pro-info .single .single-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s;
}

.pro-info .single .single-swiper .swiper-slide span {
  display: block;
  transform: scale(0.8);
  transition: all 0.4s;
}

.pro-info .single .single-swiper .swiper-slide:hover {
  font-weight: bold;
}

.pro-info .single .single-swiper .swiper-slide.active {
  font-weight: bold;
}

.pro-info .single .single-swiper .swiper-slide.active::after {
  width: 100%;
}

.pro-info .single .single-swiper .swiper-slide.active span {
  transform: scale(1);
}

.pro-info .single .change-box {
  margin-top: 1.85rem;
  padding-bottom: 2.15rem;
}

.pro-info .single .change-box .box {
  display: none;
}

.pro-info .single .change-box .li-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pro-info .single .change-box .li-box .li {
  width: 3rem;
  margin-right: 2.5rem;
}

.pro-info .single .change-box .li-box .li:last-child {
  margin-right: 0;
}

.pro-info .single .change-box .li-box .li .pic {
  width: 100%;
}

.pro-info .single .change-box .li-box .li .pic div {
  width: 100%;
}

.pro-info .single .change-box .li-box .li .pic p {
  margin-top: 0.75rem;
  color: #fff;
  line-height: 1.4;
  height: 2.8em;
  overflow: hidden;
}

.pro-info .single .change-box .li-box .li .list {
  margin-top: 1.5rem;
  color: #fff;
}

.pro-info .single .change-box .li-box .li .list div {
  text-align: center;
}

.pro-info .single .change-box .li-box .li .list .key {
  margin-top: 0.5rem;
  font-weight: lighter;
}

.pro-info .single .change-box .li-box .li .list .val {
  margin-top: 0.2rem;
  word-break: break-word;
}

.pro-info .btm-pic {
  background-color: #202325;
  margin-top: -13rem;
  padding-top: 6rem;
}

.pro-info .btm-pic .pic-box {
  width: 100%;
  height: 100vh;
  position: relative;
}

.pro-info .btm-pic .pic-box .bg {
  width: 74%;
  height: 64vh;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0.5rem;
}

.pro-info .btm-pic .pic-box .pos-cont {
  position: absolute;
  top: 35%;
  left: 5%;
  width: 90%;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  opacity: 0;
  z-index: 5;
}

.pro-info .btm-pic .pic-box .pos-cont .info {
  margin-top: 0.3rem;
}

.pro-info .btm-pic .pic-box .mc {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
}

.vid-ban {
  width: 100%;
  position: relative;
}

.vid-ban img {
  width: 100%;
}

.vid-ban .pos-cont {
  position: absolute;
  top: 37.5%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}

.vid-ban .pos-cont .h1 {
  line-height: 1.3;
}

.vid-ban .pos-cont .cont {
  margin-top: 0.35rem;
  line-height: 1.1;
}

.vid-ban .pos-cont .scroll-pic {
  margin-top: 3.6rem;
  width: 0.4rem;
}

.news {
  padding: 5.1rem 0 5.5rem;
}

.news .wrap {
  padding-left: 4rem;
}

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

.news .hot-swiper .swiper-pagination {
  text-align: left;
  padding: 0 1.5rem;
  line-height: 1;
  bottom: 1.25rem;
}

.news .hot-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: #C8C8C8;
  opacity: 1;
  margin: 0;
  margin-right: 0.35rem;
  transition: all 0.4s;
}

.news .hot-swiper .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.news .hot-swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.5rem;
  background-color: var(--logoColor);
  border-radius: 5px;
}

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

.news .hot-swiper .swiper-slide .intro {
  width: 44%;
  background-color: #fff;
  padding: 2.6rem 1.5rem 0.5rem;
}

.news .hot-swiper .swiper-slide .intro .time {
  color: var(--logoColor);
  line-height: 1.2;
}

.news .hot-swiper .swiper-slide .intro .h1 {
  margin-top: 0.35rem;
  color: #000000;
  line-height: 1.3;
  max-height: 2.6em;
  overflow: hidden;
  transition: all 0.4s;
}

.news .hot-swiper .swiper-slide .intro .cont {
  margin-top: 0.6rem;
  line-height: 2;
  height: 6em;
  overflow: hidden;
  color: #000000;
}

.news .hot-swiper .swiper-slide .intro .more {
  margin-top: 1.6rem;
  color: #000000;
}

.news .hot-swiper .swiper-slide .intro .more i {
  margin-left: 0.35rem;
  font-size: 16px;
}

.news .hot-swiper .swiper-slide .pic {
  width: 56%;
  height: 14rem;
  overflow: hidden;
}

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

.news .hot-swiper .swiper-slide:hover .intro .h1 {
  color: var(--logoColor);
}

.news .hot-swiper .swiper-slide:hover .pic img {
  transform: scale(1.02);
}

.news .li-box {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
}

.news .li-box .li {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 2.25rem;
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.news .li-box .li:nth-child(3n) {
  margin-right: 0;
}

.news .li-box .li .pic {
  width: 100%;
  height: 6.5rem;
  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 {
  width: 100%;
  padding: 0.9rem 0.75rem 1.8rem;
}

.news .li-box .li .intro .time {
  color: var(--logoColor);
  line-height: 1.1;
}

.news .li-box .li .intro .h1 {
  margin-top: 0.25rem;
  color: #000000;
  line-height: 1.6;
  transition: all 0.4s;
}

.news .li-box .li .intro .cont {
  margin-top: 0.5rem;
  line-height: 2;
  height: 4em;
  overflow: hidden;
}

.news .li-box .li .intro .more {
  margin-top: 1.2rem;
  color: #000000;
}

.news .li-box .li:hover .pic img {
  transform: scale(1.02);
}

.news .li-box .li:hover .intro .h1 {
  color: var(--logoColor);
}

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

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

.page-box a,
.page-box .alink {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 43px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #221814;
  font-size: 12px;
  margin-right: 0.45rem;
  cursor: pointer;
  transition: all 0.4s;
}

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

.page-box a[rel=first],
.page-box a[rel=last] {
  font-size: 14px;
}

.page-box a:hover,
.page-box a.active,
.page-box .alink:hover,
.page-box .alink.active {
  background-color: var(--logoColor);
  border-color: var(--logoColor);
  color: #fff;
}

.page-box .pagingUl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.45rem;
}

.page-box .pagingUl li {
  margin-right: 0.45rem;
}

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

.page-box .pagingUl .alink {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 43px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #221814;
  font-size: 12px;
  margin-right: 0.45rem;
  transition: all 0.4s;
}

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

.page-box .pagingUl .alink:hover,
.page-box .pagingUl .alink.active {
  background-color: var(--logoColor);
  border-color: var(--logoColor);
  color: #fff;
}

.page-box .pagingUl .first,
.page-box .pagingUl .last {
  font-size: 14px;
}

.news-info {
  padding: 5.1rem 0 4rem;
}

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

.news-info .wrap .lf {
  width: calc(100% - 11.65rem);
  background-color: #fff;
  padding: 1.8rem 1.75rem 2.9rem;
  border-radius: 0.5rem;
}

.news-info .wrap .lf .tit {
  color: #111111;
  line-height: 1.2;
}

.news-info .wrap .lf .tag {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
}

.news-info .wrap .lf .tag .time {
  color: #111111;
  margin-right: 1rem;
}

.news-info .wrap .lf .tag .share {
  color: #111111;
  display: flex;
  align-items: center;
}

.news-info .wrap .lf .tag .share p {
  margin-right: 0.5rem;
}

.news-info .wrap .lf .intro {
  margin-top: 0.8rem;
  padding-top: 1.25rem;
  border-top: 1px solid #F0F0F0;
  line-height: 1.8;
  color: #111111;
}

.news-info .wrap .rg {
  width: 10.65rem;
  position: sticky;
  top: 3rem;
}

.news-info .wrap .rg.fix-top {
  position: fixed;
  top: 3rem;
  right: 120px;
}

.news-info .wrap .rg .box {
  border-radius: 0.5rem;
  background-color: #fff;
}

.news-info .wrap .rg .box .h1 {
  line-height: 1.5;
  position: relative;
  padding-left: 0.75rem;
  color: var(--logoColor);
}

.news-info .wrap .rg .box .h1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0.7rem;
  background-color: var(--logoColor);
}

.news-info .wrap .rg .hot {
  padding: 1.5rem 0 1.2rem;
}

.news-info .wrap .rg .hot .li-box {
  margin-top: 1rem;
  padding: 0 0.75rem;
}

.news-info .wrap .rg .hot .li-box .li {
  display: block;
  color: #111111;
  margin-bottom: 0.7rem;
}

.news-info .wrap .rg .hot .li-box .li:last-child {
  margin-bottom: 0;
}

.news-info .wrap .rg .hot .li-box .li .time {
  margin-top: 0.3rem;
}

.news-info .wrap .rg .hot .li-box .li:hover .title {
  color: var(--logoColor);
}

.news-info .wrap .rg .info-page {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
}

.news-info .wrap .rg .info-page .next {
  display: block;
  margin-top: 0.75rem;
  padding: 0 0.75rem;
  color: #111111;
}

.news-info .wrap .rg .info-page .next .time {
  margin-top: 0.3rem;
}

.news-info .wrap .rg .info-page .next:hover .title {
  color: var(--logoColor);
}

.news-info .wrap .rg .info-page .back {
  margin-top: 1.7rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1.25rem;
  background-color: var(--logoColor);
  color: #fff;
}

.news-info .wrap .rg .info-page .back p {
  margin-right: 0.5rem;
}

.news-info .wrap .rg .info-page .back span {
  display: flex;
}

.news-info .wrap .rg .info-page .back:hover {
  opacity: 0.9;
}

.join {
  background-color: #F9F9FA;
}

.join .top-ban {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: 38.5vh !important;
}

.join .top-ban .load {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  /*height: 105%;*/
  z-index: 5;
}

.join .top-ban .load svg {
  width: 100%;
  height: 100%;
}

.join .top-ban .box {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 1.6rem 0;
}

.join .top-ban .box .wrap {
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

.join .top-ban .box .pic {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.join .top-ban .box .pic .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.join .top-ban .box .pic .bg1 {
  transform: translate(-0.3rem, -0.4rem);
  background-color: rgba(112, 112, 112, 0.15);
  z-index: 2;
  opacity: 0;
}

.join .top-ban .box .pic .bg2 {
  transform: translate(-0.65rem, -0.75rem);
  z-index: 1;
  background-color: rgba(112, 112, 112, 0.03);
  opacity: 0;
}

.join .top-ban .box .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  z-index: 3;
}

.join .top-ban .box .pic .tit {
  position: absolute;
  top: 35%;
  color: #fff;
  z-index: 10;
}

.join .top-ban .box .intro {
  width: 38.4%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
  padding-right: 1.75rem;
  opacity: 0;
  visibility: hidden;
}

.join .top-ban .box .intro .li {
  width: 100%;
  border-bottom: 1px solid #E9E9E9;
  padding-bottom: 1.4rem;
  position: relative;
  margin-bottom: 1.4rem;
}

.join .top-ban .box .intro .li:last-child {
  margin-bottom: 0;
}

.join .top-ban .box .intro .li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background-color: var(--logoColor);
  transition: all 0.4s;
}

.join .top-ban .box .intro .li .h1 {
  color: #C2CBD5;
  line-height: 1.3;
  cursor: pointer;
  transition: all 0.4s;
}

.join .top-ban .box .intro .li .cont {
  margin-top: 0.5rem;
  padding-bottom: 0.3rem;
  color: #111111;
  line-height: 1.77;
  display: none;
}

.join .top-ban .box .intro .li.active::after {
  width: 35.66%;
}

.join .top-ban .box .intro .li.active .h1 {
  color: #111111;
}

.join .set {
  padding-top: 50vh;
  margin-top: -50vh;
  margin-bottom: 30vh;
}

.join .set .set-box {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 0 0 2.5rem;
}

.join .set .tit {
  font-size: 4rem;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}

.join .set .set-swiper {
  margin-top: 2.25rem;
}

.join .set .set-swiper .swiper-button-prev,
.join .set .set-swiper .swiper-button-next {
  top: auto;
  margin: 0;
  left: auto;
  bottom: 0.25rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid #DCDDDE;
  color: #DCDDDE;
  transition: all 0.4s;
}

.join .set .set-swiper .swiper-button-prev::after,
.join .set .set-swiper .swiper-button-next::after {
  font-size: 0.3rem;
}

.join .set .set-swiper .swiper-button-prev:hover,
.join .set .set-swiper .swiper-button-next:hover {
  background-color: var(--logoColor);
  border-color: var(--logoColor);
  color: #fff;
}

.join .set .set-swiper .swiper-button-prev {
  right: calc(17% + 1.35rem);
}

.join .set .set-swiper .swiper-button-next {
  right: 17%;
}

.join .set .set-swiper .swiper-slide {
  width: 66%;
}

.join .set .set-swiper .swiper-slide .pic {
  width: 100%;
  height: 65vh;
  transform: scale(0.78);
  opacity: 0.5;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.5s 0.5s ease;
}

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

.join .set .set-swiper .swiper-slide .intro {
  margin-top: 0.9rem;
  opacity: 0;
  visibility: hidden;
}

.join .set .set-swiper .swiper-slide .intro .h1 {
  color: #000000;
  line-height: 1.3;
}

.join .set .set-swiper .swiper-slide .intro .cont {
  margin-top: 0.1rem;
  color: #000000;
  line-height: 1.3;
}

.join .set .set-swiper .swiper-slide-active .pic {
  transform: scale(1);
  opacity: 1;
}

.join .set .set-swiper .swiper-slide-active .intro {
  opacity: 1;
  visibility: visible;
  transition: all 0.3s 0.5s ease;
}

.join .find {
  padding-top: 30vh;
  margin-top: -50vh;
  margin-bottom: 33vh;
}

.join .find .wrap {
  padding: 5rem 0 2.5rem;
}

.join .find .tit {
  font-size: 4rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  /*white-space: nowrap;*/
  max-width: 100%;
}

.join .find .li-box {
  margin-top: 2.3rem;
  display: flex;
}

.join .find .li-box .li {
  width: 49.5%;
  height: 12.6rem;
  margin-right: 1%;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
}

.join .find .li-box .li:nth-child(2n) {
  margin-right: 0;
}

.join .find .li-box .li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.4s;
}

.join .find .li-box .li .pos-cont {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  padding: 0 1.7rem 1.85rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

.join .find .li-box .li .pos-cont .cont {
  margin-top: 0.25rem;
}

.join .find .li-box .li .pos-cont .more {
  position: absolute;
  right: 1.7rem;
  bottom: 1.85rem;
}

.join .find .li-box .li .pos-cont .more span {
  margin-left: 0.35rem;
}

.join .find .li-box .li:hover img {
  transform: scale(1.02);
}

.join .time-line {
  margin-top: -13rem;
  padding-top: 13rem;
}

.join .pic-box {
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.join .pic-box .bg {
  width: 70.8%;
  height: 64vh;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0.5rem;
}

.join .pic-box .mc {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, transparent, #fff);
}

.join .pic-box .pos-cont {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  opacity: 0;
  transition: all 0.4s;
}

.join .pic-box .pos-cont .h1 {
  color: #fff;
  line-height: 1.3;
}

.join .pic-box .pos-cont .info {
  margin: 0.25rem auto 0;
  color: #fff;
  max-width: 90%;
  line-height: 1.3;
}

.join .pic-box .pos-cont .more {
  margin: 1.4rem auto 0;
}

.service {
  width: 100%;
  height: 100vh;
  display: flex;
}

.service .mb-select {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  width: -moz-max-content;
  width: max-content;
  background-color: #F9F9FA;
  margin: 0 auto;
}

.service .mb-select span {
  color: #333;
  margin-right: 0.3rem;
}

.service .mb-select div {
  width: 20px;
}

.service .mb-select div img {
  width: 100%;
}

.service .side-bar-box {
  width: 20%;
  height: 100%;
  position: relative;
}

.service .side-bar-box .close-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service .side-bar {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: #F9F9FA;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service .side-bar .li {
  margin-bottom: 1.1rem;
}

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

.service .side-bar .li .tit {
  color: #262626;
  font-size: 0.45rem;
  cursor: pointer;
  transition: all 0.4s;
}

.service .side-bar .li .link-box {
  margin-top: 0.7rem;
  display: none;
}

.service .side-bar .li .link-box a {
  display: block;
  color: #262626;
  margin-bottom: 0.6rem;
  transition: all 0.4s;
}

.service .side-bar .li .link-box a:last-child {
  margin-bottom: 0;
}

.service .side-bar .li .link-box a.active,
.service .side-bar .li .link-box a:hover {
  color: var(--logoColor);
}

.service .side-bar .li:hover .tit {
  color: var(--logoColor);
}

.service .side-bar .li.active .tit {
  color: var(--logoColor);
  font-weight: bold;
  font-size: 0.55rem;
}

.service .rg {
  width: 80%;
  height: 100%;
  padding-top: 2.5rem;
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service .rg .tit {
  color: #262626;
}

.service .rg .sub {
  margin-top: 0.45rem;
  color: #262626;
}

.service .rg .tab-bar {
  margin-top: 1.2rem;
  display: flex;
  border-top: 1px solid rgba(112, 112, 112, 0.2);
}

.service .rg .tab-bar span {
  color: #262626;
  padding-top: 0.65rem;
  position: relative;
  width: 12em;
  margin-right: 3.5rem;
  cursor: pointer;
  transition: all 0.4s;
}

.service .rg .tab-bar span:last-child {
  margin-right: 0;
}

.service .rg .tab-bar span::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--logoColor);
  transition: all 0.4s;
}

.service .rg .tab-bar span:hover {
  color: var(--logoColor);
}

.service .rg .tab-bar span.active {
  color: var(--logoColor);
}

.service .rg .tab-bar span.active::after {
  width: 100%;
}

.service .rg .box {
  margin-top: 1.45rem;
}

.service .rg .box .item {
  position: relative;
  display: none;
}

.service .rg .box .item.show {
  display: block;
}

.service .rg .box .item .swiper-button-prev,
.service .rg .box .item .swiper-button-next {
  top: auto;
  margin: 0;
  bottom: calc(100% + 4rem);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 1px solid #A5A5A5;
  color: #707070;
  transition: all 0.4s;
}

.service .rg .box .item .swiper-button-prev::after,
.service .rg .box .item .swiper-button-next::after {
  font-size: 0.3rem;
}

.service .rg .box .item .swiper-button-prev:hover,
.service .rg .box .item .swiper-button-next:hover {
  background-color: var(--logoColor);
  border-color: var(--logoColor);
  color: #fff;
}

.service .rg .box .item .swiper-button-prev {
  right: 4.25rem;
  left: auto;
}

.service .rg .box .item .swiper-button-next {
  right: 3rem;
}

.service .rg .box .item .swiper-pagination {
  position: relative;
  bottom: 0;
  line-height: 1;
  margin-top: 1rem;
  text-align: left;
}

.service .rg .box .item .swiper-pagination .swiper-pagination-bullet {
  width: 0.4rem;
  height: 2px;
  background-color: rgba(112, 112, 112, 0.39);
  opacity: 1;
  border-radius: 0;
  margin: 0;
  margin-right: 0.2rem;
}

.service .rg .box .item .swiper-pagination .swiper-pagination-bullet:last-child {
  margin-right: 0;
}

.service .rg .box .item .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--logoColor);
}

.service .rg .box .item1 .swiper-slide {
  width: 32%;
  height: 10.1rem;
  border-radius: 0.25rem;
  margin-right: 0.75rem;
  background-color: #F9F9FA;
  padding: 1.6rem 1.5rem 0;
  transition: all 0.4s;
}

.service .rg .box .item1 .swiper-slide:last-child {
  margin-right: 0;
}

.service .rg .box .item1 .swiper-slide .num {
  color: #CCCCCC;
}

.service .rg .box .item1 .swiper-slide .num span {
  color: var(--logoColor);
  margin-right: 0.4rem;
}

.service .rg .box .item1 .swiper-slide .h1 {
  margin-top: 0.85rem;
  color: #000000;
  line-height: 1.3;
  height: 1.3em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service .rg .box .item1 .swiper-slide .cont {
  margin-top: 0.5rem;
  color: #333333;
  line-height: 1.8;
  height: 3.6em;
  overflow: hidden;
}

.service .rg .box .item1 .swiper-slide .more {
  margin-top: 1.05rem;
  display: block;
  min-width: 2.75rem;
  width: -moz-max-content;
  width: max-content;
  padding: 0 0.4rem;
  height: 1rem;
  line-height: calc(1rem - 6px);
  border-radius: 0.5rem;
  text-align: center;
  border: 3px solid var(--logoColor);
  color: var(--logoColor);
  transition: all 0.4s;
}

.service .rg .box .item1 .swiper-slide:hover {
  background-color: #fff;
  box-shadow: 0 0.4rem 1.25rem rgba(0, 0, 0, 0.06);
}

.service .rg .box .item1 .swiper-slide:hover .more {
  background-color: var(--logoColor);
  color: #fff;
}

.service .rg .box .item2 .swiper-slide {
  width: 50%;
  margin-right: 0.75rem;
  border-radius: 0.25rem;
  overflow: hidden;
}

.service .rg .box .item2 .swiper-slide img {
  width: 100%;
  transition: all 0.4s;
}

.service .rg .box .item2 .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.service .rg .box .item2 .swiper-slide:last-child {
  margin-right: 0;
}

.service .rg .box .item2 .swiper-slide .play {
  width: 1.7rem;
  cursor: pointer;
  z-index: 5;
}

.service .rg .box .item2 .swiper-slide .intro {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 0.85rem 0.55rem;
  z-index: 5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service .rg .box .item2 .swiper-slide:hover>img {
  transform: scale(1.02);
}

.recruit {
  padding: 4.6rem 0 4.75rem;
  background-color: #F9F9FA;
}

.recruit .top-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.recruit .top-bar .lf .tit {
  color: #262626;
}

.recruit .top-bar .lf .sub {
  margin-top: 0.45rem;
  color: #262626;
}

.recruit .top-bar .rg {
  display: flex;
  justify-content: flex-end;
}

.recruit .top-bar .rg .li {
  width: 8.5rem;
  height: 1.5rem;
  margin-right: 1.2rem;
  position: relative;
  border: 1px solid #E0EEFF;
  border-radius: 0.2rem;
  box-shadow: 0 0.5rem 1.15rem rgba(0, 71, 157, 0.05);
  z-index: 10;
}

.recruit .top-bar .rg .li:last-child {
  margin-right: 0;
}

.recruit .top-bar .rg .li .h1 {
  width: 100%;
  height: 100%;
  line-height: 1.5rem;
  padding: 0 0.95rem;
  background-color: #fff;
  border-radius: 0.2rem;
  color: rgba(17, 17, 17, 0.3);
  cursor: pointer;
}

.recruit .top-bar .rg .li .h1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.7rem;
  margin-top: -0.1rem;
  border-top: 0.2rem solid #111111;
  border-left: 0.2rem solid transparent;
  border-right: 0.2rem solid transparent;
}

.recruit .top-bar .rg .li .change {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 4.8rem;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #E0EEFF;
  display: none;
}

.recruit .top-bar .rg .li .change::-webkit-scrollbar {
  width: 3px;
}

.recruit .top-bar .rg .li .change span {
  display: block;
  line-height: 1.2rem;
  padding: 0 0.95rem;
  border-bottom: 1px solid #E0EEFF;
  cursor: pointer;
  transition: all 0.4s;
}

.recruit .top-bar .rg .li .change span:last-child {
  border-bottom: none;
}

.recruit .top-bar .rg .li .change span:hover {
  color: var(--logoColor);
}

.recruit .top-bar .rg .li input {
  width: calc(100% - 20px);
  height: 100%;
  background: none;
  color: #111111;
}

.recruit .top-bar .rg .li .search-btn {
  width: 20px;
  display: flex;
  cursor: pointer;
}

.recruit .top-bar .rg .search {
  padding: 0 0.7rem 0 0.95rem;
  display: flex;
  align-items: center;
  background-color: #fff;
}

.recruit .li-box {
  margin-top: 2.7rem;
}

.recruit .li-box .li {
  margin-bottom: 0.7rem;
  padding: 0 2.05rem;
  background-color: #fff;
  border-radius: 0.5rem;
  transition: all 0.4s;
}

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

.recruit .li-box .li .top-bots {
  width: 100%;
  height: 3rem;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.4s;
}

.recruit .li-box .li .top-bots p {
  color: #111111;
}

.recruit .li-box .li .top-bots p span {
  color: var(--logoColor);
}

.recruit .li-box .li .top-bots .name {
  color: #262626;
  width: 16%;
}

.recruit .li-box .li .top-bots .send {
  width: -moz-max-content;
  width: max-content;
  min-width: 2.75rem;
  height: 1rem;
  line-height: calc(1rem - 6px);
  text-align: center;
  padding: 0 0.4rem;
  border-radius: 0.5rem;
  border: 3px solid var(--logoColor);
  color: var(--logoColor);
  transition: all 0.4s;
}

.recruit .li-box .li .btm-bots {
  padding: 2.2rem 0 3.25rem;
  display: none;
}

.recruit .li-box .li .btm-bots .top-item {
  margin-bottom: .5rem;
}

.recruit .li-box .li .btm-bots .top-item p {
  display: inline-block;
  width: 50%;
  color: #111111;
}

.recruit .li-box .li .btm-bots .top-item p span {
  color: var(--logoColor);
}

.recruit .li-box .li .btm-bots .item-box {
  display: flex;
}

.recruit .li-box .li .btm-bots .item-box .item {
  width: 50%;
}

.recruit .li-box .li .btm-bots .item-box .item .h1 {
  color: var(--logoColor);
}

.recruit .li-box .li .btm-bots .item-box .item .cont {
  margin-top: 0.3rem;
  color: #666666;
  line-height: 2;
  padding-right: 1rem;
}

.recruit .li-box .li:hover {
  box-shadow: 0 0.5rem 1.15rem rgba(0, 71, 157, 0.05);
}

.recruit .li-box .li.active {
  box-shadow: 0 0.5rem 1.15rem rgba(0, 71, 157, 0.05);
  margin-bottom: 1.35rem;
}

.recruit .li-box .li.active .top-bots {
  border-bottom-color: #E4ECF0;
}

.recruit .li-box .li.active .top-bots .send {
  background-color: var(--logoColor);
  color: #fff;
}

.recruit .page-box {
  margin-top: 3.5rem;
}

.index-swiper {
  width: 100%;
  height: 100vh;
}

.index-swiper .all-swiper {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  /*margin-bottom: 0.5rem;*/
}

.index-swiper .all-swiper:last-child {
  margin-bottom: 0;
}

.index-swiper .fis-swiper {
  width: 100%;
  height: 100vh;
}

.index-swiper .fis-swiper .swiper-pagination-bullet {
  background: #fff;
}

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

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

.index-swiper .sec-box {
  width: 100%;
  height: 100vh;
}

.index-swiper .sec-box .pic-box {
  position: relative;
  width: 100%;
  height: 72%;
}

.index-swiper .sec-box .pic-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transition: all 0.4s;
}

.index-swiper .sec-box .pic-box img.show {
  opacity: 1;
  z-index: 5;
}

.index-swiper .sec-box .intro-box {
  width: 100%;
  height: 28%;
  padding-top: 1.7rem;
}

.index-swiper .sec-box .intro-box .second-swiper {
  width: 78.33%;
  border-bottom: 1px solid rgba(38, 38, 38, 0.14);
}

.index-swiper .sec-box .intro-box .second-swiper .swiper-wrapper {
  justify-content: center;
}

.index-swiper .sec-box .intro-box .second-swiper .swiper-slide {
  width: -moz-max-content;
  width: max-content;
  padding: 0 0.85rem 0.5rem;
  transform: scale(0.83);
  line-height: 1;
  cursor: pointer;
  transition: all 0.4s;
}

.index-swiper .sec-box .intro-box .second-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--logoColor);
  transition: all 0.4s;
}

.index-swiper .sec-box .intro-box .second-swiper .swiper-slide:hover {
  color: var(--logoColor);
}

.index-swiper .sec-box .intro-box .second-swiper .swiper-slide.active {
  transform: scale(1);
  color: var(--logoColor);
  font-weight: bold;
}

.index-swiper .sec-box .intro-box .second-swiper .swiper-slide.active::after {
  width: 100%;
}

.index-swiper .sec-box .intro-box .cont-box {
  margin: 0.65rem auto 0;
  width: 78.33%;
  position: relative;
}

.index-swiper .sec-box .intro-box .cont-box .cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 3rem;
  color: #262626;
  line-height: 2;
  text-align: center;
  opacity: 0;
}

.index-swiper .sec-box .intro-box .cont-box .cont.show {
  opacity: 1;
  z-index: 5;
}

.index-swiper .thr-box {
  width: 100%;
  height: 100vh;
}

.index-swiper .thr-box .cont1 {
  position: absolute;
  left: 5%;
  top: 50%;
  width: 90%;
  transform: translateY(-50%);
  color: #fff;
}

.index-swiper .thr-box .cont1 .num {
  font-size: 4.4rem;
  line-height: 1;
  position: relative;
}

.index-swiper .thr-box .cont1 .num::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0.8rem;
  width: 2.15rem;
  height: 2.15rem;
  background: url(../img/34.svg) center no-repeat;
}

.index-swiper .thr-box .cont1 .info {
  margin-top: 0.9rem;
  line-height: 1.6;
}

.index-swiper .fou-box {
  width: 100%;
  height: 100vh;
}

.index-swiper .fou-box .cont2 {
  position: absolute;
  left: 5%;
  top: 30%;
  width: 90%;
  color: #fff;
}

.index-swiper .fou-box .cont2 .h1 {
  line-height: 1.34;
}

.index-swiper .fou-box .cont2 .sub {
  margin-top: 0.25rem;
  line-height: 1.3;
}

.index-swiper .fou-box .cont2 .line {
  margin-top: 1.4rem;
  width: 3.7rem;
  height: 0.1rem;
  background-color: rgba(255, 255, 255, 0.11);
  position: relative;
}

.index-swiper .fou-box .cont2 .line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 100%;
  background-color: var(--logoColor);
}

.index-swiper .fou-box .cont2 .intro {
  margin-top: 2.25rem;
  line-height: 1.5;
  width: 60%;
}

.index-swiper .fif-box {
  width: 100%;
  height: 100vh;
}

.index-swiper .fif-box .cont3 {
  position: absolute;
  width: 90%;
  height: 100%;
  top: 0;
  left: 5%;
  color: #fff;
  text-align: center;
  padding-top: 5rem;
}

.index-swiper .fif-box .cont3 .h1 {
  line-height: 1.34;
}

.index-swiper .fif-box .cont3 .sub {
  margin-top: 0.25rem;
  line-height: 1.3;
}

.index-swiper .fif-box .cont3 .line2 {
  margin: 1.4rem auto 0;
  width: 3.7rem;
  height: 0.1rem;
  background-color: rgba(255, 255, 255, 0.11);
  position: relative;
}

.index-swiper .fif-box .cont3 .line2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 100%;
  background-color: var(--logoColor);
}

.index-swiper .fif-box .cont3 .more {
  position: absolute;
  bottom: 10%;
  left: 50%;
  height: 1.5rem;
  border-radius: 0.7rem;
  transform: translateX(-50%);
  background-color: var(--logoColor);
}

.index-swiper .fif-box .cont3 .more .line,
.index-swiper .fif-box .cont3 .more .round {
  display: none;
}

.tcx{position: fixed;top: 0;left: 0;width: 100%;height: 100vh;z-index: 90;transition: all 0.5s;}
.tcx.show{opacity: 1!important;pointer-events: all!important;}
.tcx .bj{position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-color: rgba(0,0,0,0.6);}
.tcx .con{position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);background-color: #ffffff;padding: 1.5rem 1.5rem 1rem 1.5rem;border-radius: 0.3rem;}
.tcx .con .h{text-align: center;margin-bottom: 1.5rem;color: #262626;white-space:nowrap;}
.tcx .con .btn{width: 3.2rem;text-align: center; line-height: 1.2;padding: 0.3rem 0;border-radius: 0.05rem;background-color: var(--logoColor);color: #fff;margin:0 auto;cursor: pointer;}

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